@charset "utf-8";
/* CSS Document */

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #000000 url(images/mock-up_01.jpg) repeat-x fixed center top;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	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 */
	color: #000000;
}
.thrColAbsHdr #container {
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 985px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF url(images/mainbackground-boarder.jpg);
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

/* Tips for absolutely positioned sidebars with header and footer:
1. Absolutely positioned (AP) elements must be given a top and side value, either right or left. (As a default, if no top value is given, the AP element will begin directly after the last element in the source order of the page. This means, if the sidebars are first element in the #container in the document's source order, they will appear at the top of the #container even without being given a top value. However, if they are moved later in the source order for any reason, they'll need a top value to appear where you desire.
2. Absolutely positioned (AP) elements are taken out of the flow of the document. This means the elements around them don't know they exist and don't account for them when taking up their proper space on the page. Thus, an AP div should only be used as a side column if you are sure the middle #mainContent div will always contain the most content. If either sidebar were to contain more content, that sidebar would run over the bottom of the parent div, and in this case the footer as well, and the sidebar would not appear to be contained.
3. If the above mentioned requirements are met, absolutely positioned sidebars can be an easy way to control the source order of the document.
4. If the source order is changed, the top value should be equal to the height of the header since this will cause the columns to visually meet the header.
*/
.thrColAbsHdr #header {
	height: 154px; /* if you're changing the source order of the columns, you'll may want to use a height on the header so that you can give the columns a predictable top value */
	background: #DDDDDD url(images/header.jpg);  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
.header-p   {
	float: right;
	margin: 30px;
	font-family: Lucida Bright, serif;
	text-decoration: none;
	text-align: right;
	color: #FFFFFF;
}
.header-nav   {
	float: right;
	text-decoration: none;
	text-align: right;
	color: #FFFFFF;
	font: bold 14px Verdana, MS Sans Serif;
	padding-right: 28px;
}
.header-nav  a:link {
	color: #CC9999;
	text-decoration: none;
}
.header-nav  a:visited {
	color: #CCCCCC;
	text-decoration: none;
}
.header-nav  a:hover {
	color: #FFFFFF;
	text-decoration: none;
}
.header-nav  a:active {
	color: #010050;
	text-decoration: none;
}

.header-nav-admin  {
	float: right;
	text-decoration: none;
	color: #FFFFFF;
	font: bold 18px Verdana, MS Sans Serif;
	padding-right: 350px;
	
}

#nav {
	height: 24px;
	background: url(images/top-nav.jpg);
}
#scroll {
	height: 70px;
	background: url(images/scrolling-text.jpg);
	padding: 8px 30px 10px 30px;
	font-size: 13px;
	color:  #bebde7;
	font-weight: bold;
}
.thrColAbsHdr #sidebar1 {
	position: absolute;
	top: 249px;
	left: 0;
	width: 192px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #000066 url(images/left-col.jpg) no-repeat; /* padding keeps the content of the div away from the edges */
	height: 581px;
}
#left-title  {
	font: bold 22px Lucida Bright, serif;
	padding-left: 16px;
	color: #000066;
	padding-top: 10px;
}
.thrColAbsHdr #container #mainContent #left-title p {
	color: #000000;
	text-decoration: none;
	font: normal 12px Verdana, MS Sans Serif;
	margin-right: 25px;
	margin-left: 5px;
}

#sidebar1 #left-subtitle {
	color: #993333;
	font-weight: bold;
	font-style: italic;
	font-size: 12px;
	padding-left: 20px;
	padding-top: 5px;
}
.thrColAbsHdr #sidebar2 {
	position: absolute;
	top: 248px;
	right: 0;
	width: 247px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #000066 url(images/right-col.jpg) no-repeat; /* padding keeps the content of the div away from the edges */
	height: 581px;
	font: 12px Lucida Bright, serif;
	color: #FFFFFF;
}
.head {
	font-size: 16px;
	font-weight: bold;
	padding-top: 20px;
	padding-bottom: 10px;
	text-align: center;
	padding-right: 15px;
}
.right {
	color: #CCCCFF;
	text-decoration: none;
}
.left {
	color: #CCCCFF;
	padding-left: 7px;
	vertical-align: baseline;
}

#sidebar2 #right-title {
	font: bold 22px Lucida Bright, serif;
	padding-left: 16px;
	color: #BEBDE7;
	padding-top: 15px;
}

#sidebar2 #right-title-admin {
	font: bold 18px Lucida Bright, serif;
	padding-left: 16px;
	color: #BEBDE7;
	padding-top: 15px;
	padding-bottom: 5px;
}

