.page_content .succes {
	margin-top: 150px;
	font-size: 14px;
	font-weight: bold;
	color: #443a26;
}

@import "uni-form-generic.css";
/* Keep in mind that wherever you see 'Required property' it means that the property must exist */

/* ------------------------------------------------------------------------------ */

	
  /* Generals */
  .uniForm fieldset{}
    .uniForm fieldset legend{ color: #333; font-weight: bold; font-size: 100%; margin: 0; padding: 1.5em 0; }
    
    /* This is the main unit that contains our form elements */
    .uniForm .ctrlHolder{ padding: 7px; border-bottom: 1px solid #dfdfdf;  }
    
    .uniForm .buttonHolder{ text-align: left; margin-left: 123px; }
      .uniForm .resetButton{ float: left; }
      .uniForm .primaryAction{ font-weight: bold; }
    
    /* This class gets added to div.ctrlHolder to highlight the row */
    .uniForm .focused{ background: #fffcdf; }
      
      /* .inlineLabel is used for inputs within labels - checkboxes and radio buttons */
      .uniForm .inlineLabel input,
      .uniForm .inlineLabels .inlineLabel input,
      .uniForm .blockLabels .inlineLabel input{ float: left; margin: 0 .4em 0 0;  }
        .uniForm .inlineLabel span{ float: left; width: 90%; }
        
/* ------------------------------------------------------------------------------ */

    /* .blockLabels (default style, will be applied even if you don't class the parent element) */
    .uniForm .blockLabels .ctrlHolder{}
      
      .uniForm label,
      .uniForm .blockLabels label,
      .uniForm .blockLabels .label{ margin: 0 0 .5em 0;  }
      
      .uniForm .textInput,
      .uniForm .blockLabels .textInput,
      .uniForm .blockLabels .fileUpload{ width: 53%; /* <- Required property */  }
    
      .uniForm .selectInput,
      .uniForm select,
      .uniForm .blockLabels .selectInput,
      .uniForm .blockLabels select{ width: 53.5%; /* <- Required property */ }
      .uniForm textarea,
      .uniForm .blockLabels textarea{ width: 53%; /* <- Required property */ height: 12em; }

      .uniForm .formHint,
      .uniForm .blockLabels .formHint{ width: 45%; /* <- Required property */ font-size: .9em; color: #777; position: relative; top: -.5em; }
      
      .uniForm .multiField,
      .uniForm .blockLabels .multiField{ width: 53%; }
        .uniForm .multiField .inlineLabel,
        .uniForm .blockLabels .multiField .inlineLabel{ display: block; margin: 0 0 .5em 0; }
        .uniForm .multiField .blockLabel,
        .uniForm .blockLabels .multiField .blockLabel{ width: 30%; margin: 0 10px 0 0; }
        .uniForm .multiField .blockLabel .textInput,
        .uniForm .multiField .blockLabel .selectInput,
        .uniForm .multiField .blockLabel select,
        .uniForm .blockLabels .multiField .blockLabel .textInput,
        .uniForm .blockLabels .multiField .blockLabel .selectInput,
        .uniForm .blockLabels .multiField .blockLabel select{ width: 100%; margin: .3em 0 0 0; }

/* ------------------------------------------------------------------------------ */

    /* .inlineLabels */
    .uniForm .inlineLabels .ctrlHolder{}
    
    .uniForm .inlineLabels label,
    .uniForm .inlineLabels .label{ width: 45%; /* <- Required property */ margin: .3em 2% 0 0; /* <- Required property */ }
    
    .uniForm .inlineLabels .textInput,
    .uniForm .inlineLabels .fileUpload{ width: 45%; /* <- Required property */ }
    
    .uniForm .inlineLabels .selectInput,
    .uniForm .inlineLabels select{ width: 45%; /* <- Required property */ }
    
    .uniForm .inlineLabels textarea{  width: 45%; /* <- Required property */ height: 12em; }

    .uniForm .inlineLabels .formHint{ margin-top: 0; margin-left: 47%; font-size: .9em; color: #777; position: static; }
    
    .uniForm .inlineLabels .multiField{ width: 45%; /* <- Required property */ margin: 0 0 .3em 0; }
      .uniForm .inlineLabels .multiField .inlineLabel{ display: block; margin: 0 0 .5em 0; }
      .uniForm .inlineLabels .multiField .blockLabel{ float: left; width: 26%; margin: 0 3% 0 0; }
      .uniForm .inlineLabels .multiField .blockLabel .textInput,
      .uniForm .inlineLabels .multiField .blockLabel .selectInput,
      .uniForm .inlineLabels .multiField .blockLabel select{ width: 100%; margin: .3em 0 0 0; }

/* Focus pseudoclasses */
.uniForm .ctrlHolder .textInput:focus{ outline: none; /* Get rid of the 'glow' effect in WebKit, optional */ }
.uniForm .ctrlHolder textarea:focus{ outline: none; /* Get rid of the 'glow' effect in WebKit, optional */ }
.uniForm div.focused .formHint{ color: #333; }

/* Columns (they are floated left by default) */
.uniForm .col{ width: 47.9%; /* <- Required property */ margin: 0 2% 20px 0; }
/* Use .first and .last classes to control the layout/spacing of your columns */
.uniForm .col.first{ width: 49%; /* <- Required property */ float: left; clear: none; }
.uniForm .col.last{ width: 49%; /* <- Required property */ float: right; clear: none; margin-right: 0; }

/* Messages */
.uniForm #errorMsg{ background: #ffdfdf; border: 1px solid #df7d7d; border-width: 1px 0; margin: 0 0 1.5em 0; padding: 7px; }
.uniForm .error{ background: #ffdfdf; border: 1px solid #df7d7d; border-width: 1px 0; }

  .uniForm #errorMsg dt, .uniForm #errorMsg h3{ margin: 0 0 .5em 0; font-size: 100%; line-height: 100%; font-weight: bold; }
  .uniForm #errorMsg dd{ margin: 0; padding: 0; }
    .uniForm #errorMsg ol{ margin: 0; padding: 0; }
      .uniForm #errorMsg ol li{ margin: 0; padding: 2px; list-style-position: inside; border-bottom: 1px dotted #df7d7d; position: relative; }
    .uniForm .errorField{ color: #af4c4c; margin: 0 0 6px 0; padding: 4px; background: #ffbfbf; }

.uniForm #OKMsg{ background: #C8FFBF; border: 1px solid #A2EF95; border-width: 1px 0; margin: 0 0 1.5em 0; padding: 7px; }
  .uniForm #OKMsg p{ margin: 0; }

/*
IT IS STRONGLY ADVISED TO MAKE YOUR CHANGES AFTER THIS COMMENT BY REPEATING (COPYING) THE SELECTOR FROM ABOVE, 
AND MODIFYING IT WITH YOUR OWN PROPERTIES/VALUES. THIS IS RECOMMENDED BECAUSE IF YOU HAPPEN TO RUN INTO TROUBLE, 
YOU CAN VERY EASILY REVERT TO A GENERIC STYLE OF UNI-FORM. BEST OF LUCK... 
*/

/* ------------------------------------------------------------------------------ */


/* __________________________UNIFORM FOR : REQUEST ACCOUNT, REQUEST CATALOG*/
.uniForm .ctrlHolder{ padding:0; border-bottom: none; height: 24px; line-height: 20px; float: left; margin: 2px 0 0 270px;   width: 70%;}

.uniForm .focused{ background: #f2f2f2;   margin: 2px 0 0 270px;  width: 70%; }

.uniForm label,
.uniForm .blockLabels label,
.uniForm .blockLabels .label{  width: 230px; display: block; float: left; color: #8b8970; padding-left: 7px; font-weight: bold; font-size: 12px;  }

.uniForm label a:link, .uniForm label a:visited{
	color:#999999;
}

.uniForm label a:hover{
	text-decoration: underline;
}

.uniForm .textInput,
.uniForm .blockLabels .textInput,
.uniForm .blockLabels .fileUpload{ display: inline; border: 1px solid #b9b3aa; width: 170px; color: #8b8970;  float: left; margin: 2px 0 4px 0; height: 14px; padding :2px 0 2px 0; text-indent: 3px; font-size: 12px; background: #f7f7f7; }
	  
.uniForm  .select_class { float: left; background: #f7f7f7;  width: 190px; border: 1px solid #b9b3aa;  font-size: 12px; color: #8b8970;  margin: 2px 0 2px 0;  } 

.uniForm textarea {border: 1px solid #bbbaba; width: 340px;  float: left; margin: 5px 0; height: 70px; color: #424a4d; text-indent: 5px; font-size: 11px; }

 em { color: #8b8970; margin: 4px 10px 0 5px; float: left;  }	  

.uniForm .error_text{ border: 0; color: #f95656; float: left; text-indent: 20px; font-size: 12px; }	

.uniForm .errorMsg {
	float: left;
	background: #facccc;border: 0; border: 1px solid #facccc; /* border-width: 1px 0;*/ float: left;  width: 70%; /*margin-bottom: 3px;*/ /*padding-left: 1px; _padding-left:0;*/ ;
}


/* __________________________UNIFORM FOR : CREDIT CARD INFORMATION*/
.uniForm1 .ctrlHolder{ padding:0; border-bottom: none; height: 24px; line-height: 20px; float: left; margin: 0 0 2px 30px; width:70%; }
.uniForm1 .focused{ background: #f2f2f2;   float: left;  width:70%; margin: 0 0 0 30px;}

.uniForm1 label,
.uniForm1 .blockLabels label,
.uniForm1 .blockLabels .label{   width: 200px; display: block; float: left; color: #8b8970; padding-left: 7px;  font-weight: bold; font-size: 12px;  }

.uniForm1 span{
	float: left;
	font-size: 16px;
	font-weight: bold;
	color: #000000;
	width: 400px;
	
}

.uniForm1 .textInput,
.uniForm1 .blockLabels .textInput,
.uniForm1 .blockLabels .fileUpload{ display: inline; border: 1px solid #b9b3aa; width: 170px; color: #8b8970;  float: left; height: 14px; padding :2px 0 2px 0; text-indent: 3px; font-size: 12px; background: #f7f7f7; }

.uniForm1 .select_class { float: left; background: #f7f7f7;  width: 172px; border: 1px solid #b9b3aa;  font-size: 12px; color: #8b8970;  height: 20px;   } 

.uniForm1 .ctrlHolder-textarea { height: 63px; line-height: 23px;  float: left;  color: #8b8970; font-size: 12px; margin: 0 0 0 30px; width: 70%; }	  

.uniForm1 .textareaInput {
	width: 170px;
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
	background: #f7f7f7;
	color: #8b8970;
	height: 55px;
	border: 1px solid #b9b3aa; 
	text-indent: 3px;
	float: left;
	
}

.uniForm1 .error_text{ border: 0; color: #f95656; float: left; text-indent: 20px; font-size: 12px; }	

.uniForm1 .errorMsg {
	float: left;
	background: #facccc;border: 0; border: 1px solid #facccc; /* border-width: 1px 0;*/ float: left;  width: 70%;  ;
}

.message {
	text-align: center;
	margin-top: 30px;/*50 */
	margin-bottom: 20px;
	display: block;
	
}


/* __________________________SHORT-FORM FOR : LOGIN RECOVER PASSWORD, CHANGE CREDENTIALS, NEWSLETTER*/
 .short-form .ctrlHolder{  padding:0; border-bottom: none;  height: 24px; line-height: 20px; float: left;  width: 60%; margin: 2px 0 0 350px; }
 .short-form .focused{   background: #f2f2f2;   margin: 2px 0 0 350px; width: 60%; }
 
 .short-form label,
 .short-form .blockLabels label,
 .short-form .blockLabels .label{   width: 130px; display: block; float: left; color: #8b8970; padding-left: 7px; font-weight: bold; font-size: 12px;  }

 .short-form .textInput,
 .short-form .blockLabels .textInput,
 .short-form .blockLabels .fileUpload{ display: inline; border: 1px solid #b9b3aa; width: 170px; color: #8b8970;  float: left; margin: 2px 0 4px 0; height: 14px; padding :2px 0 2px 0; text-indent: 3px; font-size: 12px; background: #f7f7f7; }
 
 .short-form .error_text{ border: 0; color: #f95656; float: left; text-indent: 20px; font-size: 12px; }	

 .short-form .select_class { float: left; background: #f7f7f7;  width: 170px; border: 1px solid #b9b3aa;  font-size: 12px;      } 	
 .short-form .errorMsg {
	float: left;
	background: #facccc;border: 0; border: 1px solid #facccc; /* border-width: 1px 0;*/ float: left;  width: 60%;  ;
}

.short-form .ctrlHolder-textarea { height: 60px; line-height: 23px; float: left;  color: #8b8970; font-size: 12px; margin: 2px 0 0 350px; width: 60%; }	  
.short-form .textareaInput {
	text-indent: 3px;
	width: 170px;
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
	background: #f7f7f7;
	color: #8b8970;
	height: 55px;
	border: 1px solid #b9b3aa; 
	float: left;
}

.short-form .ctrlHolder-textarea em{ margin-top: -5px;}

.short-form p{ display: block; float: left; color: #8b8970; padding:15px  0 0 7px;  font-size: 12px;  }

 /* end  short form*/

.short-form .links-login{
	margin-top: 10px;
	text-align: center;
}

.short-form .error_text{ border: 0; color: #f95656; float: left; text-indent: 20px; font-size: 12px; }	

.short-form .errorMsg {
	float: left;
	background: #facccc;border: 0; border: 1px solid #facccc; /* border-width: 1px 0;*/ float: left;  width: 60%; /*margin-bottom: 3px;*/ /*padding-left: 1px; _padding-left:0;*/ ;
}


/*.uniForm .large {
	height: 82px;
	display: block;
	float: left;
}*/	  
	  


/*.uniForm .explanatory_text {
	color: #6d6d6d;
}*/


.create-account{
	float:left;
	background: url(../images/buttons/request-account.gif) left top no-repeat;
	width:111px;
	margin: 5px 0 20px 0;
	height:17px;
	cursor:pointer;
	/*background:red;*/
}

.change-password{
	float:left;
	background: url(../images/buttons/change-password.gif) left top no-repeat;
	width:111px;
	/*margin: 5px 0 20px 385px;*/
	height:17px;
	cursor:pointer;
	/*background:red;*/
}

.recover-password{
	float:left;
	background: url(../images/buttons/recover-password.gif) left top no-repeat;
	width:111px;
	/*margin: 5px 0 20px 385px;*/
	height:17px;
	cursor:pointer;
	/*background:red;*/
}

.request-catalog{
	float:left;
	background: url(../images/buttons/request-catalog.gif) left top no-repeat;
	width:111px;
	/*margin: 5px 0 20px 385px;*/
	height:17px;
	cursor:pointer;
	/*background:red;*/
}

.search{
	float:left;
	background: url(../images/buttons/button-search.gif) left top no-repeat;
	width:61px;
	/*margin: 5px 0 20px 385px;*/
	height:17px;
	cursor:pointer;
	/*background:red;*/
}


.edit-account{
	float:left;
	background: url(../images/buttons/edit-account.gif) left top no-repeat;
	width:88px;
	height:17px;
	cursor:pointer;
	/*background:red;*/
}

.newsletter{
/*	border:1px solid red;*/
	float: left;
	background: url(../images/buttons/newsletter.gif) left top no-repeat;
	width:79px;
	height:17px;
	cursor:pointer;
}

.finalize-order{
	float:left;
	background: url(../images/buttons/finalize-order.gif) left top no-repeat;
	width:88px;
	height:17px;
	cursor:pointer;
	
}

.finalize-order1{
	float:left;
	background: url(../images/buttons/finalize-order.gif) left top no-repeat;
	width:88px;
	height:17px;
	cursor:pointer;
	margin-left: 5px;
}

.continue{

	float:left;
	background: url(../images/buttons/continue.gif) left top no-repeat;
	width:88px;
	height:17px;
	cursor:pointer;
}
	

.change-email{
	float:left;
	background: url(../images/buttons/change-email.gif) left top no-repeat;
	width:88px;
	height:17px;
	cursor:pointer;
	/*background:red;*/
}
.login{
	float:left;
	background: url(../images/buttons/login.gif) left top no-repeat;
	width:61px;
	margin: 5px 0 20px 0;
	height:17px;
	cursor:pointer;
}

.custom-quote{
	float:left;
	background: url(../images/buttons/button-custom-quote.gif) left top no-repeat;
	width: 142px;
	margin: 5px 0 20px 0;
	height:17px;
	cursor:pointer;
}


.change-size{
	float:left;
	background: url(../images/buttons/ok.gif) left top no-repeat;
	width:26px;
	margin: 1px 0 0 5px;
	height:17px;
	cursor:pointer;
}
.error-login {
	text-align: center;
	color: #f95656;
	margin-top:20px;
}

.error-login span{
	
	margin-top:10px;
	margin-bottom:10px;
}

.success-message{
	font-size: 20px;
	text-align:center;
	margin-top: 140px;
}

.success-message strong{
	font-size: 20px;
}

.success-message a{
	font-size:20px;
}

/*.msg-success{
	padding-left: 274px;
	padding-top:5px;
}*/

.logged{
	/*padding-left:30px;*/
	text-align: center;
	padding-top:30px;
	/*border: 1px solid red;*/
}

.logged1{
	/*padding-left:30px;
	 */
	text-align: center;
	padding-top:50px;
	font-size: 18px;
}


.logged h2{
	font-weight:normal;
	font-size:13px;
}

/* 				WISHLIST
 _______________________________________*/
.del-from-wishlist:link, .del-from-wishlist:visited {
		text-decoration: none;
		color:#494632;
		background:#e3e2dd;
			
		/*display: block;*/
		/*width: 147px;*/
		margin-left:79px;
		padding: 2px 3px 2px 3px;
		font-size: 11px;
	}
	
.del-from-wishlist:hover{
	background: #cac8c0;
	text-decoration: none;
}	
	
.wishlist-add-to-cart{
	margin-left: 79px;
	color:#ffffff;
	background:#8f8c77;
	padding: 2px 3px 2px 3px;
	cursor: pointer;
	font-weight: bold;
	width: 127px;
	margin-bottom: 7px;
	
}	
/*_________ FORM CHANGE SIZE IN PRODUCT DETAILS */
/*.change-size
{
	FONT-FAMILY: verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #7F7F7F;
	background: #F5F5F5;
	border: 1px #CBCBCB solid;
	margin : 0;
	padding: 2px;
}*/

/* ________________________NEWSLETTER*/


/*
.newsletter-forms {
	width: 50%;
	background: red;
}

.newsletter-forms input {
	float: left;
	margin-left: 400px;
	
}

.newsletter-forms .input-text {
	color: #8b8970;
	background: #f7f7f7;
	border: 1px solid #b9b3aa;
	padding-left: 8px;
	font-size: 12px;
	height: 15px;
}*/
