/* Reset default browser CSS. Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
-------------------------------------------------------------- */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}
body {
	line-height: 1;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	clear: both;
}
ol, ul {
	list-style: none;
}
blockquote {
	quotes: none;
}
blockquote:before, blockquote:after {
	content: '';
	content: none;
}
del {
	text-decoration: line-through;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a img { border: none; }


/* Clearfix, http://www.pathf.com/blogs/2007/09/developers-note-2/
-------------------------------------------------------------- */

/* float clearing for IE6 */
* html .clearfix {
  height: 1%;
  overflow: visible;
}

/* float clearing for IE7 */
*+html .clearfix {
  min-height: 1%;
}

/* float clearing for everyone else */
.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
  font-size: 0;
}

/* Global rules
-------------------------------------------------------------- */

html, body {
	background: #004856 url('../img/bg-container.png') repeat-y top center;
	color: #737373;
	font: 13px Arial, Helvetica, sans-serif;
	text-rendering: optimizeLegibility;
}

a {
	color: #004957;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a:visited {
	outline: none;
}

strong {
	font-weight: bold;
	color: #004856;
}

.italic {
	font-style: italic;
}

.center {
	text-align: center;
}

table.center {
	margin: 0 auto;
}

#container {
	width: 980px;
	margin: 0 auto;
	background: #fff;
}

#header {
	height: 180px;
}

#logo {
	text-align: center;
	padding-top: 15px;
}

#menu {
	margin-top: 15px;
	text-align: center;
}

#menu ul li {
	text-transform: uppercase;
	display: inline;
	font-size: 15px;
	margin-right: 25px;
}

#menu ul li.current {
	font-weight: bold;
}

#content {
	margin: 0;
	padding: 0 40px 0 200px;
	background-image: url('../img/fleche.png');
	background-repeat: no-repeat;
	background-position: 0 15px;
}

#content h1 {
	color: #004957;
	font-size: 22px;
	margin-top: 30px;
	margin-bottom: 15px;
	text-transform: uppercase;
}

#content h1:first-child {
	margin-top: 0;
}

#content h2 {
	color: #004957;
	font-size: 16px;
	margin-top: 20px;
	margin-bottom: 10px;
	text-transform: uppercase;
}

#content p {
	margin-bottom: 10px;
}

#content ul {
	list-style: square;
	margin-left: 40px;
	margin-bottom: 15px;
}

#footer {
	padding: 10px 0;
}

#copyright {
	text-align: center;
} 

#contactform {
	width: 310px;
	margin: 0 auto;
}  

#contactform .formrow {
	margin-bottom: 10px;
}

#contactform label {
	display: block;
	font-weight: bold;
	margin-bottom: 4px;
} 

#contactform .text-input, #contactform textarea {
	border: 1px solid #ccc;
	padding: 4px;
	width: 300px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

#contactform textarea {
	height: 190px;
}

#confirm {
	color: #004856;
	margin: 10px 0;
	text-align: center;
	font-size: 14px;
	font-weight: bold;
}


