/* CSS for: Input Styles / Product Images / Message Styles / Masking Styles */

/* ---------------------------- */
/* Default Input Styles
/* ---------------------------- */
input.input,
select.input,
textarea {
	background: #fff;
	border: 1px #d6d8d8 solid;
	/*height:26px;*/
	width:258px;
	padding:3px 5px;

	font-size:12px;
	font-family:Arial, Helvetica, sans-serif;
	color:#000;
	vertical-align: top;
}
select.input {
	width:338px;
	padding:3px;
}
textarea {
	height:139px;
	padding:5px;
	line-height: normal;
}
input.errorField,
textarea.errorField {
	border:1px #BB0000 solid;
}

	/* ---------------------------- */
	/*  Special input style variations throughout the site
	/* ----------------------------*/
		
		/* DIALOGS */
		input.input_zip {
			width:134px;
		}
		
		/* PRODUCT DETAIL */
		select.input_vo {
			width: 165px;
		}
		#dialogLayer input.input_qty,
		input.input_qty {
			width: 27px;
			padding:0 7px;
			height: 19px;
			line-height: 19px;			
			color:#585f5e;
		}
		
		/* CHECKOUT */
		#checkout input.input,
		#checkout textarea {
			width:227px;
		}
		#checkout select.input {
			width:239px;
		}
		#checkout textarea {
			height:60px;
		}
		#checkout input.input_vvo {
			width:47px;
		}
		#checkout select.input_exp {
			width:auto;
		}


/* ---------------------------- */
/* Msg Styles
/* ---------------------------- */
.searchRetrievingMsg,
.msg_error,
.msg_success,
.msg_loading,
.msg_message,
.error_msg,
.success_msg,
.loading_msg,
.message_msg,
.loadingMsg {
	margin:0 0 .5em;
	padding:1em;
	display:block;
	font-size:12px;
	font-style: normal;
	text-align: left;
	line-height: normal;
	font-weight:bold;
	clear:both;
}

.searchRetrievingMsg,
.loadingMsg,
.msg_loading,
.loading_msg{
	text-align:center;
	color:#777;
	background: url('../images/layout/sprites.png') 0 0 repeat-x #fff;
	border: 1px solid #e4e4e4;
}


#dialogLayer .msg_error,
#dialogLayer .msg_success,
#dialogLayer .msg_loading,
#dialogLayer .msg_message,
#dialogLayer .error_msg,
#dialogLayer .success_msg,
#dialogLayer .loading_msg,
#dialogLayer .message_msg {
	margin:.5em 0;
}

.msg_error,
.error_msg {
	color:#fff;
	background-color:#990000;
}
.msg_success,
.success_msg {
	color:#fff;
	background-color:#008752;
}

.msg_message,
.message_msg {
	color:#fff;
	background-color:#222E63;
}
.msg_error a,
.msg_error a:visited,
.msg_success a,
.msg_success a:visited{
	color:#fff;
	text-decoration:underline;
}
label.errorLabel {
	background-color:#990000;
	color:#fff;
	padding:0 2px;
}
.error_msg ul,
.msg_error ul {
	margin:0 0 0 30px;
}

/* ----------------------------
 * Loading mask styles
 * ---------------------------- */
.loadmask {
    z-index: 100;
    position: absolute;
    top:0;
    left:0;
    -moz-opacity: 0.5;
    opacity: .50;
    filter: alpha(opacity=50);
    background-color: #CCC;
    width: 100%;
    height: 100%;
    zoom: 1;
}
.loadmask-msg {
    z-index: 20001;
    position: absolute;
    top: 0;
    left: 0;
    border:1px solid #669900;
    /*background: #c3daf9;
    padding:1px;*/
}
.loadmask-msg div {
    padding:5px 10px 5px 25px;
    background: #fbfbfb url('../images/loading.gif') no-repeat 5px 5px;
    line-height: 16px;
	/*border:1px solid #669900;*/
    color:#669900;
    font:normal 11px tahoma, arial, helvetica, sans-serif;
    cursor:wait;
}
.masked {
    overflow: hidden !important;
}
.masked-relative {
    position: relative !important;
}
.masked-hidden {
    visibility: hidden !important;
}
/* ---------------------------- */
/* Button Styles
/* ---------------------------- */

a.button {
	background: url('../images/layout/sprites.png') 0 -11px repeat-x #dadddd;
    border: 1px solid #d6d8d8;
    color: #585f5e;
    cursor: pointer;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 13px;
    font-weight: bold;
    height: 25px;
    line-height: 25px;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    width: auto;
    padding:8px 25px;
    display:inline-block;
	float: none;
}
a.button:hover {
	background-position: 0 0px;
	color:#222e63;
}
.button {
	float:left;
	width:auto;
	text-align:right;
	cursor:pointer;
}
	.floatRight {
		float:right;
		margin:0 0 0 10px;
	}
.button a, input.button {
	padding:10px 15px;
	background:#3598bf;
	text-transform:uppercase;
	color:#FFF;
	font-size:1em;
	text-decoration:none;
	display:block;
	font-weight:bold;
	line-height:normal;
}
	.withBorder a, input.withBorder {
		border:7px #FFF solid;
	}
	.lessPadding a {
		padding:8px 15px;
		text-transform:none;
	}
	.secondaryBG a {
		background:#c3c3c3;
		color:#333;
	}
	.linkOnly a {
		background:none;
		color:#333;
		text-decoration:underline;
		text-transform:none;
	}
.button a:hover, input.button:hover {
	background:#c4c3c3;
	color:#333;
	text-decoration:none;
	display:block;
}
	.secondaryBG a:hover {
		background:#3598bf;
		color:#FFF;
		text-decoration:none;
	}
	.linkOnly a:hover {
		background:none;
		color:#333;
	}