@charset "utf-8";
/* CSS Document */


body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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;
	background-color: #FFFFFF;
	background-image: url(images/bkgd/bkgd-top4.gif);
	background-repeat: repeat-x;
	background-position: top;
}

/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
.twoColElsLtHdr #container {
	width: 1000px;
	text-align: left;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	vertical-align: top;
	background-color: #FFFFFF;
	background-image: url(images/bkgd/bkgd-top.jpg);
	background-position: left top;
	background-repeat: repeat-x;
	border: 0;
	padding: 0px;
} 


/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColElsLtHdr #sidebar1 p" rule.
*/
.twoColElsLtHdr #sidebar1 {
	float: left; 
	width: 215px; /* since this element is floated, a width must be given */
	padding: 0;
	margin: 0;
}

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
.twoColElsLtHdr #mainContent {
	border: 0px;
	width: 772px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 215px;
	padding:0px;
} 
.twoColElsLtHdr #footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
} 
.twoColElsLtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

/* Miscellaneous classes for reuse */
.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;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.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;
}

.box3 {
	padding-top: 0;
	padding-right: 12px;
	padding-bottom: 0;
	padding-left: 0px;
	background-color: #000066;
	background-image: url(images/boxes/borders_right3.gif);
	background-repeat: repeat-y;
	background-position: 100% 0;
}
.bi3 {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 6px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	background-color: #000066;
	background-image: url(images/boxes/borders_left3.gif);
	background-repeat: repeat-y;
	background-position: 0 0;
}
.bt3 {
	height:17px;
	margin-top: 0;
	margin-right: -12px;
	margin-bottom: 0;
	margin-left: -6px;
	background-color: #000066;
	background-image: url(images/boxes/box3.gif);
	background-repeat: no-repeat;
	background-position: 100% 0;
}
.bt3 div {
	width:18px;
	height:17px;
	background:url(images/boxes/box3.gif) 0 0 no-repeat;
}
.bb3 {
	height:17px;
	background-color: #000066;
	background-image: url(images/boxes/box3.gif);
	background-repeat: no-repeat;
	background-position: 100% 100%;
	margin-top: 0;
	margin-right: -12px;
	margin-bottom: 0;
	margin-left: -6px;
}
.bb3 div {
	width:18px;
	height:17px;
	background:url(images/boxes/box3.gif) 0 100% no-repeat;
}
.box3 h1 {


margin:0;
padding:0px;
background:#efece6;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: bold;
color: #0000CC;
}
.box3   label {
	font-size: 10px;
	font-weight: bold;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #0000CC;
}
.box3 text {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	text-align: justify;
}
.box3 p, .box3 ul {
margin:0;
background:#fff;
padding: 2px;
}
.box3 li {
	margin:0 0 0 2em;
	padding:0;
}

.box3  h2 {
	margin:0;
	padding:0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bold;
	color: #000066;
	background-color: #AEAEFF;
}
.box3 h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	margin: 0px;
	padding: 0px;
}
.box3 commentLabel {
	font-size: 12px;
	font-weight: bold;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #0000CC;
}
.box3 commentText {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-align: justify;
}





.box4 {
	padding-top: 0;
	padding-right: 12px;
	padding-bottom: 0;
	padding-left: 0px;
	background-color: #CCCCFF;
	background-image: url(images/boxes/borders_right4.gif);
	background-repeat: repeat-y;
	background-position: 100% 0;
}
.bi4 {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 6px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	background-color: #CCCCFF;
	background-image: url(images/boxes/borders_left4.gif);
	background-repeat: repeat-y;
	background-position: 0 0;
}
.bt4 {
	height:17px;
	background:url(images/boxes/box4.gif) 100% 0 no-repeat;
	margin-top: 0;
	margin-right: -12px;
	margin-bottom: 0;
	margin-left: -6px;
}
.bt4 div {
	width:18px;
	height:17px;
	background:url(images/boxes/box4.gif) 0 0 no-repeat;
}
.bb4 {
	height:17px;
	background-color: #000066;
	background-image: url(images/boxes/box4.gif);
	background-repeat: no-repeat;
	background-position: 100% 100%;
	margin-top: 0;
	margin-right: -12px;
	margin-bottom: 0;
	margin-left: -6px;
}
.bb4 div {
	width:18px;
	height:17px;
	background:url(images/boxes/box4.gif) 0 100% no-repeat;
}
.box4 h1 {
	margin:0;
	padding:0px;
	background:#efece6;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #0000CC;
}
.box4   label {
	font-size: 10px;
	font-weight: bold;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #0000CC;
}
.box4 text {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	text-align: justify;
	background-color: #CCCCFF;
}
.box4 p, .box4 ul {
	margin:0;
	padding: 2px;
	font-size: 12px;
}
.box4 li {
	margin:0 0 0 2em;
	padding:0;
}

