@charset "utf-8";
/*** @import "/inc/js/SpryAssets/LLISpryMenuBarHorizontal.css"; ***/
/***XXXXXXXXXXXXXXX Primary layout rules XXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXX

To change many of the widths/heights requires that other certain values must
also be changed at the same time. For this reason, beside these critical
attributes (or nearby if comment hacks do not allow) are comments with the
calculations as to how to adjust them.

These guidance comments start with /*** and end with ***/

/***
You can delete these if you want, but do not delete MAC Hack comments (see
below).

To change the width of the entire layout, adjust the columns that make up the
total, remembering the borders. Remember, even one small mistake will degrade
or even break the layout, so be very careful!

For spacing within the cols, it's best to apply margins on content elements
inserted into the cols, because padding directly on those col elements will
change their widths, breaking the layout.

Certain hiding hacks have been used extensively in this layout, so here is a
quick explanation of them.

The Safari escape tab hack:
***************************

 (used on wrapper, and the 3 backgrounds for Moz
and Opera).

Puts an escape in front of a valid number in the style name to replace a
letter in that name, e.g. \65 is an e. A tab is then inserted (not a space).
The purpose of this hack is to hide some code from Safari. Unfortunately,
some other browsers (like IE) see it for what it should be (but NOT Safari),
and so we must undo the code for those browsers by other hacks.

The Tan hack:
*************

* html .anyelement {rules read only by IE/Win and IE/Mac}

The MAC hack:
*************

(first the active comment you are reading now must be
closed...) ***/

/* \*/

/* */

/***...Back in comment mode now. Anything between those two comment lines
will be hidden from IE/Mac. Don't use any comments within this hack or it will
close prematurely and IE/Mac will begin reading before it should.

The above two hacks are combined so as to feed rules only to IE/Win.

The Holly Hack:
***************

Proper use of backslash escape characters inside property names used in the
Holly hack can further segregate rules to be read by only IE6 from rules for
IE5.x/Win.

These hiding hacks, along with several other fixes, make possible this formerly
impossible layout. It is highly unlikely that new browsers will have any
problem with these valid hiding hacks, and we will have to wait for Microsoft
to release IE7.

If enabled in the PageMaker, the 100% height in the html and body styles makes
the design full height. It also breaks Moz because you should use min-height,
but that doesn't work! Note
how these 100% heights are hidden from IE Mac with
the MAC Hack, otherwise they break it.

XXXXXXXXXXXXXXX XXXXXXXXXXXXXXX XXXXXXXXXXXXXXX XXXXXXXXXXXXXXX XXXXXXXXXXXXXXXX ***/
html,body{
  margin:0; /*** Do NOT set anything other than a left margin for the page
as this will break the design ***/
  padding:0;
  border:0;
/* \*/
  height:100%;
/* Last height declaration hidden from Mac IE 5.x */
}
body{
  background:#FFFFFF;
  color:#5c5c5c;
  min-width:600px; /*** This is needed for moz. Otherwise, the header and footer will
slide off the left side of the page if the screen width is narrower than the design.
Not seen by IE. Left Col + Right Col + Center Col + Both Inner Borders + Both Outer Borders ***/
  text-align:center; /*** IE/Win (not IE/MAC) alignment of page ***/
/*  background-image: url(/images/background_swishes.jpg);
  background-attachment: fixed; */
}
.clear{
  clear:both;
/*** these next attributes are designed to keep the div
height to 0 pixels high, critical for Safari and Netscape 7 ***/
  height:1px;
  overflow:hidden;
  line-height:1%;
  font-size:0px;
  margin-bottom:-1px;
}
* html .clear{height:auto;margin-bottom:0} /*** stops IE browsers from displaying
the clear div/br in the page, as these are for Moz/Opera and
Safari only. If IE 5.x Win DID display these, the page is too high ***/
#fullheightcontainer{
  margin-left:auto; /*** Mozilla/Opera/Mac IE 5.x alignment of page ***/
  margin-right:auto; /*** Mozilla/Opera/Mac IE 5.x alignment of page ***/
  text-align:left; /*** IE Win re-alignment of page if page is centered ***/
  position:relative; /*** Needed for IE, othewise header and footer aren't contained
directly above and below the body ***/
  width:100%; /*** Needed for Moz/Opera to keep page from sliding to left side of
page when it calculates auto margins above. Can't use min-width. Note that putting
width in #fullheightcontainer shows it to IE and causes problems, so IE needs a hack
to remove this width. Left Col + Right Col + Center Col + Both Inner Border + Both Outer Borders ***/
/* \*/
  height:100%;
/* Last height declaration hidden from Mac IE 5.x */
/*** Needed for Moz to give full height design if page content is
too small to fill the page ***/
  min-width: 1200px;
}
#wrapper{
  min-height:100%; /*** moz uses this to make full height design. As this #wrapper
is inside the #fullheightcontainer which is 100% height, moz will not inherit heights
further into the design inside this container, which you should be able to do with
use of the min-height style. Instead, Mozilla ignores the height:100% or
min-height:100% from this point inwards to the center of the design - a nasty bug.
If you change this to height:100% moz won't expand the design if content grows.
Aaaghhh. I pulled my hair out over this for days. ***/
/* \*/
  height:100%;
