



/*--------------------*/
/* STANDARD HTML TAGS */
/*--------------------*/


/* BODY */
body {
	background-image: url('../images/bg.gif');
	background-repeat: repeat-y;
	background-position: top center;
	background-color: #262117;
	margin:0;
	padding:0px 0px 30px 0px;
	height:100%;
}
body, p, div, span, ul, ol, blockquote, td
{
	font-family: Arial, Helvetica, San-serif;
	font-size: 9pt;
	color: #443B1D;
	line-height: 1.4;
	vertical-align: top;
	text-transform: inherit;
	margin-top: 0px;
}


/* override ul/ol spacing */
ul, ol {
	margin-top: 10px;
	margin-bottom: 10px;
}

#main_content {
	overflow: hidden;
}

/*
We wanted to justify all content.
But we can't put full justification on .custom_content (my pages) because if they
have centered text it gets overwritten with full justification.
So we need to also have a class that can be applied to center content, that will
overwrite this.
But even still it's not centering... so I don't think we can do it site wide
*/
/*
#main_content p, #main_content div {
	text-align: justify;
}
.center {
	text-align: center;
}
*/






/* IMAGE */
img {
border: 0px; border:none
}

/* add photograph border with shadow */
img.img_square_sample-s
{
	padding: 4px 5px 8px 7px;
	background-image: url(/content/site/images/graphics/image_bg-square-s.png);
	background-repeat: no-repeat;
	background-position: left bottom;
}
img.img_square_sample
{
	padding: 5px 6px 15px 10px;
	background-image: url(/content/site/images/graphics/image_bg-square.png);
	background-repeat: no-repeat;
	background-position: left bottom;
}
img.img_square-s
{
	padding: 4px 5px 8px 7px;
	background-image: url(/content/site/images/graphics/image_bg-square-s.png);
	background-repeat: no-repeat;
	background-position: left bottom;
}
img.img_square
{
	padding: 5px 6px 15px 10px;
	background-image: url(/content/site/images/graphics/image_bg-square.png);
	background-repeat: no-repeat;
	background-position: left bottom;
}
img.img_system
{
	padding: 5px 6px 15px 10px;
	background-image: url(/content/site/images/graphics/image_bg-system.png);
	background-repeat: no-repeat;
	background-position: left bottom;
}

img.img_s
{
	padding: 5px 6px 15px 10px;
	background-image: url(/content/site/images/graphics/image_bg-s.png);
	background-repeat: no-repeat;
	background-position: left bottom;
}

img.img_m
{
	padding: 5px 6px 15px 10px;
	background-image: url(/content/site/images/graphics/image_bg-m.png);
	background-repeat: no-repeat;
	background-position: left bottom;
}

img.img_l
{
	padding: 5px 6px 15px 10px;
	background-image: url(/content/site/images/graphics/image_bg-l.png);
	background-repeat: no-repeat;
	background-position: left bottom;
	
}

img.img_xl
{
	padding: 5px 6px 15px 10px;
	background-image: url(../images/graphics/image_bg-xl.png);
	background-repeat: no-repeat;
	background-position: left bottom;
}

img.img_custom {
	background: url(../images/graphics/image_bg-xl.png) left bottom no-repeat;
	padding: 5px 6px 15px 10px;
	border-right: 1px solid #EEEEEE;
}

input, select, textarea
{
	font-size: 9pt;
}

/* TABLE */
table {
	border: 0px;
}
table td {
	vertical-align: top;
}

/* GENERAL LINKS */
a:link, a:visited, a:active
{
	color: #7E6536;
	text-decoration: none;
	font-weight: bold;
}
a:hover
{
	color: #E9891E;
	text-decoration: none;
	font-weight: bold;
}



/* ERROR REPORTING */
.alert {
	color: #B97200;
	font-weight: bold;
	}
.alert a:link, .alert a:visited, .alert a:hover, .alert a:active {
	color: #B97200;
	}
.error {
	color: #B97200;
	font-weight: bold;
	padding: 10px;
	}
.error a:link, .error a:visited, .error a:hover, .error a:active {
	color: #B97200;
	}



/*--------------------*/
/*--------------------*/
/*--------------------*/
/* TEMPLATE SPECIFIC  */
/*--------------------*/
/*--------------------*/
/*--------------------*/



