/*
Theme Name: Ueli-Theme
Text Domain: ueli-theme
Author: Ueli Schmalz
Author URI: https://www.uelischmalz.ch/
Description: Selbstprogrammiertes Theme für die Portfolio-Webseite von Ueli Schmalz"
Version: 1.0
*/

/* ========== RESET ========== */

* {
  margin: 0;
  padding: 0;
}

/* ========== VARIABLEN ========== */

:root{
  /* Farben */
  --co-bg: #F2E3D5;
  --co-schrift: #012E40;
  --co-akzent-dunkel: #024959;
  --co-akzent-mittel: #026773;
  --co-akzent-hell: #3CA6A6;

  /* Schriftgrössen */
  --fs-haupttitel: 2rem;
  --fs-zwischentitel: 1.5rem;
  --fs-navigation: 1.4rem;
  --fs-flusstext: 1.3rem;
  --fs-footer: 0.9rem;

  /*Schriften*/
  --ff-flusstext: 'Outfit', sans-serif;
  --ff-display: 'Outfit', sans-serif;

}

/* ========== BASIS ========== */
html {
  background-color: var(--co-bg);
  font-family: var(--ff-flusstext);
  font-size: var(--fs-flusstext);
  color: var(--co-schrift);
  min-height: 100vh;

}

body {
  position: relative;
  min-height: 100vh;
}

.wp-block-columns {
  margin-bottom: 0 !important;
}

h1 {
  font-size: var(--fs-haupttitel);
  margin-bottom: 20px;
}

h2 {
  font-size: var(--fs-zwischentitel);
  margin-bottom: 15px;
}
a {
  color: var(--co-akzent-mittel);
  text-decoration: none;
}

main {
  max-width: 60%;
  margin-left: auto;
  margin-right: auto;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wp-block-separator {
  margin-top: 20px;
  margin-bottom: 20px;
}

hr.is-style-default {
  visibility: hidden;
  margin-top: 10px;
  margin-bottom: 10px;
}

.wp-block-buttons>.wp-block-button {
  display: block;
}

.wp-block-button__link {
  display: block !important;
  position: relative !important;
  margin-top: 20px !important;
  margin-bottom: 40px !important;
  padding: 10px !important;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
  box-sizing: border-box !important;
  color: var(--co-bg) !important;
  background-color: var(--co-akzent-dunkel) !important;
  z-index: 12 !important;
  border-radius: 0 !important;
  font-size: var(--fs-footer) !important;
  text-align: left !important;
}

.wp-block-button__link:hover {
  text-decoration: none !important;
  background-color: var(--co-akzent-mittel) !important;
}




/* ========== HEADER ========== */

header {
  position: fixed;
  top: 0;
  height: 120px;
  width: 100%;
  background-color: var(--co-akzent-dunkel);
  z-index: 100;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-left: 5%;
  padding-right: 5%;
  box-sizing: border-box;


}

#page-logo{
  max-height: 50px;
}


#menu-hauptmenue {
  color: var(--co-bg);
  list-style-type: none;
  height: 100%;

  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;

}

nav, .hauptnavigation,  .hauptnavigation div, #menu-hauptmenue li  {
  height: 100%;
}

#menu-hauptmenue li a{
  color: var(--co-bg);
  text-decoration: none;
  height: 100%;
  padding: 15px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  /* ANIMATION UNTEN-OBEN */
  background-size: 100% 200%;
  background-position: 0 -100%;
  background-image: linear-gradient(to top, var(--co-akzent-dunkel) 50%, var(--co-akzent-mittel) 50%);
  -webkit-transition: background-position .5s;
  -moz-transition: background-position .5s;
  transition: background-position .5s;

    /*
    ANIMATION LINKS-RECHTS
    background-size: 201% 100%;
    background-image: linear-gradient(to right, var(--co-akzent-dunkel) 50%, var(--co-akzent-mittel) 50%);
    -webkit-transition: background-position .5s;
    -moz-transition: background-position .5s;
    transition: background-position .5s;
    */
}

#menu-hauptmenue li a:hover{
  /* ANIMATION UNTEN-OBEN */
  background-position: 0 0;
  /*
  ANIMATION LINKS-RECHTS
  background-position: -100% 0;
  */
}

#menu-hauptmenue li a:active{
  background-color: var(--co-akzent-mittel);
}

.current-menu-item a {
    background-color: var(--co-akzent-mittel);
}

.navigation-mobile-button-container {
  display: none;
}

