/* === general for entire page === */
body{
  margin: 0;
  padding: 0;
  background: #c4d5dc url(/images/ametabg.png) repeat-x;
}

body, input{
  font: 11px Univers, Frutiger, "Lucida Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

div {margin:0; padding:0;}

/* === positioning below: === */
body{

}

div#wrap{
  background-color: #fff;
  margin: 30px auto 12px auto; /* added extra 10px top+bottom for jquery curvy corners */

  position: relative;

  min-height: 500px;
  /* dustin diaz min-height fast hack */
  height: auto !important;
  height: 500px;

  width: 90%;
  width: 860px;
}



div#header{
  height: 154px;
  margin: 15px 25px 8px 25px;
  position: relative;
}

div#main{
  float: left;
  margin: 25px 310px 25px 32px;
  padding: 0 25px 0 0;

  /* IE doubled float-margin bug*/
  display:inline;

  min-height: 400px;
  /* dustin diaz min-height fast hack */
  height: auto !important;
  height: 400px;

}

div#sidebar{
  float: right;

  margin: 25px 25px 0 -280px;
  padding: 4px 10px 0px;
  position: relative;
  width: 244px;

  /* IE doubled float-margin bug*/
  display:inline;

  min-height: 400px;
  /* dustin diaz min-height fast hack */
  height: auto !important;
  height: 400px;

}

#footer {
  color: #8f9090;
  font-size: .9em;
  margin: 10px auto;
  text-align: center;
}

/* === styling top and menus === */

  #header #logo{
    position: absolute;
    left: 57px; top: 30px;
    border: 0;
  }
  #header #logo a{

  }

  #header #logo a{

  }

  #header #menu{
    position: absolute;
    bottom: 0px; left: 7px;
    margin: 0;
  }

  #header #menu li{
    color: #004462;
    display: inline;
    font-size: 1.1em;
    list-style: none;
    font-weight: bold;
  }
  #header #menu li a{
    color: #004462;
    text-decoration: none;
  }
  #header #menu li a:hover{
    text-decoration: underline
  }


#submenu ul{
  margin: -5px 0 0 25px;
  padding: 0 0 0 7px;
}

#submenu ul li{
  color: #004462;
  display: inline;
  list-style: none;
}

#submenu ul li a{
  color: #004462;
  text-decoration: none;
  font-weight: bold;
}
#submenu ul li a:hover{
  text-decoration: underline;
}



/* === news items === */
div#sidebar.news{
  background: #f4f7f9 url(/images/sidebarbg.png) no-repeat top left;
  padding-left: 0;
  padding-right: 0;
  width: 254px;
}


div.news h2{
  margin: 8px 10px;
  text-transform: uppercase;
}

div.news p{
  margin: auto 10px auto 10px;
}

ul.news{
  list-style: none;
  margin:0;
  padding:0;
}

ul.news li{
  display: block;
  border-bottom: 1px dotted #fff;
  padding: 13px 10px;
}
ul.news .date{
  font-weight: bold;
  display: block;
  margin:0;
}
ul.news .content{
  display: block;
  margin:0;
}
ul.news .readmore{
  display: block;
  margin:0;
  text-align: right;
}
.news .subnewsmoreinfo{
  margin-top: 20px;
  margin-bottom: 55px;
}
.news .subnewsmoreinfo a{
  text-decoration: none;
  color: #383838;
}
.news .subnewsmoreinfo a:hover{
  text-decoration: underline;
}
.news .subnewsline{
  color: #a1bcc8;
  position: absolute;
  bottom: 0;
  margin-left: 2px;
  margin-right: 2px;
}




/* === Large radius image backgrounds === */
b.cn {
  margin: 0; padding: 0;
  height: 10px; width: 10px;
  position:absolute;
  background: transparent url(/images/roundwhite.png) no-repeat top left;
}
b.tl {top: -1px; left: -1px; background-position: top left;}
b.tr {top: -1px; right: -1px; background-position: top right;}
b.bl {bottom: -1px; left: -1px; background-position: bottom left;}
b.br {bottom: -1px; right: -1px; background-position: bottom right;}

     /* IE Filters */
    * html .boxc b.bl {bottom:-2px}
    * html .boxc b.br {bottom:-2px}
    * html .boxc b.cn {background-image: url(/images/roundwhite.gif);}



/* === future of rounded corners: === */
/*
-moz-border-radius: 10px;
-khtml-border-radius: 10px;
-o-border-radius: 10px;
border-radius: 10px;
*/


/* easy clearing */
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
