/*------------------------------------------------------------------
TED /  global.css

Author:			Christopher Berry <chris@form-studios.com>

Methods: 		1. 	CSS FILES ORGANISATION 
					global.css			->	 	global rules
						fontsizes/*.css		->		main measurements files
					home.css			->		rules for homepage
					interior.css		->		rules for interior pages
							
				
				2.	IN THIS CSS FILE:
					General Rules
					Form Elements (appearance settings only)
					Global form submit button styles
					.advert - advertisement
					#container
						#msg_layer
						#header - main navigation
							#logo
						#search
						#body
							global elements for #body	
							column settings for #body						
						#footer
					.error 0 error/notification styles
					Workarounds
--------------------------------------------------------------------*/

/* default measurement 1em = 10px*/
@import url(fontsizes/x-small-2933842234.css);



 /* GENERAL RULES
--------------------------------------------------------------------*/

* {
	/*overwrite all default browser settings*/
	margin:				0;
	padding:			0;
	
	/*global font settings*/
	font-family: 		arial,helvetica,sans-serif;
}

html,body {
	/*part 1 of 100% height hack*/
	height:				100%;
}

body {
	background: 		white;
	padding:			0;
	margin:				0;
	
	/*part 1 of centering hack*/
	text-align: 		center;	
}
em {
	font-style:			italic !important;
}

 /* Global Link Settings
--------------------------------*/
a,
a:link,
a:visited {
	color:				#ff2b06;
	text-decoration:	none;
	outline:			none;
}
a:hover, 
a:active {
	text-decoration:	underline;
	outline:			none;
}

a.largeLink {
	font-size: 1.4em;
	font-weight: bold;
}

a.external {
	background:transparent url(../images/icon_external_link.gif) no-repeat scroll right center;
	padding-right:15px;
}

 /* General Elements
--------------------------------*/

img {
	display: 			block; /*to avoid IE 3px bug, keep or delete, can be used with .float-left/right*/
	border:				0;
}

 /* Good to have global classes
--------------------------------*/
.floatright {
	float: 				right;
	display:			inline; /*to avoid IE double margin bug*/
}
.floatleft {
	float: 				left;
	display:			inline; /*to avoid IE double margin bug*/
}
.alignright {
	text-align:			right;
}

