/***************************************************************************
 *                             
 *                            ------------------
 *	 AUTHOR				  : Kevin Scharnhorst
 *   EMAIL                : kscharnhorst@ksconsulting.com
 *   COPYRIGHT            : (C) 2007 KS Consulting -  ALL RIGHTS RESERVED
 *
 *   LAST UPDATED         : 2007-07-30
 *
 *   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 {
	scrollbar-face-color: 		#FFFFFF;
	scrollbar-shadow-color:		#AAAAAA;
	scrollbar-highlight-color:	#CCCCCC;
	scrollbar-track-color: 		#999999;
	scrollbar-arrow-color: 		#000000;
}
body {
	scrollbar-face-color: 		#FFFFFF;
	scrollbar-shadow-color:		#AAAAAA;
	scrollbar-highlight-color:	#CCCCCC;
	scrollbar-track-color: 		#999999;
	scrollbar-arrow-color: 		#000000;
	margin:						0px 0px 0px 0px;
	background-color:			#000000;
}
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:				8px;
}
textarea, input, select {
	font-family:				Verdana, Arial, Helvetica, sans-serif;
	font-size:					10px;
}
p, blockquote {
	text-align:					justify;
}
legend { 
	color:						black;
	font-size:					16px;
}

form   { margin:				0px 0px 0px 0px; }
img    { border-style:			none; }

a:link, a:visited {
	color:			#FFFFFF;
/*	font-family:	Century Gothic, Arial, Helvetica, sans-serif;
	font-size:		10px; */
}
a:hover, a:active {
	color:			#FFFFFF;
/*	font-family:	Century Gothic, Arial, Helvetica, sans-serif;
	font-size:		10px; */
}

/*******************************************************************
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;
	font-weight:		bold;
	border-style:		solid;
	border-width:		0px 0px 1px 0px;
	border-color:		#DDDDDD;
	vertical-align:		middle;
}
.right_form_cell {
	padding:			3px 3px 3px 3px;
	border-style:		solid;
	border-width:		0px 0px 1px 0px;
	border-color:		#DDDDDD;
	vertical-align:		middle;
}
.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;
	border-style:		solid;
	border-width:		0px 0px 1px 0px;
	border-color:		#DDDDDD;
	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; }

/*******************************************************************
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 {
	font-size:			24px;
	font-weight:		bold;
	color:				#7A270F;
	margin-bottom: 		10px; 
}
.heading {
	font-size:			18px;
	color:				#7A270F;
	font-weight:		bold;
}
.treat_head {
	margin: 			30px 0px 15px 0px; 
	font-size:			18px;
	color:				#7A270F;
	font-weight:		bold;
}
.small_descr {
	font-size:			10px;
	font-weight:		bold;
}
.lined {
	border-style:		solid;
	border-width:		0px 0px 1px 0px;
	border-color:		#7A270F;
}
.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: top; }
.middle { vertical-align: middle; }
.bottom { vertical-align: bottom; }

.bold   { font-weight:	bold; }
.italic { font-style:	italic; }

.color_light { color:	#F58769; }
.color_dark  { color:	#280C03; }

.block      { display:	block; }
.no_display { display:	none; }

span.red { color:red; }
.noborder { border-style: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:				#7A270F;
	border-style:		solid;
	border-width:		0px 0px 1px 0px;
	border-color:		#7A270F;
}
.status_message {
	font-size:			12px;
	color:				#7A270F;
}

/*******************************************************************
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;
}

a.main_nav:link, a.main_nav:visited, a.main_nav:active {
	color:				#6B1200;
	font-size:			14px;
	font-weight:		bold;
	letter-spacing:		2px;
	font-family:		Century Gothic,Arial,Verdana,Helvetica,sans-serif;
	text-decoration:	none;
}
a.main_nav:hover {
	color:				#000000;
	background-color:	#D5AA93;
	padding-top:		2px;
	padding-bottom:		2px;
	font-size:			14px;
	font-weight:		bold;
	letter-spacing:		2px;
	font-family:		Century Gothic,Arial,Verdana,Helvetica,sans-serif;
	text-decoration:	none;
}

a.footer:link, a.footer:visited {
	color:				#FFFFFF;
	font-size:			9px;
	font-family:		Century Gothic,Arial,Verdana,Helvetica,sans-serif;
	text-decoration:	none;
	letter-spacing:		1px;
}
a.footer:hover, a.footer:active {
	color:				#FFFFFF;
	font-size:			9px;
	font-family:		Century Gothic,Arial,Verdana,Helvetica,sans-serif;
	text-decoration:	underline;
	letter-spacing:		1px;
}

a.taoti:link, a.taoti:visited {
	color:				#FFFFFF;
	font-size:			9px;
	font-family:		Century Gothic,Arial,Verdana,Helvetica,sans-serif;
	text-decoration:	none;
	letter-spacing:		1px;
}
a.taoti:hover, a.taoti:active {
	color:				#FFFFFF;
	background-color:	#303030;
	font-size:			9px;
	font-family:		Century Gothic,Arial,Verdana,Helvetica,sans-serif;
	text-decoration:	none;
	letter-spacing:		1px;
}
/*******************************************************************
CSS for duplicated content
*******************************************************************/
.head14 {
	font-family:				Century Gothic, Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bold;
	color: #7A270F;
}
.head16 {
	font-family:				Century Gothic, Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bold;
	color: #7A270F;
}
.bodyText {
	font-family:				Century Gothic, Arial, Helvetica, sans-serif;
	font-size:		12px;
	color:			#2D3D4A;
}
.menuList2 {
	font-family:				Century Gothic, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #013766;
	list-style-image:  url(../images/bullet.jpg);
	margin: 0px;
	padding: 0px;
}

.menuList2 a:link, .menuList2 a:active, .menuList2 a:visited {
	font-family:				Century Gothic, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #013766;
	text-decoration: none;
}

.menuList2 a:hover {
	font-family:				Century Gothic, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #013766;
	text-decoration: underline;
}

.pageNav {
	background-color: #F9F5EC;
	border: 1px solid #EDE6CD;
}
.pageNavTxt {
	font-family:	Century Gothic, Arial, Helvetica, sans-serif;
	font-size:		12px;
	color:			#013766;
}
.pageNavTxt a:link, .pageNavTxt a:active, .pageNavTxt a:visited  {
	text-decoration: underline;
}
.pageNavTxt a:hover {
	color: #013766;
	text-decoration: underline;
}
.topNav {
	font-family:				Century Gothic, Arial, Helvetica, sans-serif;
	color: #013766;
	font-size: 10px;
	text-align: right;
}
.subHead12 {
	font-family:				Century Gothic, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #013766;
}
.imageRight {
	float: right;
	margin-left: 10px;
	padding-left: 10px;
}
.imageLeft {
	float: left;
	padding-right: 10px;
	margin-right: 10px;
}
.bodyList {
	font-family:				Century Gothic, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #2D3D4A;
/*	list-style-image: url(../images/sub/bullet2.gif); */
}
.image_border {
	border:		1px solid #451305;
}

