/* @override 
	http://www2.antartic.fr/transport/inc/style.css?v=1
	http://www.antartic.fr/transport/inc/style.css?v=1
*/

/*

* @author : Erik Calop
* @url : www.cortex-communication.fr
* @version : 0.1
* @date : 2011-08-29
* @comment : Style du site Antartic transporteurs

*/

/*

* Mise en exergue :
* .info -> bloc d'information (bordure haute et basse)
* .remarque -> bloc remarque (outline kaki)
* .pagetable -> table structurÃ©e
* p.question -> icone point d'interrogation
* p.warning -> icone exclamation
* p.web -> icone www

*/

/*
CSS Espace mise à jour
v. 0.1
Author: Erik Calop - 2011
*/

/* @group reset */

/**
 * html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
 * v1.6.1 2010-09-17 | Authors: Eric Meyer & Richard Clark
 * html5doctor.com/html-5-reset-stylesheet/
 */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	/*vertical-align: baseline;*/
}

b { 
	font-weight: bold;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
	content: none;
}

ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}

mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}

del {
	text-decoration: line-through;
}

abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}

table {
	border-spacing: 0;
}

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	margin: 1em 0;
	padding: 0;
}

input, select {
	vertical-align: middle;
}

/**
 * Font normalization inspired by YUI Library's fonts.css: developer.yahoo.com/yui/
 */

body {
	line-height: 1.231;
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
	background-color: #fefefe;
	display: flex;
	flex-direction: column;
}

#main{
	height: 100%;
	flex: 1 0 auto;
	display: flex;
}

/* Hack retained to preserve specificity */

select, input, textarea, button {
	font-size: 99%;
}

/* Normalize monospace sizing:
   en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome */

pre, code, kbd, samp {
	font-family: monospace, sans-serif;
}

/**
 * Minimal base styles.
 */

/* Always force a scrollbar in non-IE */

html {
	overflow-y: scroll;
}

/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */

a:hover, a:active {
	outline: none;
}

ul, ol {
	margin-left: 2em;
}

ol {
	list-style-type: decimal;
}

/* Remove margins for navigation lists */

nav ul, nav li {
	margin: 0;
	list-style: none;
	list-style-image: none;
}

small {
	font-size: 85%;
}

strong, th {
	font-weight: bold;
}

/* Set sub, sup without affecting line-height: gist.github.com/413930 */

sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

pre {
	

/* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
	padding: 15px;
}

textarea {
	overflow: auto;
}

/* www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */

.ie6 legend, .ie7 legend {
	margin-left: -7px;
}

/* Align checkboxes, radios, text inputs with their label by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */

input[type="radio"] {
	vertical-align: text-bottom;
}

input[type="checkbox"] {
	vertical-align: bottom;
	width:auto!important;
}

.ie7 input[type="checkbox"] {
	vertical-align: baseline;
}

.ie6 input {
	vertical-align: text-bottom;
}

/* Hand cursor on clickable input elements */

label, input[type="button"], input[type="submit"], input[type="image"], button {
	cursor: pointer;
}

/* Webkit browsers add a 2px margin outside the chrome of form elements */

button, input, select, textarea {
	margin: 0;
}

/* Colors for form validity */

input:valid, textarea:valid {
	text-align: center;
	color: #3f3f3f;
	margin-left: 2px;
	margin-right: 2px;
}

input:invalid, textarea:invalid {
	border-radius: 1px;
	text-align: center;
	color: #3f3f3f;
	padding: 8px;
	border: 1px solid lightskyblue;
}

.no-boxshadow input:invalid, .no-boxshadow textarea:invalid {
	background-color: #f0dddd;
}


/* j.mp/webkit-tap-highlight-color */

a:link {
	-webkit-tap-highlight-color: #FF5E99;
}

/* Make buttons play nice in IE:
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */

button {
	width: auto;
	overflow: visible;
}

/* Bicubic resizing for non-native sized IMG:
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */

.ie7 img {
	-ms-interpolation-mode: bicubic;
}


/**
 * Non-semantic helper classes: please define your styles before this section.
 */

/* For image replacement */

.ir {
	display: block;
	text-indent: -999em;
	overflow: hidden;
	background-repeat: no-repeat;
	text-align: left;
	direction: ltr;
}

/* Hide for both screenreaders and browsers:
   css-discuss.incutio.com/wiki/Screenreader_Visibility */

.hidden {
	display: none;
	visibility: hidden;
}

/* Hide only visually, but have it available for screenreaders: by Jon Neal.
  www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden */

.visuallyhidden {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: drupal.org/node/897638 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
	clip: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	position: static;
	width: auto;
}

/* Hide visually and from screenreaders, but maintain layout */

.invisible {
	visibility: hidden;
}

/* The Magnificent Clearfix: Updated to prevent margin-collapsing on child elements.
   j.mp/bestclearfix */

.clearfix:before, .clearfix:after {
	content: "\0020";
	display: block;
	height: 0;
	overflow: hidden;
}

.clearfix:after {
	clear: both;
}

/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */

.clearfix {
	zoom: 1;
}

@media print {

/**
 * Print styles.
 *
 * Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
 */

* {
	background: transparent !important;
	color: black !important;
	text-shadow: none !important;
	filter: none !important;
	-ms-filter: none !important;
}

/* Black prints faster: sanbeiji.com/archives/953 */

a, a:visited {
	color: #444 !important;
	text-decoration: underline;
}

a[href]:after {
	content: " (" attr(href) ")";
}

abbr[title]:after {
	content: " (" attr(title) ")";
}

.ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
	content: "";
}

/* Don't show links for images, or javascript/internal links */

pre, blockquote {
	border: 1px solid #999;
	page-break-inside: avoid;
}

thead {
	display: table-header-group;
}

/* css-discuss.incutio.com/wiki/Printing_Tables */

tr, img {
	page-break-inside: avoid;
}
  @page { margin: 0.5cm; }

p, h2, h3 {
	orphans: 3;
	widows: 3;
}

h2, h3 {
	page-break-after: avoid;
}

}

