@charset "utf-8";
/**
* @package     : Emergensite
* @subpackage  : app
* @module      : template
* @Version     : 1.0
* @author      : Optimixo
* @copyright   : (c) 2012-2013 Optimixo
* @link        : http://www.optimixo.com
* @licence     :
*
*
*/

/*
Le positionnement => display – visibility – position – top/right/bottom/left – z-index – float – clear - overflow
Les marges et bordures => margin – padding – border
Les dimensions => width – height – min-width/max-width – min-height/max-height
Les propriétés de texte => font – line-height – text-align – text-indent – text-decoration – text-transform – letter-spacing – word-spacing – color
L'arrière-plan => background
Le CSS3
*/


/* TAGS */

html {
	font-size: 100%;
}

body {
	font: 1em 'Comfortaa', Verdana, Arial, sans-serif;
	line-height: 1.2em;
	color: #444444;
	background: #eff0ef;
}

h1 {
	padding-bottom: 10px;
	font-size: 2em;
}

h2 {
	padding-bottom: 8px;
	font-size: 1.8em;
}

h5 {
	padding-bottom: 2px;
	font-size: 1.3em;
}

a {
	color: #52a8ec;
}

input[type="text"],
input[type="password"] {
	position: relative;
	padding: 14px 20px 14px 40px;
	border: 1px solid #e7e7e7;
	width: 100%;
	font-size: .9em;
	color: #363636;
	background: #f3f3f3;
	background: -moz-linear-gradient(top, #f3f3f3 1%, #fefefe 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #f3f3f3), color-stop(100%, #fefefe));
	background: -webkit-linear-gradient(top, #f3f3f3 1%, #fefefe 100%);
	background: -o-linear-gradient(top, #f3f3f3 1%, #fefefe 100%);
	background: -ms-linear-gradient(top, #f3f3f3 1%, #fefefe 100%);
	background: linear-gradient(to bottom, #f3f3f3 1%, #fefefe 100%);
	-webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, .1);
	-moz-box-shadow: inset 0 0 1px rgba(0, 0, 0, .1);
	box-shadow: inset 0 0 1px rgba(0, 0, 0, .1);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: border linear .2s, box-shadow linear .2s;
	-moz-transition: border linear .2s, box-shadow linear .2s;
	-o-transition: border linear .2s, box-shadow linear .2s;
	transition: border linear .2s, box-shadow linear .2s;
}

input[type="text"]:focus,
input[type="password"]:focus {
	border-color: rgba(82, 168, 236, .8);
  	outline: 0;
  	outline: thin dotted \9;
  	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(82, 168, 236, .6);
  	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(82, 168, 236, .6);
  	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(82, 168, 236, .6);
}

input[type="button"],
input[type="submit"] {
	overflow: visible;
	padding: 14px 24px;
	border: 0px;
	cursor: pointer;
	font-size: .9em;
	color: #ffffff;
	text-shadow: 0px 1px 2px #1884da;
	outline: none 0px;
	background: #52a8ec;
	-webkit-box-shadow: 0 2px rgba(0, 0, 0, .1), inset 0 -3px rgba(0, 0, 0, .1);
	-moz-box-shadow: 0 2px rgba(0, 0, 0, .1), inset 0 -3px rgba(0, 0, 0, .1);
	-ms-box-shadow: 0 2px rgba(0, 0, 0, .1), inset 0 -3px rgba(0, 0, 0, .1);
	-o-box-shadow: 0 2px rgba(0, 0, 0, .1), inset 0 -3px rgba(0, 0, 0, .1);
	box-shadow: 0 2px rgba(0, 0, 0, .1), inset 0 -3px rgba(0, 0, 0, .1);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
	-webkit-transition: background linear .2s;
	-moz-transition: background linear .2s;
	-o-transition: background linear .2s;
	transition: background linear .2s;
}

input[type="button"]:hover,
input[type="submit"]:hover {
	background: #1884da;
}

/* ID */

#wrapper {
	position: relative;
	min-height: 100%;
}

#header_top {
	position: relative;
	margin: 0 auto;
	max-width: 1280px;
	min-height: 66px;
}

#header_bottom {
	position: relative;
	min-height: 84px;
	border-bottom: 1px solid #dddddd;
	border-top: 1px solid #dddddd;
	width: 100%;
	background: none repeat scroll 0 0 #e9e8e8;
}

#header_bottom > div {
	position: relative;
	margin: 0 auto;
	max-width: 1280px;
}

#logo {
	float: left;
	margin: 0 auto;
}