.header {
	text-transform: uppercase;
	font-size: 11pt;
	font-weight: bold;
	color: #443B1D;
}

.header_light {
	text-transform: uppercase;
	font-size: 11pt;
	font-weight: bold;
	color: #C5C0AF;
}

.header_light a:link, .header_light a:visited, .header_light a:active {
	color: #C5C0AF;
}
	
.header_light a:hover {
	color: #766643;
}
	
.title {
	font-size: 10pt;
	font-weight: bold;
	color: #443B1D;
}

.title_light {
	font-weight: bold;
	color: #C5C0AF;
}


.row_title {
	text-transform: uppercase;
	font-size: 11pt;
	font-weight: bold;
	color: #798028;
	padding-bottom: 5px;
	margin-top: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #6B5D40;
}

.row_title_light {
	text-transform: uppercase;
	font-size: 11pt;
	font-weight: bold;
	color: #C5C0AF;
	padding-bottom: 5px;
	margin-bottom: 10px;
	border-bottom: 1px solid #C5C0AF;
}


.sub_title
{
	color: #798028;
	font-size: 9pt;
	font-weight: bold;
	text-transform: none;
	padding: 2px 0px;
}

.quote {
	color: #6B5D40;
}

.page_title {
	color: #443B1D;
	font-size: 14pt;
	font-weight: bold;
	text-transform: uppercase;
	padding-bottom: 25px;
}

.page_description {
	text-align: justify;
	padding-bottom: 25px;
}

.author { font-weight: bold; }

.date {
	color: #4C030E;
	font-style: italic;
}