/*

 @end */

/* @group os */

#devel {
	width: 960px;
	margin-right: auto;
	margin-left: auto;
	font-size: 10px;
}


dl, dt, dd { 
	
	margin: 0;
	padding: 0;
}

body, select, input, textarea {
  	color: #444;
	font-family: "Helvetica Neue", Helvetica, "Arial Unicode MS", Arial, sans-serif;
}

a {
	color: #0097bc;
	text-decoration: none;
}

.nav_text{
	color: black;
}


/* @group -- header */


p#identifiant, p#SiteSommaire { 
	float: right;
	margin-left: 30px;
	margin-top: 5px;
}

#btSommaire { 
	padding-left: 20px;
	background: url(/transport/im/icones/layout.png) no-repeat;
}

#btSite { 
	padding-left: 20px;
	background: url(/transport/im/icones/house.png) no-repeat;
}

#identification { 
	background: url(/transport/im/icones/user.png) no-repeat;
	color: white;
	padding-left: 20px;
	font-weight: bold;
}

#identification a { 
	background: url(/transport/im/icones/door.png) no-repeat;
	padding-left: 20px;
	margin-left: -20px;
}

a#aLogout { 
	position: absolute;
	width: 260px;
	right: 20px;
	text-align: center;
	top: 90px;
	border-top: 1px solid #0097bc;
	padding-top: 3px;
	color: #0097bc;
}



/* @end */


/* @group -- nav */
#main>nav { 
	width: 14vw;
	float: left;
	min-height: 100vh!important;
	vertical-align: top;
	flex-grow: 0;
	flex-shrink: 0;
}

.ANTARTIC {
	
	background-color: #90caf9;
}

.FDL {
	
	background-color: rgba(244, 134, 136, 1);
}

.SESP {
	
	background-color: whitesmoke;
}



#main>nav h1 {
	text-align: center;
	color: #444;
	font-size: 12px;
	margin-bottom: 10px;
	font-weight: 600;
	margin-right: -10px;
	margin-left: -10px;
	padding: 5px;
}

/* @group ---- menu */



.mCalend a:hover { 
	background: url(/transport/im/icones/date.png) no-repeat 10px center;
}

.mLogs a:hover { 
	background: url(/transport/im/icones/script.png) no-repeat 10px center;
}

.mUser a:hover{
	background: url(/transport/im/icones/user_suit.png) no-repeat 10px center;
}

.mTransporteur{
	background: url(/transport/im/icones/lorry.png) no-repeat 10px center;
}

.mTransporteur a:hover{
	background: url(/transport/im/icones/lorry.png) no-repeat 10px center;
}

.mCde{
	background: url(/transport/im/icones/order.png) no-repeat 10px center;
}

.mCde a:hover{
	background: url(/transport/im/icones/order.png) no-repeat 10px center;
}

.mSettings{
	background: url(/transport/im/icones/settings.png) no-repeat 10px center;
}

.mSettings a:hover{
	background: url(/transport/im/icones/settings.png) no-repeat 10px center;
}
/* @group ------ menu */

#menu span{
	text-transform: uppercase;
	font-weight: bold;
	font-size: 0.7em;
	color: #4c4c4c;
	letter-spacing: .1em;
	text-align: center;
	margin-top: 5px;
}

#menu dt{
	cursor: pointer;
	padding: 5px;
	background-color: hsl(210, 10%, 12.15%);
}

#menu ul li{
	padding: 5px;
}

#menu li p{
	margin:10px;
	color: white;
}

.submenu_item:hover{
	background-color: #0000006e;
}

#last-child{
	position: absolute;
	bottom: 0;
	padding: 5px;
	width: 15vw;
}

#menu i {
	color: #4c4c4c;
	padding: 10px;
}


#menu_mobile dt { 
	cursor: pointer;
	padding: 5px;
	border: 1px solid white;
	background:#0379b3 none no-repeat 4px 3px;
	font-size: 16px;
	font-weight: bold;

	margin-bottom: 10px;
	text-align: left;
	color: white;
	text-align: center;
}

#menu_mobile dd { 
	margin-bottom: 10px;
	border-bottom: 2px solid white;
}
#menu_mobile dd:last-child {
	margin-bottom: 2px; 
}

#menu_mobile li { 
	text-align: left;
	background-color: white;
}

#menu_mobile li a, #menu_mobile dt a { 
	color: #444;
	text-decoration: none;
	display: block;
	border: 0 none;
	border-bottom: 1px solid #f4e0a1;
	padding: 3px 4px 2px 24px;
	font-size: 12px;
	line-height: 14px;
}

#menu_mobile dt a:hover { 
	background-color: #eaf7ff;
}

#menu_mobile li a:hover { 
	background-color: #eaf7ff
}

/* @group ------ langues */

#langues {
	margin-top: 20px;
	border-top: 1px solid #cb9c6c;
	text-align: center;
	padding-top: 10px;
	margin-bottom: 10px;
}

#langues img {
	margin-right: 3px;
}

#langues a { 
	display: inline-block;
	padding: 2px 4px 0 6px;
	border: 1px solid #cb9d6c;
	margin: 5px 5px 5px 0;
	text-decoration: none;
	text-transform: uppercase;
	
	-webkit-box-shadow: 2px 2px 4px #d0bf89;
	-moz-box-shadow: 2px 2px 4px #d0bf89;
	box-shadow: 2px 2px 4px #d0bf89;
}