/* Last height declaration hidden from Mac IE 5.x */
/*** Fixes height for non moz browsers, to full height ***/
}
#wrapp\65	r{ /*** for Opera and Moz (and some others will see it, but NOT Safari) ***/
  height:auto; /*** For moz to stop it fixing height to 100% ***/
}
/* \*/
* html #wrapper{
  height:100%;
}
/* Last style with height declaration hidden from Mac IE 5.x */
/*** Fixes height for IE, back to full height,
from esc tab hack moz min-height solution ***/
#outer{
  z-index:1; /*** Critical value for Moz/Opera Background Column colors fudge to work ***/
  position:relative; /*** IE needs this or the contents won't show outside the parent container. ***/

/* \*/
  height:100%;
/* Last height declaration hidden from Mac IE 5.x */
/*** Needed for full height inner borders in Win IE ***/
}
/*** Static fixes ***/

/*** a Note on the Holly hack: if IE/Win shows bugs it's a good idea to apply the height:1%
     hack to different elements and see if that fixes the problem. Sometimes it may be
     necessary to use "position: relative;" on certain elements, but it's hard to tell in
     advance which elements will need such fixes. ***/
/*** This is a STATIC fix for IE5/Win at the largest text size setting. ***/
/*** All the IE fixes that are inside seperate "Mac-hacks" may be grouped within
     just one Mac-hack for convenience if desired. However, each fix must come
     later than the rule it is fixing or the fix itself will be overridden. ***/
/*** clearheader heights are made from header height + borders +
any sidebar box height, less any sidebar intrusion.
Similar calcs for footers. ***/
#clearheadercenter{
  height:155px; /*** needed to make room for header in center column ***/
  overflow:hidden;
}
#clearfootercenter{
  height:155px; /*** needed to make room for footer in center column ***/
  overflow:hidden;
}
#footer{
  z-index:1; /*** Critical value for Moz/Opera Background Column colors fudge to work ***/
  clear: both;
  width:100%; /*** Set to Left Col + Right Col + Center Col + Both Inner Borders +
Both External Borders ***/
  height:180px; /*** = Bottom Margin + One Outer Border + body to footer divider depth +
subfooter1 height + any other subfooter heights ***/
  overflow:hidden;
  margin-top:-135px; /*** negative height ***/
  position: absolute;
}
#subfooter1{
  text-align:center;
  height:180px; /*** sub-footer row height ***/
/*  background-image: url(/images/foot_gradiant_filler.png);
  background-repeat: repeat-x; */
  padding: 40px 0 0 0;
}
	
	/*** <ul> in the footer ***/
	.footer-links {
		list-style: none;
		width: 100%;
	}
		.footer-links li {
			display:inline;
			position:relative;
			padding: 0 5px 0 5px;
		}
		.footer-links li a {
			position: relative;
			z-index: 1;
		}
	
	.footer-legal {
		list-style: none;
		width: 100%;
	}
		.footer-legal li {
			display:inline;
			position:relative;
			padding: 0 5px 0 5px;
		}
		.footer-legal li a {
			position:relative;
			z-index: 1;
		}

