/* msstyles.css */


/* Universal style rule */
*{
  /* Block all browser default margins and padding */
  margin:0;
  padding:0;
}

body {
  font-family: Century Gothic, ‘Lucida Sans Unicode’, ‘Lucida Grande’, Verdana, Tahoma, Arial, Helvetica, sans-serif;
 color:#000000;
 background-color: #e1e3e4;
 }
 
 /* Links */

a:link {color:#e1e3e4;
text-decoration: none;}
a:visited {color:#9cc0bf;
text-decoration: none;}
a:focus {color:#9cc0bf;
text-decoration: none;}
a:hover {color:#9cc0bf;
text-decoration: none;}
a:active {color:#9cc0bf;
text-decoration: none;}

/* Level 1 headings */
h1 {
  font-family: Century Gothic, ‘Lucida Sans Unicode’, ‘Lucida Grande’, Verdana, Tahoma, Arial, Helvetica, sans-serif;
 font-weight: bold;
 text-align:center; 
 color: #1e2c5b;
}

/* Level 2 headings */
h2 {
  font-family: Century Gothic, ‘Lucida Sans Unicode’, ‘Lucida Grande’, Verdana, Tahoma, Arial, Helvetica, sans-serif;
 text-align: left;
 color: #1e2c5b;
 font-weight: normal;
}

/* Level 3 headings */
h3 {
  font-family: Century Gothic, ‘Lucida Sans Unicode’, ‘Lucida Grande’, Verdana, Tahoma, Arial, Helvetica, sans-serif;
 text-align: left;
 color: #1e2c5b;
 text-decoration: none;
 border-bottom: 1px dotted #1e2c5b;
}


/* Paragraph style  */
p {
  font-family: Century Gothic, ‘Lucida Sans Unicode’, ‘Lucida Grande’, Verdana, Tahoma, Arial, Helvetica, sans-serif;
 text-align: left;
}

/* Paragraph style italic */
p.it {
 font-style:italic;
}

/* Paragraph style bold */
p.b {
 font-weight:bold;
}

/* Paragraphs styled as caption or footnote */
p.caption {
 font-style:italic;
 color: #1e2c5b;
 font-size:70%;
 margin-left:10px;
 margin-right:50px;
}

p.fn {
 font-style:italic;
 color: #e3e5f7;
 font-size:70%;
 margin-left:100px;
 margin-right:100px;
}

p.block {
 margin-left:2em;
 margin-right:2em;
}


/* Captioned images */ 
div.captionpic{
   width:10em;
   padding:0.25em;
   margin:0.25em 0.25em;
   font-family:Century Gothic, ‘Lucida Sans Unicode’, ‘Lucida Grande’, Verdana, Tahoma, Arial, Helvetica, sans-serif;
   font-size:0.7em;
   color:#000;
   text-align:center; 
}
 
/* Applies to the image inside a captionpic div */
div.captionpic img{
   width:90%;
   border:none;
} 

#wrapper{
  width:55em;
  background-color: #e1e3e4;
   /* Center the wrapper */
  margin: 10px auto 0 auto;
    /* Required for absolutely-positioned layout only */
  position:relative;
}


/* Make branding a positioned element, but don't move it */
#branding{
  position:relative;
  background-color:#1e2c5b;
  height:5em;
}

/* Absolutely position links in the branding division */
#branding a{
  position:absolute;
  text-decoration:none;
  font-size:0.8em;
}

/* Unvisited and visited links in branding bar */
#branding a:link, #branding a:visited {
color:#1e2c5b;
}

/* Hover links in branding bar */
#branding a:hover, #a:active{
color:#9cc0bf;
}

/* Set height of branding division */
#branding{
  height:5em;
}

/* Fixes the mysterious image gap */
#branding img{
  margin:0.5em 0.5em;
}

/* Page header style */
#header {
     height: 120px;
     clear: both;
     width: 100%;
     background-color: #1e2c5b; 
     border-bottom: thin solid #3834bd; 
     padding-left: 10px;
     padding-right: 10px;
     text-align:center;
     padding-top: 10px;
}


/* Navbar division */
#navbar{
  background-color:#9cc0bf;
    /* Left margin must match leftcolumn width */
  height:1.6em;
    /* For absolutely-positioned navbar */
  position:absolute;
  top:5em; /* Same as branding div height */
  left:12em; /* Same as leftcolumn width */
  width:43em; /* Layout width minus leftcolumn width */
}


/* Remove bullets from ul in the navbar */
#navbar ul{
  list-style-type:none;
}