a.langue {
	background-color: #d0bf89;
}

a.langueS {
	background-color: white;
}

#langues a:hover {
	position: relative;
	border-color: #fd5e5e;
	top: 1px;
	left: 1px;
	
	-webkit-box-shadow: 0 0 4px #fff;
	-moz-box-shadow: 0 0 4px #fff;
	box-shadow: 0 0 4px #fff;
}
/* @end */

#version {
	text-align: center;
	font-size: 9px;
	margin-bottom: 10px;
}
/* @end */



/* @end */

/* @group -- contenu */

#content {
	padding-top:1vh;
	margin-left:auto;
	margin-right:auto;
	text-align: center;
}

#content p {
	margin-top: 1em;
	margin-bottom: 1em;
}

/* @group ---- Identification */

#content.identification { 
	width: 100vw;
	margin: 0 auto 20px;
	padding-bottom: 0;
	text-align: center;
}


form.identification { 
	width: 55vw;
	display: inline-block;
	border: 3px solid #1e88e5;
	padding: 2px;

	background-color: #90caf9;
	margin: 20px auto 20px;
	
}

form.identification td { 
	width: 55vw;
	border-collapse: collapse;
	border: 1px solid #1e88e5;
	padding: 6px;
	text-align: center;
	vertical-align: middle;
}

form.identification th{
	width: 10vw;
	border-collapse: collapse;
	border: 1px solid #1e88e5;
	padding: 6px;
	text-align: center;
	vertical-align: middle;
}

form.identification th { 
	background-color: #90caf9;
}

form.identification table tbody tr { 
	background-color: #ffffff;
}

/* @end */

#content h1 {
	color: #0088a9;
	margin: 0;
	font: normal normal 36px Georgia, "Times New Roman", Times, serif;
}


#content h2 { 
	font-size: 18px;
	font-weight: bold;
	color: #f66b0e;
	margin: 0 0 20px;
}

#content h3 { 
	border-bottom: 1px solid #e5e5e5;
	color: #e10078;
	margin-top: 0px;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 10px;
	padding-bottom: 5px;
}



/* @end */

/* @group footer */

footer {
	font-size: 9px;
	color: #fff;
	margin-top: 20px;
	text-align: right;
	margin-right: 10px;
	flex-shrink: 0;
}

footer a { 
	color: #b7d8e1;
}

footer a:hover { 
	color: #fff;
}



/* @end */

/* @end */

/* @group Bases */

/* @group -- styles */

.clearfix:before,
.clearfix:after {
    content: "\0020";
    display: block;
    height: 0;
    overflow: hidden;
}
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }

.green { 
	color: green;
}

.red { 
	color: red;
}

.silver { 
	color: silver;
}

.clear { 
	clear: both;
}

.dragdrop { 
	cursor: move;
}

a.btRetour { 
	display: inline-block;
	background: url(/transport/im/icones/arrow_undo.png) no-repeat 0 0;
	padding-left: 18px;
	min-height: 16px;
	line-height: 16px;
}

div.checkOn, div.checkOff { 
	float: left;
	width: 11px;
	height: 11px;
	display: block;
	margin-left: 0;
	margin-top: 4px;
}

.checkOn { 
	background-image: url(/transport/im/base/DotGreen.gif);
}

.checkOff { 
	background-image: url(/transport/im/base/DotRed.gif);
}

div.flagOn, div.flagOff { 
	display: inline-block;
	width: 16px;
	height: 16px;
	position: relative;
	top: 2px;
	margin-left: 5px;
}

.flagOn { 
	background-image: url(../im/icones/flag_green.png);
}

.flagOff { 
	background-image: url(../im/icones/flag_red.png);

}

.small { 
	font-size: 10px!important;
}

.logs{
	font-size: 12px;
	color: #807961;
}

.strong { 
	font-weight: bold;
}

.alCenter { 
	text-align: center;
}

.alRight { 
	text-align: right;
}

.alLeft { 
	text-align: left;
}

.alJustify { 
	text-align: justify;
}

/* @end */

/* @group -- boites */

.error, .notice, .success { 
	padding: .8em;
	margin-bottom: 1em;
	border: 2px solid #ddd;
	margin-right: auto;
	margin-left: auto;
	display: inline-block;
}

.error { 
	background: #FBE3E4;
	color: #8a1f11;
	border-color: #FBC2C4;
}

.error.icone {
	background: #FBE3E4 url(/transport/im/icones/error.png) no-repeat 4px 9px;
	padding-left: 26px;
}

.notice { 
	background: #FFF6BF;
	color: #514721;
	border-color: #FFD324;
}

.success { 
	background: #E6EFC2;
	color: #264409;
	border-color: #C6D880;
}

.bigError {
	font-size: 18px;
	font-weight: bold;
}

/* @end */

/* @group -- boutons */

a.petitbouton { 
	background-color: #dff4ff;
	border: 1px solid #b2cde3;
	color: #336699 !important;
	display: inline-block;
	padding: 3px 8px;
	margin-left: 2px;
	cursor: pointer;
}

a.petitbouton:hover { 
	background-color: #eef8ff;
	border: 1px solid #6299c5;
	color: #336699;
}

/* buttons */

.buttons a, .buttons button { 
	position: relative;
	display: inline-block;
	margin: 0 7px 0 0;
	background: #dff4ff no-repeat 8px center;

	border: 1px solid #b2cde3;
	text-decoration: none;
	color: #336699;
	cursor: pointer;
	padding: 5px 10px 6px 7px;
	font-weight: bold;
	font-size: 12px;
}