.box4 h2 {
	margin:0;
	text-align: center;
	padding:0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bold;
	color: #FFFF33;
	background-color: #343399;
}

.box4 h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	margin: 0px;
	padding: 0px;
	text-align: center;
}
.box4 commentLabel {
	font-size: 12px;
	font-weight: bold;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #0000CC;
}
.box4 commentText {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-align: justify;
}




.box5 {
background:#fff url(images/boxes/borders_right5.gif) 100% 0 repeat-y;
padding-top: 0;
padding-right: 12px;
padding-bottom: 0;
padding-left: 0;
}
.bi5 {
background:#fff url(images/boxes/borders_left5.gif) 0 0 repeat-y;
padding-top: 0;
padding-right: 0;
padding-bottom: 0;
padding-left: 12px;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
}
.bt5 {
	height:17px;
	margin:0 -12px;
	background:url(images/boxes/box5.gif) 100% 0 no-repeat;
}
.bt5 div {
	width:18px;
	height:17px;
	background:url(images/boxes/box5.gif) 0 0 no-repeat;
}
.bb5 {
	height:17px;
	margin:0 -12px;
	background:url(images/boxes/box5.gif) 100% 100% no-repeat;
}
.bb5 div {
	width:18px;
	height:17px;
	background:url(images/boxes/box5.gif) 0 100% no-repeat;
}
.box5 h1 {
margin:0;
padding:0px;
background:#efece6;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: bold;
color: #0000CC;
}
.box5 label {
	font-size: 12px;
	font-weight: bold;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #0000CC;
}
.box5 text {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-align: justify;
	background-color: #FFFFFF;
}
.box5 p, .box5 ul {
	margin:0;
	background:#fff;
	padding: 2px;
}
.box5 li {
	margin:0 0 0 2em;
	padding:0;
}

.box5  h2 {
	margin:0;
	padding:0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #000066;
	background-color: #AEAEFF;
}
.box5 h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	margin: 0px;
	padding: 0px;
}
.box5 commentLabel {
	font-size: 12px;
	font-weight: bold;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #0000CC;
}
.box5 commentText {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-align: justify;
}



#align-top {
	vertical-align: top;
}
#tdSidebar3 {
	padding-right: 5px;
	padding-left: 5px;
	background-color: #CCCCFF;
	text-align: center;
}
#tdSidebar2 {
	vertical-align: top;
	padding-left: 8px;
}

#tdsidebartop {
	background-image: url(images/sidebars/sidebar-top.gif);
	background-repeat: no-repeat;
	background-position: left top;
}

 sidebar buttons 
.clear { /* generic container (i.e. div) for floating buttons */
    overflow: hidden;
    width: 100%;
}

a.button {
	color: #000000;
	display: block;
	float: left;
	height: 24px;
	margin-right: 6px;
	padding-right: 18px; /* sliding doors padding */
	text-decoration: none;
	background-attachment: scroll;
	background-color: transparent;
	background-image: url(images/sidebars/sidebar-button-a.gif);
	background-repeat: no-repeat;
	background-position: right top;
	padding-left: 0px;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	font-style: normal;
	font-weight: bold;
	font-variant: normal;
	margin-top: 3px;
	margin-bottom: 3px;
	margin-left: 5px;
}

a.button span {
	display: block;
	line-height: 14px;
	background-color: transparent;
	background-image: url(images/sidebars/sidebar-button-span.gif);
	background-repeat: no-repeat;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 18px;
	width: 120px;
} 
a.button:hover {
	background-position: bottom right;
	color: #0000FF;
	outline: none;
}
a.button:hover  span {
    background-position: bottom left;
    padding: 6px 0 4px 18px; /* push text down 1px */
} 


