@charset "utf-8";
/* CSS Document */

<!-- 
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #ffffff;
	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: #FFFFFF url(/images/backgrounds/whtBkg_gradBot_solid.gif) repeat-x left top;*/
}
/* Set the body ID to one of these to create *
 * a "I'm here" effect on the Nav Bar.       */
body#home a#homeLink,
body#staff a#staffLink,
body#managers a#managersLink,
body#admins a#adminsLink,
body#contacts a#contactsLink,
body#forms a#formsLink,
body#pass a#passLink {
	color: #777777;
}
a {
	color: #336699;
	text-decoration: none;
}
a:visited {
	color: #003366;
}
a:hover {
	color: #a00;
	text-decoration: underline;
}
.cmdFlatY {
	BORDER-RIGHT: #000000 1px outset; BORDER-TOP: #e0e0e0 1px solid; FONT-WEIGHT: normal; FONT-SIZE: 10px; BORDER-LEFT: #e0e0e0 1px solid; COLOR: #000000; BORDER-BOTTOM: #000000 1px solid; FONT-FAMILY: Verdana; BACKGROUND-COLOR: #ffeb9d
}
img {
	border: none;
}
/* 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.
*/
.twoColElsRtHdr #container { 
	
} 
.twoColElsRtHdr #header { 
	padding: 0;  /* 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. */
	margin: 0;
	background: #FFFFFF url(/images/backgrounds/whtBkg_gradBot_solid.gif) repeat-x left bottom;
} 
.twoColElsRtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
/* 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.
*/
.twoColElsRtHdr #mainContent {
  	width: 760px;   /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColElsRtHdr #leftCol {
	width: 350px;
	margin: 0 10px 0 20px;
	padding: 0;
	padding-bottom: 15px;
	float: left;
	background: url(/images/gryBubble/gry_brdr_wht_bot_350px.gif) no-repeat left bottom;
}
.twoColElsRtHdr #centerCol {
	width: 350px;
	margin: 0 205px 0 205px;
	padding: 0;
	padding-bottom: 7px;
	background: url(/images/gryBubble/gry_brdr_wht_bot_350px.gif) no-repeat left bottom;
}
.twoColElsRtHdr #rightCol {
	width: 350px;
	float: left;
	margin: 0 20px 0 10px;
	padding: 0;
	padding-bottom: 15px;
	background: url(/images/gryBubble/gry_brdr_wht_bot_350px.gif) no-repeat left bottom;
}
.twoColElsRtHdr #dblCol {
	width: 550px;
	float: left;
	margin: 0 10px 0 0;
	padding-bottom: 15px;
}
.twoColElsRtHdr p {
	font-size: 10px;
	margin-bottom: 5px;
}
.twoColElsRtHdr #footer { 
	clear: both;
	margin-top: 10px;
	padding: 0px 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #FFFFFF url(/images/backgrounds/whtBkg_gradBot_solid_flip.gif) repeat-x left top;
} 
.twoColElsRtHdr #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;
}
#topLinks {
	position: relative;
	left: 700px;
	bottom: 60px;
	font-size: 10px;
	width: 200px;
}
#menu {
	text-align: center;
	padding-bottom: 5px;
}
#menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
#menu li {
	display: inline;
}
#menu a {
	font: bold 10px/12px Verdana, Arial, Helvetica, sans-serif;
	font-weight: normal;
	text-decoration: none;
	display: inline;
	border-right: 1px solid #AAA;
	margin: 0;
	padding-right: 10px;
}
.twoColElsRtHdr #whtBub {
	background: url(/images/gryBubble/gry_brdr_wht_body_350px.gif) repeat-y;
	width: 350px;
	margin: 0;
	padding: 0;
	height: 100%;
}
.twoColElsRtHdr #whtBub h1 {
	background: url(/images/gryBubble/gry_rnd_350px.gif) no-repeat;
	font-size: 12px;
	text-align: left;
	vertical-align: middle;
	height: 20px;
	padding: 3px 0 0 5px;
	margin-bottom: 10px;
}
.twoColElsRtHdr #whtBub h2 {
	font-size: 10px;
	font-weight: bold;
	margin: 5px;
}
.twoColElsRtHdr #whtBub p {
	margin: 0 5px;
	padding-bottom: 5px;
}
.twoColElsRtHdr #whtBub hr {
	width: 344px;
	margin: 5px 0 5px 3px;
}
.twoColElsRtHdr #whtBub ul {
	margin-bottom: 0;
	padding-right: 3px;
}
.twoColElsRtHdr #whtBub li {
	list-style-image: url(/images/gryBubble/dbl_arrw_bullet.gif);
}
.twoColElsRtHdr #whtBub img {
	padding: 0 53px;
}
.twoColElsRtHdr #whtBub ol {
	margin: 0;
	padding: 0 5px 0 25px;
	font-size: 9px;
}
.twoColElsRtHdr #dblBubl {
	background: url(/images/gryBubble/gry_brdr_wht_body_740px.gif) repeat-y;
	width: 740px;
	margin: 0;
	padding: 0;
}
.twoColElsRtHdr #dblBubl h1 {
	background: url(/images/grybubble/gry_rnd_740px.gif) no-repeat;
	font-size: 12px;
	text-align: left;
	vertical-align: middle;
	height: 20px;
	padding: 3px 0 0 5px;
	margin-bottom: 10px;
	width: 100%;
}
.twoColElsRtHdr #dblBubl h2 {
	font-size: 10px;
	font-weight: bold;
	margin: 10px;
}
.twoColElsRtHdr #dblBubl p {
	margin: 10px 10px;
	padding-bottom: 5px;
}
.twoColElsRtHdr #dblBubl hr {
	width: 99%;
	margin: 5px 0 5px 3px;
}
.twoColElsRtHdr #dblBubl ul {
	margin-bottom: 0;
	padding-right: 3px;
}
.twoColElsRtHdr #dblBubl li {
	list-style-image: url(/images/gryBubble/dbl_arrw_bullet.gif);
}
.twoColElsRtHdr #dblBublBot {
	background: url(/images/grybubble/gry_brdr_wht_bot_740px.gif) no-repeat left bottom;
	clear: both;
}
#back {
	position: relative;
	left: 650;
	font-size: 10px;
}
/* Mentor whyBub styles */
#mentorEntry p {
	text-align: left;
}