.buttons button { 
	width: auto;
	overflow: visible;
	padding: 4px 10px 3px 7px;
	margin: 5px;
}

.buttons button[type] { 
	padding: 4px 10px 4px 8px;
	/* Firefox */
    line-height: 17px;
	/*Safari */
}

*:first-child+html button[type] { 
	padding: 4px 10px 3px 7px;
	/*IE7 */
}

.buttons button img, .buttons a img { 
	margin: 0 3px -3px 0 !important;
	padding: 0;
	border: none;
	width: 16px;
	height: 16px;
}

/* STANDARD */

button:hover, .button a:hover { 
	background-color: #eaf7ff;
	border: 1px solid #6299c5;
	color: #336699;

}

.button a:active { 
	background-color: #6299c5;
	border: 1px solid #6299c5;
	color: #fff;
}

.buttons a.negative, .buttons a.positive { 
	padding-top: 2px;
	padding-right: 5px;
	padding-bottom: 2px;
	padding-left: 5px;
}

/* POSITIVE */

button.positive, .buttons a.positive, .buttons .positive a,
button.btMaj, button.btAjout, button.btValidation { 
	color: #529214;
	border: 1px solid #89984c;
	background-color: #e6efc2;
}

.buttons a.positive:hover, button.positive:hover,
button.btMaj:hover, button.btAjout:hover, button.btValidation:hover { 
	border: 1px solid #529214;
	background-color: #f1facb;
	color: #529214;
}

.buttons a.positive:active,
button.btMaj:active, button.btAjout:active { 
	background-color: #529214;
	border: 1px solid #529214;
	color: #fff;
}

/* NEGATIVE */

.buttons a.negative, button.negative , .buttons .negative a,
button.btSupp { 
	color: #d12f19;
	background-color: #fbe3e4;
	border: 1px solid #f97c81;
}

.buttons a.negative:hover, button.negative:hover,
button.btSupp:hover { 
	background-color: #f9edee;
	border: 1px solid #d12f19;
	color: #d12f19;
}

.buttons a.negative:active,
button.btSupp:active { 
	background-color: #d12f19;
	border: 1px solid #d12f19;
	color: #fff;
}

/* SGBD */

button.btAjout {
	display: inline-block;
	background-image: url(/transport/im/icones/add.png);
	vertical-align: sub;
	margin-right: 3px;
	padding-left: 28px!important;
}

button.btMaj {
	display: inline-block;
	vertical-align: sub;
	margin-right: 3px;
	background-image: url(/transport/im/icones/arrow_refresh.png);
	padding-left: 30px!important;
}

button.btValidation {
	display: inline-block;
	vertical-align: sub;
	margin-right: 3px;
	background-image: url(/transport/im/icones/thumb_up.png);
	padding-left: 30px!important;
}

button.btCherche {
	display: inline-block;
	vertical-align: sub;
	margin-right: 3px;
	background-image: url(/transport/im/icones/magnifier.png);
	padding-left: 30px!important;
}

button.btSupp {
	display: inline-block;
	background-image: url(/transport/im/icones/delete.png);
	vertical-align: sub;
	padding-left: 30px!important;
}

button.btIdentification span {
	display: inline-block;
	width: 16px;
	height: 16px;
	background: url(/transport/im/icones/key.png) no-repeat;
	vertical-align: sub;
	margin-right: 5px;
}
/* @end */

/* @group -- icones */

/* @group -- -- tableau */

a.icoEdit,
a.icoSupp,
a.icoAjout { 
	display: inline-block;
	width: 16px;
	height: 16px;
	text-indent: -9999px;
}

a.lienEdit,
a.lienSupp,
a.lienAjout,
a.lienZoom {
	background-repeat: no-repeat;
	padding-left: 17px;
	background-position: 0 center;
}

a.icoEdit, a.lienEdit { 
	background-image: url(/transport/im/base/edit.png);
}

a.icoSupp, a.lienSupp { 
	background-image: url(/transport/im/icones/delete.png);
	display: inline-block;
	min-height: 16px;
}


a.icoAjout, a.lienAjout { 
	background-image: url(/transport/im/icones/add.png);
}

a.lienZoom { 
	background-image: url(/transport/im/icones/magnifier.png);
}

a.icoGo {
	background: url(/transport/im/icones/bullet_go.png) no-repeat left center;
	padding-left: 16px;
}

.icoVide { 
	display: block;
	width: 16px;
	height: 16px;
	background: url(/transport/im/icones/bullet_white.png) no-repeat center center;
}

.tdClock {
	background: url(/transport/im/icones/clock.png) no-repeat 2px center;
	padding-left: 20px!important;
	text-align: left;
}

.tdTick {
	padding-left: 20px!important;
	text-align: left;
	background: url(/transport/im/icones/tick.png) no-repeat 2px center;
}

.tdDotGreen { 
	background: url(/transport/im/icones/bullet_green.png) no-repeat center center;
}

.tdDotRed {
	background: url(/transport/im/icones/bullet_red.png) no-repeat center center;
}

.tdDotGray {
	background: url(/transport/im/icones/bullet_white.png) no-repeat center center;
}

.tdVisible {
	width: 16px;
	background: url(/transport/im/icones/eye.png) no-repeat center center;
}

.tdInvisible {
	width: 16px;
	background: url(/transport/im/icones/eyeOff.png) no-repeat center center;
}

.trInvisible, .trInvisible a {
	color: #7c7c7c;
}

.trInvisible a:hover {
	color: #f00;
}


/* @end */

/* @group -- -- navig */