/*e.g. for accessibility quick links*/
.hide {
	height: 			0;
	width: 				0;
	overflow: 			hidden;
	position: 			absolute;
}


 /* Global Form Elements (appearance only, no layout settings etc)
--------------------------------*/
form fieldset {
	margin:				0;
	padding:			0;
	border:				0;
}
form legend {
	display:			none;
}
select {
	color:			#545454 !important;
}
select option {
	padding:		2px 0 !important;
}
/* Global form submit button styles: images / over images
-------------------------------------------------------*/
/* Submit */
form input.submit {
	width:			54px;
	height:			20px;
	float:			right;
	margin:			6px 0 0 0;
	background:		url(../images/button_submit.gif) no-repeat left top;
	text-indent:	-9999px;
}
form input.submit:hover,
form .hover input.submit {
	background:		url(../images/button_submit.gif) no-repeat -54px 0;
}
/* Go */
form input.go {
	width:			46px;
	height:			24px;
	float:			right;
	margin:			-3px 0 0 0;
	background:		url(../images/button_go.gif) no-repeat left top;
	text-indent:	-9999px;
}
form input.go:hover,
form .hover input.go {
	background:		url(../images/button_go.gif) no-repeat 0 -24px;
}
/* Submit Comment */
form input.submit_comment {
	margin:			8px 0 0 0;
	width:			91px;
	height:			22px;
	background:		url(../images/button_submit_comment.gif) no-repeat left top;
	text-indent:	-9999px;
}
form input.submit_comment:hover,
form .hover input.submit_comment {
	background:		url(../images/button_submit_comment_over.gif) no-repeat left top;
}
/* Edit Message */
form input.edit_message {
	margin:			8px 0 0 0;
	width:			48px;
	height:			22px;
	background:		url(../images/button_submit.gif) no-repeat left top;
	text-indent:	-9999px;
}
form input.edit_message:hover,
form .hover input.edit_message {
	background:		url(../images/button_submit_over.gif) no-repeat left top;
}
/* Cancel */
form input.cancel {
	margin:			8px 0 0 0;
	width:			66px;
	height:			24px;
	background:		url(../images/button_cancel.gif) no-repeat left top;
	text-indent:	-9999px;
}
form input.cancel:hover,
form .hover input.cancel {
	background:		url(../images/button_cancel.gif) no-repeat 0 -24px;
}
/* Add Comment */
form input.add_comment {
	margin:			8px 0 0 0;
	width:			78px;
	height:			22px;
	background:		url(../images/button_add_comment.gif) no-repeat left top;
	text-indent:	-9999px;
}
form input.add_comment:hover,
form .hover input.add_comment {
	background:		url(../images/button_add_comment_over.gif) no-repeat left top;
}
/* Browse for photo */
form input.browse_for_photo {
	margin:			0;
	width:			89px;
	height:			22px;
	background:		url(../images/button_browse_for_photo.gif) no-repeat left top;
	text-indent:	-9999px;
}
form input.browse_for_photo:hover,
form .hover input.browse_for_photo {
	background:		url(../images/button_browse_for_photo_over.gif) no-repeat left top;
}
/* Add */
form input.add {
	margin:			0;
	width:			34px;
	height:			22px;
	background:		url(../images/button_add.gif) no-repeat left top;
	text-indent:	-9999px;
}
form input.add:hover,
form .hover input.add {
	background:		url(../images/button_add_over.gif) no-repeat left top;
}
/* Save Profile */
form input.save_profile {
	margin:			0;
	width:			81px;
	height:			22px;
	background:		url(../images/button_save_profile.gif) no-repeat left top;
	text-indent:	-9999px;
}
form input.save_profile:hover,
form .hover input.save_profile {
	background:		url(../images/button_save_profile_over.gif) no-repeat left top;
}
/* Save Profile */
form input.save_account {
	margin:			0;
	width:			91px;
	height:			22px;
	background:		url(../images/button_save_account.gif) no-repeat left top;
	text-indent:	-9999px;
}
form input.save_account:hover,
form .hover input.save_account {
	background:		url(../images/button_save_account_over.gif) no-repeat left top;
}
/* Just "Save" */
form input.save {
	margin:			0;
	width:			40px;
	height:			22px;
	background:		url(../images/button_save.gif) no-repeat left top;
	text-indent:	-9999px;
}
form input.save:hover,
form .hover input.save {
	background:		url(../images/button_save_over.gif) no-repeat left top;
}
/* Rate */
form input.rate {
	margin:			0;
	width:			39px;
	height:			22px;
	background:		url(../images/button_rate.gif) no-repeat left top;
	text-indent:	-9999px;
}
form input.rate:hover,
form .hover input.rate {
	background:		url(../images/button_rate_over.gif) no-repeat left top;
}

/* Input Type Button styles */
form input.button_add {
	border:			1px solid #ddd;
	font-size:		1.0em;
	width:			34px;
	height:			22px;
	color:			#ff2a06;
	background-color:#fff;
	cursor:		pointer;
}
form input.button_add:hover {
	color:			#fff;
	background-color:#ff2a06;
}
form input.dojoButtonAdd {
	position:		relative;
	top:			2px;
	height:			19px;
	line-height:	14px;
}
/* Advertisement
--------------------------------------------------------------------*/
div.advert {
	
}

 /* MAIN CONTAINER
--------------------------------------------------------------------*/
#container {
	width:				900px;
	padding:			0;
	
	/*part 2 of 100% height hack*/
	min-height:			100%;
	height: 			100%;
	
	/*part 2 of centering hack*/
	text-align: 		left;
	margin: 			0 auto;
	background:			#fff;
}