#main_toolbar {
	position: relative;
	float: right;
}

#main_toolbar ul {
	display: block;
	margin: 0;
	padding: 0;
}

#main_toolbar ul li {
	float: left;
	margin: 0 12px 0 0;
	list-style: none;
}

#main_toolbar ul li:last-child {
	margin: 0 !important;
}

#main_toolbar ul li span a {
	padding: 0 0 0 26px;
}

#page_title {
	position: relative;
	float: left;
/*	margin: 0 auto;
	max-width: 1280px;*/
}

#page_title h1 {
	margin: 0;
	padding-top: 35px;
	padding-bottom: 10px;
	font: bold 2em;
	letter-spacing: 2px;
}

#menu {
	position: relative;
	float: right;
	margin-top: 16px;
}

#menu ul {
	display: block;
	margin: 0;
	padding: 0;
}

#menu ul li {
	float: left;
	margin: 0 12px 0 0;
	list-style: none;
}

#menu ul li:last-child {
	margin: 0 !important;
}

#menu ul li a {
	display: block;
	padding: 14px;
	cursor: pointer;
	text-decoration: none;
	color: #000;
}

#menu ul li a:hover {
	color: #fff;
	background: #52a8ec;
}

#container {
	position: relative;
	clear: both;
	overflow: auto !important;
	padding: 40px 10px 50px;
}

#content {
	position: relative;
	overflow: auto !important;
	margin: 0 auto;
	max-width: 1280px;
}

#footer {
	position: relative;
	border-top: 1px solid #dddddd;
}

#footer_top {
	background-color: #e9e8e8;
	min-height: 120px;
}

#footer_bottom {
	margin: 0 auto;
	padding: 15px 0 10px;
	max-width: 1280px;
	min-height: 20px;
}

#footer_bottom p {
	margin-left: 30px;
	font-size: .8em;
	line-height: 1.8em;
	color: #bbbbbb;
	text-align: right;
}

#footer_product {
	position: relative;
	margin-bottom: 15px;
	border-bottom: 1px dotted #dddddd;
}

#footer_product h5 {
	padding-bottom: 10px !important;
	font-size: 1.2em !important;
	text-align: right;

}

#loader {
	visibility: hidden;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -33px 0 0 -33px;
	width: 66px;
	height: 66px;
	z-index: 99;
	background: url(tahiti/pictures/ajax/ajax-loader.gif) center;
}

#shadow {
	visibility: hidden;
	position: absolute;
	z-index: 20;
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
	background: white;
	-moz-opacity: .85;
	-webkit-opacity: .85;
	opacity: .85;
}

#loader_small {
	visibility: hidden;
	position: relative;
	margin: -30px 0 0 270px;
	width: 16px;
	height: 16px;
	background: url(tahiti/pictures/ajax/ajax-loader.gif);
}


/* CLASSES */

.footer_inside {
	margin: 0 auto;
	padding: 30px 0 10px;
	max-width: 1280px;
/*	text-align: center;*/
}

.footer_inside ul {
	font-size: .8em;
	line-height: 1.8em;
	text-align: right;
}

.footer_inside ul li {
	display: inline;
}

.footer_inside ul li a {
	margin-left: 20px;
	color: #444444;
	text-decoration: none;
}

.footer_inside ul li a:hover {
	text-decoration: underline;
}

.home_info {
	padding: 4px 0 8px 0;
	border-bottom: 2px solid #EFEFEF;
}

.home_info h3 {
	font-size: 1.2em;
}

.info_box {
	position: relative;
	margin-top: 0;
	padding: 15px 20px;
	border: 1px solid #e7e7e7;
	background: #fff;
	-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
	-webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, .1);
	box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
}

.message_box {
	position: relative;
	margin-bottom: 10px;
	font-size: .9em;
	-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
	box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
}

.message_box_content {
	padding: 12px 14px 12px 44px;
	text-align: left;
	text-shadow: 1px 1px 1px #ffffff;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
}

.message_error {
	border: 1px solid #e0b1b1;
}

.message_warning {
	border: 1px solid #e2e2ba;
}

.message_ok {
	border: 1px solid #b9dbb6;
}

.message_error:before {
	content: '';
	position: absolute;
	top: 16px;
	left: 14px;
	width: 17px;
	height: 17px;
	background: url(icons/icons-sprite.png) no-repeat -75px -41px;
}

.message_warning:before {
	content: '';
	position: absolute;
	top: 14px;
	left: 14px;
	width: 22px;
	height: 20px;
	background: url(icons/icons-sprite.png) no-repeat -97px -2px;
}