#content .nextpage, #content .prevpage {
	line-height: 26px;
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
	border-radius: 7px;
	border: 1px solid #eee;
	padding: 5px 10px;
}

#content .nextpage {
	background: #f9f9f9 url(/transport/im/base/ico-next.png) no-repeat 98.5% 50%;
	padding-right: 36px;
}

#content .prevpage {
	background: #f9f9f9 url(/transport/im/base/ico-prev.png) no-repeat 2% 50%;
	padding-left: 36px;
}

/* @end */

.ico-arrow, #content ul li.ico-arrow {
	padding-left: 17px;
	background: url(/transport/im/base/ico-fleche.png) left 4px no-repeat;
}

.ico-smile, #content ul li.ico-smile {
	padding-left: 20px;
	background: url(/transport/im/base/ico-lol.png) 1px center no-repeat;
}

.ico-question, #content ul li.ico-question {
	padding-left: 20px;
	background: url(/transport/im/base/ico-question.png) left 70% no-repeat;
}

.ico-star, #content ul li.ico-star {
	padding-left: 20px;
	background: url(/transport/im/base/ico-star.png) left 4px no-repeat;
}

.ico-light, #content ul li.ico-light {
	padding-left: 20px;
	background: url(/transport/im/base/ico-light.png) left 4px no-repeat;
}

/* @group -- -- icones */

.mAffiche {
	background: url(/transport/im/icones/page_white_text.png) no-repeat 2px 2px;
}

.mMasque {
	background: url(/transport/im/icones/page_white_text.png) no-repeat 2px 2px;
	opacity: 0.5;
}

.mPrive{
	background: url(/transport/im/icones/lock.png) no-repeat 10px center;
	color: #af1d1d;
	font-weight: bold;
}

.mMedias {
	background: url(/transport/im/icones/application_view_icons.png) no-repeat 10px center;
}

.mBase {
	background: url(/transport/im/icones/application_view_columns.png) no-repeat 10px center;
}

.mBandeaux {
	background: url(/transport/im/icones/layout_header.png) no-repeat 10px center;
}

.mArbo{
	background: url(/transport/im/icones/application_side_tree.png) no-repeat 10px center;
}

.mSGBD {
	background: url(/transport/im/icones/database_gear.png) no-repeat 10px center;
}

.mCalend {
	background: url(/transport/im/icones/date.png) no-repeat 10px center;
}

.mEvene {
	background: url(/transport/im/icones/tag_blue.png) no-repeat 10px center;
}

.mUser {
	background: url(/transport/im/icones/user_suit.png) no-repeat 10px center;
}

.mLogs{
	background: url(/transport/im/icones/script.png) no-repeat 10px center;
}

p.aLoupe { 
	background: url(/transport/im/icones/script.png) no-repeat 10px center;
	padding-left: 26px;
	padding-top: 1px;
	padding-bottom: 1px;
	color: #0097bc;
}

/* @end */

/* @end */

/* @group -- citation */

/* Citations */

#content blockquote {
	margin: 1em;
	padding: 0 0 0 50px;
	background: url(/transport/im/base/blockquote1.png) no-repeat top left;
}

#content blockquote p:last-child {
	background: url(/transport/im/base/blockquote2.png) no-repeat bottom right;
	min-height: 33px;
	margin-bottom: 0;
	padding: 0 50px 0 0;
}

#content blockquote span.link {
	background: none;
	margin: 0 10px 0 0;
	padding: 0;
	text-align: right;
	font-size: 0.9em;
	display: block;
}

#content blockquote span.link a {
	color: #ccc;
}

/* @end */

/* @group -- messages info */

.discret {
	color: #999;
}

.error2, .good, .warn {
	clear: both;
	color: #fff;
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
	border-radius: 7px;
	font-weight: bold;
	padding: 10px;
}

.error2 {
	background: #c00;
}

.warn {
	background: #FF7800;
}

.good {
	background: #83BF00;
}

.highlight {
	background: #ffe86d;
}

.info {
	border-top: 1px solid #bbb;
	border-bottom: 1px solid #bbb;
	padding: 10px 10px;
}

.remarque {
	outline-color: #C5C58B;
	outline-style: solid;
	outline-width: 3px;
	padding: 0.3em 1em;
}

/* @end */

/* @group -- awesome */

.awesome, .awesome:visited {
	border: 0;
	background: #222 url(/transport/im/base/overlay.png) repeat-x;
	display: inline-block;
	padding: 7px 12px 8px;
	color: #fff;
	text-decoration: none;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	border-bottom: 1px solid rgba(0,0,0,0.25);
	position: relative;
	cursor: pointer;
}

.awesome:hover {
	background-color: #111;
	color: #fff;
}

.awesome:active {
	top: 1px;
}

.small.awesome, .small.awesome:visited {
	font-size: 11px;
}

.awesome, .awesome:visited,
.medium.awesome, .medium.awesome:visited {
	font-size: 13px;
	font-weight: bold;
	line-height: 1;
}

.large.awesome, .large.awesome:visited {
	font-size: 16px;
	padding: 9px 16px 10px;
}

.green.awesome, .green.awesome:visited {
	background-color: #91bd09;
	color: white;
}

.green.awesome:hover {
	background-color: #749a02;
}

.blue.awesome, .blue.awesome:visited {
	background-color: #2daebf;
}

.blue.awesome:hover {
	background-color: #007d9a;
}

.red.awesome, .red.awesome:visited {
	background-color: #e33100;
}

.red.awesome:hover {
	background-color: #872300;
}

.magenta.awesome, .magenta.awesome:visited {
	background-color: #a9014b;
}

.magenta.awesome:hover {
	background-color: #630030;
}