/* COLORS */
.theme_color { background-color: #6B5D40; }
.theme_color_compliment { background-color: #798028; }
.theme_color_title_row { background-color: #6B5D40; }


/* LIST ROW COLORS */
.color1 { background-color: #E7E0D2; }
.color2 { background-color: #C2BBA6; }


.button
{
	float: left;
	margin-left: auto;
	margin-right: 0px;
}

.button a:link, .button a:visited, button a:active
{
	color: #979381;
	font-weight: bold;
	text-decoration: none;
/*	padding: 2px 10px;
	border: 1px solid #979381;
	background-color: #F9F6E0;*/
}
/*.button a:hover
{
	color: #F8F5DF;
	background-color: #7C7D38;
}*/



.account_info {
	font-size: 9pt;
	font-weight: bold;
	color: #252118;
	margin-bottom: 20px;
} 
.account_info a:link, .account_info a:visited, account_info a:active { 
	color: #252118;
	text-decoration: none;
}
account_info a:hover { 
	color: #E9891E;
}

/* FOOTER */
.footer {
	font-size: 9px;
	color: #A2926A;
	line-height: 15px;
}
.footer a:link, .footer a:visited, .footer a:hover, footer a:active { 
	color: #A2926A;
	text-decoration: none;
}






/* LINKS */

.separator_row {
	text-transform: uppercase;
	color: #443B1D;
	font-size: 14px;
	font-weight: bold;
	margin-top: 20px;
	margin-bottom: 10px;
}




.links_toggle_1 {
	text-transform: uppercase;
	font-family: helvetica, arial, san-serif;
	font-size: 12px;
	color: #595D32;
	margin: 8px 0px;
	padding: 0px;
}
.links_toggle_1 a:link, .links_toggle_1 a:visited, .links_toggle_1 a:active {
	display: block;
	color: #595D32;
	text-decoration: none;
}
.links_toggle_1 a:hover {
	color: #443B1D;
}
.links_expand_1 {
	padding: 0px;
	margin: 0px;
}
.links_under_1 {
	padding: 0px;
	margin: 0px;
	height: 0px;
}
/* 
This needs to be after the above code because it gets overwritten 
*/
.links_active_1 a:link, .links_active_1 a:visited, .links_active_1 a:hover, .links_active_1 a:active { 
	color: #232514;
}



.links_toggle_2 {
	font-size: 11px;
	font-weight: bold;
	color: #443B1D;
	margin: 3px 0px;
	padding: 0px;
}
.links_toggle_2 a:link, .links_toggle_2 a:visited, .links_toggle_2 a:active {
	color: #443B1D;
	text-decoration: none;
	margin: 0px;
	padding: 0px;
	padding-left: 20px;
	
}	
.links_toggle_2 a:hover {
	color: #777F26;
	background-image: url(../images/buttons/link_arrow.png);
	background-repeat: no-repeat;
}
.links_expand_2 {
	padding: 0px;
	margin: 0px;
}
.links_under_2 {
	padding: 0px;
	margin: 0px;
	height: 0px;
}
.links_active_2 a:link, .links_active_2 a:visited, .links_active_2 a:hover, .links_active_2 a:active { 
	color: #777F26;
	background-image: url(../images/buttons/link_arrow_active.png);
	background-repeat: no-repeat;
}


.links_toggle_3 {
	text-transform: uppercase;
	font-size: 11px;
	font-weight: bold;
	color: #999999;
	margin: 1px 0px 1px 10px;
	padding: 0px;
}
.links_toggle_3 a:link, .links_toggle_3 a:visited, .links_toggle_3 a:active {
	color: #999999;
	text-decoration: none;
	padding: 3px 20px 3px 30px;
}
.links_toggle_3 a:hover {
	color: #333333;
	background-image: none;
}
.links_expand_3 {
	padding: 0px;
	margin: 0px;
}
.links_under_3 {
	padding: 0px;
	margin: 0px;
}



.links_toggle_4 {
	text-transform: uppercase;
	font-size: 9px;
	font-weight: bold;
	color: #999999;
	margin: 1px 0px 1px 10px;
	padding: 0px;
}
.links_toggle_4 a:link, .links_toggle_4 a:visited, .links_toggle_4 a:active {
	color: #999999;
	text-decoration: none;
	padding: 3px 20px 3px 30px;
}
.links_toggle_4 a:hover {
	color: #333333;
	background-image: none;
}
.links_expand_4 {
	padding: 0px;
	margin: 0px;
}
.links_under_4 {
	padding: 0px;
	margin: 0px;
}



.links_toggle_5 {
	text-transform: uppercase;
	font-size: 9px;
	font-weight: bold;
	color: #999999;
	margin: 1px 0px 1px 10px;
	padding: 0px;
}
.links_toggle_5 a:link, .links_toggle_5 a:visited, .links_toggle_5 a:active {
	color: #999999;
	text-decoration: none;
	padding: 3px 20px 3px 30px;
}
.links_toggle_5 a:hover {
	color: #333333;
	background-image: none;
}
.links_expand_5 {
	padding: 0px;
	margin: 0px;
}
.links_under_5 {
	padding: 0px;
	margin: 0px;
}











.small {
	font-size: 7pt;
	color: #4C030E;
}


.disclaimer {
	font-size: 7pt;
	color: #4C030E;
}



/* BASIC */
.comment
{
	color: #6C6B63;
	text-transform: none;
	font-weight: normal;
	font-size: 8pt;
}

.comment a:link, .comment a:visited, .comment a:hover, .comment a:active {
	color: #4C030E;
}














/*-------------------*/
/*-------------------*/
/*-------------------*/
/* CSS STYLES FOR CMS*/
/*-------------------*/
/*-------------------*/
/*-------------------*/

/*------------------------*/
/* CONTROLS THE PREV-NEXT DISPALY ON LONG DATABASE LISTS */
/*------------------------*/
.pager {
	padding: 8pt;
	color: #534831;
} 
.pager a:link, .pager a:visited, .pager a:hover, .pager a:active {
	text-decoration: none;
	color: #534831;
}
.pages {
	font-size: 8pt;
	color: #534831;
	font-weight: bold;
	text-align: right;
}
.prev_next {
	font-size: 8pt;
	color: #534831;
	font-weight: bold;
	vertical-align: middle;
}
.pager form text {
	font-size: 7pt;
	color: #333333;
}
.pager form submit {
	border: 0px;
}



#action_results {
	width: auto;
	padding: 10px;
	margin: 20px;
}






/* IDENTIFYING USERNAME AND SIGN OUT INFORMATION */
.user_info {
	text-align: right;
	font-size: 11px;
	color: #666666;
	padding-bottom: 20px;
} 



/* COOKIE CRUMB PATH INFO */
#nav_path {
	padding-bottom: 20px;
	font-size: 9pt;
	color: #4C030E;
	font-weight: bold;
}

#nav_path .section {
	font-size: inherit;
	color: inherit;
	font-weight: inherit;
}





/* AUTO FORM VALUES */
.form_prompt
{
	width: 100px;
	font-size: 9pt;
	font-weight: bold;
	color: #262117;
	text-transform: none;
}
.form_prompt_error
{
	font-weight: bold;
	padding: 2px;
}
.form_input
{
	font-size: 9pt;
	color: #262117;
	text-transform: none;
}
.form_input_error
{
	color: #FFFFFF;
	background-color: #B97200;
	padding: 2px;
	font-weight: normal;
}
.form_comment {
	font-size: 9pt;
	font-weight: normal;
	text-transform: none;
}
.form_comment a:link, .form_comment a:visited, .form_comment a:hover, .form_comment a:active{
	color: #262117;
	font-weight: bold;
}

.form_note
{
	display: block;
	padding: 3px;
	color: #4C030E;
	font-size: 9pt;
	font-weight: normal;
	border-color: #AB9B71;
	border-width: 1px;
	border-style: solid;
}




/* LISTS */
.list_header {
	font-size: 10pt;
	color: #FFFFFF;
	font-weight: bold;
}
.list_header a:link, .list_header a:visited, .list_header a:active {
	color: #FFFFFF;
	font-weight: bold;
}
.list_header a:hover {
	color: #999999;
	font-weight: bold;
}

.list_header_dark {
	font-size: 10pt;
	color: #000000;
	font-weight: bold;
}
.list_header_dark a:link, .list_header_dark a:visited, .list_header_dark a:active {
	color: #000000;
	font-weight: bold;
}
.list_header_dark a:hover {
	color: #4C030E;
	font-weight: bold;
}
.list_header_dark a:link, .list_header_dark a:visited, .list_header_dark a:active {
	color: #252118;
	font-weight: bold;
}
.list_header_dark a:hover
{
	color: #363023;
}

.list_details
{
	font-size: 9pt;
	color: #333333;
	padding: 4px;
	vertical-align: middle;
	text-transform: inherit;
	border-bottom: none;
}
.list_details a:link, .list_details a:visited, .list_details a:active {
	color: #333333;
	font-weight: bold;
}
.list_details a:hover {
	color: #000000;
}

/* HOME PAGE DESIGN */

#main_home_container {
	width:920px; 
	margin: 0px auto;
}
#shadow {
	width: 920px;
	background: url('../images/drop_shadow_tiling.png') repeat-y top;
}
#main_home_content {
	overflow: hidden; 
	width: 920px; 
	background: url('../images/main_left.png') no-repeat top left;
 }
