/* cw_ui.css
 *
 * Styles will be placed here if:
 * 	- The style effects aesthetics
 * 		- Margin, padding, color, shadows, floats, alignment, ect.
 *	- Then style is not a page structure framework see cw.css
 * 	- Base component styling not vital to component functioning see components.css
 * 	- Common product bug fixes not ready to migrate to components.css
 *
 * NOTE: Styles defined here will be used by both products and themes
 **/

/** AMM Buttons **********************************************/
.btn {
	display: inline-block;
	*display: inline;/* *=IE7 and below */
	position: relative;

	color: #444;
	cursor: pointer;
	font-size: 14px;
	line-height: normal;
	font-weight: bold;
	text-decoration: none;
	white-space: nowrap;

	padding: .5em .5em;/* top padding needed for FF, doesn't support line-height on input[type="submit"] */
	*zoom:1;
	margin: 0 0 1em;
	border: 1px solid #999;
	vertical-align: middle;

	background: none;
	background-color: #eee;
	background-image: -moz-linear-gradient(top, rgba(200, 200, 200, 0) 0%, rgba(50, 50, 50, .4) 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(200, 200, 200, 0)), color-stop(100%,rgba(50, 50, 50, .4)));
	background-image: -webkit-linear-gradient(top, rgba(200, 200, 200, 0) 0%, rgba(50, 50, 50, .4) 100%);
	background-image: -o-linear-gradient(top, rgba(200, 200, 200, 0) 0%, rgba(50, 50, 50, .4) 100%);
	background-image: -ms-linear-gradient(top, rgba(200, 200, 200, 0) 0%, rgba(50, 50, 50, .4) 100%);
	background-image: linear-gradient(to bottom, rgba(200, 200, 200, 0) 0%, rgba(50, 50, 50, .4) 100%);
	
	text-shadow: 0 1px 0px #fff;
	text-shadow: 0 1px 0px rgba(255, 255, 255, .5);
	
	-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
	box-shadow: 0 1px 2px #ccc;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
	box-shadow: inset 0 1px rgba(255, 255, 255, .3), 0 1px 2px rgba(0, 0, 0, .2);
	
	border-radius: 5px;
	
	-webkit-transition: background-color .09s linear;
	-moz-transition: background-color .09s linear;
	-o-transition: background-color .09s linear;
	transition: background-color .09s linear;
}
/* Focus */  .btn:focus { outline: 1px dotted #666; }
/* Hover */  .btn:hover, .btn:focus { color: #333; background-color: #ddd; }
/* Active */ .btn:active { color: #333; background-color: #ccc; }
/* Other Buttons */
.btn-pos, .btn-neg {
	color: #FCFCFC;
	background-color: #008200;
	border: 1px solid #666;

	text-shadow: 0 -1px 0px #000;
	text-shadow: 0 -1px 0px rgba(0, 0, 0, .5);
}
/* Hover */  .btn-pos:hover, .btn-pos:focus { color: #fff; background-color: #00A500; }
/* Active */ .btn-pos:active { color: #fff; background-color: #13C013; }
/* Hover */  .btn-neg { color: #fff; background-color: #FF0000; }
/* Hover */  .btn-neg:hover, .btn-neg:focus { color: #fff; background-color: #D50000; }
/* Active */ .btn-neg:active{ color: #fff; background-color: #B60000; }
.btn-disabled, .btn[disabled] {
	color: #aaa !important;
	background-color: #efefef !important;
	border: 1px solid #bbb !important;
	cursor: default !important;

	text-shadow: 0 1px 0px #fff;
	text-shadow: 0 1px 0px rgba(255, 255, 255, .5);
}
@media only screen
 and (max-width:599px) {
	.btn-pos {
		display: block;
		float: none;
		width: 100% !important;
		text-align: center;
		line-height: 3em;
		clear: both;
		margin: 0 0 15px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box; /* Doesn't work in IE7 but IE7 doesnt support media queries any way */
	}
}

/** Forms **********************************************************************/
label {
	display: inline-block;
	_display: inline;
	min-width: 160px;
	*width: 160px;
	vertical-align: middle;
}

textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"] {
	font-size: 14px;
	line-height: 2em;
	height: 2em;
	padding: 0 5px;
	margin: 0 0 1em;
	border: 1px solid #999;
	border-bottom: 1px solid #ddd;
	border-left: 1px solid #bbb;
	border-right: 1px solid #bbb;
	display: inline-block;
	*display: inline;
	vertical-align: middle;

	background: #ffffff; /* Old browsers */
	background-image: -moz-linear-gradient(top, #ffffff 0%, #ebebeb 100%); /* FF3.6+ */
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#ebebeb)); /* Chrome,Safari4+ */
	background-image: -webkit-linear-gradient(top, #ffffff 0%,#ebebeb 100%); /* Chrome10+,Safari5.1+ */
	background-image: -o-linear-gradient(top, #ffffff 0%,#ebebeb 100%); /* Opera 11.10+ */
	background-image: -ms-linear-gradient(top, #ffffff 0%,#ebebeb 100%); /* IE10+ */
	background-image: linear-gradient(to bottom, #ffffff 0%,#ebebeb 100%); /* W3C */

	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, .2);
	box-shadow: inset 0 1px 3px #ccc;
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, .2);
	text-shadow: 0 1px 1px #fff;
	border-radius: 5px;
}

textarea.btn-disabled, textarea[disabled],
input[type="text"].btn-disabled, input[type="text"][disabled],
input[type="password"].btn-disabled, input[type="password"][disabled],
input[type="datetime"].btn-disabled, input[type="datetime"][disabled],
input[type="datetime-local"].btn-disabled, input[type="datetime-local"][disabled],
input[type="date"].btn-disabled, input[type="date"][disabled],
input[type="month"].btn-disabled, input[type="month"][disabled],
input[type="time"].btn-disabled, input[type="time"][disabled],
input[type="week"].btn-disabled, input[type="week"][disabled],
input[type="number"].btn-disabled, input[type="number"][disabled],
input[type="email"].btn-disabled, input[type="email"][disabled],
input[type="url"].btn-disabled, input[type="url"][disabled],
input[type="search"].btn-disabled, input[type="search"][disabled],
input[type="tel"].btn-disabled, input[type="tel"][disabled],
input[type="color"].btn-disabled, input[type="color"][disabled] {
	color: #0E0E0E;
	opacity: .5; filter:progid:DXImageTransform.Microsoft.Alpha(opacity=50);
}

select {
	display: inline-block;
	*display: inline;
}

textarea {
	display: block;
	height: auto;
	margin-top: 0;
}

input[type="checkbox"], input[type="radio"] {
	margin: 0 5px 0 0;
	vertical-align: middle;
	display: inline-block;
	*display: inline;
}

/** Hint Text **/
em.hint, .hint_text, .hint {
	/* em.hint is the standard format
	 * regblocks are pending a refresh and are not always consistent
	**/
	font-size: .9em;
	line-height: 1.5em;
	font-style: italic;
	font-weight: normal;
}

@media only screen
 and (max-width:599px) {
	label, input, textarea {
	      display: block;
	      float: none;
	      margin: 0 0 1em;
	      width: auto !important;
	}
	
	input[type="checkbox"], input[type="radio"] {
		/* height: 1.5em; */
		display: inline-block;
	}
}

/** Opacity ********************************************************************/
.opac8 { opacity: .8; filter:progid:DXImageTransform.Microsoft.Alpha(opacity=80); }
.opac6 { opacity: .6; filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60); }
.opac4 { opacity: .4; filter:progid:DXImageTransform.Microsoft.Alpha(opacity=40); }
.opac2 { opacity: .2; filter:progid:DXImageTransform.Microsoft.Alpha(opacity=20); }

/** Text Align *****************************************************************/
.talign-right { text-align: right }
.talign-center { text-align: center }
.talign-left { text-align: left }

/** Shared *********************************************************************/
.blockquote cite { padding-left: 5em; }
/** Cookie and JS Alert Messaging **********************************************/
#support{background: #B44343;padding: 20px 20px 0; color: #fff;text-shadow: 0 1px 1px #000;font-weight: bold;border-bottom: 3px solid #5A0909;_display:block !important;}
#support a{color:#fff; text-decoration: underline;}
#support a:hover{text-decoration: none;}
/** IE Float Bugs *************************************************************/
.textpander .content:after,#support:after,#fancybox-title:after, .gallery_single_image:after, .gallery_index:after{content: ' ';display: block;clear: both;}
/** Messaging Normal and AJAX consistency *************************************/
.message, .mini_messagebox {margin: 0 0 20px;}
.message,.comment_submitted_message,.errortext,.errortext a,.errortext input, .mini_messagebox, .form_required{color:#ed1c24;}
.message,.comment_submitted_message, .message, .mini_messagebox{display:block;padding:15px;border:2px solid #fdd49a;background:#fff8ee;font-weight:bold;border-radius:4px;color:#e69520;box-shadow: 0 1px 3px rgba(100, 100, 100, .5);}
.message .mini_messagebox{margin: -17px;}
.message ul{margin:0 0 0 20px!important;}
.message_type-info, .message span.info, .mini_messagebox.info {border:2px solid #9ABAFD;background:#EEF5FF;color:#2097E6;}
.message_type-error, .message span.error, .mini_messagebox.error {border:2px solid #FDBA9A;background:#FEE;color:#ed1c24;}
.message_type-warn, .message span.warn, .mini_messagebox.warn {border:2px solid #fdd49a;background:#fff8ee;color:#e69520;}
.require_desc{color:#ed1c24;}
.message h2.info, .message h2.warn, .message h2.error, .mini_messagebox h2 {border:none;background:transparent;}
.message h2, .mini_messagebox h2 {font-size: 1em !important;margin: 0 !important;padding: 0 !important;}
/** Pagination *****************************************************************/
.display_summary_top { float: right; }
.next_prev_row .btn { margin-right: 10px; }
/** Image Component Aligment ***************************************************/
span.image_component{display:block;}
span.image_component img{padding: 0;vertical-align:top;}
div.image_component.left, div.image_link_component.left, .image_component.left img,.image_link_component.left img, img.alignleft{margin:0 15px 15px 0;}
div.image_component.right, div.image_link_component.right, .image_component.right, .image_link_component.right, img.alignright{margin:0 0 15px 15px;}
div.image_component.center, div.image_link_component.center { margin: 0 auto; }
.caption_credit{margin-bottom:15px;display: block;}
/** Galleries ******************************************************************/
.gallery_index ul{list-style:none;margin:0;padding:0 0 20px;*overflow:hidden;}
.gallery_index li{list-style:none;display:inline-block;margin:0 15px 15px 0;padding:0;line-height:0;*display:inline;*float:left;}
.gallery_index img, img.gallery_main{border: 2px solid #FFF;box-shadow: 0 2px 5px #999;box-shadow: 0 2px 5px rgba(0, 0, 0, .4);}
.gallery_index li.current img{border: 2px solid #444;}
.gallery_single_image{margin: 0 0 1em;}
/** Horizontal Line - allow for easier styling *********************************/
hr,.hr{height:1px;overflow:hidden;background:#e0e0e0;margin:27px 0;clear:both;border: none;}
/** GSA results fix wrapping bug on long URLs **********************************/
.gsa_results_wrapper a{word-break:break-all;word-wrap:break-word;}
.gsa_results_wrapper { margin: 0; padding: 10px 0 20px 0; }
h3.gsa_result_headline { margin: 0; padding: 0 0 6px 0; }
.gsa_search_info_wrapper { margin: 0; padding: 20px 0 0 0; }
.gsa_search_info_wrapper p { margin: 0; padding: 0; }
.gsa_result p { margin: 0; padding: 0; }
.gsa_result { margin: 0; padding: 15px 0; }
p.gsa_bottom_nav { margin: 0; padding: 30px 0 0 0; }
/** Content Group Component ****************************************************/
div.content_group ul.groups {margin: 0; padding: 0;}
div.content_group ul.groups li {display: inline-block; padding: 0 30px 0 0; font-size: 1.5em;}
div.content_group ul.groups li a {text-decoration: none;}
div.content_group ul.groups li a.current {font-weight: bold;}
div.content_group div.group_content {display: none; margin-top: 15px;}
div.content_group div.group_content.current {display: block;}
/** Catalog Fast Finder ********************************************************/
div.catalog_fast_find .fast_find_thumb { float: left; margin: 5px; }
div.catalog_fast_find .fast_find_spinner { display: none; }
div.catalog_fast_find .fast_find_results_items { position: absolute; background: white; border: 1px solid #666; width: 500px; padding: 0; margin: 0; }
div.catalog_fast_find .fast_find_results_items ul { padding: 0; margin: 0; }
div.catalog_fast_find .fast_find_results_items ul li.fast_find_results_item { list-style: none; margin: 0; padding: 10px 20px; border: 1px solid white; }
div.catalog_fast_find .fast_find_results_items li.fast_find_results_item.current { background: #ffc; border-top: 1px solid #999; border-bottom: 1px solid #999; }
/** Textpander *****************************************************************/
.textpander .open,.textpander .closed, .content_expander .icon {padding: 2px;text-align: center;background: #999;color: #fff;line-height: 16px;font-size: 1em; display: block; width: 16px; height: 16px; margin-right: 5px;}
.textpander .headline { cursor: pointer; }
.content_expander .icon { font-size: 1.5em; font-weight: bold; }
.textpander .closed{line-height: 12px;}
/** Breadcrumb Styles **********************************************************/
.breadcrumb_component{margin: 0 0 20px; padding: 0;list-style: none;}
.breadcrumb_component li{margin: 0 3px;padding: 0;list-style: none;display: inline-block;*display: inline;}
/** Maps ***********************************************************************/
.map_area {height: 350px;}
/* Forms, common styles and bug fixes ******************************************/
p.form_checkbox, p.form_radio { float: left; }
.check_box_answers ul, .radio_answers ul{list-style: none; vertical-align: bottom; margin-left: 0; padding-left: 0; float: left;}
.check_box_answers input, .radio_answers input { max-width: 13px; height: 1.5em; }
.form p { clear: left; }
.form p br{display:none;}
.hint_text { display: block; padding-left: 165px; clear: left; opacity: .6; filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60); }
.form_textarea > .hint_text, .form_checkbox > .hint_text,.form_radio > .hint_text { padding-left: 0; }
/* ASK *************************************************************************/
.ask_question label { display: inline; }
/* Mobile **********************************************************************/
@media only screen
 and (max-width:599px) {
	p.form_checkbox, p.form_radio{float: none;}
	.check_box_answers label, .radio_answers label, .answer label {
		display: inline-block;
		*display: inline;
		margin: 0;
	}
	.hint_text { padding-left: 0; }
	.display_summary_top { float: none; }
}