html>body #container {
/*part 3 of 100% height hack*/
    height: 			auto;
}

 /* MESSAGE LAYER
--------------------------------------------------------------------*/
#container #msg_layer {
	position:			absolute;
	z-index:			9999;
	margin:				187px 0 0 0 !important;
	padding:			7px;
	width:				548px;
	height:				144px;
	background-color:	#252525;
}
#container #msg_layer p {
	padding:			0 180px 0 0;
	margin:				0;
	font-size:			1.6em;
	line-height:		1.3em;
	color:				#fff;
}
#container #msg_layer a.small {
	font-size:			1.1em;
}
#container #msg_layer div.close {
	position:			absolute;
	top:				8px;
	right:				8px;
	z-index:			1000;
}
/* Transparency for the message layer */
div.transparent_msglayer {
	position:			absolute;
	top:				0;
	left:				0;
	z-index:			9998;
	background-color:	#000;
	opacity:			0.35;
	-moz-opacity:		0.35;
	filter:				alpha(opacity=35);
	width:				100%;
	height:				100%;
}
/* CONFIRMATION LAYER
--------------------------------------------------------------------*/
#container #confirmation_layer {
	margin:				2px 0 5px 0;
	padding:			14px 10px;
	background:			#545454;
}
#container #confirmation_layer p {
	font-size:			1.5em;
	color:				#fff;
}

 /* HEADER
--------------------------------------------------------------------*/
#header {
	position:			relative;
	height:				1%;
	margin-bottom:		3px;
	padding:			0;
}
#header div.nav {
	position:		relative;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: #60F;
}

#header img {
	float:				left;
	margin-top: 0;
	margin-right: 12px;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 17px;
	padding-right: 0;
	padding-bottom: 15px;
	padding-left: 0;
}
#header img.new {
	position:			relative;
	float:				none;
	display:			inline;
	top:				2px;
	margin:				0;
	margin-left:		5px;
	padding:			0;
}
#header ul {
	float:				left;
	list-style:			none;
	width:				142px;
	margin-top:			15px;
	border-top:			1px solid #8d8d8d;
}
#header ul li {
	border-bottom:		1px solid #e2e2e2;
}
#header ul li a {
	display:			block;
	margin:				0;
	padding:			2px 0 0 3px;
	height:				15px;
	border-top:			1px solid #fff;
	border-bottom:		1px solid #fff;
	font-size:			1.1em;
	color:				#888;
}
#header ul.main {
	width:				200px;
	margin-right:		11px;
}
#header ul.main li a {
	font-weight:		bold;
	color:				#222;
}
#header ul li a:hover,
#header ul li a:active {
	color:				#ff2b06;
	background-color:	#ededed;
	text-decoration:	none;
}
#header ul li a.selected {
	background-color:	#ededed;
}
/* Search field */
#search {
	position: 			absolute;
	bottom:				-1px;
	right:				348px;
	clear:              both;
	height: 29px;
}
#search form {
	width:272px;
	height:21px;
	background: url(../images/bg_search.gif) no-repeat;
}
#search form input.text {
	width:230px;
	margin: 5px 0 0 21px;
	float: left;
	color:				#666;
	font-size:			11px;
	font-weight:		bold;
	border:				0;
	background:			none;
	outline: 0;
}
input.dojoDropDown {
	/*width:				234px !important;*/
}
input.dojoDropDownShort {
	width:				162px !important;
}
#search form input.button {
	float:				left;
	width:				21px;
	height:				21px;
}
/* Logged in message */
#header div.message_layer {
	padding:			6px 6px 6px 330px;
	background-color:	#ececec;
}
#header div.message_layer p {
	font-size:			1.1em;
	color:				#545454;
}
/*
#header div.have_message {
	padding-left:		477px;
}*/

#header div.message_layer div.notices {

}
#header div.message_layer div.notices p{
	float:		left;
}
#header div.message_layer div.notices .msg {
	display:	block;
	float:		right;
	margin:		3px 0 0 0;
	clear:		left;
}
#header div.message_layer ul.account {
	display:	inline;
	float: 		right;
	width:		auto;
	margin:		0;
	margin:		-1px 0 0 7px;
	border:		0;
}
#header div.message_layer ul.account li {
	display: 	inline;
	border:		0;
}
#header div.message_layer ul.account li a {
	display: 	inline;
	position:	relative;
	height:		auto;
	top:		1px;
	border:		0;
	padding:	0;
	color:		#ff0000;
}
 /* #body - Global elements (works in all columns)
--------------------------------------------------------------------*/
#body {
	background:			#fff;
}

