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

   forms.css
   * Sets up some default styling for forms
   * Gives you classes to enhance your forms

   Usage:
   * For text fields, use class .title or .text
   * For inline forms, use .inline (even when using columns)

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

@font-face {
  font-family: 'DINBold';
  src: url("fonts/DINWeb-Bold.eot");
  src: url("fonts/DINWeb-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/DINWeb-Bold.woff") format("woff"), url("fonts/DINComp-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'DINMedium';
  src: url("fonts/DINWeb-Medium.eot");
  src: url("fonts/DINWeb-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/DINWeb-Medium.woff") format("woff"), url("fonts/DINComp-Medium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'DINRegular';
  src: url("fonts/DINWeb.eot");
  src: url("fonts/DINWeb.eot?#iefix") format("embedded-opentype"), url("fonts/DINWeb.woff") format("woff"), url("fonts/DINComp.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }

.bold { font-family: 'DINBold', Arial, Helvetica, sans-serif; }
.medium { font-family: 'DINMedium', Arial, Helvetica, sans-serif; }
.regular { font-family: 'DINRegular', Arial, Helvetica, sans-serif; }


form#inscription label       {  font-family: 'DINRegular', Arial, Helvetica, sans-serif !important; font-weight: normal; margin: 14px 0px 0px; padding: 0px; width: 180px; color:#3d5462; float:left;} 
fieldset    { border: 0px; }
legend      { font-family: 'DINBold', Arial, Helvetica, sans-serif !important; font-weight: normal; color:#3d5462; }
form#inscription input  { padding: 6px; width: 200px; margin: 10px 0px 0px; color:#999999;} 
form#inscription select {
	padding-left: 5px; width: 215px; margin: 12px 0px 0px;
	border: 0 !important;  /*Removes border*/
	-webkit-appearance: none;  /*Removes default chrome and safari style*/
	-moz-appearance: none; /* Removes Default Firefox style*/
	background: #e6e9eb url(../img/select-arrow.png) no-repeat 97% center;
	cursor: pointer;
	text-indent: 0.01px; /* Removes default arrow from firefox*/
	text-overflow: "";  /*Removes default arrow from firefox*/ /*My custom style for fonts*/
	color: #3d5462;
	padding: 5px;
	border-radius: 0px;
	//box-shadow: inset 0 0 5px rgba(000,000,000, 0.5);
		
	}
/* Form fields
-------------------------------------------------------------- */

input[type=text], input[type=password],
input.text, input.title,
textarea, select {
  background-color:#fff;
  border:1px solid #DEE2E5;
}
input[type=text]:focus, input[type=password]:focus,
input.text:focus, input.title:focus,
textarea:focus, select:focus {
  border-color:#666;
}


input.text,
input.title   { width: 300px; padding:5px; }
input.title   { font-size:1.5em; }
textarea      { width: 900px; height: 350px; padding:5px; }

input[type=checkbox], input[type=radio],
input.checkbox, input.radio {
  position:relative; top:.25em;
}

form.inline { line-height:3; }
form.inline p { margin-bottom:0; }


/* Success, notice and error boxes
-------------------------------------------------------------- */

//.error,
//.notice,
//.success    { padding: .8em; margin-bottom: 1em; border: 2px solid #ddd; }

//.error      { background: #FBE3E4; color: #8a1f11; border-color: #FBC2C4; }
//.notice     { background: #FFF6BF; color: #514721; border-color: #FFD324; }
//.success    { background: #E6EFC2; color: #264409; border-color: #C6D880; }
//.error a    { color: #8a1f11; }
//.notice a   { color: #514721; }
//.success a  { color: #264409; }

div#alert-box {
	width:100%;
	position:fixed;
	top:0;
	left:0;
	margin:0; 
	padding:0;
	z-index: 1;
	text-align: center;
}
div.ab-cnt { width:960px;margin:auto;height:auto;padding-top:25px;padding-bottom:28px; font-size: 1.1em;}
div#ab-error-cnt { clear:both;padding-top:5px;padding-bottom:5px;margin-left:230px; }
div.ab-conf-cnt { clear:both;padding-top:4px;padding-bottom:25px;margin-left:230px; }

.ab-conf {
	background: #00c45e !important; opacity:1;filter:alpha(opacity=100); /* For IE8 and earlier */
	color:#ffffff; text-align: center; width:100%;
}
.ab-error {
	background: #ff6e12 !important; opacity:1; filter:alpha(opacity=100); /* For IE8 and earlier */
	color:#ffffff; text-align: center; width:100%;
}
div.msg-erreurs { margin-left: 0px; padding-top: 0px; margin-right: 0px; }
div.msg-erreurs p, div.msg-avertissement p { margin:0px; padding:0px; }
div.msg-avertissement { margin-left: 0px; padding-top: 0px; margin-right: 0px; }
div#avertissementsGeneraux {  }
div#avertissementsGeneraux .ui-icon {background-image: url(ui-themis/images/alert.png); }
