@charset "utf-8";
* {/* zero global margin and padding values to account for differing browser defaults */
	padding: 0; 
	margin: 0;
}
body{
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size:62.5%;
	color:#333;
	background-color:#fff;
	text-align: center;/* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	}
h1, h2, h3, h4, h5, h6{
	color:#B70068;
	font-weight:bold;
	font-size:1.4em;
	line-height:1em;
	margin:0;
	padding:0;
}
h1{
	font-size: 2em;
	margin-bottom: 16px;
	line-height:1em;
}
h2{
	font-size: 1.6em;
	margin: 20px 0 10px 0;
	line-height:1.2em;
}
h3{
	margin: 20px 0 10px 0;
	line-height:1.2em;
}
h4{	
	font-size: 1.3em;
	margin: 20px 0 10px 0;
}
h5{	
	font-size: 1.2em;
	margin: 20px 0 10px 0;
}
p{
	font-size: 1.3em;
	line-height: 1.3em;
	margin-bottom: 10px;
}
a {
	font-weight: normal;
	color:#B70068;
	text-decoration:none;
}
a:hover{
	text-decoration: underline;
}
a img{ 
	border: none;
}
ol{
	list-style-type:decimal;
	line-height:1.5em;
	font-size:1.2em;
	margin:0 0 1.4em 25px;
	}
ul{
	list-style-type:disc;
	line-height:1.4em;
	font-size:1.2em;
	margin-bottom:1.1em;
	}
li{
	margin-left:20px;
	padding-left:0;
}
ol li{
	margin-bottom:0.8em;
}
strong{
	font-weight: bold;
	}
q{
	font-size:1.1em;
	font-style:italic;
	color: #000;
}
img{ /*(Max image width in mainContent = ?px)*/
	margin: 0;
	padding: 0;
}
input{
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	background-color: #CCE0F5;
	border: 1px solid #002C77;
	padding: 0 0.2em;
}
input[type=image] {
	border: none;
	padding: 0;
}
table{
	border-collapse:collapse;
	}

/* ------------- Header Boxes ------------- */
#headerBox{
	position:relative;/*  enable absolute positioning of child Divs */
	width:976px;
	height:104px;
	margin-top:0;	
	margin-right:auto;/* the auto margins (in conjunction with a width) center the page */
	margin-bottom:0;
	margin-left:auto;
	z-index:50;
	background:#fff;
	color:#717171;
	font-size:1.1em;
	text-align:left; /* this overrides the text-align: center on the body element. */
	}
#skipLink{
	position:absolute;
	bottom:10px;
	right:0px;
	width:220px;
	text-align:left;
	vertical-align:bottom;
	color:#717171;
}
#skipLink a{
	padding:0 15px 0 0;
	background:url(Imgs/Breadcrumb_Divider.gif) no-repeat right center;
}
#logo{
	position:absolute;
	left:40px;
	top:0px;
	width:146px;
	height:104px;
}
#breadCrumbs{
	position:absolute;
	bottom:10px;
	left:200px;
	list-style-type:none;
	line-height:1.4em;
	font-size:1em;
	margin:0;
	padding:0;
}
#breadCrumbs li{
	margin:0;
	padding:0 18px 0 0;
	float:left;
	display:block;
	background:url(Imgs/Breadcrumb_Divider.gif) no-repeat right center;
}
#headerBox #breadCrumbs a{
	display:block;
}
#headerBox a{
	color:#717171;
	text-decoration:none;
	font-weight:normal;
}
#headerBox a:hover{
	color:#B70068;
	text-decoration:underline;
}

	
/* ------------- Main Content Boxes ------------- */
#containerBG {/* Full width container */
	width:100%;
	float:left;
	margin: 0;
	background-color:#B70068;
}
#container{/* Fixed width container for main content and menu */
	position:relative;
	width:976px;
	min-height:500px;
	margin-top:0;	
	margin-right:auto;/* the auto margins (in conjunction with a width) center the page */
	margin-bottom:0;
	margin-left:auto;
	text-align:left;
	}

/* ---------- Main Menu ----------------- */
#menuDiv{	/* Placeholder div in case other content needs to go below <ul> */
	float:left;
	width:200px;
	padding:0;
	margin:0;
}

ul#menu {	
	width:180px;
	padding:20px 0px 5px 0px;
	margin:0 0 10px 0;
	list-style: none;
	background-color: #B70068;
	font-size: 1.3em;
	line-height: 1.2em;
}
#menu li{
	display: inline;/*this is a hack for IE 7 and below otherwise space between links behaves strangely*/
	padding: 0;
	margin: 0;
}
#menu a{	
	display: block;
	margin:3px 0;/* top or bottom margins on links - causes a bug in IE6 - use background style on link to override*/
	padding:6px 10px 6px 0;
	text-align:right;
	text-decoration:none;
	font-weight:bold;
	color:#fff;
}
#menu .currentLink a{ 
/*use to pick out the current page in the menu (place class on corresponding <li>)*/
	background: url(Imgs/MenuBG0.gif) no-repeat right top;
}
#menu a:hover{
	background: url(Imgs/MenuBG1.gif) no-repeat right top;
}
#menu a:active{
	background: url(Imgs/MenuBG0.gif) no-repeat right top;
	color:#E299C3;
}
#menu .subMenu a{ /*indent Submenu links (place class on corresponding <li>)*/
	padding:5px 22px 5px 0;
	margin-top: -2px;
	font-size:0.9em;
	background: url(Imgs/SubMenuBG0.gif) no-repeat right top;
	color:#EFC6DD;
}
#menu .currentLink.subMenu a{ 
	background: url(Imgs/SubMenuBG1.gif) no-repeat right top;
}
#menu .subMenu a:hover{
	background: url(Imgs/SubMenuBG2.gif) no-repeat right top;
}
#menu .subMenu a:active{
	background: url(Imgs/SubMenuBG0.gif) no-repeat right top;
	color:#E299C3;
}
/* ----------- subMenu subSection ------------- */
#menu .subMenu.subSection{
	display: block;
	margin:3px 0;/* top or bottom margins on links - causes a bug in IE6 - use background style on link to override*/
	padding:5px 22px 5px 0;
	text-align:right;
	margin-bottom: -1px;
	/*margin-top: -2px;
	font-size:0.9em;*/
	font-weight:bold;
	/*color:#D180AC;*/
	color:#fff;
}