#mentorEntry img {
	float: left; 
	vertical-align:top; 
	margin-right: 20px;
}

.twoColElsRtHdr #leftBoldDescriptor {
	font-size: 12px;
	font-weight: bold;
	width: 100px;
	margin-top: 5px;
}
.twoColElsRtHdr #commentHistory {
	margin: 10px 30px;
	font-size: 10px;
}
.twoColElsRtHdr #commentor {

}
.twoColElsRtHdr #commentee {

}
.twoColElsRtHdr #commentDate {
	padding-bottom: 10px;
}
.twoColElsRtHdr #comments {
	float: left;
	margin: 7px 30px 0 5px;
}
/* From Veritas.css */

.RightNavText {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bolder;
	text-align: center;
	vertical-align: middle;
	color: #003366;
	text-decoration: none;
}
.Text {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: normal;
	color: #000000;
	text-decoration: none;
}
.TextHeader {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bolder;
	color: #000000;
}
.TextHeaderLogin {

	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14pt;
	font-weight: bold;
	color: #000000;
}

/**************************
 * Login Page Styles      *
 **************************/

body {
	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. Included here because layout.css is not included in login.asp */
}
/* wrapper for Login page which sets font properties, width, and center alignment. */
#loginWrapper {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	text-align: center;
	width: 500px;
	margin-left: auto;
	margin-right: auto;
	padding: 10px;
}
#login {
	line-height: 3em;
}
#loginWrapper p {
	font-weight: normal;
	color: #000000;
	text-decoration: none;
	padding: 0 100px;
	text-align: left;
}
.label {
	margin-right: 5px;
	padding-right: 1px;
	font-weight: bold;
}
.form a {
	text-align: center;
}
/* Header Style */
#headerWrapper {	
	font-family: Arial, "Microsoft Sans Serif", Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bolder;
	padding: 0 10px 10px 10px;
	margin: 0 10px 0 10px;
}
/* End Header Style */
.copyright {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: normal;
	color: #000000;
	text-decoration: none;
	margin-top: 1em;
}
/*----------------------------------------------------------*
 * Horizontal Navigation Bar          	   				    *
 *   Created using an unordered list floated to the left.   *
 *   The links are stylized to appear as buttons.           *
 *   A hover effect is used to change the background color. *									
 *----------------------------------------------------------*/