#right-subtitle  {
	color: #993333;
	font-weight: bold;
	font-style: italic;
	font-size: 12px;
	padding-left: 20px;
	padding-top: 2px;
}
#sidebar2 #right-paras       {
	color: #B9B8E3;
	padding: 5px 2px 0px 20px;
}
#right-paras   .para-space      {
	padding-bottom: 5px;
	color: #FFFFFF;
	font-weight: bold;
	font-size: 16px;
}
a:link   {
	color: #BEBDE7;
	text-decoration: none;
	font-weight: bold;
	font-size: 14px;
}
#insidepage-mainContent div {
	font: 18px Lucida Bright, serif;
	color: #000066;
	text-decoration: none;
	text-align: center;
	padding-top: 30px;
}
a:visited   {
	color: #999999;
	text-decoration: none;
	font-weight: bold;
	font-size: 14px;
}
a:active   {
	color: #9999FF;
	text-decoration: none;
	font-weight: bold;
	font-size: 14px;
}
a:hover   {
	color: #FFFFFF;
	text-decoration: none;
	font-weight: bold;
	font-size: 14px;
}

.thrColAbsHdr #mainContent {
	margin: 0px 247px 0 192px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. */
	padding: 0 0px;
	height: 563px;
	background: url(images/body-backgroundstrip.jpg) repeat-x;
}
.thrColAbsHdr #insidepage-mainContent {
	padding: 0 0px;
	height: 563px;
	background: url(images/body-backgroundstrip.jpg) repeat-x;
	margin: 0px 247px 0 12px;
}
#footer-pt1 {
	float: left;
	padding-top: 18px;
	color: #FFFFFF;
	padding-left: 20px;
	font-size: 12px;
}
#footer-pt2 {
	float: left;
	padding-top: 15px;
	color: #FF6666;
	font-weight: bold;
	padding-left: 26px;
}
#footer-pt3 {
	padding-top: 18px;
	float: right;
	font-size: 12px;
	color: #FFFFFF;
	padding-right: 20px;
}
#bottom-nav {
	height: 64px;
	background: url(images/bottom-nav.jpg);
	color: #BEBDE7;
	font-weight: bold;
}
#bottomright {
	padding-top: 51px;
}
#bottom-nav div {
	padding-top: 35px;
}
.thrColAbsHdr #footer {
	background:#DDDDDD url(images/footer.jpg);
	height: 55px;
} 
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	
}
.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 a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
img {
	text-decoration: none;
	border-width: 0px;
	border-style: none;
}
#sidebar2  #back  a:link {
	color: #FF6666;
	text-decoration: none;
	font-family: Lucida Bright, serif;
}
#left-title   a:link       {
	color: #FFFFFF;
	text-decoration: none;
}
#left-title   a:hover       {
	color: #020066;
	text-decoration: none;
}
#left-title   a:active       {
	color: #991B1E;
	text-decoration: none;
}
#left-title   a:visited       {
	color: #26267E;
	text-decoration: none;
}
#left-title  img    {
	float: right;
	clear: none;
	margin: 10px 0px 0px 10px;
	border: thick double #DAD9F2;
	background: #FFFFFF;
}
#insidepage-mainContent  p a:link {
	color: #FFFFFF;
	text-decoration: none;
}
#insidepage-mainContent p a:hover {
	color: #020066;
	text-decoration: none;
}
#insidepage-mainContent p a:active {
	color: #991B1E;
	text-decoration: none;
}
#insidepage-mainContent p a:visited {
	color: #26267E;
	text-decoration: none;
}
#widgetbox {
     width: 490px; 
	 background: #c8c7f1; 
	 margin: 0px auto 0px; 
	 padding: 8px; 
	 border: solid 3px #35356A; 
	 margin-top: 0px;
}
#widgetbox img {
  margin: 5px; 
  margin-bottom: 8px; 
  border: none;
}
/** pertains to the admin area**/
} 
.errorcodes {
	color: #990000; 
	font-weight: bold;
}
div#oUpcoming { 
     padding:0px 
}

/* div#oDiv styles must match div#oUpcoming.  will flip code to use div#oUpcoming later.*/
div #oDiv
{
    padding: 10px;
	overflow: auto;
	border: 1px solid #000; 
	width:450px;
    height: 250px; 
	background: #FFF;
	color: #000000;
	white-space: normal; /* css-3 */ 
	white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */ 
	white-space: -pre-wrap; /* Opera 4-6 */ 
	white-space: -o-pre-wrap; /* Opera 7 */ 
	word-wrap: break-word; /* Internet Explorer 5.5+ */

}

#oDiv a{
    color: #FF0000;
}
.tickerInfo
{
	font: 12px Arial, Helvetica, sans-serif;
	text-align:left;
	padding-top: 0px;
	margin-top: 0px;
	
}

.tickerInfo p
{
	margin: 0px;
}
.editText{	
   
	font-size: 14px;
	color: #000;
	font-weight: bold;
	margin-top: 0px;
	text-align: center;
	margin-bottom: 5px;
}
.adminTable td{
	     font-size: 10px;
	     text-align: center;
	     border: solid 1px #000;
	     padding: 4px;
		 color: #FFFFFF;
		 font-weight: bold;
	     background: #454545;
		 width: 250px;
}
.admintablelink a {
	  text-decoration: none;
	  font-weight: bold;
	  color: #fff;
}
.admintablelink a:hover {
	  text-decoration: none;
	  font-weight: bold;
	  color: #bebde7;
}