#column_one_of_four {
	float:left;
	width: 92px;
}
#column_two_of_four {
	float:left;
	width: 157px;
}
#main_links {
	height: 189px;
	padding-top: 25px;
}
div#welcome_content {
	color: #4E442E;
	line-height: 1.5;
	height: 164px;
	padding: 28px 10px;
}

#column_four_of_four {
	float:left; width: 42px;
}
#module_area {
	width:920px;
	background: url('../images/module_bottom.png') repeat-y;
 }
#module_background_extenstion {
	width: 920px;
	background: url('../images/module_bottom.png') no-repeat bottom center;
 }
#module_container {
	width:920px; 
	overflow:hidden; 
	padding: 25px 0px 5px 0px; 
	background: url('../images/module_top.png') no-repeat top center;
}
#module_special_image {
	float: left;
	width: 100px;
	padding: 13px 45px 0px 80px;
}
#module_one {
	float: left;
	width: 170px;
	padding: 7px 40px 0px 0px;
}
#module_two {
	float: left;
	width: 170px;
	padding: 7px 35px 0px 0px;
}
#resource_links {
	overflow: hidden;
	width: 207px;
}
#resource_border_left {
	float: left;
	width: 25px;
}
#resources_video_link {
	float: left;
	width: 53px;
}
#resources_audio_link {
	float: left;
	width: 50px;
}
#resources_doc_link {
	float: left;
	width: 51px;
}
#resources_right_border {
	float: left;
	width: 25px;
}
.module_title {
	color: #84882D;
	font-weight: normal;
	font-size: 12px;
	text-transform: uppercase;
	border-bottom: 2px dotted #51462F;
	padding-bottom: 9px;
	margin-bottom: 9px;
}
.module_title a:link, .module_title a:visited, .module_title a:active {
	color: #84882D;
	font-weight: normal;
	font-size: 12px;
	text-transform: uppercase;
}
.module_title a:hover {
	color: #7A6C54;
}
.module_body {
	color: #7A6C54;
	font-size: 12px;
	padding: 0px;
	margin: 0px;
}