.message_ok:before {
	content: '';
	position: absolute;
	top: 16px;
	left: 14px;
	width: 19px;
	height: 14px;
	background: url(icons/icons-sprite.png) no-repeat -23px -19px;
}

.message_error .message_box_content {
	border: 1px solid #fceeec;
	color: #ad7676;
	background: #ffd9d5;
	-moz-box-shadow: inset 0 0 45px #f0bfba;
	-webkit-box-shadow: inset 0 0 45px #f0bfba;
	box-shadow: inset 0 0 45px #f0bfba;
}

.message_warning .message_box_content {
	border: 1px solid #fbfbef;
	color: #ada771;
	background: #f9f9dc;
	-moz-box-shadow: inset 0 0 45px #efefc0;
	-webkit-box-shadow: inset 0 0 45px #efefc0;
	box-shadow: inset 0 0 45px #efefc0;
}

.message_ok .message_box_content {
	border: 1px solid #f1f9f0;
	color: #7ea57b;
	background: #dff7dd;
	-moz-box-shadow: inset 0 0 45px #cbe5c9;
	-webkit-box-shadow: inset 0 0 45px #cbe5c9;
	box-shadow: inset 0 0 45px #cbe5c9;
}

.fade {
	-webkit-transition: opacity .2s linear;
	-moz-transition: opacity .2s linear;
	-o-transition: opacity .2s linear;
	transition: opacity .2s linear;
}

.fade.in {
	opacity: 1;
}

.fade.out {
	opacity: 0;
}

.picture_box_right {
	position: relative;
	margin: 0 0 25px 0;
}

.form_box {
	margin-bottom: 10px;
	border: 1px solid #e7e7e7;
	background: #fff;
	-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
	-webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, .1);
	box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
}

.form_box .form_box_title {
	position: relative;
	padding: 18px 20px 17px 50px;
	border-left: 1px solid #fff;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #e7e7e7;
	text-shadow: 0 1px 0 #fff;
	color: #999;
	background-color: #f9f9f9;
	background: -moz-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f9f9f9), color-stop(100%, #f5f5f5));
	background: -webkit-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
	background: -o-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
	background: -ms-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
	background: linear-gradient(to bottom, #f9f9f9 0%, #f5f5f5 100%);
	-webkit-border-top-left-radius: 4px;
	-moz-border-top-left-radius: 4px;
	-ms-border-top-left-radius: 4px;
	-o-border-top-left-radius: 4px;
	border-top-left-radius: 4px;
	-webkit-border-top-right-radius: 4px;
	-moz-border-top-right-radius: 4px;
	-ms-border-top-right-radius: 4px;
	-o-border-top-right-radius: 4px;
	border-top-right-radius: 4px;
}

.form_box .form_box_body {
	padding: 32px 37px 32px 37px;
/*	text-align: right;*/
}

.form_box #form_connection {
	width: 340px;
}

.form_box #form_forgot {
	width: 100%;
}

.field {
	position: relative;
	margin-bottom: 12px;
}

.field p {
	padding-bottom: 22px;
	font-weight: bold;
	color: #525bec;
}

.form_box .icon {
	display: block;
	position: absolute;
	top: 13px;
	left: 18px;
	width: 10px;
	height: 20px;
	background: url(icons/icons-sprite.png) no-repeat;
}

.form_box .connection {
	top: 20px;
	left: 20px;
	width: 17px;
	height: 19px;
	background-position: -23px -36px;
}

.form_box .login {
	background-position: -190px -37px;
}

.form_box .password {
	height: 23px;
	background-position: -275px -2px;
}

.form_box .mail {
	top: 17px;
	width: 16px;
	background-position: -247px -41px;
}

/*** ICONS ***/

.icon_16_user {
	background: url(tahiti/pictures/icons/icon-16-user.png) 3px 3px no-repeat;
}

.icon_16_message {
	background: url(tahiti/pictures/icons/icon-16-message.png) 3px 3px no-repeat;
}

.icon_16_logout {
	background: url(tahiti/pictures/icons/icon-16-logout.png) 3px 3px no-repeat;
}

/*** SIZE ***/

.mw-940 {
	max-width: 940px!important;
}

.w-86pc {
	width: 86%!important;
}

/**** ALIGN AND MARGIN ***/

.align_center {
	text-align: center;
}

.align_right {
	text-align: right;
}

.float_left {
	float: left;
	margin-right: 40px;
}

.field > .float_left {
	margin-right: 10px;
}

.field > input[type="submit"],
.field > input[type="button"] {
	margin-right: 0;
}

