/***************************************************************************
 *                             default.css
 *                            ------------------
 *	 AUTHOR				  : Kevin K. Nelson
 *   EMAIL                : knelson@taoti.com
 *   COPYRIGHT            : (C) 2005 Taoti Enterprises International, Inc.
 *                           -  ALL RIGHTS RESERVED
 *
 *   LAST UPDATED         : 2005-10-18
 *
 *   PURPOSE              : To provide a default template for CSS tag
 *                          definitions and consistent class names as well
 *                          as a consistent layout for where definitions go.
 *                          The order of definitions for this CSS page are:
 *                            * tag definitions
 *                            * table classes (e.g. classes for <td> or <tr>)
 *                            * text classes (e.g. classes for <p>)
 *                            * anchor tag classes (for various link classes)
 *
 ***************************************************************************/

/*******************************************************************
TAG DEFINITIONS
   - only change colors, font-family, and size as needed.  Try not
     to write too many tag definitions beyond what's here
*******************************************************************/
html {
}
body {
	scrollbar-face-color: 		#6A0100;
	scrollbar-shadow-color:		#400000;
	scrollbar-highlight-color:	#C60000;
	scrollbar-track-color: 		#979797;
	scrollbar-arrow-color: 		#C74C00;
	margin:						0px 0px 0px 0px;
	background-color:			#000000;
	background-image:			url(../images/body_bkgnd.jpg);
	background-repeat:			repeat-x;
}
td {
	vertical-align:				top;
	padding:					0px 0px 0px 0px;
}
body, td, div, p, blockquote, h1, h2, h3, h4, h5, h6, ul, ol {
	font-family:				Century Gothic, Arial, Helvetica, sans-serif;
	font-size:					12px;
	color:						black;
}
p, blockquote, h1, h2, h3, h4, h5, h6, ul, ol {
	margin-top:					0px;
	margin-bottom:				12px;
}
textarea, input, select {
	font-family:				Verdana, Arial, Helvetica, sans-serif;
	font-size:					10px;
}

legend { 
	color:						black;
	font-size:					16px;
}

fieldset{ display:				block; }
form   	{ margin:				0px 0px 0px 0px; }
img    	{ border-style:			none; }

a:link, a:visited { color:		#4D60FA; }
a:hover, a:active { color:		#CC0000; }

/*******************************************************************
TABLE CLASSES
   - these are some default classes that many of our applications
     use.  If this is a static site with no applications, then
	 removing these would probably not be harmful.  Otherwise,
	 change colors, margins, etc., as needed when they do not
	 have the desired look.  If I might work on the site, there
	 is a good chance that I will want these classes, though.
*******************************************************************/
.margin_centered {
	margin-left:		auto;
	margin-right:		auto;
}
.left_form_cell {
	padding:			3px 3px 3px 3px;
	vertical-align:		middle;
	text-align:			left;
}
.right_form_cell {
	padding:			3px 3px 3px 3px;
	vertical-align:		middle;
	text-align:			right;
}
.left_info_cell {
	padding:			5px 5px 5px 5px;
	font-weight:		bold;
	border-style:		solid;
	border-width:		0px 0px 1px 0px;
	border-color:		#DDDDDD;
	vertical-align:		middle;
}
.right_info_cell {
	padding:			5px 5px 5px 5px;
	vertical-align:		middle;
}
.title_cell {
	font-weight:		bold;
	font-size:			14px;
	padding:			3px 3px 3px 3px;
}
.content_cell {
	padding:			3px 3px 3px 3px;
}
.row1 { background-color:#FFFFFF; }
.row2 { background-color:#EDEDED; }

/*******************************************************************
FORM CLASSES
   - so that, by default, forms are of the right size, etc.
*******************************************************************/
input.default    { width: 200px; }
textarea.default { width: 200px; height:80px; }

/*******************************************************************
TEXT CLASSES
   - I want these to be our default text definitions across the 
     board...so that when any of us are on a site, we can simply
	 type "class='small'" or "class='right'"into a tag and know that 
	 it's going to work
*******************************************************************/
.page_title {
	border-bottom-color:	#67605A;
	border-bottom-style:	dotted;
	border-bottom-width:	3px;
	color:					#840403;
	font-size:				24px;
	font-weight:			bold;
	letter-spacing:			.15em;
}
.heading {
	border-bottom-color:	#67605A;
	border-bottom-style:	dotted;
	border-bottom-width:	1px;
	color:					#840403;
	font-size:				20px;
	font-weight:			bold;
	letter-spacing:			.15em;
}
.small_descr {
	font-size:			10px;
	font-weight:		bold;
}
.lined {
	border-style:		solid;
	border-width:		0px 0px 1px 0px;
	border-color:		#840403;
}
.xsmall { font-size:	9px; }
.small  { font-size: 	10px; }
.normal { font-size: 	12px; }
.medium { font-size:	14px; }
.large  { font-size: 	16px; }
.xlarge { font-size:    18px; }
.huge   { font-size: 	20px; }

.left    { text-align: 	left; }
.center  { text-align: 	center; }
.right   { text-align: 	right; }
.justify { text-align: 	justify; }

.top    { vertical-align: middle; }
.middle { vertical-align: middle; }
.bottom { vertical-align: bottom; }

.bold   { font-weight:	bold; }
.italic { font-style:	italic; }

.color_light { color:	orange; }
.color_dark  { color:	#840403; }

.block      { display:	block; }
.no_display { display:	none; }

/*******************************************************************
OUR PHP LIBRARY'S status_message() CLASS DEFINITIONS
   - like the table classes, these are specific to the application,
     and can be removed for static sites.
*******************************************************************/
.status_container {
	margin:				20px 10px 20px 10px;
	padding:			3px 5px 3px 10px;
	border-style:		solid;
	border-color:		#CCCCCC;
	border-width:		0px 0px 0px 1px;
}
.status_title {
	font-size:			16px;
	font-weight:		bold;
	color:				navy;
	border-style:		solid;
	border-width:		0px 0px 1px 0px;
	border-color:		navy;
}
.status_message {
	font-size:			12px;
	color:				navy;
}

/*******************************************************************
ANCHOR TAG CLASSES
   - like the table classes, these are specific to the application,
     and can be removed for static sites.
*******************************************************************/
.some_class a:link, .some_class a:visited {
	color:				black;
	text-decoration:	none;
}
.some_class a:hover, .some_class a:active {
	color:				red;
	text-decoration:	underline;
}
.footer-text {
	color:				#846868;
	font-family:		Century Gothic, Verdana, Arial;
	font-size:			10px;
	font-variant:		small-caps;
	letter-spacing:		0.1em;
	line-height:		1.2em;
	margin:				17px 0px 0px 0px;
	text-align:			right;
}
a.footer-links:link, a.footer-links:visited {
	color:				#846868;
	font-family:		Century Gothic, Verdana, Arial;
	font-size:			10px;
	font-variant:		small-caps;
	letter-spacing:		0.1em;
	text-decoration:	none;
}
a.footer-links:hover, a.footer-links:active {
	color:				#FFFFFF;
	font-family:		Century Gothic, Verdana, Arial;
	font-size:			10px;
	font-variant:		small-caps;
	letter-spacing:		0.1em;
	text-decoration:	none;
	background-color:	#5C0000;
}
/*
Added by Keith

*/

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;
	background-color: #790103;
}

.mainlayout #container {
	width: 100%; 
	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. */
	background-color: #FFFFFF;
}
.mainlayout #header {
	background-image:url(../../images/template/bg_header.jpg);
	background-repeat:repeat-x;
	height: 144px;
	width: 100%;
} 
.mainlayout #contentContainer {
	width: 910px;
}
.mainlayout #mainContent {
	width:	690px;
	padding: 0px 0px 0px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-color:#FFFFFF;
	float: left;
}
.mainlayout #middle {
	padding: 0px;
	background-color:#FFFFFF;
}
.mainlayout #footer {
	background-image:url(../../images/template/bg_footer.jpg);
	background-repeat: repeat-x;
	height: 222px;
	clear: both;
	width: 100%;
} 
.mainlayout #footer td {
	font-family: Century Gothic, Arial, Verdana;
	color: #FFFFFF;
	font-size: 9px;
}
.mainlayout #footer a {
	font-family: Century Gothic, Arial, Verdana;
	color: #FFFFFF;
	font-size: 9px;
	text-decoration: none;
}


