@charset "utf-8";
/**
 *
 * Generic CSS for CakePHP
 *
 * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
 * Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
 *
 * Licensed under The MIT License
 * Redistributions of files must retain the above copyright notice.
 *
 * @copyright     Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
 * @link          http://cakephp.org CakePHP(tm) Project
 * @package       app.webroot.css
 * @since         CakePHP(tm)
 * @license       MIT License (http://www.opensource.org/licenses/mit-license.php)
 */

* {
	margin:0;
	padding:0;
	font-size:14px;	
	/*font-weight: normal;*/
}

/** General Style Info **/
body {
    background: #f4f4f4;
	color: #fff;
	font-family:'lucida grande',verdana,helvetica,arial,sans-serif;	
	margin: 0;
	min-width:1050px;
}
a {
	color: #6E3434;
	text-decoration: underline;
	font-weight: bold;
}
a:hover {
	color: #C97373;
	text-decoration:none;
}
a img {
	border:none;
}
h1, h2, h3, h4 {
	font-weight: normal;
	margin-bottom:0.5em;
}

h1 {
	background:#a372f9;
	color: #fff;
	font-size: 140%;
	padding:3px 10px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
}
h2 {
	color: gray;
	font-family:'Gill Sans','lucida grande', helvetica, arial, sans-serif;
	font-size: 130%;
}

h3 {
	color: #2c6877;
	font-family:'Gill Sans','lucida grande', helvetica, arial, sans-serif;
	font-size: 165%;
}
h4 {
	color: #6E3434;
	font-weight: normal;
}


ul, li {
	margin: 0 12px;
}
p {
	margin: 0 0 1em 0;
}

/** Layout **/
#container {
	font-weight: normal;
	text-align: left;
}

#content{
	background: #fff;
	clear: both;
	color: #333;
	padding: 10px 20px 40px 20px;
	overflow: auto;	
}

.discussion {
	border: 1px solid black;
	padding: 3px;
	margin-bottom: 5px;
}

.discussion .infos {
	display:table-cell;
	height:100%;
	border-right:1px solid green;
	padding-right: 5px;
	min-width: 200px;
}


.discussion .commentaire {
	display:table-cell;
	padding-left: 5px;
}

.commentaireNew{
	font-style:italic;
	color:gray;
}