/* Tubes and Tube Frames */
#tube1 {
	margin: 0px;
	padding: 0px;
	height: 74px;
	width: 57px;
}
#tube2 {
	height: 74px;
	width: 24px;
	margin: 0px;
	padding: 0px;
}
#frame-left-mid {
	background-image: url(images/featured/frame-left-mid.jpg);
	background-repeat: repeat-y;
	width: 10px;
	background-position: right;
	margin: 0px;
	padding: 0px;
}
#frame-right-mid {
	background-image: url(images/featured/frame-rt-mid.jpg);
	background-repeat: repeat-y;
	background-position: left;
	margin: 0px;
	padding: 0px;
}
#frame-right-bot {
	height: 30px;
	width: 30px;
}
#frame-top-mid {
	background-image: url(images/featured/frame-top-mid.jpg);
	background-repeat: repeat-x;
	width: 267px;
	height: 11px;
	background-position: bottom;
	margin: 0px;
	padding: 0px;
}
#frame-top-left {
	background-image: url(images/featured/frame-top-left.jpg);
	background-repeat: no-repeat;
	background-position: left bottom;
	height: 11px;
	margin: 0px;
	padding: 0px;
}
#frame-corner-UL {
	background-image: url(images/featured/frame-corner-UL.jpg);
	background-repeat: no-repeat;
	background-position: bottom;
	height: 11px;
	width: 10px;
	margin: 0px;
	padding: 0px;
}
#frame-corner-UR {
	background-image: url(images/featured/frame-corner-UR.jpg);
	background-repeat: no-repeat;
	background-position: left;
	height: 23px;
	width: 10px;
	margin: 0px;
	padding: 0px;
}
#frame-corner-LL {
	background-image: url(images/featured/frame-corner-LL.jpg);
	background-repeat: no-repeat;
	background-position: top;
	height: 19px;
	width: 10px;
}
#frame-bot-left {
	background-image: url(images/featured/frame-bot-left.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 19px;
	width: 16px;
	margin: 0px;
	padding: 0px;
}
#frame-bot-mid {
	background-image: url(images/featured/frame-bot-mid.jpg);
	background-repeat: repeat-x;
	background-position: top;
	height: 19px;
	width: 267px;
	margin: 0px;
	padding: 0px;
}



/* header contents : menu tabs, goldbar...etc */

#tdGoldBar {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: left;
	font-size: 12px;
	padding-bottom:0px;
	margin-bottom: 0px;
}
#tdGoldBarLoggedIn {
	font-family: Arial, Helvetica, sans-serif;
	text-align: right;
	font-size: 14px;
	font-weight: bold;
	padding-right: 5px;
	padding-bottom:0px;
	margin-bottom: 0px;
}

#tdMenuTabs {
	vertical-align: bottom;
	padding-left: 0px;
}
#tdMenuTabsText {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #FFFFFF;
	height: 30px;
	vertical-align: bottom;
	padding-left: 50px;
	font-weight: bold;
}

    
.animatedtabs{
	overflow: hidden;
	width: 100%;
	font-size: 16px; /*font of menu text*/
	font-family: Arial, Helvetica, sans-serif;
}


.animatedtabs ul{
list-style-type: none;
margin: 0;
margin-left: 16px; /*offset of first tab relative to page left edge*/
padding: 0;
}

.animatedtabs li{
float: left;
margin: 0;
padding: 0;
}

.animatedtabs a{
float: left;
position: relative;
top: 5px; /* 1) Number of pixels to protrude up for selected tab. Should equal (3) MINUS (2) below */
background: url(images/tabs/tab-left-blue.gif) no-repeat left top;
margin: 0;
margin-right: 3px; /*Spacing between each tab*/
padding: 0 0 0 13px; /* this padding is changed depending on the size of the left image */
text-decoration: none;

}

.animatedtabs a span{
float: left;
position: relative;
display: block;
background: url(images/tabs/tab-right-blue.gif) no-repeat right top;
padding: 5px 18px 3px 5px; /* 2) Padding within each tab. The 3rd value, or 3px, should equal (1) MINUS (3) --the second
value (rt-side padding) should be adjusted if the left image changed to balance out the space on each side of the tab*/
font-weight: bold;
color: black;
}

/* Commented Backslash Hack hides rule from IE5-Mac \*/
.animatedtabs a span {float:none;}
/* End IE5-Mac hack */


.animatedtabs .selected a{
background-position: 0 -50px;
top: 0;
}