#body h1 {
	/* width:				620px; */
	font-size:			2.4em;
	color:				#000;
	margin-left:		7px;
	margin-top:			5px;
	/*margin-bottom:		35px;*/
	min-height:			65px;
	font-weight:        normal;
}

#body h1 a {
	color:				#000;
}
#body h1 a.grey, #body h2 a.grey {
	color:				#666;
}
#body h1 a.black {
	color:				#000;
}
#body h1 span {
	font-weight:		normal;
	color:				#000;
}
#body h1 span a {
	color:				#666;
}
#body h1 span.grey {
	font-weight:		normal;
	color:				#666;
}

#body h2.crumbs {
	margin-left:	7px;
	margin-bottom:	6px;
	margin-top:		12px;
	color:			#666;
	font-size:		1.6em;
	font-weight:	bold;
	text-transform:	uppercase;
}

#body p {
	margin:				0 0 1em 0;
}

#body .botw {
	color:				#0A2171;
}

#body .partnerTalk {
	color:				#006633;
}

#body .shortTalk {
	color:				#FF6600;
}
#body .video_container .shortTalk {
	color:				inherit;
}

/*boxes*/
#body dl.box {
	
}
#body dl.box dt {
	
}
#body dl.box dd {
	
}

#body .pos {
	color:				#227F28;
	font-weight: bold;
}

#body .neg {
	color:				#D22811;
	font-weight: bold;
}


/*Local Nav*/

#local #sublocalnav {
	margin:			15px 7px 0 7px;
}
#local #sublocalnav ul {
	list-style:		none;
	padding-bottom: 8px;
	margin-bottom:	7px;
	background:		url(../images/border_sublocal_nav.gif) repeat-x bottom left;
}
#local #sublocalnav ul li {
	font-size:		1.2em;
	line-height:	1.7em;
	margin-bottom:	1px;
}
#local #sublocalnav ul li.bullet a {
	/*padding-left:	14px;
	background:		url(../images/localnav_bullet.gif) no-repeat 7px 5px;*/
	display:block;
	font-weight:	normal;
}
#local #sublocalnav ul li a {
	display:block;
	padding:		0 7px;
	height:			1%;
	text-decoration:none;
	color:			#333;
	font-weight:	bold;
}

#local #sublocalnav ul li a.selected,
#local #sublocalnav ul li a:hover {
	background:		#e5e5e5;
	color:			#ff0000;
}
#local #sublocalnav ul li a:hover,
#local #sublocalnav ul li.bullet a:hover {
	background:		#e5e5e5 url(../images/localnav_bullet.gif) no-repeat center right;
}
#local #sublocalnav ul li a.selected:hover,
#local #sublocalnav ul li.bullet a.selected:hover {
	background:		#e5e5e5;
}
#local #sublocalnav ul.blog li a {
	display:		inline;
	padding-right:	13px;		
	background:		url(../images/icon_external_link_dark.gif) no-repeat center right;
}
#local #sublocalnav ul.blog li a:hover {
	background:		url(../images/icon_external_link_dark.gif) no-repeat center right;
	text-decoration:underline;
}
#local div.sidebarAd {
	margin:			22px 7px 0;
}

/**/



/* AJAX LOADING INDICATOR --talk to bert
--------------------------------*/

#loadingindicator {
	position:		absolute;
	top:			0px;
	right:			5px;
}
/* Home page loading indicator */
div.homeloading {
	display:		block;
	height:			16px;
}
div.homeloading #loadingindicator {
	position:		static;
	float:			left;
	display:		inline;
	margin:			0;
}
/* #body - column layouts
--------------------------------*/
#maincontent,
#body #local,
#body #contextual {
	float: 				left;
	display:			inline;
}

#maincontent {
	width:				593px;
	padding-left:		307px;
	margin-bottom:		10px;
	padding-bottom: 6px;	
}
#body #local {
	width:				224px; /*250px*/
	margin-left:		-900px; /*730px*/
	margin-bottom:		10px;
}
#wrapper {
	background: red;
	padding-bottom: 6px;
	background:			transparent url(../images/localnav_caps.gif) repeat-y scroll bottom left;
}
#wrapper #local {
	margin-bottom:		0;
	background: pink;
	background:			#f4f4f4 url(../images/localnav_bg.gif) no-repeat scroll 0 0;
}
#body #contextual {
	width:				25%; /*250px*/
	margin-left:		1%; /*10px*/
	background:			blue;
}
a span.bull {
	position:			relative;
	top:				-0.1em;
	left:				0;	
}

 /* Subscribe module
--------------------------------------------------------------------*/