.orange.awesome, .orange.awesome:visited {
	background-color: #ff5c00;
}

.orange.awesome:hover {
	background-color: #d45500;
}

.yellow.awesome, .yellow.awesome:visited {
	background-color: #ffb515;
}

.yellow.awesome:hover {
	background-color: #fc9200;
}

.gray.awesome, .gray.awesome:visited {
	background-color: #ccc;
}

.gray.awesome:hover {
	background-color: #aaa;
}

/* @end */

/* @end */

/* @group Table màj */

/* @group -- champs */

.largPetit {
	width: 20vw;
}

.largMoyen {
	width: 30vw;
}

.largGrand {
	width: 49vw;
}



/* @end */

/* @group -- onglets */


ul.menuFicheMaj { 
	display: block;
	margin: 20px auto 0;
	height: 27px;
	width: 700px;
	padding-left: 20px;
}

ul.menuFicheMaj li { 
	float: left;
	list-style-type: none;
	display: block;
	margin-bottom: 0;
	margin-right: 10px;
	margin-top: 6px;
}

.menuFicheMaj a {
	position: relative;
	top: 4px;
	display: block;
	color: #bda764!important;
	text-decoration: none;
	background-color: #f8ebbc;
	padding: 6px 12px 4px;
	border-left: 2px solid #f8ebbc;
	border-right: 2px solid #f8ebbc;
	border-top: 4px solid #f8ebbc;
	
	-moz-border-radius-topleft: 8px;
	-webkit-border-top-left-radius: 8px;
	border-top-left-radius: 8px;

	-moz-border-radius-topright: 8px;
	-webkit-border-top-right-radius: 8px;
	border-top-right-radius: 8px;
	
}

.menuFicheMaj a:hover { 
	color: black!important;
	background-color: #f8ebbc;
	border-left: 2px solid #fc0;
	border-right: 2px solid #fc0;
	border-top: 2px solid #fc0;
	border-bottom: 2px solid #f8ebbc;
}

.menuFicheMaj a.select { 
	top: 0px;
	color: black!important;
	background-color: #fc0;
	border: 2px solid #fc0;
	font-weight: bold;
	padding-bottom: 8px;
}


/* @end */

form.ficheMaj {
	padding: 2px;
	margin: 0 auto 20px;
	margin-top: 5vh;
}

table.tableMaj {
	width: 70vw;
	border: 3px solid #1e88e5;
	text-align: left;
	font-size: 12px;
	margin: 0 auto -10px;
	border-collapse: collapse;
}

table.tableMaj thead { 
	display: none;
}

table.tableMaj tbody td { 
	text-align: center;
	vertical-align: middle;
	border-bottom: 1px solid #1e88e5;
	border-left: 1px solid #bfbfbf;
	padding: 6px;
	width: 50vw;
	color: #3f3f3f;
}

table.tableMaj tbody th { 
	border-bottom: 1px solid #1e88e5;
	padding: 6px;
	text-align: center;
	width: 5vw;
	background-color: #87CEFA;
	color: #000;
}


table.tableMaj tbody tr { 
	background-color: #ffffff;
}

table.tableMaj tbody tr.impair { 
	background-color: #fff6d4;
}

table.tableMaj input, table.tableMaj select, table.tableMaj checkbox, table.tableMaj textarea, table.fLogin input { 
	color: #3f3f3f;
	background-color: #ffffff;
	padding: 5px;
	border: 1px solid lightskyblue;
	width: 70%;
}

table.tableMaj input:focus, table.tableMaj select:focus, table.tableMaj textarea:focus { 
	color: black;
	background-color: white;
}

table.tableMaj tfoot { 
	background-color: #fff2bf;
	text-align: center;
}

.ficheMaj div.barreBouton { 
	display: block;
	margin-top: 15px;
	margin-bottom: 5px;
}

/* @end */

/* @group Maj pages */

/* @group TinyMCE */

.mceToolbar td {
	 width: inherit!important;
}

.mceToolbar { 
	padding: inherit!important;
}

.mceIframeContainer { 
	padding: inherit!important;
}

.mceToolbar tr {
	background-color: inherit!important;
}

/* @end */

p#intro, div#intro { 
	padding: .8em;
	border: 2px solid #9a9c9d;
	display: inline-block;
	background: #f7f7f7;
	text-align: justify;
	margin: 0 auto;
	min-width: 600px;
}

#intro h1 { 
	color: #93117e;
	text-align: left;
	font-weight: bold;
	font-size: 20px;
}

#intro h2 { 
	font-weight: bold;
	text-align: left;
	color: #d70071;
	margin: 0 0 5px;
}

#intro .accroche { 
	font-weight: bold;
	font-size: 16px;
}

#intro2 { 
	display: inline-block;
	background-color: white;
	margin-bottom: 20px;
	margin-top: 0;
	padding: 2px 6px;
	border-left: 1px solid #9a9c9d;
	border-right: 1px solid #9a9c9d;
	border-bottom: 1px solid #9a9c9d;
}

#intro2 a { 
	text-decoration: none;
	border: 0;
}

#intro2 img { 
	vertical-align: sub;
	padding-right: 3px;
}

.parag { 
	display: inline-block;
	background-color: #f5e078;
	border: 1px solid #fc0;
	margin: 1px;
	font-size: 9px;
	padding: 0 1px;
}

.paragCSS { 
	display: inline-block;
	background-color: #b8e0f4;
	border: 1px solid #57a9ce;
	margin: 1px;
	font-size: 9px;
	padding: 0 1px;
}

div.leParag {
	font-size: 12px;
	margin-top: 5px;
}