ul.mainNav {
	font-size: 12px;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
/* display: block makes the entire list element selectable */
ul.mainNav li {
	display: block;
}
/* link styling, uses the top portion of the image */
ul.mainNav a {
	background: url(/images/button_soft_int.png);
	text-align: left;
	vertical-align: middle;
	padding: 3px;
	padding-left: 18px;
	margin-top: 0;
	color: #333333;
	text-decoration: none;
	width: 160px;
}
/* hover over effect, uses the middle portion of the image */
ul.mainNav a:hover {
	color: #777777;
	background-position: 0 -42px;
}
/* button select/pressed effect, uses the bottom portion of the image */
ul.mainNav a:active {
	background-position: 0 -84px;
}
/* create a blank list element with id="firstLI" to start the nav bar */
ul.mainNav li#firstLI {
	background: url(/images/button_soft_top.png) center top no-repeat;
	width: 160px;
	background-position: 0 5px;
	line-height: 25px;
}
/* create a blank list element with id="lastLI" to end the nav bar */
ul.mainNav li#lastLI {
	background: url(/images/button_soft_bottom.png) no-repeat;
	line-height: 25px;
}
/* End Main Navigation Styles */

/***************************************
 *	Link Box Styles: 				   *
 *		Grouped as an unordered list   *
 ***************************************/
/* For use with captions to bold the text */
.captHeader {
	font-weight: bold;
	padding-left: 50px;
}

/* linkList div declaration */
div.linkList {
	float: left;
	width: 200px;
	font-size: 10px;
}
div.linkList ul {
	margin-left: 5px;
}
/* Blue Arrow style buttons for unordered list elements inside the linkList div */
div.linkList li {
	list-style-type: none;
	background-image: url(/images/icons/arrow.gif);
	background-repeat: no-repeat;
	padding: 0 0 1px 15px;
}
div.linkList a {
	text-decoration: none;
	color: #000000;
}
/************************
 * End Link Box Stlying *
 ************************/

/* Announcements Div, float to the left
   Currently is placed next to the Links box */
div.announce {
	float: left;
	font-size: 10px;
	font-weight: bold;
}

/* Red, Important Text */
.important {
	color: #FF0000;
}

/* Table Styles 
		Currently going with a gray/silver Apple-esque theme */
.tableCapt {
	font-size: 10px;
	font-weight: normal;
	padding-left: 15px;
}
table{
	vertical-align: middle;
}
/* creates padding around cell contents and sets font size */
td,th{
	padding: 3px 5px 2px 5px;
	font-size: .6em;
}
/* header rows are dark gray with black font */
table.dkGryTbl th {
	color: #000000;
	font-size: .7em;
	background-color: #CCCCCC;
}
table.gryTbl td,th {
	background-color: #cccccc;
}
table.gryTbl th {
	color: #ffffff;
	background-color: #666666;
}
table.gryTbl .bold {
	font-weight: bold;
}

/***************
 * Form Styles *
 ***************/
 fieldset { 
	float: left;
	clear: left; 
	margin: 1.5em 25px; 
	padding: 0; 
	/*border: 1px solid #BFBAB0;*/
	border: none;
	font: 12px Verdana, Arial, Helvetica, sans-serif;
} 

legend {  
	margin-left: 1em;  
	color: #000000;  
	font-weight: bold;
	padding: 0; 
} 
fieldset ol {  
	padding: 1em 1em 0 1em;  
	list-style: none; 
} 
fieldset li {  
	float: left;
	clear: left;
	width: 100%;
	padding-bottom: 1em; 
} 
fieldset.submit {  
	
	width: auto;
	padding-left: 10em;
	border-style: none;
	background-color: transparent;
	background-image: none;
}
label {  
	float: left;  
	width: 10em;  
	margin-right: 1em; 
}
#err_msg {
	vertical-align: top;
	color: #a00a00;
	font-size: 10px;
}
.selected_item
{
    BACKGROUND-COLOR: #d2dbea
}

.opposition_bg
{
	border-color:#c0c0c0;
	bordercolorlight: #FFFFFF;
}
.opposition_bg1
{
	background-color: #f1f0da;
	FONT-WEIGHT: bold;
    FONT-SIZE: xx-small;
}
.WhiteText-BlueBack {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #003366;
	border: 0px;
}
.opposition_tbl
{
	border-color: #cacaca;
	bordercolorlight: #FFFFFF
}
.opposition_tbl2
{
	background-color: #003366;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #FFFFFF;
	border: 0px;
}
.tbflat_IN
{
    BORDER-RIGHT: #e0e0e0 1px inset;
    BORDER-TOP: #e0e0e0 1px inset;
    PADDING-LEFT: 3px;
    FONT-SIZE: xx-small;
    BORDER-LEFT: #e0e0e0 1px inset;
    BORDER-BOTTOM: #e0e0e0 1px inset;
    FONT-FAMILY: Verdana;
    TEXT-ALIGN: left
}
.opposition_tbl3
{
	background-color: #f1f0da;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #003366;
	border: 0px;
}
.comm_tbl
{	
	bgcolor: #f1f0da;
}	
--> 