#body div.about div.subscribe {
	margin:			15px 0 0 0;
}

#body div.about div.subscribe div.topcap {
	height:			6px;
	background:		url(../images/bg_subscribe_corners.gif) no-repeat 0 -6px;
}
#body div.about div.subscribe div.botcap {
	height:			6px;
	background:		url(../images/bg_subscribe_corners.gif) no-repeat 0 0;
}
#body div.about div.subscribe div.main {
	padding:		10px;
	background:		#fff;
}
#body #contextual div.about div.subscribe h3,
#body #maincontent div.about div.subscribe h3 {
	padding:		0;
	margin:			0 0 4px 0;
	background:		none;
	font-size:		1.2em;
	text-transform:	uppercase;
	color:			#666;	
}
#body div.about div.subscribe p {
	font-size:		1.1em;
}
#body div.about div.subscribe form {
	margin:			0 0 10px 0;	
}
#body div.about div.subscribe label {
	float:			left;
	display:		inline;
	width:			75px;
	margin-right:	5px;
	font-weight:	bold;
	font-size:		1.1em;
	line-height: 	1.8em;/*submit is 20 px*/
	color:			#666;
}
#body div.about div.subscribe input.formTextInput {
	position:		static;
	float:			left;
	display:		inline;
	width:			110px;
	margin:			0;
	font-weight:	bold;
	color:			#666;
}
#body div.about div.subscribe dl dt {
	float:			left;
	display:		inline;
	width:			75px;
	font-weight:	bold;
	font-size:		1.1em;/*1.2em;*/
	line-height: 	1.45;/*1.34em;*/
	margin-right:	5px;
	color:			#666;
}
#body div.about div.subscribe dl dd {
	float:			left;
	display:		inline;
	font-size:		1.1em;/*1.2em;*/
	line-height: 	1.45;/*1.34em;*/
}

#body div.about div.subscribe dl.videoRss dd a,
#body div.about div.subscribe dl.videoRss dd span {
	float:			left;
	display:		inline;
}
#body div.about div.subscribe dl.videoRss dd span {
	margin:			0 8px 0 5px;
	border-right:	1px solid #B2B2B2;	
}
#body div.about div.subscribe input.subscribe {
	float:			left;
	display:		inline;
	width:			74px;
	height:			20px;
	margin:			0 0 0 6px;
	background:		url(../images/button_subscribe.gif) no-repeat left top;
	text-indent:	-9999px;
}

#body div.about div.subscribe input.subscribe:hover {
	background:		url(../images/button_subscribe.gif) no-repeat -74px 0;
}

/* Talk Medalions
--------------------------------------------------------------------*/

div.talkListContainer.horiz {
	height: 	570px; 
	width:		auto;
	margin:		0;
	position: relative;
	overflow: 	hidden;
	background: #fff;
}
div.talkListContainer.horiz dl.talkMedallion {
	float:			left;
	display:		inline;
	position: 		relative;
	height:			100px; /*110-10px*/
	width:			318px; /*330-12px*/
	padding:		5px 6px;
	margin:			0 4px 4px 0;
	background:		#f2f2f2;
}
div.talkListContainer.horiz dl.talkMedallion.medium {
	float:			left;
	display:		inline;
	position: 		relative;
	height:			84px; /*94-10px*/
	width:			268px; /*280-12px*/
	padding:		5px 6px;
	margin:			0 0 1px 1px;
	background:		#f2f2f2;
}
dl.talkMedallion img.new {
	position:		absolute;
	top:			6px;
	right:			4px;
}
dl.talkMedallion img.play_icon {
	top:			4px;
	left:			4px;
}
div.talkListContainer.horiz dl.talkMedallion dt.thumbnail {
	float:			left;
	display:		inline;
	position: 		relative;
	margin:			0 7px 0 0;
}
div.talkListContainer.horiz dl.talkMedallion dd h4 {
font-size:		1.1em;
}
div.talkListContainer.horiz dl.talkMedallion dd h4 span {
	font-size:		0.9em;
	color:			#666;
}
div.talkListContainer.horiz dl.talkMedallion dd h4 a {
	color:			#000;
}
div.talkListContainer.horiz dl.talkMedallion dd p {
	font-size:		1.1em;
	margin:			0!important;
	color:			#666;
}
div.talkListContainer.horiz dl.talkMedallion dd p.ratings {
	position:		absolute;
	bottom:			6px;
	left:			145px;
}
div.talkListContainer.horiz dl.talkMedallion dd p.ratings span.first {
	font-weight:	bold;
	color:			#000;
}
/* End Talk Medalions */

 /* FOOTER
--------------------------------------------------------------------*/
#footer {
	clear:				both;
	height:				3em;
	background:			#dad8d6;
	line-height:		3em;
	text-transform:		uppercase;
	color:				#666;
	font-weight:		bold;
	margin-top:			20px;
}

