<!--
/*setting the padding and margins to 0 and setting font for the entire site*/
body {
	margin:0;
	padding:0;
	font-family:Arial, Helvetica, sans-serif;
	}
/* Creating style for the links in the header that have a class CLsLinka*/
 A.ClsLinka:Link	{ 
  color:#FFFFFF; 
  text-decoration:none; 
 }

 A.ClsLinka:Visited { 
  color:#FFFFFF; 
  text-decoration:none;
 }

 A.ClsLinka:Hover { 
  color:#00CCFF; 
  text-decoration:none; 
 }	

/* Creating style for the links in the remainder of the page that have a class CLsLink*/
 A.ClsLink:Link	{ 
  color:#0000A0; 
  text-decoration:none; 
 }

 A.ClsLink:Visited { 
  color:#0000A0; 
  text-decoration:none;
 }

 A.ClsLink:Hover { 
  color:#AC0000; 
  text-decoration:none; 
 }	

 A.ClsHeading:Link { 
  color:#0000A0; 
  text-decoration:none; 
  Font-Family: Verdana; 
  Font-Size: 12px; 
  Font-Weight: bold;
 }

 A.ClsHeading:Visited { 
  color:#0000A0; 
  text-decoration:none; 
  Font-Family: Verdana; 
  Font-Size: 12px; 
  Font-Weight: bold;
 }

 A.ClsHeading:Hover	{
  color:#AC0000; 
  text-decoration:none; 
  Font-Family: Verdana; 
  Font-Size: 12px; 
  Font-Weight: bold;
 }	

 A.UpperNavBar:Link	{ 
  color:#0c5e2d; 
  text-decoration:none; 
  Font-Family: Verdana; 
  Font-Size: 10px;
 }

 A.UpperNavBar:Visited { 
  color:#0c5e2d; 
  text-decoration:none; 
  Font-Family: Verdana; 
  Font-Size: 10px;
 }

 A.UpperNavBar:Hover {
  color:#AC0000; 
  text-decoration:none;  
  Font-Family: Verdana; 
  font-Size: 10px;
 }	


/* setting contour around the entire page */
 #Body{
   padding:0px 10px 10px 10px;
 }

/*setting the header to stay visible when scroling dow the page*/
div.floating-menu {
 position:fixed;
 background:#000066;
 width:100%;
 z-index:100;
 }
div.Maintext{
padding-top:110px;
}



/* set features for main Header */
 #LogoHeader { 
   margin-left:9px;
   margin-bottom: 0px;
   padding-bottom: 0px;
   border-bottom: 0px ; 
   font-size:10px;
   font-weight:bold;
   clear:both;
   max-width:2000px;
 }

/* style the outer div to give it width */
.menu {
z-index:1;
clear:both;
margin:0px 0px 0px 10px;
padding:0px 0px 0px 0px;
position:static; /*Make the container moveable*/
width:750px;     /*Main bar total width 490 (7 * 70 for each cell) + 260)for oprating hours*/
height:20px;
font-family:Arial, Helvetica, sans-serif;
*padding-bottom:40px; /*Padding between the bottom of your mainbar and the rest of your page */
/*background-color:#000099;*/
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin:0;
list-style-type:none;
font-family:Arial, Helvetica, sans-serif;

}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
display:block;
float:left;
width:70px; /* Cell size. Divide the main width (630px) by the number of cells you need */
position:relative;
}

.menu ul ul li { 
 margin-left:15px;
 *margin-left:5px;
 }

/* style the links for the top level */
.menu a, .menu a:visited {
display:block;
font-size:10px;
font-weight:bold;
text-decoration:none; 
color:#ffffff; 
width:70; /* Defines the main box dimensions. */
height:32px; /*How tall your cells are*/
border:1px solid #ffffff; 
border-width:1px 1px 0 0; 
background:  #000099; 
padding-left:5px;
padding-top:5px; 
/*line-height:29px; /*Adjust this to vertically center your text in each cell. Should be about the same as height. */
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
width:107px; 
w\idth:108px;
}


/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
background: #000099;
}
/* style the second level hover */
.menu ul ul a.drop:hover{
background: #000099;
}
.menu ul ul :hover > a.drop {
background: #0000FF ;
}
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
background:#000099;
 width: 65px;
}
/* style the third level hover */
.menu ul ul ul a:hover {
background:#0000FF;
}
.menu ul ul ul :hover > a {
background:#0000FF;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
visibility:hidden;
position:absolute;
height:0;
top:38px;
left:0; 
width:110px;  /* Size of the daughter cells */
font-weight:500;
}
/* another hack for IE5.5 */
* html .menu ul ul {
top:30px;
t\op:31px; /* IE gap between main bar and the dropdown items */
}