/* List items horizontal in the navbar */
#navbar li{
  float:left;
  /* Required for drop-down menus */
position:relative;
}

/* Applies to navbar links, unvisited and visited */
#navbar a,
#navbar a:link,
#navbar a:visited{
  text-decoration:none;
  font-family:Century Gothic, ‘Lucida Sans Unicode’, ‘Lucida Grande’, Verdana, Tahoma, Arial, Helvetica, sans-serif;
  font-size:80%;
  color:#0b4d4a;
  background-color:#9cc0bf;
  display:block;
  height:2em;
  width:10em;
  border-right:solid 1px #ddd;
  text-align:center;
line-height:2em;
outline-style:none;
}

/* Navbar hover, active, and current page links */
#navbar a:hover,
#navbar a:active,
#navbar li.selected a:link,
#navbar li.selected a:visited{
  background:#0b4d4a;
  color:#fff;
}

/* Make drop-down visible on navbar hover */
#navbar li:hover ul,
#navbar li a:hover ul{ /* IE6 hack */
  visibility:visible;
  top:1.6em;
  left:0;
}

/* Applies to links on the drop-down menu */
#navbar li:hover ul li a,
#navbar li a:hover ul li a{ /* IE6 hack */
  background:#7e97a6; /* Removes background image */
  color:#000;
  text-align:left;
  display:block;
  width:18em;
  padding:0 0 0 1em;
  height:auto;
}

/* Hover on drop-down menu links */
#navbar li:hover ul li a:hover,
#navbar li a:hover ul li a:hover{ /* IE6 hack */
  background: #7e97a6;
  color:#000;
}

/* Remove bullets from ul in the navbar */
#navbar ul{
  list-style-type:none;
}

/* Drop-down menu styles */
/* Applies to drop-down menus in navbar */
#navbar li ul{
  position:absolute;
  z-index:100;
  visibility:hidden;
}

/* IE6 hack applies to its table drop-down */
#navbar table{
  margin:-1px;
  border-collapse:collapse;
  position:absolute;
  top:0.5em;
  left:0;
  z-index:100;
}

#content p, #content ol, #content ul{
  text-align:left;
  font-size:0.8em;
  line-height:1.25em;
  padding:2em;
  }
  
#content ul, #content ol{
padding: 5px 0px 0px 30px; 
}

#content{
  margin: 0em 0em 0em 12em;
  background-color: #9cc0bf;
  color: #000000;
  padding:2em 15px 1em 2px;
}

/* Links in content div */
#content
a:link {color:#1e2c5b;
text-decoration: none;}
a:visited {color:#646da2;
text-decoration: none;}
a:focus {color:#646da2;
text-decoration: none;}
a:hover {color:#3834bd;
text-decoration: none;}
a:active {color:#3834bd;
text-decoration: none;}


/* Unordered list */
#content ul {
	list-style: none;
	margin-left: 0;
	padding-left: 1em;
	text-indent: -1em;
	}
	


#leftcolumn{
  /* Remember, content and navbar left
  margins must match this width */
  width:12em;
  float:left;
    /* Center images and text inside this div */
  text-align:center;
    /* For absolutely-positioned leftcolumn */
  position:absolute;
  top:5em; /* Same as branding div height */
  left:0.5em;
}

/* Applies to images in the leftcolumn div */
#leftcolumn img{
  width:80%;
  margin: 0 0;
}

/* Applies to paragraphs in the leftcolumn division */
#leftcolumn p{
  padding:0.25em;
  width:90%;
  font-family:Century Gothic, ‘Lucida Sans Unicode’, ‘Lucida Grande’, Verdana, Tahoma, Arial, Helvetica, sans-serif;
  font-size:0.8em;
  margin:1em 0.25em;
  text-align:left;
}

#footer{
  height:2em;
background-color:#1e2c5b;
}

#footer p{
  padding:1em;
  width:95%;
  font-family:Century Gothic, ‘Lucida Sans Unicode’, ‘Lucida Grande’, Verdana, Tahoma, Arial, Helvetica, sans-serif;
  font-size:0.6em;
  text-align:right;
  margin:0 0;
  color:#fff;
  }
  
@media print{
/* Start printer-friendly styles */

/* Set wrapper to fill page width */
#wrapper{
width:100%;
background-color:#fff;
}

body{
  background-color: #fff;
}

/* Hide leftcolumn, navbar,and footer */
#leftcolumn,
#navbar,
#footer{
display:none;
}
/* Get rid of content div margins and padding */
#content{
margin:0;
padding:0;
}
/*End printer-friendly styles */
}