#footer a.smalllogo {
	float:				left;
	display:			inline;
	width:				47px;
	height:				18px;
	line-height:		18px;
	margin-top:			.6em;
	margin-left:		7px;
	margin-right:		80px;
	text-indent:		-9999999px;
	background:			url(../images/logo_ted_small.gif) no-repeat top left;
}

#footer ul {
	float: 				left;
	display:			inline;
	list-style:			none;
}

#footer ul li {
	display:			inline;
	font-size:			.9em;
	color:				#545454;
}

#footer ul li.legal {
	margin-right:		8px;
}

#footer ul li a {
	color:				#545454;
	text-decoration:	none;
}

#footer form {
	float:				right;
	display:			inline;
	margin-top:			.5em;
	margin-right:		6px;
}

#footer form input.text {
	padding:			2px 5px 0 5px;
	float:				left;
	height:				16px;
	width:				192px;
	border:				0;
	border-top:			1px solid #949494;
	border-left:		1px solid #e9e9e9;
	color:				#666;
	font-size:			11px;
	font-weight:		bold;
}

#footer form input.button {
	float:				left;
}

div.error label {
	color:				#ff2b06 !important;
}
div.error select,
div.error input.text,
div.error textarea.textbox {
	background:			#ffdfda !important;
}

.error span {
	display: block;
	margin: 0 !important;
	padding: 0 !important;
	color: #ff2b06 !important;
	font-size: 0.7857em !important;
	padding-top: 2px !important;
	display: block !important;
}

.error span a {
  text-decoration: underline;
}

.error span.asterisk { 
	display:			inline !important;
}
div.error h4,
p.error {
	color:				#ff2b06 !important;
}
div.error label span,
div.error h4 span {
	display:			inline !important;
	font-size:			1em !important;
}
.notification span {
	display:			block;
	margin:				0 !important;
	padding:			0 !important;
	color:				#0d8d06 !important;
	font-size:			0.7857em !important;
	display:			block !important;
}
 /* CSS Workarounds
--------------------------------------------------------------------*/

 /* clearfix (already applied on #body)
--------------------------------*/

.clearfix:after,#body:after {
    content:			"."; 
    display:			block; 
    height:				0; 
    clear:				both; 
    visibility:			hidden;
}

.clearfix,#body {
	display:			inline-block;
}

/* Hides from IE-mac \*/
* html .clearfix, * html #body {height: 1%;}
.clearfix, #body {display: block;}
/* End hide from IE-mac */


/* form controls */

div.yui-skin-ted {
	position:		relative;
	
}

div.formItemLine {
	margin-bottom: 14px;
}

label.formItemLabel {
	margin:		0 6px 0 0;
	display: 	block;
	font-size: 	1.1em;
	font-weight: bold;
	color: 		#545454;	
}

label.formItemLabelBySide {
	float:left;
	height:1.454em;
	padding-top:4px;
	margin: 0 14px 0 0;
	font-size: 1.1em;
	font-weight: bold;
	color: #545454;	
}

input.formTextInput {
	position:		relative;
	top:			-4px;
	margin: 0 14px 14px 0;
	padding: 2px 4px 0 4px;
	width: 249px;
	height: 1.454em;
	font-size: 1.1em;
	border: 1px solid #dcdcdc;
	color: #000;
}