/* position the third level flyout menu */
.menu ul ul ul{
left:295px; /*position of tird level to the sedond*/
top:0;
width:40px;
}
/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
left:-40px;
}
/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {position:absolute; top:0; left:0;}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
background:##000099; 
color: #FFFFFF; 
height:auto; 
line-height:1em; 
padding:5px 10px; 
width:290px /*with of second level box */
/* yet another hack for IE5.5 */
}
* html .menu ul ul a{
width:125px;
w\idth:129px;
}


/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{
color:#fff; 
background: #0000CC;
}
.menu :hover > a, .menu ul ul :hover > a {
color:#fff;
background:#0000CC;
}

/* make the second level visible when hover on first level list OR link */
.menu ul :hover ul{
visibility:visible; 
}
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{
visibility:hidden;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.menu ul :hover ul :hover ul ul{
visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{ 
visibility:visible;
}
/* make the fourth level visible when you hover over third level list OR link */
.menu ul :hover ul :hover ul :hover ul { 
visibility:visible;
}

/* End Navbar Code */

/* moving the search engine to the right of the page*/  
 #Logo_Table { 
	width:100%;

 }

/* setting features for the centre body content section */
#Centre-Content {
	width:inherit;
	min-width:670px;
	list-style-image:url(https://www.eharvard.org/images/dot.gif);
	margin-left:25px;
	padding-left:25px;
	padding-right:25px;
	padding-bottom:25px;
}


.pod-top1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #ffffff;
	text-align: center;
	padding: 1px;
	border: 0;
	background: #222222;
	font-weight: bold;
	line-height: 16px;
}
.pod-top1 a { color: #ffffff; }
.pod-top1 a:hover { color: #ffffff; }
.pod-top1 a:visited { color: #ffffff; }

.pod-bottom1 {
	background-color: #FFFFFF;
	padding: 2px;
	border: 1px solid #aaaaaa;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
}

.item-sub {
	border-bottom: 1px dotted rgb(204, 204, 204);
	padding-bottom: 5px;
}

/* MainFrame */
#header {
    clear: both;
    height: 95px;
    background-color: #000066;
	margin-top:5px;
	margin-bottom: 0px;
    padding: 0px 0px 0px 1px;
	min-width:700px;
	color: #FFFFFF;
	text-decoration:none;
}


Center_Table {
	min-width:610px;
}

footer {
    clear: both;
    text-align:left;
}


/* Search */



#Search form {	
	padding: 0px;
}
/* right side bar */
#Center_Right{
vertical-align:top;
min-height:800px;
 width:235px;
 min-width:235px;
	list-style-image:url(https://www.eharvard.org/images/dot.gif);
	background-color:#FFCC66;
	padding-left:15px;
	vertical-align:top;
	padding-right:15px;
	z-index:99;
}

#Center_Right ul{
 padding-left:10px;
}
#Center_Right ul li{
padding-top:5px;

}

#followus_top {
padding-left:15px;
 width:235px;
 vertical-align:middle;
 height:30px;
 background-color:#FF0000;
 color:#FFFFFF;
}

#followus {
 overflow:hidden;
 zoom:1;
 vertical-align:middle;
 height:60px;
 background-color:#FF0000;
}



#followus ul {
 list-style-type:none;
 margin:0 auto;
 overflow:hidden;
 padding:0;
 width:235px;
 zoom:1;
}
#followus li {
 display:inline;
 float:left;
 height:32px;
 margin:5px 4px 5px 4px;
 width:32px;
}

#followus li.last {
 margin-right:0;
}

#followus a img {
 border:0;
}
#Hours {
 width:235px;
 min-width:235px;
	background-color:#FFCC66;
	padding-left:15px;
	vertical-align:top;
	padding-right:15px;
	
}

/* Forms */
form { 
 margin:0px;
 padding:0px;
}


/* Footer */ 
 #footer { 
  text-align:left; 
  color:#FFFFFF; 
  padding:0px 10px 30px 10px; 
 }

#floating_sidebar {
 position:fixed;
 width: 235px;
 top: 200px; /* change to adjust height from the top of the page */
}

#floating_sidebar ul {
 padding-left: 10px;
 padding-right: 10px;
}