/* ========== FOOTER ========== */

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 5%;
  padding-right: 5%;
  box-sizing: border-box;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  background-color: var(--co-akzent-mittel);
  color: var(--co-bg);
}

#menu-metamenue {
  color: var(--co-bg);
  list-style-type: none;
  height: 100%;

  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
}

#menu-metamenue li a {
  color: var(--co-bg);
  display: block;
  padding: 10px;
  box-sizing: border-box;
  text-decoration: none;


}

#menu-metamenue li a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;

}

#menu-metamenue li a:after {
  content: "";
  position: absolute;
  height: 30%;
  width: 2px;
  margin: 10px;
  box-sizing: border-box;
  background-color: var(--co-bg);
  top: 27%;

}

#menu-metamenue li:last-child a:after {
  height: 0px;
  width: 0px;
  background-color: transparent;

}

/* ========== MAIN ========== */

main {
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 140px;
  padding-bottom: 130px;
}

/* ========== STARTSEITE ========= */


/* ==== HERO ==== */
#hero {
  position: relative;
  min-height: 180px;
}

#hero img {
  position: relative;
  display: block;
  top: 120px;
  left: 0;
  width: 100%;
  height: auto;
}

#hero h1 {
  position: absolute;
  display: block;
  left: 20%;
  bottom: 10vw;
  z-index: 5;

  background-color: var(--co-bg);
  padding: 8px;
}

#hero h2 {
  position: absolute;
  display: block;
  left: 20%;
  bottom: 7vw;
  z-index: 5;
  background-color: var(--co-bg);
  padding: 10px;
}

/* Mehr Artikel lesen- Button */
.btn-more-front {
  display: block;
  position: relative;
  margin-top: 5px;
  margin-bottom: 35px;
  padding: 10px;
  padding-top: 12px;
  padding-bottom: 12px;
  box-sizing: border-box;
  color: var(--co-bg);
  background-color: var(--co-akzent-dunkel);
  z-index: 12;
  max-width: 31%;
}

.btn-more-front i {
  padding-left: 8px;
}

.btn-more-front:hover {
  text-decoration: none;
  background-color: var(--co-akzent-mittel);
}