/* MODULES: STORE */
.module_cart_container {
	margin-bottom: 20px;
}

.module_cart_button {
	font-size: 9pt;
	font-weight: bold;
	height: 20px;
	width: 135px;
	margin-bottom: 15px;
}
.module_cart_button a:link, .module_cart_button a:visited, .module_cart_button a:active {
	height: 20px;
	padding: 3px 20px 0px 60px;
	display: block;
	text-decoration: none;
	color: #FDFCE3;
	background-image: url(../../store/images/buttons/b_my_cart_header_off.jpg);
	background-repeat: no-repeat;
}
.module_cart_button a:hover
{
	display: block;
	text-decoration: none;
	color: #FFFFFF;
	background-image: url(../../store/images/buttons/b_my_cart_header_on.jpg);
	background-repeat: no-repeat;
}

.module_cart_list {
	font-size: 9pt;
	color: #333333;
}


/* SIDE BAR */
.sidebar {
	padding: 0px 35px 50px 35px;
}
.sidebar_body {
	font-size: 9pt;
	padding-top: 5px;
	color: #333333;
}
.sidebar_title {
	font-size: 9pt;
	font-weight: bold;
	color: #443B1D;
	margin-top: 20px;
}
.sidebar_comment {
	font-size: 8pt;
	color: #333333;
	padding: 5px 0px;
}
.sidebar_action_results {
	font-size: 8pt;
	color: #333366;
}
.sidebar_form_prompt {
	font-size: 8pt;
	font-weight: bold;
	color: #333333;
	margin: 4px 0px;
}
.sidebar_form_input {
	font-size: 8pt;
	color: #333333;
}



/* PORTFOLIO */
.portfolio_td { 
	width: 150px; 
}

.portfolio_text {
	text-align: right;
	text-transform: uppercase;
	font-size: 9pt;
	padding: 20px 0px;
}

.portfolio_text a:link, .portfolio_text a:visited, .portfolio_text a:hover, .portfolio_text a:active {
	text-decoration: none;
}

.portfolio_thumb { padding: 20px; }

.portfolio_details_image {
	padding: 0 0 20px 20px;
	text-align: center;
}

.portfolio_details_text {
	text-align: right;
	font-size: 9pt;
	padding: 20px 20px 0px 0px;
}


/* FAQ */
.faq_module_search {
	float: right;
	margin-bottom: 30px;
}

.faq_category_header {
	text-transform: uppercase;
	font-size: 9pt;
	font-weight: bold;
	color: #262117;
	padding-top: 3px;
	padding-bottom: 5px;
	margin-bottom: 10px;
	border-bottom: 1px solid #6b5d40;
}

.faq_categories_list_title {
	text-transform: uppercase;
	font-size: 9pt;
	font-weight: bold;
	color: #262117;
	padding: 3px 0px 5px 0px;
	margin: 12px 0px 10px 0px;
	border-bottom: 1px solid #6b5d40;
}

.faq_title {
	margin: 0px;
	padding: 0px;
	font-size: 10pt;
}

.faq_category_list_column {
	width: 141px;
	padding: 0px 0px 15px 30px;
	margin: 0px 0px 20px 10px;
	border-left: 1px dotted #B69D65;
}

.faq_category_list_level_0 {
	font-size: 8pt;
	color: #262117;
	margin: 15px 0px 5px -10px;
	padding-left: 10px;
}
.faq_category_list_level_0 a:link, .faq_category_list_level_0 a:visited, .faq_category_list_level_0 a:active {
	color: #262117;
}
.faq_category_list_level_0 a:hover  { 
	color: #798028;
}