.animatedtabs .selected a span{
background-position: 100% -50px;
color: black;
padding-bottom: 8px; /* 3) Bottom padding of selected tab. Should equal (1) PLUS (2) above */
top: 0;
}

.animatedtabs a:hover{
background-position: 0% -50px;
top: 0;
}

.animatedtabs a:hover span{
background-position: 100% -50px;
padding-bottom: 8px; /* 3) Bottom padding of selected tab. Should equal (1) PLUS (2) above */
top: 0;
}



#session  #username, #session  #password {
	background:#FFF;
	color:#222;
	width:100px;
	float:none;
	display:inline;
	padding:1px;
	border:1px solid #000;
	border-color:#000 #333 #666 #000;
	font-size:11px;
	margin:0 10px 0 0px;
	cursor:text;
	vertical-align: middle;
}

#session a {
	color:#000000;
}
#session a:hover{
	color:#000066;
}

#session label {
	margin:0;
	font-weight:bold;
	padding: 0;
}
#session input {
	margin-right:0 !important;
	font-size: 14px;
}

.button2 {
	color: #000000;
	width: 100px;
	float: left;
	height: 18px;
	margin-left: 5px;
	text-decoration: none;
	border:none;
	background-attachment: scroll;
	background-color: transparent;
	background-image: url(images/login/button2.png);
	background-repeat: no-repeat;
	background-position: right top;
	font-style: normal;
	font-variant: normal;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	vertical-align: middle; 
}

.button2:hover {
	background-position: bottom right;
	outline: none;
}

.button2_signin {
	color: #000000;
	width: 100px;
	float: left;
	height: 18px;
	margin-left: 5px;
	text-decoration: none;
	border:0;
	background-attachment: scroll;
	background-color: transparent;
	background-image: url(images/login/button2_signin.png);
	background-repeat: no-repeat;
	background-position: right top;
	font-style: normal;
	font-variant: normal;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	vertical-align: middle; 
}

.button2_signin:hover {
	background-position: bottom right;
	outline: none;
}

#tdQuestion {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	padding-left: 5px;
}
#tdAnswer {
	padding-left: 25px;
	padding-right: 25px;
}
#tdAnswer p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding-bottom: 15px;
}

#mainframeContents {
	padding-left: 25px;
	padding-right: 25px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	width: 100%;	
}
#mainframeContents h1{
	padding-left: 25px;
	padding-right: 25px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 24px;
}

 
#projPadding {
	padding-left: 20px;
}
#pageNumbers {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding-right: 20px;	
	padding-top: 5px;
	text-decoration: none;
}
#pageNumber{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	text-decoration: none;
	padding-top: 5px;
	padding-bottom: 5px;
	font-weight: bold;
	color: #000099;
}

#viewLocations{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding-left: 20px;
}

#tdPadLeft {
	padding-left: 20px;
}
#tdCategoryHome {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #000066;
	padding-left: 20px;
}

#tdCategoryTitle {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: 400;
	padding-left: 20px;
	background-image: url(images/boxes/catGradient.gif);
	background-repeat: repeat-y;
	background-position: left top;
	color: #FFFF33;
}

#tdCategoryTitle a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #FFFF33;
}

#tdCategoryTitle a:hover
{
	text-decoration: underline;
}

#tdCategoryTitle a:visited  
{text-decoration: none}

.catLink{
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 600;
	text-decoration: none;
	font-size: 1.1em;
}

.catLinkArrow{
	padding: 0px;
	margin-left: 20px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;	
}

.sectionTitleBox {
	margin: 0px;
	font-size: 24px;
	font-family: Arial, Helvetica, sans-serif;
	text-align: left;
	font-weight: 400;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 0px;
	padding-left: 20px;
	border-bottom:1px solid #000;
	width: 90%;
}

.adminOptions{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: 600;
	border-bottom:1px solid #000;	
	padding-left: 20px;
}

.catUnused {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #333333;
	padding-left: 20px;
}

.messages{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding-left: 20px;
}

.messageLabel {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	vertical-align: top;
	font-weight: bold;
	padding-top:12px;
	padding-right:5px;
	text-align: right;
}

.messageContent {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding-top:10px;
}
.errors {
	font-weight: bold;
	font-size: 14px;
	color: red;
	margin-top: 0;
}
