/*
   No Reset: A Base Stylesheet For Your Projects
   Makes browser default styles more consistent, and provides a canvas that
   you SHOULD modify to fit your needs.
   http://covertprestige.info/css/base-stylesheet/
*/
/* Generated by Font Squirrel (http://www.fontsquirrel.com) on September 17, 2010 08:09:30 AM America/New_York */



@font-face {
	font-family: 'DroidSansRegular';
	src: url('DroidSans-webfont.eot');
	src: local('☺'), url('DroidSans-webfont.woff') format('woff'), url('DroidSans-webfont.ttf') format('truetype'), url('DroidSans-webfont.svg#webfontkGLTEHco') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'DroidSansBold';
	src: url('DroidSans-Bold-webfont.eot');
	src: local('☺'), url('DroidSans-Bold-webfont.woff') format('woff'), url('DroidSans-Bold-webfont.ttf') format('truetype'), url('DroidSans-Bold-webfont.svg#webfonty0TXPLfL') format('svg');
	font-weight: normal;
	font-style: normal;
}
/* --- BASIC STYLES --- */


/* Page */
html {
  font-size: 100%; /* Avoids IE 5-7 bug with EM fonts */
}
body {
  margin: 0;
  padding: 0;
  font: 80%/1.6 "DroidSansRegular", "Trebuchet MS", Verdana, "DejaVu Sans", "Bitstream Vera Sans", Geneva, sans-serif;;
  /*font-family: Verdana, "DejaVu Sans", "Bitstream Vera Sans", Geneva, sans-serif;
  font-family: Georgia, "DejaVu Serif", Norasi, serif; */
  background:#e1e1e1;
  color:#464646;
  
}

/* Titles */
h1, h2, h3, h4, h5, h6 {
  margin: 1em 20px .1em 20px; /* Titles should be close to the text they describe */
  line-height: 1.2; /* Bigger text is often nicer with smaller line space */
  font-weight: bold; /* Browser default. Use "normal" for less bulky titles */
  font-style: normal;
  text-transform:uppercase;
  font-family: "DroidSansBold", Arial, sans-serif;
}
h1 {
  font-size: 1.75em;
}
h2 {
  font-size: 1.3em;
}
h3 {
  font-size: 1.2em;
}
h4 {
  font-size: 1em;
}

/* Lists */
ul, ol {
  margin: .75em 20px .75em 20px;
  padding: 0;
}

/* Paragraphs */
p {
  margin: 1em 20px; /* Most browser defaults are "1em 0". */
}
address {
  margin: .75em 20px; /* You may want display:inline;margin:0; in HTML 5 */
  font-style: italic; /* The annoying browser default is "italic". */
}

/* Links */
a {
  text-decoration: underline;
}
a:link, a:visited {
  color: #1498C0;
  text-decoration: none;
  border-bottom:dotted 1px #1498C0;
}

a:hover, a:focus, a:active {
  color: #aa0000;
  text-decoration: none;
}

/* 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 20px;
}
dt {
  margin: .75em 0 0 0;
  font-weight: bold;
}
dd {
  margin: .25em 0 .25em 32px;
}

/* Simple styles for tables */
table {
  margin: 10px 25px 20px 25px;
  border: 1px solid gray; /* 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: 4px; /* Set to "0" for no white space around cell contents */
  border: 1px solid #ccc; /* Set to "none" to suppress cell borders */
  vertical-align: top; /* Default is "middle" */
}
tr{
	background:#E1E1E1;
}

/* HTML 5 semantic wrapper elements */
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section, menu {
  display: block;
}