input.formTextInputBySide {
	margin: 0 14px 0px 0;
	padding: 2px 4px 0 4px;
	width: 249px;
	height: 1.454em;
	font-size: 1.1em;
	border: 1px solid #dcdcdc;
	color: #666;
}

textarea.short {
	border:1px solid #DCDCDC;
	color:#666;
	font-size:1.1em;
	height:5em;
	margin:0pt;
	padding:4px 4px 0pt;
}
textarea.wide {
	width:523px;
}
textarea.narrow {
	width: 249px;
}

span.errorMessage {
	color: #ff0000;
}

/* yui combo box */
.yui-skin-sam .yui-ac {
	float:			none!important;
    position: 		relative;
    font-family: 	arial;
    font-size: 		100%;
}
.yui-skin-sam .yui-ac-input {
    position: relative;
    width: 100%;
}
/*
.yui-skin-sam .yui-ac-container {
    position: absolute;
    top: 1.6em;
    width: 100%;
}*/
div.createprofile #maincontent div.career input.yui-ac-input {
	float:		none!important;
}
div.createprofile #maincontent div.aboutme input.yui-ac-input {
	margin:		0!important;
}
div.createprofile #maincontent div.career div.divider div.clearfix div.yui-ac-container,
div.createprofile #maincontent div.aboutme div.yui-ac-container {
	top:			0px;
	margin:			0px;	
}
div.createprofile #maincontent div.career div.divider div.clearfix div.yui-ac-container div {
	float:			none;
}
div.createprofile #maincontent div.aboutme div.yui-ac-content li {
	display:		block!important;
	margin:			0!important;
}
.yui-skin-sam .yui-ac-container {
	position: 		relative;
	float:			none!important;
	top:			-9px;
	margin:			0 14px;	
}
.yui-skin-sam .yui-ac-content {
    position: absolute;
    width: 100%;
    border: 1px solid #808080;
    background: #fff;
    overflow: hidden;
    z-index: 9050;
}
.yui-skin-sam .yui-ac-shadow {
    position: absolute;
    margin: .3em;
    width: 100%;
    background: #000;
    -moz-opacity: 0.10;
    opacity: .10;
    filter: alpha( opacity = 10);
	z-index:9049;
}
.yui-skin-sam .yui-ac iframe {
    opacity: 0;
    filter: alpha( opacity = 0);
	padding-right:.3em;
	padding-bottom:.3em;
}
.yui-skin-sam .yui-ac-content ul {
    margin: 0!important;
    padding: 0;
    width: 100%;
}
.yui-skin-sam .yui-ac-content li {
    margin: 0;
	margin-bottom: 0!important;
    padding: 2px 5px!important;
    cursor: default;
    white-space: nowrap;
    list-style: none;
    zoom: 1;
	font-size:		1.1em;
}
.yui-skin-sam .yui-ac-content li.yui-ac-prehighlight {
    background: #B3D4FF;
}
.yui-skin-sam .yui-ac-content li.yui-ac-highlight {
    background: #426FD9;
    color: #FFF!important;
}
/*yui combo box*/

div.hr {
		margin-top: 10px;
		height: 15px;
		background-color: transparent;
		background-image: url(../images/border_dotted.gif);
		background-repeat: repeat-x;
		background-attachment: scroll;
}

div.whitespace {
	height: 6px;
	background-color: #ffffff;
}

div.hr hr {
	display: none;
}

div.vr {
	width: 6px; 
	float:left;
}

div#signinHolder { 
	height: 320px;
}

div.columnInMain_2 {
	 width: 329px; 
	 height: 100%; 
	 float: left; 	
	 background-color: #e8e8e8;
}

div.columnInMain_3 {
	 width: 217px; 
	 height: 100%; 
	 float: left; 	
	 background-color: #e8e8e8;
}

div.box {
	clear: both;
	background-color: #e8e8e8;
}

div.boxContent {
	padding: 15px 10px 15px 10px;
}