.faq_category_list_level_1 {
	color: #798028;
	font-size: 8pt;
	padding-left: 8px;
	margin: 2px 0px;
	background: url(../../site/images/graphics/brown_bullet.png) no-repeat 0px 4px;
}
.faq_category_list_level_1 a:link, .faq_category_list_level_1 a:visited, .faq_category_list_level_1 a:active {
	color: #798028;
}
.faq_category_list_level_1 a:hover  { 
	color: #262117; 
}

.faq_category_list_current {
	color: #E68B24;
	background: url(../../site/images/graphics/orange_bullet.png) no-repeat 0px 4px;
}
.faq_category_list_current a:link, .faq_category_list_current a:visited, .faq_category_list_current a:active {
	color: #E68B24;
}
.faq_category_list_current a:hover { 
	color: #E68B24; 
}

.faq_category_list_level_2 {
	color: #443B1D;
	font-size: 8pt;
	padding-left: 8px;
	margin: 2px 0px 2px 10px;
	background: url(../../site/images/graphics/brown_bullet.png) no-repeat 0px 4px;
}
.faq_category_list_level_2 a:link, .faq_category_list_level_2 a:visited, .faq_category_list_level_2 a:active {
	color: #443B1D;
}
.faq_category_list_level_2 a:hover  { 
	color: #443B1D; 
}

.faq_details_title {
	text-transform: uppercase;
	font-size: 10pt;
	font-weight: bold;
	color: #262117;
	margin-bottom: 5px;
}

.faq_details_section {
	text-transform: uppercase;
	font-size: 9pt;
	font-weight: bold;
	color: #262117;
	margin-top: 15px;
	margin-bottom: 5px;
}

.faq_category_title_1 {
	text-transform: uppercase;
	font-size: 15px;
	font-weight: bold;
	color: #262117;
	padding-bottom: 5px;
	margin-bottom: 10px;
}

.faq_category_title_2 {
	text-transform: uppercase;
	font-size: 12px;
	font-weight: bold;
	color: #262117;
	padding: 3px 0px 8px 30px;
	margin-bottom: 10px;
	border-bottom: 1px solid #666666;
	background: url(../../site/images/sub_page/green_circle_arrow.gif) no-repeat;
}

.faq_category_title_3 {
	padding-left: 0px;
	border-bottom: 1px dotted #B69D65;
	margin: 0px 0px 15px 0px;
	font-size: 10pt;
}

.faq_category_title_3 h3 {
	padding: 0px;
}

.faq_button_more {
	text-align: right;
	font-weight: normal;
	font-size: 11px;
	margin: 15px 0px;
}

.faq_button_more a:link, .faq_button_more a:visited, .faq_button_more a:active {
	text-decoration: none;
	padding: 3px 15px;
	color: #FFFFFF;
	background-color: #443B1D;
	border: 2px solid #798028;
}

.faq_button_more a:hover {
	padding: 3px 15px;
	color: #FFFFFF;
	background-color: #798028;
	border: 2px solid #798028;
}
.faq_date {
	font-size: 11px;
	color: #798028;
}



/* SUB PAGE DESIGN */

.sub_page_body {
	line-height: 1.9;
}
.quick_links {
	font-size: 14px;
	color: #798028;
	margin: 3px 0px;
}
.quick_links a:link, .quick_links a:visited, .quick_links a:active {
	color: #798028;
}
.quick_links a:hover {
	color: #443B1D;
}

.separation_line {
	border-top: 1px solid #B69D65;
	padding: 25px 0px 15px 0px;
	margin: 15px 0px;
}
.separation_line_bottom {
	border-bottom: 1px solid #B69D65;
	padding-bottom: 15px;
	margin-bottom: 25px;
}
.separation_line_simple {
	border-top: 1px solid #B69D65;
}
.page_title_underline {
	border-top: 1px dotted #B69D65;
	margin-bottom: 5px;
}
.dark_body {
	color: #262117;
	font-weight: bold;
}
.main_header {
	padding-top: 35px;
}
.sub_header {
	padding-top: 25px;
}
.left_indent {
	padding-left: 30px;
}
.subscript {
	font-size: 8pt;
}


/* SHARE button */
div div div span
{
	color: #443b1d;
}