﻿@charset "utf-8";
/* CSS Document */

body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	font-size: .8em;   /* Adapt for your chosen type! Usual range: .625 to 1 */
	line-height: 1.3; /* Adapt for your design and chosen type! 1.1-1.2 is good
    for title text or narrow column text but you will want to increase that
    to something in the 1.2-1.8 range for main content text. */
	background: #2a2e78;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #ffffff;
}
.twoColFixLtHdr #container {
	width: 854px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #0f1142;
	background-image:url(../images/bgstripe.jpg);
	padding-left:10px;
	padding-right:10px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.twoColFixLtHdr #header {
	background: #0f1142;
	padding: 0 0px 0 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}
.twoColFixLtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #0f1142; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px;
}
.twoColFixLtHdr #mainContent {
	margin: 0 0 0 250px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border-left:dashed; border-width:thin;
	vertical-align:top;
}
.twoColFixLtHdr #footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	border-top:dashed; border-width:thin;
	
	
}
.twoColFixLtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

/* Titles */
h1, h2, h3, h4, h5, h6 {
	margin: 1em 0 .5em 0; /* Titles should be close to the text they describe */
	line-height: 1.2; /* Bigger text is often nicer with smaller line space */
	font-weight: normal; /* Browser default. Use "normal" for less bulky titles */
	font-style: normal;
}
h1 {
	font-size: 1.75em;
}
h2 {
	font-size: 1.5em;
}
h3 {
	font-size: 1.25em;
}
h4 {
	font-size: 1em;
}

/* Lists */
ul, ol {
	margin: .75em 0 .75em 32px;
	padding: 0;
}
/* Paragraphs */
p {
	margin: .75em 0; /* Most browser defaults are "1em 0". */
}
address {
	margin: .75em 0; /* You may want display:inline;margin:0; in HTML 5 */
	font-style: normal; /* The annoying browser default is "italic". */
}
/* Links */
a {
	text-decoration: underline;
}
a:link {
	color: #ca3727;
	text-decoration: underline;
}
a:visited {
	color: #ca3727;
	text-decoration: underline;
}
a:hover, a:focus, a:active {
	color: #ca3727;
	text-decoration: none;
}

/* No dotted outline or halo around links when clicking them */
a:active {
	color: #ca3727;
	outline: none;
	text-decoration: none;
}
a:link {
/* No border around images in links */

}
a img {
	border: none;
}
/* Misc inline elements */
/* These are default styles in virtually any browser, but you may want to
   change them for a specific project. */
em {
	font-style: italic;
}
strong {
	font-weight: bold;
}
/* Stopping superscript and subscript from augmenting the line's leading */
sup, sub {
	line-height: 0;
}
/* Forms */
form, fieldset {
	margin: 0;
	padding: 0;
	border: none;
}
input, button, select {
	vertical-align: middle; /* Not perfect,
  but best compromise for most browsers */
}
/* --- ADDITIONAL BASIC STYLES --- */

/* Make abbreviations more clearly visible */
abbr[title] {
	border-bottom: 1px dotted;
	cursor: help;
}
/* Make quotations more clearly visible */
blockquote {
	margin: .75em 0 .75em 20px;
	padding: 0 0 0 10px;
	border-left: solid 2px #ddd;
}
q, cite {
	font-style: italic;
}
q cite, q q {
	font-style: normal
}
/* Suppression des guillemets automatiques pour citations courtes */
q {
	quotes: none;
}
q:before, q:after {
	content: ""; /* Needed for Safari/Chrome */
}
/* Bring paragraphs inside lists or quotations closer */
blockquote p, li p {
	margin: .5em 0;
}
/* Basic styles for definition lists */
dl {
	margin: .75em 0;
}
dt {
	margin: .75em 0 0 0;
	font-weight: bold;
}
dd {
	margin: .25em 0 .25em 32px;
}
/* Simple styles for tables */
table {
	margin: 0;
	border: none; /* Set to "none" to suppress the table border */
	border-collapse: collapse; /* Default is "seperate" */
	border-spacing: 0; /*! No IE 6-7 support */
}
table td, table th {
	padding: 0px; /* Set to "0" for no white space around cell contents */
	border: none; /* Set to "none" to suppress cell borders */
	vertical-align: top; /* Default is "middle" */
}
/* HTML 5 semantic wrapper elements */
article, aside, dialog, figure, footer, header, hgroup, menu, nav, section, menu {
	display: block;
}

#footer {
	font-size:0.9em;
	padding-left:2em;
	padding-right:2em;
}




