/* Start of CMSMS style sheet 'STI Deco' */
/* Modification du CSS Layout: Left sidebar + 1 column */
/* Couleurs ISTY */
/* Orange       : #f96f36 */
/* Orange foncé : #e75021 */
/* Vert         : #70c069 ou #77C466 */
/* Vert foncé   : #41a155 */
/* Bleue        : #00b5ec */
/* Bleue foncé  : #008edb */
/* Brun         : #aaa277 */
/* Brun foncé   : #8b8561 */
/* General definitions */
body { /* Set initial font styles*/
	text-align: left;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 75.01%;
	line-height: 1em;
	color: Black; /* default text color for entire site*/
	background: WhiteSmoke; /* you can set your own image and background color here */
}
div { /*set font size for all divs, this overrides some body rules*/
	font-size: 1em;
}
img { /*if img is inside "a" it would have borders, we don't want that*/
	border: 0;
}
/*Default link styles*/
a, a:link a:active {
	text-decoration: underline; /* set all links to have underline */
	background-color: inherit; /* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
}
a:visited {
	text-decoration: underline; /* keeps the underline */
	background-color: inherit;
}
a:hover {
	text-decoration: none; /* remove underline on hover */
	background-color: inherit;
	color: Aqua; /* using a different color makes the hover obvious */
}
div#pagewrapper {
	background-color: WhiteSmoke;
	color: Black;
}
/* Header */
/* we will hide the text and replace it with an image, we assign a height for it so the image wont cut off */
div#header {
	background: White; /* you can set your own image here */
	border-bottom: 1px solid #8b8561; /* border just the bottom */
}
div#logoisty {
        background: url(uploads/sti/Logo_ISTY.png) no-repeat left top;
}
div#logoisty a {
	display: block;	/* On peut cliquer sur tout le bloc pour activer le lien */
	text-decoration: none;
	text-indent: -999em; /* this hides the text */
}
div#title {
        background: url(uploads/sti/titreNB.png) no-repeat right top;
}
div#title a {
	display: block;	/* On peut cliquer sur tout le bloc pour activer le lien */
	text-decoration: none;
	text-indent: -999em; /* this hides the text */
}
/* Breadcrumbs */
div.crbk {
	background: #70c069; /* you can set your own image here */
}
div.breadcrumbs {
	font-size: 90%; /* its good to set font sizes to be relative, this way viewer can change his/her font size */
	background: #70c069; /* you can set your own image here */
}
div.breadcrumbs span.lastitem {
	font-weight: bold;
}
/* Search */
div#search {
	text-align: right;
}
div#search input.search-input { /* a class for the search input box */
	font-size: 90%;
}
div#search input.search-button { /* a class for Submit button for the search input box */
	cursor: pointer; /* makes the hover cursor show, you can set your own cursor here */
	font-size: 90%;
}
/* Content */
div#sidebar {
	background: #70c069; /* you can set your own image here */
	-moz-border-radius: 2em; /* Coin arrondi (uniquement Mozilla ?) */
	border-radius: 2em; /* CSS 3 */
}
div.footback {
	background: #70c069; /* you can set your own image here */
}
div#footer p {
	font-size: 0.8em; /* sets different font size from default */
	text-align: center; /* centered text */
}
div#footrt p {
	text-align: right;
}
div.hr { /* as we hid all hr for accessibility we create new hr with div class="hr" element */
	height: 1px;
	border-bottom: 1px dotted black;
}
/* relational links under content */
div.right49 {
	text-align: right; /* set right to keep text on right */
}

/* End of 'STI Deco' */