/* ==== Website-Featured ==== */
.website-archive-featured {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.website-archive-featured > .website-box {
  max-width: 31%;
  margin: 1%;
}

.website-archive-featured > .website-box:first-child {
  margin-left: 0;
}

.website-archive-featured > .website-box:last-child {
  margin-right: 0;
}

.website-archive-featured > .website-box h2 {
  font-size: 1rem;
  bottom: 60px;
  left: 15px;
}

.website-archive-featured > .website-box h2 a {
  padding: 8px;
}

.website-archive-featured > .website-box p {
  font-size: 0.8rem;
  bottom: 20px;
  left: 15px;
}

/* ==== Video-Featured ==== */
.video-archive-featured {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.video-archive-featured > .video-box {
  max-width: 31%;
  margin: 1%;
}

.video-archive-featured > .video-box:first-child {
  margin-left: 0;
}

.video-archive-featured > .video-box:last-child {
  margin-right: 0;
}

.video-archive-featured > .video-box h2 {
  font-size: 1rem;
  bottom: 60px;
  left: 15px;
}

.video-archive-featured > .video-box h2 a {
  padding: 8px;
}

.video-archive-featured > .video-box p {
  font-size: 0.8rem;
  bottom: 20px;
  left: 15px;
}


/* =========== Video-ARCHIV ========== */
.video-archive {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.video-box {
  max-width: 44%;
  margin: 3%;
  position: relative;

}

.video-box h2 {
  position: absolute;
  bottom: 80px;
  left: 20px;
  z-index: 12;
  max-width: 80%;
}

.video-box h2 a {
  display: block;
  color: var(--co-bg);
  background-color: var(--co-akzent-dunkel);
  padding: 10px;


}


.video-box h2 a:hover {

  text-decoration: none;
  background-color: var(--co-akzent-mittel);
}

.video-box p {
  position: absolute;
  bottom: 30px;
  left: 20px;
  z-index: 12;
}

.video-box p a {
  display: block;
  padding: 8px;
  color: var(--co-bg);
  background-color: var(--co-akzent-dunkel);
  z-index: 12;
}

.video-box p a i {
  padding-left: 8px;
}

.video-box p a:hover {

  text-decoration: none;
  background-color: var(--co-akzent-mittel);
}



.video-archive-thumbnail {
  height: 100%;
  max-width: 100%;
  


}

.video-archive-details {

}

.video-archive-thumbnail-container {
  display:inline-block;
  position: relative;
  height: 100%;
  max-width: 100%;

}

.video-archive-thumbnail-container:after {
  content: '';
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    display: block;
    position: absolute;
    background: var(--co-akzent-dunkel);
    opacity: 0.5;
    transition: all .3s ease-in-out;
}

.video-archive-thumbnail-container:hover:after {
    opacity: 0.2;
}

/* ========== video-Single ========== */
.video-main {
  display: flex;
  flex-wrap: wrap;
  height: auto;
}

.video-main .contentContainerLeft {
  width: 46%;
  height: fit-content;
  margin-top: 30px;
  margin-bottom: 40px;
  margin-right: 4%;
  margin-left: 0;
}

.video-main img {
  width: 46%;
  height: fit-content;
  margin-top: 30px;
  margin-bottom: 40px;
  margin-right: 4%;
  margin-left: 0;
}

.video-main .contentContainerRight {
  width: 46%;
  margin-top: 30px;
  margin-bottom: 40px;
  margin-right: 0;
  margin-left: 4%;
}

.video-tags ul {
  list-style-type: none;
  display: flex;
  max-width: 92%;
  flex-wrap: wrap;
}

.video-tags ul li {
  background-color: var(--co-akzent-dunkel);
  color: var(--co-bg);
  font-size: 0.7rem;
  padding: 3px;
  padding-left: 6px;
  padding-right: 6px;
  border-radius: 5px;
  margin-right: 6px;
  margin-bottom: 6px;
}

.video-single a {
  display: block;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  font-size: 1.2rem;
  color: var(--co-bg);
  background-color: var(--co-akzent-dunkel);

}

.video-single a:hover {
  background-color: var(--co-akzent-mittel);
  text-decoration: none;
}

.video-single a i {
  padding-left: 8px;
}

/* =========== WEBSITE-ARCHIV ========== */
.website-archive {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.website-box {
  max-width: 44%;
  margin: 3%;
  position: relative;

}

.website-box h2 {
  position: absolute;
  bottom: 80px;
  left: 20px;
  z-index: 12;
  max-width: 80%;
}

.website-box h2 a {
  display: block;
  color: var(--co-bg);
  background-color: var(--co-akzent-dunkel);
  padding: 10px;


}


.website-box h2 a:hover {

  text-decoration: none;
  background-color: var(--co-akzent-mittel);
}

.website-box p {
  position: absolute;
  bottom: 30px;
  left: 20px;
  z-index: 12;
}

.website-box p a {
  display: block;
  padding: 8px;
  color: var(--co-bg);
  background-color: var(--co-akzent-dunkel);
  z-index: 12;
}

.website-box p a i {
  padding-left: 8px;
}

.website-box p a:hover {

  text-decoration: none;
  background-color: var(--co-akzent-mittel);
}



.website-archive-thumbnail {
  height: 100%;
  max-width: 100%;



}

.website-archive-details {

}

.website-archive-thumbnail-container {
  display:inline-block;
  position: relative;
  height: 100%;
  max-width: 100%;

}

.website-archive-thumbnail-container:after {
  content: '';
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    display: block;
    position: absolute;
    background: var(--co-akzent-dunkel);
    opacity: 0.5;
    transition: all .3s ease-in-out;
}

.website-archive-thumbnail-container:hover:after {
    opacity: 0.2;
}

/* ========== Website-Single ========== */
.website-main {
  display: flex;
  flex-wrap: wrap;
  height: auto;
}

.website-main img {
  width: 46%;
  height: fit-content;
  margin-top: 30px;
  margin-bottom: 40px;
  margin-right: 4%;
  margin-left: 0;
}

.website-main div{
  width: 46%;
  margin-top: 30px;
  margin-bottom: 40px;
  margin-right: 0;
  margin-left: 4%;
}

.website-tags ul {
  list-style-type: none;
  display: flex;
  max-width: 92%;
  flex-wrap: wrap;
}

.website-tags ul li {
  background-color: var(--co-akzent-dunkel);
  color: var(--co-bg);
  font-size: 0.7rem;
  padding: 3px;
  padding-left: 6px;
  padding-right: 6px;
  border-radius: 5px;
  margin-right: 6px;
  margin-bottom: 6px;
}

.website-single a {
  display: block;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  padding: 20px;
  font-size: 1.2rem;
  color: var(--co-bg);
  background-color: var(--co-akzent-dunkel);

}

.website-single a:hover {
  background-color: var(--co-akzent-mittel);
  text-decoration: none;
}

.website-single a i {
  padding-left: 8px;
}

/* ========== Formular-Styling ========== */

input,
label,
select,
button,
textarea
{
	margin:0;
	border:0;
	padding:0;
	display:block;
	vertical-align:middle;
	white-space:normal;
	background:none;
	line-height:1;

	/* Browsers have different default form fonts */
	font-size: var(--fs-flusstext);
	font-family: var(--ff-flusstext);
}

/* Remove the stupid outer glow in Webkit */
input:focus
select:focus
{
	outline:0;
}

/* Box Sizing Reset
-----------------------------------------------*/

/* All of our custom controls should be what we expect them to be */
input,
textarea
{
	-webkit-box-sizing:content-box;
	-moz-box-sizing:content-box;
	box-sizing:content-box;
}

/* These elements are usually rendered a certain way by the browser */
button,
input[type=reset],
input[type=button],
input[type=submit],
input[type=checkbox],
input[type=radio],
select
{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}

/* Text Inputs
-----------------------------------------------*/

input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=range],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
textarea
{
  background-color: var(--co-akzent-dunkel);
  color: var(--co-bg);
  height: 40px;
  width: 100%;
  margin-bottom: 20px;
  padding: 15px;

  outline: none;
}

/* Text Inputs Focus
-----------------------------------------------*/

input[type=date]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=email]:focus,
input[type=month]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=range]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=time]:focus,
input[type=url]:focus,
input[type=week]:focus,
textarea:focus
{
  background-color: var(--co-akzent-mittel);

}