table.liste div.h1 { 
	font-size: 16px;
	color: #c00418;
	font-weight: bold;
	margin: 0;
}

table.liste div.h2 { 
	font-size: 14px;
	color: #007c9d;
	font-weight: bold;
	margin: 0;
}

table.liste div.h3 { 
	font-size: 12px;
	color: #444;
	font-weight: bold;
	margin: 0;
}


#majSlug {
	background-image: url(/transport/im/icones/action_refresh.gif);
	background-position: 4px center;
	background-repeat: no-repeat;
	padding-left: 24px;
	cursor: pointer;
}




/* @end */

/* @group Table liste */

table.liste { 
	border: 3px solid #1e88e5;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 10px;
	width: 70vw;
	font-size: 14px;
}

table.liste a { 
	border: 0;
	cursor: pointer;
}

table.liste td.tableSep {
	font-weight: bold;
	background-color: #f6e179;
	border-top: 2px solid #7f743f;
	text-align: left;
	color: #482e01;
	padding: 4px;
}

table.liste thead { 
	border-bottom: 1px solid #1e88e5;
	background-color: #87cefa;
	font-size: 13px;
	text-align: center;
}

table.liste thead th { 
	padding: 4px;
	color: white;
}

table.liste tbody td { 
	text-align: center;
	vertical-align: middle;
	border-bottom: 1px solid #bfbfbf;
	border-left: 1px solid #bfbfbf;
	padding: 5px;
}

table.liste tbody tr { 
	background-color: #E0E0E0;
}

table.liste tbody tr:nth-child(odd) { 
	background-color: #ffffff;
}

table.liste tbody tr:hover { 
	background-color: #eaf7ff;
}

table.liste tfoot { 
	background-color: #fff2bf;
	text-align: center;
}
/* @end */

/* @group Légendes et nbPage */

.navigPage { 
	display: inline-block;
	background-color: #fff4cc;
	font-size: 12px;
	padding: 0px;
	border: 1px solid #c5b461;
	margin-top: 15px;
}

.navigPage td {
	padding: 6px;
}

.navigPagelink a { 
	text-decoration: none;
	font-size: 10px;
	display: inline-block;
	font-size: 12px;
	padding: 1px 3px;
	border: 1px solid white;
	margin-top: 10px;
}

.navigPagelink .selected { 
	display: inline-block;
	background-color: #faffcc;
	font-size: 12px;
	padding: 1px 3px;
	border: 1px solid #c5b461;
	margin-top: 10px;
}

.navigPagelink a:hover { 
	border: 1px dotted #c5b461;
}

.navigPage caption { 
	font-size: 12px;
	background-color: #f6e179;
	border-bottom: 1px solid #c5b461;
	font-weight: bold;
	padding: 2px;
}

.navigPage img { 
	vertical-align: -4px;
}

#nbrePages { 
	display: inline-block;
	background-color: #fff4cc;
	margin-bottom: 10px;
	font-size: 10px;
	padding: 4px;
	border: 1px solid #c5b461;
}

#nbrePages a { 
	margin-right: 5px;
	text-decoration: none;
}

#nbrePages a.select { 
	font-weight: bold;
	font-size: 12px;
}

/* @end */


/* @group Validation */

.validation-advice {
	font-size: 9px;
	color: #c00419;
}

.validation-failed {
	background-color: #ffd9de;
}



/* @end */

/* @group Autres */

/* @group -- boites */

.error, .notice, .success { 
	padding: .8em;
	margin-bottom: 1em;
	border: 2px solid #ddd;
	margin-right: auto;
	margin-left: auto;
	display: inline-block;
}

.error { 
	background: #FBE3E4;
	color: #8a1f11;
	border-color: #FBC2C4;
}

.error.icone {
	background: #FBE3E4 url(../im/icones/error.png) no-repeat 4px 9px;
	padding-left: 26px;
}

.notice { 
	background: #FFF6BF;
	color: #514721;
	border-color: #FFD324;
}

.success { 
	background: #E6EFC2;
	color: #264409;
	border-color: #C6D880;
}


/* @end */



/* @end */

/* @group PriseRDV */

#divCommande {
	margin: 10px auto 25px;
	
	padding-top: 0;
	padding-bottom: 10px;
}

#divCommande div { 
	border: 1px solid #1e88e5;
	display: inline-block;
	width: 70vw;
	text-align: center;
	padding-top: 6px;
	padding-bottom: 6px;
	background-color: #90caf9;
}

.sTitre {
	width: 250px;
	font-weight: bold;
}

.sDetail { 
	margin-left: 10px;
}

#divCommande h2 {
	background-color: #1e88e5;
	color: #ffffff;
	padding-top: 6px;
	padding-bottom: 6px;
	border-bottom: 1px solid #1e88e5;
	margin-bottom: 0;
}

#divCommande div p {
	margin-left: 10px;
	margin-right: 10px;
}


/* @end */

/* @group formChoixDate */

#formChoixDate {
	margin-right: auto;
	margin-left: auto;
	padding-top: 8px;
	padding-bottom: 8px;
}

#formChoixDate div {
	padding-top: 1px;
	padding-bottom: 2px;
}


/* @end */

header{
	height:10vh;
}

 /* The sidebar menu */
 .sidebar_mobile {
	height: 100%; /* 100% Full-height */
	width: 0; /* 0 width - change this with JavaScript */
	position: fixed; /* Stay in place */
	z-index: 1; /* Stay on top */
	top: 0;
	left: 0;
	background-color: #87cefa;
	overflow-x: hidden; /* Disable horizontal scroll */
	padding-top: 60px; /* Place content 60px from the top */
	transition: 0.5s; /* 0.5 second transition effect to slide in the sidebar */
	text-align: center;
	color: black;
}

