	
	div.error {
	/*
	width: 100%;
	background: #ee0101;
	float:left;
	position: relative;
	top: -7px;
	left: -10px;
	color: #fff;
	width: 150px;
	font-size: 11px;
	border: 2px solid #ddd;
	box-shadow: 0 0 6px #000;
	-moz-box-shadow: 0 0 6px #000;
	-webkit-box-shadow: 0 0 6px #000;
	padding: 4px 10px 4px 10px;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	opacity:0.8;
	filter:alpha(opacity=40);
	*/
	-webkit-animation-name: bounce;
	animation-name: bounce;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-duration: .8s;
	animation-duration: .8s;
	position: absolute;
	/*background-color: #ec6a38;*/
	background-color:rgb(245, 199, 56);
	color: #fff;
	display: -moz-inline-stack;
	display: inline-block; 
	vertical-align: middle;
	font-size: 12px;
	font-weight: 700;
	padding: 6px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
	position: absolute;
	margin: 0 0 0 22px;
	line-height: 1.5em;
	text-indent: 0;
	vertical-align: top!important;
	/*margin-top: 4px;*/
	margin-left: 5px;
	opacity: 0.75;
	filter:alpha(opacity=40);
	
	}
	.error:after {
	/*border-right: 5px solid #ec6a38;*/
	border-right: 5px solid rgb(245, 199, 56);
	}
	.error:after {
	content: "";
	position: absolute;
	right: 100%;
	top: 12px;
	width: 0;
	height: 0;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	}
	
	@-webkit-keyframes bounce{0%{-webkit-transform:translateX(0);opacity:0.75}55%{-webkit-transform:translateX(10px)}65%{-webkit-transform:translateX(-5px)}100%{-webkit-transform:translateX(0);opacity:0.85}}
	@keyframes bounce{0%{transform:translateX(0);opacity:0.75}55%{transform:translateX(10px)}65%{transform:translateX(-5px)}100%{transform:translateX(0);opacity:0.85}}
	
	input.error {
		border: 1px solid red;
	}

	fieldset {   
	-moz-border-radius:5px;  
	border-radius: 5px;  
	-webkit-border-radius: 5px;
	background-color: #eaf2f7;
	text-align: left !important;
	margin-bottom: 30px;
	}
	
	fieldset  legend{   
	color:#0074c7;
	font-weight:bold;
	text-transform:uppercase;
	}
	
	fieldset ul, fieldset li{
	border:0; 
	margin:0; 
	padding:0; 
	list-style:none;  
	}
	
	fieldset li{
	clear:both;
	list-style:none;
	padding-bottom:10px;
	}

	fieldset input{
	float:left;
	margin-bottom:3px;
	}
	
	/*fieldset label{
	width:300px;
	float:left;
	font-weight:bold;
	text-align: right;
	}*/

	fieldset label{
	width:220px;
	float:left;
	font-weight:bold;
	margin-left: 20px;
	}
	
	fieldset p{
	margin-left:240px;
	
	}
	
	fieldset .required{
	color:red;
	}
	
	fieldset .boldtext{
	font-weight:bold;
	}

	fieldset .section_header
 	{
   	height:18px;  
   	-moz-border-radius:3px;  
	border-radius: 3px;  
	-webkit-border-radius: 3px;
   	text-align: center;
   	vertical-align: middle;
   	/*background-color:#1c94c4;*/
   	border: 1px solid #4297d7;
   	background: #5c9ccc url(img/section_header.png) 50% 50% repeat-x;
   	color:white;
   	padding-top: 5px !important;
   	font-weight: bold;
 	}

 	.category_select label{
 		text-align:left;
 	}

 	.upload-queue-item {
	background-color: #F5F5F5;
	border-bottom: 1px dotted #D5D5D5;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	font: 12px Arial, Helvetica, Sans-serif;
	margin-top: 3px;
	padding: 15px;
	}
	
	/*** Input field styling from Bootstrap **/
	input, textarea, select {
	-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
	-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
	-ms-transition: border linear 0.2s, box-shadow linear 0.2s;
	-o-transition: border linear 0.2s, box-shadow linear 0.2s;
	transition: border linear 0.2s, box-shadow linear 0.2s;
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
	}
	input:focus, textarea:focus, select:focus {
	outline: 0;
	border-color: rgba(82, 168, 236, 0.8);
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
	-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
	}
	input[type=file]:focus, input[type=checkbox]:focus, select:focus {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	outline: 1px dotted #666;
	}

	input[type="text"],
	input[type="password"],
	.ui-autocomplete-input,
	textarea,
	select,
	.uneditable-input {
	display: inline-block;
	padding: 5px;
	font-size: 13px;
	/*line-height: 18px;*/
	color: black;
	border: 1px solid #ccc;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	}
	


	
	
	

	
	

   
	