.rightNav{
	text-align:right;
	padding-right:10px;
	width:189px;
	background-image:url(../images/left_bkgnd2.gif);
	background-repeat:repeat-y;
	float: left;
}
/*
.rightNav_text:link {
	color:	#000000;
	text-align:right;
	font-family: Arial;
	font-size:13px;
	font-variant:small-caps;
	font-weight:900;
	letter-spacing:0.1em;
	text-decoration:none;

}
.rightNav_text:visited {
	color:	#000000;
	text-align:right;
	font-family: Arial;
	font-size:13px;
	font-variant:small-caps;
	font-weight:900;
	letter-spacing:0.1em;
	text-decoration:none;

}
.rightNav_text:hover {
	color:	#red;
	background-color:gray;
	text-align:right;
	font-family: Arial;
	font-size:13px;
	font-variant:small-caps;
	font-weight:900;
	letter-spacing:0.1em;
	text-decoration:none;

}*/





.rightNav ul {

    padding:0;

    margin:0px;

    float:right;
    
}
.rightNav li {


	
    position:relative;

    list-style:none;

    padding:0;

    margin:0;

    font-size:10px;

}
.rightNav a:link, .rightNav a:visited {
    display:block;

    text-decoration:none; 
    color:	#000000;
	text-align:right;
	font-family: Arial;
	font-size:11px;
	font-variant:small-caps;
	font-weight:900;
	letter-spacing:0.1em;
	text-decoration:none;

}
.rightNav a:hover{

    color:#76070E; 

    background:#ccc; 

}

.rightNav :hover > a{

    color:#76070E; 

    background:#ccc;

}



.rightNav ul :hover > a {

    color:#76070E; 

    background:#ccc;

}

.rightNav h1 {
    	color:	#76070E;
	text-align:right;
	text-decoration: none;
	margin-left:10px;
	font-family: Arial;
	font-size:17px;
	text-transform: uppercase;
	font-weight:900;
	letter-spacing:0.1em;
	border-bottom:1px dashed #76070E
    	
}

.navigation td {
	color: #FFFFFF;
	font-size: 10px;
}
.navigation td a {
	color: #FFFFFF;
	text-decoration: none;
}
.navigation td a:hover {
	color: #CCCCCC;
	text-decoration: underline;
}