/* ----------- main content holders ------------- */
#content{
	float:left;
	/*margin:0 0 0 200px;*/
	width:776px;
	padding:0;
	min-height:500px;
	background:#DDD4CB url(Imgs/Lin_Leo_Watermark_BG.gif) no-repeat right bottom;
	}
#swfDiv{
	float:left;
	width:556px;
}
#mainCol{
	position:relative;
	width:488px;
	padding:28px 0 18px 33px;
}
#sideCol{
	position:relative;
	float:left;
	width:185px;
	margin:33px 0 18px 0;
}
#sideCol p{
	font-size: 1.2em;
	line-height: 1.25em;
	margin-bottom: 10px;
}

#homeNewsScroll{
	position:absolute;
	width:185px;
	height:420px;
	overflow:auto;
	padding-right:26px;
}

/* ----------- News ------------- */
.latestNews{
	color:#fff;
	background-color:#B70068;
	padding:20px 10px 10px 10px;
	font-size:1.8em;
	margin-top:0;
	margin-bottom:15px;
}
h3.firstStory{
	margin-top:0;
	padding-top:0;
}
.newsDate{
		color:#3F3433;
}
.newsFooter{
	margin:20px 0;
}
.newsH3{
	margin-bottom:5px;
}
ul.newsLinks{
	list-style:none;
	font-size:1.2em;
	line-height:1em;
}
.newsLinks li{
	display:inline;/*this is a hack for IE 7 and below otherwise space between links behaves strangely*/
	margin:3px 0;
	padding:0;
	margin:0;
}
.newsLinks li.currStory{
	display:block;
	padding:6px 0 6px 14px;
	color:#B70068;
	background: url(Imgs/NewsLinkBG1.gif) no-repeat left top;
}
.newsLinks a{	
	display: block;
	/*margin:3px 0;*//* top or bottom margins on links - causes a bug in IE6 - use background style on link to override*/
	padding:6px 0 6px 14px;
	text-decoration:none;
	color:#3F3433;
	background: url(Imgs/NewsLinkBG0.gif) no-repeat left top;
}
.newsLinks a:hover{	
	text-decoration:none;
	color:#B70068;
	background: url(Imgs/NewsLinkBG1.gif) no-repeat left top;
}

/* ----------- footer ------------- */
#footer{
	position:relative;/*  enable absolute positioning of child Divs */
	width:976px;
	height:104px;
	margin-top:0;	
	margin-right:auto;/* the auto margins (in conjunction with a width) center the page */
	margin-bottom:0;
	margin-left:auto;
	background:#fff;
	text-align:left; /* this overrides the text-align: center on the body element. */
	clear:both;
}
#footer ul{
	list-style-type:none;
	margin:0 0 0 200px;
	padding:10px 0 0 0;
	line-height:1em;
	font-size:1.1em;
	color:#717171;
}
#footer li{
	margin:0 6px 0 0;
	padding:0 6px 0 0;
	border-right:1px solid #717171;
	float:left;
	display:block;
}
#footer li.endLine{
	border-right:none;
}
#footer a{
	display:block;
	color:#717171;
	font-weight:bold;
	text-decoration:none;
}
#footer a:hover{
	color:#B70068;
	text-decoration:underline;
}
#footer .spLink{
		position:absolute;
		top:10px;
		right:806px;
		width:200px;
		text-align:right;
		line-height:1.1em;
		font-size:1em;
		font-family: Arial, Helvetica, sans-serif;
}
#footer .spLink a{
		font-weight:normal;
		display:inline;
		color:#bbb;
}
#footer .spLink a:hover{
		color:#B70068;
}

/* ---------- general placeholders --------*/
a.subtleLink{
	color:#333;
}
a.subtleLink:hover{
	color:#B70068;
}
.pinkTxt{
		color:#B70068;
}
.smallTxt{
	font-size:1em;
	/*font-weight:bold;*/
	}
.imgbox{
	margin: 0px 10px 10px 10px;
	}
.floatLeft {
	float:left;
	margin:0px 15px 15px 0px;
	}
.floatRight {
	float:right;
	margin:2px 0px 2px 5px;
	}
.centerBox{
	text-align:center;
}
.clearFloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain its child floats */
	clear:both;
  font-size:1px;
  line-height:0;
	height:0%;
}