div#selectcountry select {
	margin: 0pt 17px 12px 0pt;
	padding: 1px;
	width: 256px;
	height: 1.6em;
	font-size: 1.1em;
	border-width: 1px;
	border-style: solid;
	border-color: #dcdcdc;
}
div#selectcountry label, div#selectcity label, div#selectzipcode label {
	margin: 0pt 0pt 6px 0pt;
	display: block;
	font-weight: bold;
	color: #545454;
}

span.caption {
	font-size: 1em;
	font-style: italic;
	color: #666;
}

/* jQuery Dialogs */
.ui-dialog {
	width: 438px;
	background-color: #fefefe;
	background-repeat: no-repeat;
	padding: 11px 11px 10px 11px;
	text-align: left;
	font-size: 1.0em;
}
.ui-dialog .login {
	margin-left: 9px;
}
.ui-dialog span.ui-dialog-title {
	margin-top:5px;
	margin-left:9px;
	margin-bottom:20px;
	font-size:1.8em;
	font-weight: bold;
	display:block;
}
.ui-dialog p {
	color: #323232;
	font-size: 1.2em;
	margin-bottom:20px;
	width:350px;
}
.ui-dialog div.clearfix {
	margin-bottom:20px;
}
.ui-dialog div.column {
	float: left;
	width: 192px;
	padding-right:10px;
	float: left;
	font-size: 1.2em;
	margin-right:12px;
}
.ui-dialog label {
	font-size:1.1em;
	color:#323232;
}
.ui-dialog label.block {
	font-weight:bold;
	display: block;
	margin-bottom:3px;
}
.ui-dialog .ui-icon-closethick {
	position:absolute;
	top:10px;
	right:10px;
	display:block;
	background-image:url(../images/commenting/button_close.png);
	width:12px;
	height:13px;
}
.ui-dialog input.text {
	width:190px;
	font-size:1.2em;
}
.ui-dialog input.submit {
	margin-right:2px;
	margin-top:0;
}
.ui-dialog p.after_form {
	margin-top:50px;
}

.ui-dialog dl.downloads {
	margin-left: 9px;
}

.ui-dialog dl.downloads dd {
	margin-bottom: 15px;
}

.ui-dialog span.error {
	color: #ff2b06;
}

.ui-dialog div.column h3 {
	width: 192px;
	font-size: 1.2em;
	background-color: #dedede;
	color: #323232;
	text-transform: uppercase;
	padding-top: 6px;
	padding-bottom: 6px;
	padding-left: 9px;
	margin-bottom: 15px;
}

/* Overlays */
.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
.ui-widget-shadow { margin: -11px 0 0 -11px; padding: 11px; background: #2d2d2d; opacity: .90;filter:Alpha(Opacity=90); -moz-border-radius: 11px; -webkit-border-radius: 11px; }
.ui-corner-all { -moz-border-radius: 11px; -webkit-border-radius: 11px; }
.ui-corner-all-small { -moz-border-radius: 3px; -webkit-border-radius: 3px; }

/* jQuery Tabs */
.ui-tabs { padding: .2em; zoom: 1; }
.ui-tabs .ui-tabs-nav { list-style: none; position: relative; padding: .2em .2em 0; }
.ui-tabs .ui-tabs-nav li { position: relative; float: left; border-bottom-width: 0 !important; margin: 0 .2em -1px 0; padding: 0; }
.ui-tabs .ui-tabs-nav li a { float: left; text-decoration: none; padding: .5em 1em; }
.ui-tabs .ui-tabs-nav li.ui-tabs-selected { padding-bottom: 1px; border-bottom-width: 0; }
.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; }
.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
.ui-tabs .ui-tabs-panel { padding: 1em 1.4em; display: block; border-width: 0; background: none; }
.ui-tabs .ui-tabs-hide { display: none !important; }

/* jQuery Touch Switch */
.touch_switch {
	display: none;
}
.touch_switch label {
	font-size: 1.1em;
	position: relative;
	top: -5px;
}
.touch_switch .switch {
	display: inline-block;
	width: 73px;
	height: 21px;
	background: url(../images/on-off.png) no-repeat 0 0;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}
.touch_switch .switch.off {
	background-position: -43px 0;
}
@media only screen and (min-device-width: 481px) {
	.touch_switch {
		display: block;
	}
}