#header{
  z-index:1; /*** Critical value for Moz/Opera Background Column colors fudge to work ***/
  position:absolute;
  top:0px;
  width:100%; /*** Set to Left Col (not if left sidebar fully intrudes into header or left sidebar is off)
+ Right Col (not if right sidebar fully intrudes into header or right sidebar is off) + Center Col + Both Inner
Borders (not if any sidebar intrudes into header or footer, or Inner Borders are off) + Both External Borders
(not if external borders are off) ***/
  height:155px; /*** = Top Margin + One Outer Border + header to body divider depth +
subheader1 height + any other subheader heights ***/
  
 /* background-image: url(/images/login/login_heade_background.jpg);
  background-repeat: repeat-x;*/
}
#subheader1
{
    /*** background:#FFFFFF;  Background Color of Sub-header #1 ***/
    text-align: center;
    height: 155px; /*** sub-header row height ***/
    background-image: url('../../images/000-logo.png');
    background-position: center 15px;
    background-repeat: no-repeat;
}
	#top-menu-left {
		float: left;
		color: #000000;
		padding: 5px 0 0 5px;
		font-size: .9em;
	}
	#top-menu-right {
		float: right;
	/*	background-color: Teal;
	background-image: url('../../img/navGrad.gif');*/
    background-repeat: repeat-x;
    -moz-border-radius-bottomleft:8px;
  	-moz-border-radius-bottomright:8px;
  	-webkit-border-bottom-left-radius:8px;
	border-bottom-left-radius:8px;
 	-webkit-border-bottom-right-radius:8px;
	border-bottom-right-radius:8px;
	}
	#little-icons-top {
		padding: 0px 10px 0px 0px;
	}
		#little-icons-top ul {
			list-style: none;
			margin: 0 0 0 0;
		}
		#little-icons-top li {
			margin: 0 0 0 0;
			display:inline;
			position:relative;
			padding: 0 5px 0 5px;
		}
	
	#header-big-icon-row {
		margin: 0 0 0 0;
		padding: 0 10 0 0;
	}
	
	#header-logo {
		float: left;
		padding: 20px 0 0 80px;
		width: 257px;
	}
	
	#header-icons {
		float: right;
		padding: 15px 0 0 0;
	}
	#header-icons ul {
		list-style: none;
	}
		#header-icons li {
			/*display:inline;*/
			position:relative;
			padding: 0 5px 0 5px;
		}
		
	#tools_sub_menu {
		position: absolute;
		z-index: 9999999;
		width: 200px;
		display: none;
	}
		.leftLinkTable {
			text-align: left;
		}
		
	#search-bar {
		/*background-image: url(/images/search_gradiant_filler.png);*/
		background-image: url(/img/navGrad.gif);
		background-repeat: repeat-x;
		background-position: 0px 5px;
		height: 30px;
		font-size: .7em;
		text-align: left;
		padding: 10px 0px 2px 10px;
	}
	
		#search-breadcrumbs {
			float: left;
			margin: 0 0 0 0;
			padding: 5px 0 0 0;
		}
		
		#search-box {
			float: right;
			margin: 0 0 0 0;
			padding: 0 0 0 0;
		}
		#search-box input.searchtextbox {
			height: 12px;
		}
		#search-box input.searchbutton {
			height: 20px;
		}
		
	#message-bar {
		left: 0;
		margin: 0 30px 0 30px;
		padding: 0 0 0 0;
		position: absolute;
		z-index: 999999999;
		background-color: #fffad3;
		
	}
		.message-bar-header-left {
			float: left;
		}
		.message-bar-header-right {
			float: right;
		}
		
		.message-bar-content {
			background-color: #fffad3;
		}
	
		#message-bar-notice {
			border: 1px solid #eadc00;
		}
		#message-bar-notice-header {
			background-color: #eadc00;
			height: 28px;
		}
	
#gfx_bg_middle{
  top:0px;
  position:absolute;
  height:100%;
  overflow:hidden;
  width:600px; /*** = Center Col Width ***/
  margin-left:0px; /*** = Left Col Width ***/
  /*** background:#FFFFFF;  Set background color for center column for Mozilla & Opera ***/
}
* html #gfx_bg_middle{
  display:none; /*** Hides the moz fix from IE ***/
}


#container-center h4 {
  color: #ff9933;
  
}

	#center-left-column {
		float: left; 
		width: 470px; /*** since this element is floated, a width must be given.  When this is changed, the middle column margin-left needs to be changed to match. ***/
		/*** background: #EBEBEB;  the background color will be displayed for the length of the content in the column, but no further ***/
		padding: 10px 0px 10px 0px; /*** top and bottom padding create visual space within this div ***/
	/*	background-image: url(/images/center_left_gradiant.png);
		background-repeat: no-repeat;
		background-position: top right; */
	}
	
	#center-right-column {
		float: right; 
		width: 470px; /*** since this element is floated, a width must be given.  When this is changed, the middle column margin-right needs to be changed to match. ***/
		/*** background: #EBEBEB; the background color will be displayed for the length of the content in the column, but no further ***/
		padding: 10px 0px 10px 0px; /*** top and bottom padding create visual space within this div ***/
		/* background-image: url(/images/center_right_gradiant.png);
		background-repeat: no-repeat; */
	}
	
	#center-left-column h3, #center-left-column p, #center-right-column p, #center-right-column h3 {
		margin-left: 10px; /*** the left and right margin should be given to every element that will be placed in the side columns ***/
		margin-right: 10px;
	}
	
	#center-middle-column {
		margin: 0px 470px 0px 470px; /*** the left and right margins can be given in ems or pixels. It creates the space down the left and right side of the page, and should match the widths of the left and right columns. Use padding to push content away from the edges ***/
		padding: 10px 20px 10px 20px; /*** padding here creates space "inside the box." ***/
	/*	background-image: url(/images/center_middle_gradiant.png);
		background-repeat: no-repeat;
		background-position: top right; */
		text-align: center;
		vertical-align: top;
		width: 300px;
	}
	#leaderboardContainer
	{
	    position: relative; width: 410px; margin-left: auto; margin-right: auto;
	}
.formBtnOut {
	border: 1px solid #6593cf !important;
	background-image: url(/images/icons/blue_grad_1.jpg) !important;
	background-repeat: repeat-x !important;
	height: 24px !important;
	cursor: default;
	padding: 2px 6px 2px 6px;
}
.formBtnOver {
	border: 1px solid #6593cf !important;
	background-image: url(/images/orange-grad.jpg) !important;
	background-repeat: repeat-x !important;
	height: 24px !important;
	cursor: pointer;
	padding: 2px 6px 2px 6px;
}

#top-menu-right li img:hover
	{
	    background-color: #EEEEEE;
	}