.float_right {
	float: right;
}

.clear {
	clear: both;
}

/*** POSITION ***/

.invisible {
	display: none;
}



/* NEW TABLES */
.new_table {
/*	border: 0 solid #DFDFDF;
	background-color: #F9F9F9;
	border-spacing: 0;
	width: 100%;
	clear: both;
	margin: 0;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	color: #666;
	border-collapse: collapse;
	margin: 0;*/
	border: 1px solid #e7e7e7;
	border-bottom: none;
	-webkit-box-shadow: 0 0 18px rgba(0,0,0,0.2);
	-moz-box-shadow: 0 0 18px rgba(0,0,0,0.2);
	box-shadow: 0 0 18px rgba(0,0,0,0.2);
}

.new_table caption {
	font-size: 14px;
	font-weight: bold;
	color: #999;
	margin: 0;
	padding: 6px 0 10px 6px;
	text-align: left;
}

.new_table thead th,
.new_table tfoot th {
/*	background-color: #F1F1F1;
	background-image: -ms-linear-gradient(top,#F9F9F9,#DFDFDF);
	background-image: -moz-linear-gradient(top,#F9F9F9,#DFDFDF);
	background-image: -o-linear-gradient(top,#F9F9F9,#DFDFDF);
	background-image: -webkit-gradient(linear,left top,left bottom,from(#F9F9F9),to(#DFDFDF));
	background-image: -webkit-linear-gradient(top,#F9F9F9,#DFDFDF);
	background-image: linear-gradient(top,#F9F9F9,#DFDFDF);
	font-weight: bold;
	text-align: center;
	padding: 5px 6px;*/
	border-bottom: 1px solid #e7e7e7;
	padding: 23px 10px 22px;
	text-shadow: 1px 1px 0 #fff;
	font-size: 12px;
	color: #999;
	text-align: center;
	background: #f9f9f9;
	background: -moz-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f9f9f9), color-stop(100%,#f5f5f5));
	background: -webkit-linear-gradient(top, #f9f9f9 0%,#f5f5f5 100%);
	background: -o-linear-gradient(top, #f9f9f9 0%,#f5f5f5 100%);
	background: -ms-linear-gradient(top, #f9f9f9 0%,#f5f5f5 100%);
	background: linear-gradient(to bottom, #f9f9f9 0%,#f5f5f5 100%);
	-moz-box-shadow: inset 1px 1px 0 0 #fff;
	-webkit-box-shadow: inset 1px 1px 0 0 #fff;
	box-shadow: inset 1px 1px 0 0 #fff;
}

.new_table thead th:first-of-type {
	-webkit-border-top-left-radius: 4px;
	-moz-border-top-left-radius: 4px;
	border-top-left-radius: 4px;
}

.new_table thead th:last-of-type {
	-webkit-border-top-right-radius: 4px;
	-moz-border-top-right-radius: 4px;
	border-top-right-radius: 4px;
}

.new_table tfoot th:first-of-type {
	-webkit-border-bottom-left-radius: 4px;
	-moz-border-bottom-left-radius: 4px;
	border-bottom-left-radius: 4px;
}

.new_table tfoot th:last-of-type {
	-webkit-border-bottom-right-radius: 4px;
	-moz-border-bottom-right-radius: 4px;
	border-bottom-right-radius: 4px;
}

.new_table thead th.button,
.new_table tbody td.button {
	width: 16px;
	text-align: center;
}

.new_table tbody tr:hover td{
	color: #000;
}

.new_table th {
	border-width: 1px 0;
}

.new_table th,
.new_table td {
	border-top: 1px solid white;
	border-bottom: 1px solid #BEBEBE;
	padding: 5px 7px;
}

.new_table td {
	border-width: 0;
	border-color: #DFDFDF;
}

.new_table tbody tr.border_top_white td {
	border-top: 1px dotted #BEBEBE;
}

.new_table tbody tr.border_top_grey td {
	border-top: 1px dotted #BEBEBE;
}

.new_table td.borderright {
	border-right: 1px solid #DFDFDF;
}


.new_table td.center {
	text-align: center;
	float: none;
}

.new_table td.right {
	text-align: right;
	float: none;
}

.new_table td.bold {
	font-weight: bold;
	font-size: 11px;
}

.new_table tbody tr.row1 td {
	background: #EAEAE9;/*#F2F2F1;*/
}

.new_table tbody tr td.careful {
	border: 2px solid #f00;
}

.new_table tbody tr td div p {
	padding: 0 5px 7px 5px;
	margin: 0;
}