@charset "utf-8";
/* CSS GENERAL */
body {
    margin: 0px 0px 0px 0px;
    color: #1e5799;
    font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
    background-color: #fefefe;
	font-size: 16px;
}

/* CONTAINER */
div#container {
    width: 960px;
    margin: 50px auto 30px;
	background-color: #bfeeff;
	display: table;
	border-radius: 60px 20px 60px 20px;
}

/* HEADER */
header {
	width: 960px;
	height: 190px;
	background-image: url(../images/template/bg_header.png);
	background-color: #ffffff;
	border-radius: 60px 20px 0px 0px;
}

header p {
    font-size: 2em;
    font-weight: bold;
    margin: 0px;
    padding: 40px 0px 0px 650px;
    color: #ffffff;
}

/* NAVIGATION */
nav {
  width: 960px;
  height: 40px;
  margin: 50px 0px 0px 0px;
}
nav ul {
    margin: 0px 10px 0px 0px;
    padding: 5px 0px 0px 0px;
    height: 30px;
    list-style-image: none;
    float: right;		
}
nav ul li {
  height: 30px;
  list-style-type: none;
  float: left;
  border-right: 1px dotted #1e5799;
  padding: 5px 5px 0px 5px;
  margin: 0px;
  font-weight: bold;
}
div#container nav ul li:hover {
  background-color: #1e5799;
}
div#container nav ul li a.selected {
  background-color: #1e5799;
  color: #ffffff;
}
nav ul li:last-child {
  border-right: 0px dotted #1e5799;
}
nav ul li a {
  padding: 0px 10px 0px 10px;
}
nav ul li a:link {
  text-decoration: none;
  color: #1e5799;
  width: 100%;
  height: 100%;
  display: inline-block;
}
nav ul li a:hover {
  text-decoration: none;
  color: #ffffff;
}
nav ul li a:visited {
  text-decoration: none;
}
nav ul li a:active {
  text-decoration: none;
  color: #1e5799;
}
nav ul li:hover a {
  color: #ffffff;
}
nav ul li.selected {
  background-color: #1e5799;
}
nav ul li.selected a {
  color: #ffffff;
}

/* SOUS MENU*/
div#smenu {
    width: 220px;
	min-height: 250px;
	background-image: url("../images/template/bg_smenu_2.png");
	background-repeat: no-repeat;
    float: left;
}

/* CONTENU */
main {
    width: 690px;
	min-height: 400px;
	margin: 0px 0px 20px 0px;
    padding: 0px 20px 20px 20px;
    background-color: #FFFFFF;
	float:left;
	border-radius: 20px 60px 20px 60px;
}

/* FOOTER */
footer {
  width: 960px;
  height: 100px;
  color: #777777;
  background-image: url("../images/template/bg_footer.png");
  background-repeat: no-repeat;
  float: left;
}
footer ul {
  width: 850px;
  margin: 70px auto;
  padding: 0px 0px 0px 0px;
  list-style-type: none;
}
footer ul li {
  float: left;
  padding: 0px 10px;
  border-right: 2px solid #777777;
  list-style-image: none;
}
footer ul li:last-child {
  border-right: 0px solid #777777;
}
footer ul li a {
  text-decoration: none;
  color: #777777;
}
footer ul li a:hover {
  text-decoration: underline;
}


