/*-----------------------------------------------------------------------------------*/
/*	Base CSS
/*-----------------------------------------------------------------------------------*/

#tcformpop-bg{
	display:none;
	position:fixed;
	_position:absolute; /* hack for IE 6*/
	height:100%;
	width:100%;
	top:0;
	left:0;
	z-index:9998;
}

#tcformpop{
	display:none;
	position:fixed;
	_position:absolute; /* hack for IE 6*/
	width:450px;
	z-index:999999;
    background: none repeat scroll 0 0 #F8F8F8;
	color:#5E6066;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
    margin:0px;
    padding: 5px;
	font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;
	font-size:13px;
	line-height:normal;
	line-height:22px;
	text-align:left;
}

/*-----------------------------------------------------------------------------------*/
/*	Mobile CSS
/*-----------------------------------------------------------------------------------*/

@media only screen and (max-width: 767px){
	
	#tcformpop{
		top:0;
		left:0;
		position:fixed!important;
	}
	
	#tcformpop .tcformpop-inner{
		height:auto;
	}
	
	#tcformpop .tcformpop-section{
		padding:10px 0px;
		margin-bottom:0 0 10px 0;
	}
	
	.tcformpop-counter{
		width:100%;
		text-align:center;
	}
	
	.tcformpop-submit{
		float:none;
		margin:0 0 0 38%;
	}

}

/*-----------------------------------------------------------------------------------*/
/*	Messages
/*-----------------------------------------------------------------------------------*/

.tcformpop-clear{
	clear:both;
	height:0px;
}

.tcformpop-error{
	color:#c92727;
	font-weight:bold;
}

.tcformpop-success{
	color:#269f0e;
	font-weight:bold;
}

.tcformpop-success a{
	color:#222222;
}

/*-----------------------------------------------------------------------------------*/
/*	Content Area
/*-----------------------------------------------------------------------------------*/

#tcformpop .tcformpop-inner{
    border: 1px solid #DDDDDD;
	height:100%;
	background:url(../images/formpop-bg.png) top left repeat;
}

#tcformpop .tcformpop-overlay{
	background:url(../images/white-overlay.png) -50px 0 repeat-x transparent !important;
	padding:0px 20px 10px 20px;
	height:100%;
}

#tcformpop .tcformpop-section{
	border-bottom:1px solid #ededed;
	padding:15px 0px;
	margin-bottom:0 0 15px 0;
}

#tcformpop .tcformpop-section.last{
	border-bottom:none;
}

#tcformpop .tcformpop-reply{
	padding:10px 0 0 38px;
	background:url(../images/close.png) left center no-repeat;
	background-size:24px auto !important;
	margin:0px !important;
	cursor:pointer;
}

/*-----------------------------------------------------------------------------------*/
/*	Form Styles
/*-----------------------------------------------------------------------------------*/

#tcformpop_form label{
	width:125px;
	text-align:right;
	float:left;
	text-transform:uppercase;
	font-size:10px;
	display:block;
	line-height:35px;
}

#tcformpop_form .tcformpop-input{
	float:left;
	width:240px;
	border:1px solid #D4D4D8;
	-webkit-box-shadow: 1px 2px 1px 0px #f5f5f5;
	-moz-box-shadow: 1px 2px 1px 0px #f5f5f5;
	box-shadow: 1px 2px 1px 0px #f5f5f5;
	padding:6px;
	margin:0 0 0 8px;
	color:#BBBBBB;
	font-size:16px;
}

#tcformpop_form .tcformpop-input.select{
	font-size:13px;
	margin:7px 0 0 8px;
	width:252px;
	color:#555555;
}

#tcformpop_form .tcformpop-input.textarea{
	font-size:13px;
	line-height:15px;
}

.tcformpop-submit{
	cursor:pointer;
	float:left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #9e9e9e;
	padding:6px 10px;
	background: -moz-linear-gradient(
		top,
		#f4f4f4 0%,
		#dbdbdb);
	background: -webkit-gradient(
		linear, left top, left bottom, 
		from(#f4f4f4),
		to(#dbdbdb));
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	border: 0px solid #e0e0e0;
	-moz-box-shadow:
		0px 3px 5px rgba(000,000,000,0.1),
		inset 0px 0px 1px rgba(117,117,117,1);
	-webkit-box-shadow:
		0px 3px 5px rgba(000,000,000,0.1),
		inset 0px 0px 1px rgba(117,117,117,1);
	box-shadow:
		0px 3px 5px rgba(000,000,000,0.1),
		inset 0px 0px 1px rgba(117,117,117,1);
	text-shadow:
		0px 0px 0px rgba(000,000,000,0),
		0px 0px 0px rgba(255,255,255,0);
}