#footer {
	clear: both;
	padding: 6px 10px;	text-align: center;
	
	background: #a372f9;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#6B6B6B), to(#a372f9));
	background-image: -webkit-linear-gradient(top,#6B6B6B,#a372f9);
	background-image: -moz-linear-gradient(top, #6B6B6B, #a372f9);
	background-image: -ms-linear-gradient(top, #6B6B6B, #a372f9);
	background-image: -o-linear-gradient(top, #6B6B6B, #a372f9);
	background-image: linear-gradient(top, #6B6B6B, #a372f9);
	border-top:2px solid #FAB823;
	color:#fff;
	font-size:70%;
	font-weight: normal;
}

/** containers **/
div.form,
div.index,
div.view {
	float:right;
	width:76%;
	border-left:1px solid #666;
	padding:10px 2%;
}
div.actions {
	float:left;
	width:16%;
	padding:10px 1.5%;
}
div.actions h3 {
	padding-top:0;
	color:#777;
}


/** Tables **/
table {
	border-right:0;
	clear: both;
	color: #333;
	margin-bottom: 10px;
	width: 100%;
        font-size: small;
        border-spacing: 0px;
        border-collapse: collapse; 
}
th {
	border:0;
	border-bottom:2px solid #555;
	text-align: left;
	padding:4px;
	/*font-weight:bold;*/
}
th a {
	/*display: block;*/
	/*padding: 2px 4px;*/
    padding-right: 10px;
	text-decoration: none;
}
th a.asc:after {
	content: ' ⇣';
}
th a.desc:after {
	content: ' ⇡';
}
table tr td {
	padding: 6px;
	text-align: left;
	vertical-align: top;
	border-bottom:1px solid #ddd;
}
table tr:nth-child(even) {
	background: #f9f9f9;
}
table .projet{
        background: #99CE93 !important;
}
table .ecart{
        background: #D6062D !important;
}
table .projetbeneficiaire{
        background: #F2C250 !important;
}
td.actions {
	text-align: center;
	white-space: nowrap;
}
table td.actions a {
	margin: 0px 6px;
	padding:2px 5px;
}

/* SQL log */
.cake-sql-log {
	background: #fff;
}
.cake-sql-log td {
	padding: 4px 8px;
	text-align: left;
	font-family: Monaco, Consolas, "Courier New", monospaced;
}
.cake-sql-log caption {
	color:#fff;
}

/** Paging **/
.paging {
	background:#fff;
	color: #ccc;
	margin-top: 1em;
	clear:both;
}
.paging .current,
.paging .disabled,
.paging a {
	text-decoration: none;
	padding: 5px 8px;
	display: inline-block
}
.paging > span {
	display: inline-block;
	border: 1px solid #ccc;
	border-left: 0;
}
.paging > span:hover {
	background: #efefef;
}
.paging .prev {
	border-left: 1px solid #ccc;
	-moz-border-radius: 4px 0 0 4px;
	-webkit-border-radius: 4px 0 0 4px;
	border-radius: 4px 0 0 4px;
}
.paging .next {
	-moz-border-radius: 0 4px 4px 0;
	-webkit-border-radius: 0 4px 4px 0;
	border-radius: 0 4px 4px 0;
}
.paging .disabled {
	color: #ddd;
}
.paging .disabled:hover {
	background: transparent;
}
.paging .current {
	background: #efefef;
	color: #c73e14;
}

/** Scaffold View **/
dl {
	line-height: 2em;
	margin: 0em 0em;
	width: 60%;
}
dl dd:nth-child(4n+2),
dl dt:nth-child(4n+1) {
	background: #f4f4f4;
}

dt {
	font-weight: bold;
	padding-left: 4px;
	vertical-align: top;
	width: 10em;
}
dd {
	margin-left: 10em;
	margin-top: -2em;
	vertical-align: top;
}

/** Forms **/
form {
	clear: both;
	margin-right: 20px;
	padding: 0;
	width: 100%;
}
fieldset {
	border: 1px solid gray;
	margin-bottom: 1em;
	padding: 16px 10px;
}
fieldset legend {
	color: gray;
	font-family:'Gill Sans','lucida grande', helvetica, arial, sans-serif;
	font-size: 130%;
	font-weight: normal;
}
fieldset fieldset {
	margin-top: 0;
	padding: 10px 0 0;
}
fieldset fieldset legend {
	font-size: 120%;
	font-weight: normal;
}
fieldset fieldset div {
	clear: left;
	margin: 0 20px;
}
form div {
	clear: both;
	margin-bottom: 1em;
	padding: .5em;
	vertical-align: text-top;
}
form .input {
	color: #444;
}
form .required {
	font-weight: bold;
}
form .required label:after {
	color: #e32;
	content: '*';
	display:inline;
}
form div.submit {
	border: 0;
	clear: both;
	margin-top: 10px;
}
label {
	display: block;
	font-size: 110%;
	margin-bottom:3px;
}
input, textarea {
	clear: both;
	font-size: 140%;
	font-family: "frutiger linotype", "lucida grande", "verdana", sans-serif;
	padding: 5px;
	width:98%;
}
select {
	clear: both;
	font-size: 120%;
	vertical-align: text-bottom;
}
select[multiple=multiple] {
	width: 100%;
}
option {
	font-size: 120%;
	padding: 0 3px;
}
input[type=checkbox] {
	clear: left;
	float: left;
	margin: 0px 6px 7px 2px;
	width: auto;
}
div.checkbox label {
	display: inline;
}
input[type=radio] {
	float:left;
	width:auto;
	margin: 6px 0;
	padding: 0;
	line-height: 26px;
}
.radio label {
	margin: 0 0 6px 20px;
	line-height: 26px;
}
input[type=submit] {
	display: inline;
	font-size: 110%;
	width: auto;
}
form .submit input[type=submit] {
	background:#62af56;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#76BF6B), to(#3B8230));
	background-image: -webkit-linear-gradient(top, #76BF6B, #3B8230);
	background-image: -moz-linear-gradient(top, #76BF6B, #3B8230);
	border-color: #2d6324;
	color: #fff;
	text-shadow: rgba(0, 0, 0, 0.5) 0px -1px 0px;
	padding: 7px 10px;
}
form .submit input[type=submit]:hover {
	background: #5BA150;
}
/* Form errors */
form .error {
	background: #FFDACC;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	font-weight: normal;
}
form .error-message {
	-moz-border-radius: none;
	-webkit-border-radius: none;
	border-radius: none;
	border: none;
	background: none;
	margin: 0;
	padding-left: 4px;
	padding-right: 0;
}
form .error,
form .error-message {
	color: #9E2424;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	-ms-box-shadow: none;
	-o-box-shadow: none;
	box-shadow: none;
	text-shadow: none;
}

/** Notices and Errors **/
.message {
	clear: both;
	color: #fff;
	font-size: 140%;
	font-weight: bold;
	margin: 0 0 1em 0;
	padding: 5px;
}

.success,
.message,
.cake-error,
.cake-debug,
.notice,
p.error,
.error-message {
	background: #ffcc00;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #ffcc00, #E6B800);
	background-image: -ms-linear-gradient(top, #ffcc00, #E6B800);
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ffcc00), to(#E6B800));
	background-image: -webkit-linear-gradient(top, #ffcc00, #E6B800);
	background-image: -o-linear-gradient(top, #ffcc00, #E6B800);
	background-image: linear-gradient(top, #ffcc00, #E6B800);
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	border: 1px solid rgba(0, 0, 0, 0.2);
	margin-bottom: 18px;
	padding: 7px 14px;
	color: #404040;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
	-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.success,
.message,
.cake-error,
p.error,
.error-message {
	clear: both;
	color: #fff;
	background: #c43c35;
	border: 1px solid rgba(0, 0, 0, 0.5);
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
	background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
	background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
	background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
	background-image: linear-gradient(top, #ee5f5b, #c43c35);
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
}
.success {
	clear: both;
	color: #fff;
	border: 1px solid rgba(0, 0, 0, 0.5);
	background: #3B8230;
	background-repeat: repeat-x;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#76BF6B), to(#3B8230));
	background-image: -webkit-linear-gradient(top, #76BF6B, #3B8230);
	background-image: -moz-linear-gradient(top, #76BF6B, #3B8230);
	background-image: -ms-linear-gradient(top, #76BF6B, #3B8230);
	background-image: -o-linear-gradient(top, #76BF6B, #3B8230);
	background-image: linear-gradient(top, #76BF6B, #3B8230);
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
}
p.error {
	font-family: Monaco, Consolas, Courier, monospace;
	font-size: 120%;
	padding: 0.8em;
	margin: 1em 0;
}
p.error em {
	font-weight: normal;
	line-height: 140%;
}
.notice {
	color: #000;
	display: block;
	font-size: 120%;
	padding: 0.8em;
	margin: 1em 0;
}
.success {
	clear: both;
	color: #fff;
	font-size: 120%;
	margin: 0 0 1em 0;
	padding: 5px;
}

/**  Actions  **/
.actions ul {
	margin: 0;
	padding: 0;
}
.actions li {
	margin:0 0 0.5em 0;
	list-style-type: none;
	white-space: nowrap;
	padding: 0;
}
.actions ul li a {
	font-weight: normal;
	display: block;
	clear: both;
}

/* Buttons and button links */
input[type=submit],
.actions ul li a,
.actions a {
	font-weight:normal;
	padding: 4px 8px;
	background: #dcdcdc;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fefefe), to(#dcdcdc));
	background-image: -webkit-linear-gradient(top, #fefefe, #dcdcdc);
	background-image: -moz-linear-gradient(top, #fefefe, #dcdcdc);
	background-image: -ms-linear-gradient(top, #fefefe, #dcdcdc);
	background-image: -o-linear-gradient(top, #fefefe, #dcdcdc);
	background-image: linear-gradient(top, #fefefe, #dcdcdc);
	color:#333;
	border:1px solid #bbb;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	text-decoration: none;
	text-shadow: #fff 0px 1px 0px;
	min-width: 0;
	-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0px 1px 1px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0px 1px 1px rgba(0, 0, 0, 0.2);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0px 1px 1px rgba(0, 0, 0, 0.2);
	-webkit-user-select: none;
	user-select: none;
}
.actions ul li a:hover,
.actions a:hover {
	background: #ededed;
	border-color: #acacac;
	text-decoration: none;
}
input[type=submit]:active,
.actions ul li a:active,
.actions a:active {
	background: #eee;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#dfdfdf), to(#eee));
	background-image: -webkit-linear-gradient(top, #dfdfdf, #eee);
	background-image: -moz-linear-gradient(top, #dfdfdf, #eee);
	background-image: -ms-linear-gradient(top, #dfdfdf, #eee);
	background-image: -o-linear-gradient(top, #dfdfdf, #eee);
	background-image: linear-gradient(top, #dfdfdf, #eee);
	text-shadow: #eee 0px 1px 0px;
	-moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.3);
	box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.3);
	border-color: #aaa;
	text-decoration: none;
}

/** Related **/
.related {
	clear: both;
	display: block;
}

/** Debugging **/
pre {
	color: #000;
	background: #f0f0f0;
	padding: 15px;
	-moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.cake-debug-output {
	padding: 0;
	position: relative;
}
.cake-debug-output > span {
	position: absolute;
	top: 5px;
	right: 5px;
	background: rgba(255, 255, 255, 0.3);
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	padding: 5px 6px;
	color: #000;
	display: block;
	float: left;
	-moz-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.5);
	-webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.5);
	box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.5);
	text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}
.cake-debug,
.cake-error {
	font-size: 16px;
	line-height: 20px;
	clear: both;
}
.cake-error > a {
	text-shadow: none;
}
.cake-error {
	white-space: normal;
}
.cake-stack-trace {
	background: rgba(255, 255, 255, 0.7);
	color: #333;
	margin: 10px 0 5px 0;
	padding: 10px 10px 0 10px;
	font-size: 120%;
	line-height: 140%;
	overflow: auto;
	position: relative;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}
.cake-stack-trace a {
	text-shadow: none;
	background: rgba(255, 255, 255, 0.7);
	padding: 5px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	margin: 0px 4px 10px 2px;
	font-family: sans-serif;
	font-size: 14px;
	line-height: 14px;
	display: inline-block;
	text-decoration: none;
	-moz-box-shadow: inset 0px 1px 0 rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: inset 0px 1px 0 rgba(0, 0, 0, 0.3);
	box-shadow: inset 0px 1px 0 rgba(0, 0, 0, 0.3);
}
.cake-code-dump pre {
	position: relative;
	overflow: auto;
}
.cake-context {
	margin-bottom: 10px;
}
.cake-stack-trace pre {
	color: #000;
	background-color: #F0F0F0;
	margin: 0px 0 10px 0;
	padding: 1em;
	overflow: auto;
	text-shadow: none;
}
.cake-stack-trace li {
	padding: 10px 5px 0px;
	margin: 0 0 4px 0;
	font-family: monospace;
	border: 1px solid #bbb;
	-moz-border-radius: 4px;
	-wekbkit-border-radius: 4px;
	border-radius: 4px;
	background: #dcdcdc;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fefefe), to(#dcdcdc));
	background-image: -webkit-linear-gradient(top, #fefefe, #dcdcdc);
	background-image: -moz-linear-gradient(top, #fefefe, #dcdcdc);
	background-image: -ms-linear-gradient(top, #fefefe, #dcdcdc);
	background-image: -o-linear-gradient(top, #fefefe, #dcdcdc);
	background-image: linear-gradient(top, #fefefe, #dcdcdc);
}
/* excerpt */
.cake-code-dump pre,
.cake-code-dump pre code {
	clear: both;
	font-size: 12px;
	line-height: 15px;
	margin: 4px 2px;
	padding: 4px;
	overflow: auto;
}
.cake-code-dump .code-highlight {
	display: block;
	background-color: rgba(255, 255, 0, 0.5);
}
.code-coverage-results div.code-line {
	padding-left:5px;
	display:block;
	margin-left:10px;
}
.code-coverage-results div.uncovered span.content {
	background:#ecc;
}
.code-coverage-results div.covered span.content {
	background:#cec;
}
.code-coverage-results div.ignored span.content {
	color:#aaa;
}
.code-coverage-results span.line-num {
	color:#666;
	display:block;
	float:left;
	width:20px;
	text-align:right;
	margin-right:5px;
}
.code-coverage-results span.line-num strong {
	color:#666;
}
.code-coverage-results div.start {
	border:1px solid #aaa;
	border-width:1px 1px 0px 1px;
	margin-top:30px;
	padding-top:5px;
}
.code-coverage-results div.end {
	border:1px solid #aaa;
	border-width:0px 1px 1px 1px;
	margin-bottom:30px;
	padding-bottom:5px;
}
.code-coverage-results div.realstart {
	margin-top:0px;
}
.code-coverage-results p.note {
	color:#bbb;
	padding:5px;
	margin:5px 0 10px;
	font-size:10px;
}
.code-coverage-results span.result-bad {
	color: #a00;
}
.code-coverage-results span.result-ok {
	color: #fa0;
}
.code-coverage-results span.result-good {
	color: #0a0;
}

/** Elements **/
#url-rewriting-warning {
	display:none;
}











/*_________________ Layout, connexion _______________*/
.bodyLogin{
        background: #413e3e;
}
.loginPage{
        width: 400px;
        margin: auto;
		padding-top:10px;
}
.inscriptionsPage{
        width: 800px;
        margin: auto;
		padding-top:50px;
}
.loginPage #content{
	border-radius: 10px 10px 10px 10px;
    padding: 10px 20px 0px;
}







/* ________________entete global_________________*/

#header{
	padding: 10px 20px;
	background: #a372f9;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#6B6B6B), to(#a372f9));
	background-image: -webkit-linear-gradient(top,#6B6B6B,#a372f9);
	background-image: -moz-linear-gradient(top, #6B6B6B, #a372f9);
	background-image: -ms-linear-gradient(top, #6B6B6B, #a372f9);
	background-image: -o-linear-gradient(top, #6B6B6B, #a372f9);
	background-image: linear-gradient(top, #6B6B6B, #a372f9);
	height: 80px;
	border-bottom:2px solid #FAB823;
}

#header #left{
    float: left;
    height: 100%;
}
#header #left #logo{
	float: left;
}
#header #left #title{
    float: left;
}
#header #left #title h1{
	margin: 0;
	font-weight: bold;
	color: #fff;
	font-size: 160%;
	background:none;
}
#header #left #title h2{
	margin: 0;
	color: #fff;
	font-style:italic;
	font-size: 100%;
	background:none;
}
#header #right{
    float: right;    
    height: 90px;
}

#header #right #connection{
    height: 30%;
    clear:both;
}
#header #right #connection #name{
	float: left;
	width: 100%;
    color: #fff; 
    text-decoration: none;
    font-weight: normal;
    font-size: 90%;
}

#header #right #connection a{ 
	color: #C97373;
	text-decoration: none;
	font-style: italic;
}

#header #right #connection a:hover{
	color: #6E3434;
	text-decoration:underline;
}

#header #right #navigation{
    height: 69%;
	min-width:770px;
    position: relative;
}
#header #right #navigation #bottom{
    bottom: 4px;
    position: absolute;
}
#header #right #navigation h5{
    float: left;
}
#header #right #navigation h5 a{
    color: #000; 
    text-decoration: none;    
    font-size: 100%;
	font-weight: normal;
    padding: 5px 10px;
	border: 1px solid #FAB823;
	background:#A3A3A3;
	margin-right: 10px;
	-moz-border-radius: 6px 6px 0px 0px;
	-webkit-border-radius: 6px 6px 0px 0px;
	border-radius: 6px 6px 0px 0px;
}
#header #right #navigation h5 .selected{    
	border-top: 2px solid #FAB823;
	border-left: 2px solid #FAB823;
	border-right: 2px solid #FAB823;
	border-bottom: 2px solid #fff;
	background:#fff;	
}
#header #right #navigation h5 a:hover{
    text-decoration: underline;
}

#header #deconnexion{
    position:absolute;
	top:0px;
	right:0px;
    text-align: center;
    margin: 10px;
	padding: 10px;
	border: 1px solid #FAB823;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
}
#header #deconnexion a{
    color: #fff;
	font-size: 100%;
	font-weight: normal;
	text-decoration: none;
}
#header #deconnexion a:hover{
    color: #fff;
    text-decoration: underline;
}

/* ________________titre page_________________*/

.titrePage label{
    display: inline;
    width: 40%;
    padding-right: 20px;
    font-size: 100%;
}
.titrePage span{
    font-size: 100%;
}
.titrePage .input input, .titrePage .input select, .titrePage .value, .titrePage textArea{
    width: 75%;
    float: right;
    padding: 2px;
    font-size: 100%;
}
.titrePage .input select {
	width: auto;
}
.titrePage .input{
    padding: 0;
    margin: 0;
}
.titrePage table th{
    border-style: none;
    padding: 0;
}

.titrePage table th a{
    display: inline-bloc;
}

.td_center {
	text-align: center;
}

td.td_border_right {
	border-right: solid 1px gray;
}

td.txt_bleu {
	color:#C92E2E;
}

table .highlights {
	background: none repeat scroll 0 0 #F5F5DA;
}

/*__________________Boutons_________________*/
.removeDiv {
    display: inline;
    font-size: 110%;
    width: auto;
    background:#db2824;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#db2824), to(#c42824));
    background-image: -webkit-linear-gradient(top, #db2824, #c42824);
    background-image: -moz-linear-gradient(top, #db2824, #c42824);
    border-color: #db2824;
    color: #fff;
    text-shadow: rgba(0, 0, 0, 0.5) 0px -1px 0px;
    padding: 8px 10px;
    font-family: "frutiger linotype","lucida grande","verdana",sans-serif;
    border-radius: 4px 4px 4px 4px;
    border-color: #db2824;
    border:1px solid #7c2824;
    margin-left: 7px;
    cursor: pointer;
}
.removeDiv:hover {
    display: inline;
    font-size: 110%;
    width: auto;
    background:#b02824;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#c42824), to(#db2824));
    background-image: -webkit-linear-gradient(top, #c42824, #db2824);
    background-image: -moz-linear-gradient(top, #c42824, #db2824);
    border-color: #b02824;
    color: #fff;
    text-shadow: rgba(0, 0, 0, 0.5) 0px -1px 0px;
    padding: 8px 10px;
    font-family: "frutiger linotype","lucida grande","verdana",sans-serif;
    border-radius: 4px 4px 4px 4px;
    border-color: #b02824;
    margin-left: 7px;    
    cursor: pointer;
}

#rejection_button_id, #conditional_validation_button_id, #final_validation_button_id {
    display: inline-block;
    font-size: 110%;
    width: auto;
    text-shadow: rgba(0, 0, 0, 0.5) 0px -1px 0px;
    padding: 8px 10px;
    font-family: "frutiger linotype","lucida grande","verdana",sans-serif;
    border-radius: 4px 4px 4px 4px;
    margin-left: 7px;
    text-align: center;
    cursor: pointer;
}

#rejection_button_id:hover, #conditional_validation_button_id:hover, #final_validation_button_id:hover {
    display: inline-block;
    font-size: 110%;
    width: auto;
    text-shadow: rgba(0, 0, 0, 0.5) 0px -1px 0px;
    padding: 8px 10px;
    font-family: "frutiger linotype","lucida grande","verdana",sans-serif;
    border-radius: 4px 4px 4px 4px;
    margin-left: 7px;
    text-align: center;
    cursor: pointer;
}

#rejection_button_id{
    background:#EE5F5B;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#EE5F5B), to(#C43C35));
    background-image: -webkit-linear-gradient(top, #EE5F5B, #C43C35);
    background-image: -moz-linear-gradient(top, #EE5F5B, #C43C35);
    border-color: #db2824;
    color: #fff;
    border-color: #444444;
    border:1px solid #444444;
}

#conditional_validation_button_id{
    background:#e1b029;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#e1b029), to(#93711a));
    background-image: -webkit-linear-gradient(top, #e1b029, #93711a);
    background-image: -moz-linear-gradient(top, #e1b029, #93711a);
    border-color: #db2824;
    color: #fff;
    border-color: #444444;
    border:1px solid #444444;
}

#final_validation_button_id{
    background:#76BF6B;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#76BF6B), to(#3B8230));
    background-image: -webkit-linear-gradient(top, #76BF6B, #3B8230);
    background-image: -moz-linear-gradient(top, #76BF6B, #3B8230);
    border-color: #db2824;
    color: #fff;
    border-color: #444444;
    border:1px solid #444444;
}

#rejection_button_id:hover{
    background:#C43C35;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#C43C35), to(#EE5F5B));
    background-image: -webkit-linear-gradient(top, #C43C35, #EE5F5B);
    background-image: -moz-linear-gradient(top, #C43C35, #EE5F5B);
    border-color: #db2824;
    color: #fff;
    border-color: #444444;
    border:1px solid #444444;
}

#conditional_validation_button_id:hover{
    background:#93711a;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#93711a), to(#e1b029));
    background-image: -webkit-linear-gradient(top, #93711a, #e1b029);
    background-image: -moz-linear-gradient(top, #93711a, #e1b029);
    border-color: #db2824;
    color: #fff;
    border-color: #444444;
    border:1px solid #444444;
}

#final_validation_button_id:hover{
    background:#3B8230;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#3B8230), to(#76BF6B));
    background-image: -webkit-linear-gradient(top, #3B8230, #76BF6B);
    background-image: -moz-linear-gradient(top, #3B8230, #76BF6B);
    border-color: #db2824;
    color: #fff;
    border-color: #444444;
    border:1px solid #444444;
}

#rejection_button, #conditional_validation_button, #final_validation_button {
    margin-top: 20px;
    padding: 0;
    display: inline;
}

.removeDiv span{
    -webkit-user-select: none;
    -moz-user-select: none;

}

/*__________________Fusion_________________*/

#contenu #result .list_link a{
    padding-right: 10px;
}

.tooMuchDifferenceDiv{
    color: red;
    font-weight: bold;
}

#content #fusionPdf{
    color: #003D4C;
    margin-left: 10px;
    font-weight: bold;
    text-decoration: underline;
}

#content #fusionPdf:hover{
    color: #367889;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
}




/*__________________Module de recherche et de création d'action_________________*/

#searchDiv .input{    
    display: inline-block;
}

#searchDiv #searchInput{
	width: 400px;
    font-size: 100%;
    padding: 10px;
}

#searchDiv table tr td{    
    padding:1px;
}

#searchDiv label{    
    font-size:12px;
}

/*__________________Evaluation_________________*/


.titrePage #evaluation input, .titrePage #evaluation .value, .titrePage #evaluation textArea{
    width: 100%;
}

.titrePage #evaluation #questionTh{
    width: 20%;
}

.titrePage #evaluation #answerTh{
    width: 8%;
}

.titrePage #evaluation #commentTh{
    width: 62%;
}

.titrePage #evaluation .expertName{
    text-decoration: underline;
}

.evalTitle{
    text-align: center;
    background-color: grey;
    color: white;
    font-weight: bold;
}

#evaluationHead table{
    width: 100%;
    border: 1px solid gray;
}

#evaluationHead table td{
    border: 1px solid gray;
}

#evaluationHead table .paddingLeft{
    padding-left: 50px;
}

span.mandatory {
	color: red;
}

textarea.obligatoire {
	background-color: #EBACAB;
}

/*__________________Slider_________________*/

.fusionSlider{
    display: inline-block;
    width: 90%;
    margin: 0px 0px 0px 4%;
    padding: 0px;
    
}

.fusionSlider div{
    padding: 0;
}

#oxTitreFusionForm #evaluation .expertName{
    margin-bottom: 0;
}

td.slider {
	padding: 0;
}

td.slider div.slider {
	width: 100%;
	padding: 0.5em 0 0.5em 0;
	margin: 0;
}

/*
Les css suivant surcharge le UI jquery
> ici en read write
*/
.ui-widget-content{
    background: none repeat scroll 0 0 #FFFFFF !important;
    border: 1px solid #4A4A4A !important;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default{
    background: none repeat scroll 0 0 #B0B0B0 !important;
    border: 1px solid #404040 !important;
}

/*
Les css suivant surcharge le UI jquery
> ici en read only
*/
.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled{
    opacity: 0.5 !important;
}

/*__________________Gestion des binomes_________________*/

#binomesTable #oxTitreSettingForm table{
    width: 100%;
}

#binomesTable table select, #binomesTable table select option{
    font-size: 100%;
}