/* Button Controls
-----------------------------------------------*/

input[type=checkbox],
input[type=radio]
{
	width:13px;
	height:13px;
}

/* File Uploads
-----------------------------------------------*/

input[type=file]
{

}

/* Search Input
-----------------------------------------------*/

/* Make webkit render the search input like a normal text field */
input[type=search]
{
	-webkit-appearance:textfield;
	-webkit-box-sizing:content-box;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration
{
	display:none;
}

/* Buttons
-----------------------------------------------*/

button,
input[type="reset"],
input[type="button"],
input[type="submit"] {
  /* Fix IE7 display bug */
  overflow:visible;
  width:auto;
  margin: 15px;
  margin-left: 0;
  display: block;
  padding: 15px;
  color: var(--co-bg);
  background-color: var(--co-akzent-dunkel);
  z-index: 12;
}

button:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
input[type="submit"]:hover {
  cursor: pointer;
  text-decoration: none;
  background-color: var(--co-akzent-mittel);
}


/* IE8 and FF freak out if this rule is within another selector */
::-webkit-file-upload-button
{
	padding:0;
	border:0;
	background:none;
}

/* Textarea
-----------------------------------------------*/

textarea
{
  height: 200px;
	/* Move the label to the top */
	vertical-align:top;

	/* Turn off scroll bars in IE unless needed */
	overflow:auto;
}

/* Selects
-----------------------------------------------*/

select
{

}

select[multiple]
{
	/* Move the label to the top */
	vertical-align:top;
}

/* ====== Galerie ====== */
.sl-overlay {
  background: var(--co-akzent-dunkel) !important;
}

.sl-close {
  color: var(--co-bg) !important;
}

.sl-navigation button {
  color: var(--co-bg) !important;
}

.sl-counter {
  color: var(--co-bg) !important;
}


/* Zwischenquery für die Main-Breite */
@media only screen and (max-width: 1500px){
  main {
    max-width: 100%;
  }

  #hero h1 {
    left: 5%;
    bottom: 50px;
  }

  #hero h2 {
    left: 5%;
    bottom: 0px;
  }
}



/* ===================================================*/
/* ===================================================*/
/* ================= MOBILE ===========================*/
/* ===================================================*/
/* ===================================================*/