.sidebar_mobile .closebtn {
	position: absolute;
	top: 0;
	right: 25px;
	font-size: 40px;
	margin-left: 50px;
	color: white;
}

.openbtn {
	font-size: 20px;
	color: #0c99b9;
	padding: 5px 10px;
	border: none;
	margin: 10px;
}

.menu_button{
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
	border: 0!important;
}

.menu_button_mobile{
	width: 95%;
	border: 0;
	background-color: white;
	margin: 5px;
	padding: 5px;
}

#form_contact{
	margin-top: 10px;
}

.form_select{
	padding-left: 20px;
	padding-right: 20px;
}

.menu_select{
	padding-top: 5px;
	padding-bottom: 5px;
	
}

.rectangle{
	height: 15vh;
	color: black;
	background-color: #87cefa;
	border: 2px solid #0097bc;
	font-size: large;
}

.rectangle:hover{
	color: #005085;
	background-color: #eaf7ff;
	border: 2px solid #0097bc;
}

.row{
	display: flex;
	flex-wrap: wrap;
}

.row_form{
	display: flex;
	flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.column{
	display: table;
	margin: 5vh 0 0 2%;
	width: calc(100% * (1/4) - 5px);
	flex-grow: 1;
}

.column_form{
	display: table;
	width: calc(100% * (1/9));
}

.button_form{
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
	padding-bottom: 5px;	
	border: 1px solid grey;
}

.button_form:hover{
	background-color: #eaf7ff;
	border: 1px solid #6299c5;
}

.rectangle_text{
	display: table-cell;
	vertical-align: middle;
	color: #000000cc;
}

.logoUP{
	width: 9vw;
}

.logoUP_mobile{
	width: 35vw;
}

.flat_select{
	border: 1px solid grey;
	background-color: white;
	text-align-last: center;
	margin-left: 2px;
	margin-right: 2px;
}

.arrow{
	font-size: x-large;
	color: black;
	margin: 5px;
}

.arrow:hover{
	color: #0098c1;
}

.inputSociete{
	text-transform:uppercase
}

.captcha-input{
	margin-bottom:10px;
	text-transform:uppercase
}

#captcha-image{
	height:5vh;
	margin-right: 5px;
}

.disabled {
  opacity: 0.5;
}
.disabled > a {
  pointer-events: none;
}

.div_up{
	display: flex;
	flex-wrap: wrap;
}

.child_up {
  background-color: white;
	border: 2px solid #0097bc;
	padding:0px!important;
	display: inline-block;
	margin: 5px;
	flex-grow: 1;
	width: calc(100% * (1/4) - 5px);
}

.child_up_mobile {
  background-color: white;
	border: 2px solid #0097bc;
	padding:0px!important;
	display: inline-block;
	margin: 5px;
	flex-grow: 1;
	width: calc(100% - 5px);
}

.child_up:hover{
	border: 2px solid #0097bc;
}

.child_up_mobile:hover{
	border: 2px solid #0097bc;
}

.select_site{
	text-align-last: center;
	color: #000000cc;
}

.card_text{
	background-color:#80808021; 
	margin:0px!important; 
	padding:5px;
	font-size:15px;
	font-weight: bold;
	color: #000000cc
}

.card {
  /* Add shadows to create the "card" effect */
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
}

/* On mouse-over, add a deeper shadow */
.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

/* Add some padding inside the card container */
.container {
	font-weight: bold;
	font-size: 15px;
	padding-top: 2px;
	padding-bottom: 2px;
	background-color: #8c8c8c42;
}

.card_text{
	margin: 0!important;
}

.select_menu{
	width:100%;
	margin-top: 2px;
	margin-bottom: 2px;
	padding: 9px;
	border:0;
	border-bottom: 1px solid #4c4c4c;
	background: none;
	font-weight: 600;
	line-height: 14px;
	color: black;
	text-align-last: center;
}

.select_menu:hover{
	background-color: #0000006e;
}

.header_Logout{
	color: red;
  padding: 12px 10px;
  text-decoration: none;
  display: block;
}


.img_btn_header{
	height:55%;
}

.header_divlogoUp{
	padding-top:5px;
	text-align: center;
}

#header_logoUp{
	width:50%;
	padding: 5px;
}

/* @group tableUser*/

.thead_subtable{
	background-color: #87cefa!important;
}

/* @group dropdown */
.dropbtn {
  background-color: whiteSmoke;
  color: black;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
	width: 100%;
}

.dropbtn:hover, .dropbtn:focus {
  background-color: #0000006e;
	color: black;
	border: 0;
}

.dropdown {
  position: relative;
  display: inline-block;
	width: 100%;
	text-align: center;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
	width:100%;
}

.dropdown-content a {
	border-top:1px solid black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}


.dropdown-content p {
  padding: 8px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #f1f1f1;}

.show {display:block;}

/* @group formCalendrier */

.formCalendrier{
	display: flex;
	padding-top: 5px;
	padding-bottom: 5px;
	flex-direction: column;
	justify-content: space-between;
	height:19vh;
}

.formCalendrier input{
	background: none;
	border: 0;
	border-bottom: 1px solid #4c4c4c;
	margin: 0;
	padding: 9px;
	color: black
}

.formCalendrier input:hover{
	background-color: #0000006e;
}

/* @group formLang */

#formLang{
	float: right;
	margin-top: 3vh;
	margin-right: 2vw;
}


header button:hover#langFR,
header button:hover#langEN { 
	border: 0;
}

#button_rdv_div{
	display: flex;
	flex-direction: column;
	float: right;
}

.parag_news{
	font-size: 20px;
}