#binomesTable table .input{
    padding: 0;
    margin: 0;
}

#binomesTable table tr td{
    border-bottom: 0;
}


/*__________________Liste des actions_________________*/

#contenu table .input{
    float: left;
}

#contenu table select{
    float: left;
    font-size: 90%;
}

#contenu table .binomeChange{
    color: #003D4C;
    margin-left: 10px;
    font-weight: bold;
    text-decoration: underline;
}

#contenu table .binomeChange:hover{
    color: #367889;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
}


#inscriptions,#entete {
	text-align:center;
	font-size:110%;
	margin-top:20px;	
}

#inscriptions a {
	color: #549C74;
	text-decoration: underline;
	font-style: italic;
}

#inscriptions a:hover {
	color: #5AC78B;
	text-decoration:underline;	
}


#content .mask{
    display: none;
    width: 0;
}


.clear_both{
    clear: both;
    display: block;
}

.td_right{
	text-align:right;
}

#notice p,#notice div {
	font-size:90%;
}

#searchDiv #searchAction{
    display: inline-block;
    font-size: 110%;
    width: auto;
    background:#808080;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#808080), to(#717171));
    background-image: -webkit-linear-gradient(top, #808080, #717171);
    background-image: -moz-linear-gradient(top, #808080, #717171);
    border-color: #db2824;
    color: #fff;
    text-shadow: rgba(0, 0, 0, 0.5) 0px -1px 0px;
    padding: 8px 10px;
    font-family: "frutiger linotype","lucida grande","verdana",sans-serif;
    border-radius: 4px 4px 4px 4px;
    border-color: #444444;
    border:1px solid #444444;
    margin-left: 20px;
    text-align: center;
    cursor: pointer;
}
-moz-linear-gradient(center top , #76BF6B, #3B8230) repeat scroll 0 0 #62AF56
#searchDiv #searchAction:hover{
    display: inline-block;
    font-size: 110%;
    width: auto;
    background:#717171;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#717171), to(#808080));
    background-image: -webkit-linear-gradient(top, #717171, #808080);
    background-image: -moz-linear-gradient(top, #717171, #808080);
    border-color: #db2824;
    color: #fff;
    text-shadow: rgba(0, 0, 0, 0.5) 0px -1px 0px;
    padding: 8px 10px;
    
    border-color: #444444;
    border:1px solid #444444;
    
}

input[type=checkbox].refresh_cb {
	margin-bottom: 0px;
}



/*__________________Descriptif_________________*/
#descriptifHead {
    width: 800px;
    margin: 0 auto;
	margin-top:20px;
}

#descriptifBody {
    width: 800px;
    margin: 0 auto;
}

#descriptifBody div {
    margin: 0;
	padding: 4px 0px;
}

#descriptifBody textarea {
	clear: both;
	font-size: 90%;
}

#descriptifBody .smallink{
	padding-top:30px;
	text-align:right;
	font-size:10px;
}
#descriptifBody .smallink a{
	font-size:10px;
}

#descriptifBody .checkDescriptif{
	width:30px;
	height:15px;
}

#descriptifBody .descriptifTitre {
	background:#939494;
	color: #003D4C;
	font-size: 120%;
	padding:3px 10px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	font-weight:bold;
	cursor:pointer;
}

#descriptifBody .descriptifTitre:hover {
	text-decoration:underline;
}

.separationExport{
	height:50px;
}

#pageExportGeneraux input,select{
	width:750px;
}

.nomchamps {
	color:darkgrey;
	font-style: italic;
}

#pageExportAvance .espace{
	padding:0px;
}

#pageExportAvance .conditionType{
	width : 15%;
}

#pageExportAvance .conditionValueInput {
	width: 35%;
}