@media only screen and (max-width: 850px){ /* Alter Wert: 850px */

  /* ========== HEADER ========== */

  header {
    height: 70px;
  }

  #page-logo{
    max-height: 35px;
  }

  nav {
    display: flex;
    align-items: center;

  }

  .navigation-mobile-button-container {
    display: block;
  }

  .hauptnavigation {
    display: none;
  }

  #menuIcon {
    height: 25px;
  }


  #menu-hauptmenue {
    color: var(--co-bg);
    list-style-type: none;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--co-akzent-dunkel);
    height: auto;

  }

 .hauptnavigation,  .hauptnavigation div, #menu-hauptmenue li  {
    height: auto;
    width: 100%;
  }

  #menu-hauptmenue li a{
    color: var(--co-bg);
    text-decoration: none;
    height: auto;
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    /* ANIMATION UNTEN-OBEN */
    background-size: 100% 205%;
    background-position: 0 -97%;
    background-image: linear-gradient(to top, var(--co-akzent-dunkel) 50%, var(--co-akzent-mittel) 50%);
    -webkit-transition: background-position .5s;
    -moz-transition: background-position .5s;
    transition: background-position .5s;

      /*
      ANIMATION LINKS-RECHTS
      background-size: 201% 100%;
      background-image: linear-gradient(to right, var(--co-akzent-dunkel) 50%, var(--co-akzent-mittel) 50%);
      -webkit-transition: background-position .5s;
      -moz-transition: background-position .5s;
      transition: background-position .5s;
      */
  }

  #menu-hauptmenue li a:hover{
    /* ANIMATION UNTEN-OBEN */
    background-position: 0 0;
    /*
    ANIMATION LINKS-RECHTS
    background-position: -100% 0;
    */
  }

  #menu-hauptmenue li a:active{
    background-color: var(--co-akzent-mittel);
  }

  .current-menu-item a {
      background-color: var(--co-akzent-mittel);
  }

  /* ========== FOOTER ========== */

  footer {
    font-size: 0.6rem;
  }

  #menu-metamenue li a:after {
    content: "";
    height: 20%;
    width: 1px;
    top: 32%;

  }

  /* ========== MAIN ========== */

  main {
    padding-top: 100px;
  }


  /* ==== STARTSEITE ===== */
  #hero img {
    top: 70px;
  }

  #hero h1 {
    font-size: 1rem;

    bottom: 0px;

  }

  #hero h2 {

    font-size: .8rem;
    bottom: -30px;

  }

  .btn-more-front {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 4%;
    margin-bottom: 10%;
    text-align: center;
  }

  /* ========== MOBILE VIDEO-SINGLE ========== */

  .video-box {
    max-width: 100%;
    margin: 0;
    margin-top: 6px;
    margin-bottom: 6qpx;
  }

  .video-main img {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .video-main div{
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  /* ========= MOBILE Video-Archiv ===== */

  .video-box {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 3%;
    margin-bottom: 3%;
    position: relative;

  }

  /* Darstellung Featured auf der Startseite */

  .video-archive-featured > .video-box {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 3%;
    margin-bottom: 3%;
  }

  /* ========= MOBILE WEBSITE-Archiv ===== */

  .website-box {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 3%;
    margin-bottom: 3%;
    position: relative;

  }

  /* Darstellung Featured auf der Startseite */
  .website-archive-featured > .website-box {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 3%;
    margin-bottom: 3%;
  }

  /* ========== MOBILE WEBSITE-SINGLE ========== */

  .website-box {
    max-width: 100%;
    margin: 0;
    margin-top: 6px;
    margin-bottom: 6px;
  }



  .website-main img {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .website-main div{
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  /* ========== Formular-Styling MOBILE ========== */

  input,
  label,
  select,
  button,
  textarea
  {

  	/* Browsers have different default form fonts */
  	font-size: var(--fs-flusstext);

  }

  /* Text Inputs
  -----------------------------------------------*/

  input[type=date],
  input[type=datetime],
  input[type=datetime-local],
  input[type=email],
  input[type=month],
  input[type=number],
  input[type=password],
  input[type=range],
  input[type=search],
  input[type=tel],
  input[type=text],
  input[type=time],
  input[type=url],
  input[type=week],
  textarea
  {

    height: 40px;
    width: 100%;
    margin-bottom: 20px;
    padding: 15px;
    padding-top: 30px;
    padding-bottom: 30px;
    box-sizing: border-box;

  }

  textarea {
    padding-top: 15px;
  }

  /* Buttons
  -----------------------------------------------*/

  button,
  input[type="reset"],
  input[type="button"],
  input[type="submit"] {

    margin: 0;
    margin-top: 4%;
    margin-bottom: 4%;
    padding: 15px;

  }




  /* Textarea
  -----------------------------------------------*/

  textarea
  {
    height: 200px;
  	/* Move the label to the top */
  	vertical-align:top;
    max-width: 100%;
    min-width: 100%;

  	/* Turn off scroll bars in IE unless needed */
  	overflow:auto;
  }



}
