/*
  style.css contains a reset, font normalization and some base styles.

  credit is left where credit is due.
  additionally, much inspiration was taken from these projects:
    yui.yahooapis.com/2.8.1/build/base/base.css
    camendesign.com/design/
    praegnanz.de/weblog/htmlcssjs-kickstart
*/

/*
  html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
  html5doctor.com/html-5-reset-stylesheet/
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, figure, footer, header,
hgroup, menu, nav, section, menu,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}

article, aside, figure, footer, header,
hgroup, nav, section { display:block; }

nav ul { :none; }

blockquote, q { quotes:none; }

blockquote:before, blockquote:after,
q:before, q:after { content:''; content:none; }

a { margin:0; padding:0; border:0; font-size:100%; vertical-align:baseline; background:transparent; }

ins { background-color:#ff9; color:#000; text-decoration:none; }

mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom:1px dotted #000; cursor:help; }

/* tables still need cellspacing="0" in the markup */
table { border-collapse:collapse; border-spacing:0; }

hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }

input, select { vertical-align:middle; }
/* END RESET CSS */


/*
fonts.css from the YUI Library: developer.yahoo.com/yui/
          Please refer to developer.yahoo.com/yui/fonts/ for font sizing percentages

There are two custom edits:
 * make the line-height relative and unit-less
 * remove the pre,code styles as we use a recommendation from Eric Meyer instead
*/

body { font:13px arial, helvetica, "Nimbus Sans L", "Bitstream Vera Sans", sans-serif; *font-size:small; *font:x-small; line-height:1.22; }

table { font-size:inherit; font:100%; }

select, input, textarea { font:99% arial,helvetica,"Nimbus Sans L", "Bitstream Vera Sans", sans-serif; }


/* normalize monospace sizing
 * meyerweb.com/eric/thoughts/2010/02/12/fixed-monospace-sizing/
 */
code, pre { font-family: "Courier New", monospace, serif; font-size: 1em; }



/*
 * minimal base styles
 */


/* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */
body, select, input, textarea { color:#444; }

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */

/* www.aestheticallyloyal.com/public/optimize-legibility/ */
h1,h2,h3,h4,h5,h6 { font-weight: bold; text-rendering: optimizeLegibility; }

/* maxvoltar.com/archive/-webkit-font-smoothing */
html { -webkit-font-smoothing: antialiased; }


/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:active { outline: none; }
a:focus { outline: thin dotted; }

a, a:active, a:visited { color:#607890; }
a:hover { color:#036; }


ul { margin-left:30px; }
ol { margin-left:30px; list-style-type: decimal; }

small { font-size:85%; }
strong, th { font-weight: bold; }

td, td img { vertical-align:top; }

sub { vertical-align: sub; font-size: smaller; }
sup { vertical-align: super; font-size: smaller; }

pre {
  padding: 15px;

  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}

/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; }
.ie8 input[type="checkbox"],
.ie7 input[type="checkbox"] { vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }

/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button { cursor: pointer; }


/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301
   Also: hot pink. */
::-moz-selection{ background: #FF5E99; color:#fff; text-shadow: none; }
::selection { background:#FF5E99; color:#fff; text-shadow: none; }

/*  j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #FF5E99; }


/* always force a scrollbar in non-IE */
html { overflow-y: scroll; }

/* make buttons play nice in IE:
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }

/* bicubic resizing for non-native sized IMG:
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }



/*
 * Non-semantic helper classes
 */

/* for image replacement */
.ir { display:block; text-indent:-999px; overflow:hidden; background-repeat: none; }

/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display:none; visibility:hidden; }

/* Hide only visually, but have it available for screenreaders
   www.webaim.org/techniques/css/invisiblecontent/
   Solution from: j.mp/visuallyhidden - Thanks Jonathan Neal! */
.visuallyhidden { position:absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* >> The Magnificent CLEARFIX << */
.clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.clearfix { display: inline-block; }
* html .clearfix { height: 1%; } /* Hides from IE-mac \*/
.clearfix { display: block; }


 /* Primary Styles
    Author:
 */

body
{
  background: #9E5524 url(/images/749.png) repeat;
  font-family: Arial, Helvetica, sans-serif;
  padding: 20px;
  text-align: center;
}

.phil
{
  color: #9E5524;
}

.inline
{
  display: inline;
}

.inlogo
{
  margin-right: 5px;
  margin-bottom: 5px;
}

.bold
{
  font-weight: bold;
}

.right
{
  float: right;
}

.left
{
  float: left;
}

/**
 * Basic elements
 */
p
{
 line-height: 1.3em;
}

a
{
  font-family: Arial, Helvetica, sans-serif;
  color: #9E5524;
  text-decoration: underline;
}

a:visited
{
  color: #9E5524;
}

a:hover
{
  text-decoration: underline;
}


section#top
{
  height: 45px;
}

section#top a
{
  text-decoration: none;
}

#page-wrap
{
  width: 960px;
  margin: 5px auto 0px;
  min-height: 500px;
  padding: 0.5em;
  margin-bottom: 0px;
  padding-bottom: 0px;
  color: #cccccc;
}

#content-wrap
{
  min-height: 500px;
  background-color: #341201;
  border: solid 1px #9E5524;
 	-webkit-border-radius:5px;
	-moz-border-radius:5px;
}

#content
{
  float: left;
  width: 615px;
  margin: 15px 0 0 15px;
  padding: 10px;
  text-align: left;
  background: white;
  color: #333333;
  border: solid 1px #9E5524;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
}

#sidebar
{
  float: right;
  width: 265px;
  margin: 15px 15px 0 0;
  padding: 10px;
  text-align: left;
  background: white;
  color: #333333;
  border: solid 1px #9E5524;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
}


/**
 * Menu
 */
#top-menu
{
  height: 20px;
  float: right;
}

#top-menu ul
{
  margin: 0;
  padding: 0;
  list-style: none;
}

#top-menu li
{
  display: inline;
}

#top-menu a
{
  display: block;
  float: left;
  margin: 0 3px 0 0;
  padding: 8px 15px 5px 15px;
  border: none;
  text-decoration: none;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  color: #CCC;
}

#top-menu a:hover
{
  margin: 0 3px 0 0;
  padding: 8px 15px 5px 15px;
  color: #FFF;
}

#top-menu .current_page_item a
{
  margin: 0 3px 0 0;
  padding: 8px 15px 5px 15px;
  color: #D2C295;
  border-bottom: solid 1px #D2C295;
}


/**
 * Primary nav
 */
#primary-nav
{
  height: 49px;
  margin-top: 15px;
  margin-left: 15px;
  margin-bottom: 0px;
  padding: 0;
}

#primary-nav ul
{
  margin: 0;
  padding: 0;
  list-style: none;
}

#primary-nav li
{
  display: inline;
}

#primary-nav li a
{
  display: block;
  float: left;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
  font-variant: small-caps;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #3C3625;
  width: 132px;
  height: 29px;
}

#primary-nav li a:hover
{
  color: #3C3625;
}

/**
 * Primary nav, onglet Listes
 */
#primary-nav li#primary-services a
{
  background: url(/images/primary-nav-sprites.png) 0 -106px no-repeat;
}

#primary-nav li#primary-services a:hover
{
  background-position: 0 -159px;
}

#primary-nav li#primary-services.active a
{
  background-position: 0 0;
}

#primary-nav li#primary-services.active a:hover
{
  background-position: 0 -53px;
}

/**
 * Primary nav, onglet Calendrier
 */
#primary-nav li#primary-training a
{
  background: url(/images/primary-nav-sprites.png) -174px -106px no-repeat;
}

#primary-nav li#primary-training a:hover
{
  background-position: -174px -159px;
}

#primary-nav li#primary-training.active a
{
  background-position: -174px 0;
}

#primary-nav li#primary-training.active a:hover
{
  background-position: -174px -53px;
}

/**
 * Primary nav, onglet Forums
 */
#primary-nav li#primary-communities a
{
  background: url(/images/primary-nav-sprites.png) -348px -106px no-repeat;  color: #1e3b57;
}

#primary-nav li#primary-communities a:hover
{
  background-position: -348px -159px;
}

#primary-nav li#primary-communities.active a
{
  background-position: -348px 0;
}

#primary-nav li#primary-communities.active a:hover
{
  background-position: -348px -53px;
}

/**
 * Primary nav, onglet Articles
 */
#primary-nav li#primary-blog a
{
  background: url(/images/primary-nav-sprites.png) -522px -106px no-repeat;
}

#primary-nav li#primary-blog a:hover
{
  background-position: -522px -159px;
}

#primary-nav li#primary-blog.active a
{
  background-position: -522px 0;
}

#primary-nav li#primary-blog.active a:hover
{
  background-position: -522px -53px;
}

/**
 * Primary nav, onglet Outils
 */
#primary-nav li#primary-publications a
{
  background: url(/images/primary-nav-sprites.png) -695px -106px no-repeat;
}

#primary-nav li#primary-publications a:hover
{
  background-position: -695px -159px;
}

#primary-nav li#primary-publications.active a
{
  background-position: -695px 0;
}

#primary-nav li#primary-publications.active a:hover
{
  background-position: -695px -53px;
}


/**
 * Secondary-nav
 */
#secondary-nav
{
  margin: 8px 15px -11px 15px;
  float: left;
}

#secondary-nav ul
{
  margin: 0;
  list-style: none;
}

#secondary-nav li
{
  display: inline;
}

#secondary-nav a
{
  display: block;
  float: left;
  margin: 0 3px 3px 0;
  padding: 8px;
  border: solid 1px transparent;
  text-decoration: none;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  color: #ffffff;
}

#secondary-nav .active a
{
  background: #D2C295;
  border: solid 1px #ffffff;
  color: #3C3625;
 	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
}

#secondary-nav a:hover
{
  background: #ffffff;
  border: solid 1px #D2C295;
  color: #1e3b57;
 	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
}

h1
{
  font-size: 200%;
  border-left: solid 5px #2f2d23;
  border-bottom: solid 2px #2f2d23;
  padding-left: 10px;
  margin-right: 0px;
  margin-bottom: 15px;
}

h2
{
  margin-bottom: 15px;
  font-size: 160%;
}

h3
{
  height: 20px;
  line-height: 20px;
  margin-bottom: 10px;
  margin-top: 10px;
  font-size: 120%;
}

section
{
  margin-right: 0px;
  margin-bottom: 35px;
}

th
{
  padding-right: 5px;
}

article
{
  margin-right: 0px;
  margin-bottom: 25px;
}

section article header
{
  font-weight:bold;
  margin-right: 0px;
  margin-bottom: 5px;
}

p
{
  margin-bottom: 10px;
}

date
{
  color: #f4d581;
  padding-left: 25px;
  padding-top: 2px;
}


/**
 * Footer
 */
footer.container
{
  height: 60px;
  margin: 5px auto;
  padding: 5px;
  font-size: .9em;
  color: #cccccc;
}

footer.container a
{
  color: #ffffff;
}

.smaller
{
  font-size: .9em;
}

dl { margin-left:20px; margin-right:20px;}
dd { margin-left:30px; font-style: oblique }


/*
 * print styles
 * inlined to avoid required HTTP connection www.phpied.com/delay-loading-your-print-css/
 */
@media print {
  * { background: transparent !important; color: #444 !important; text-shadow: none; }

  a, a:visited { color: #444 !important; text-decoration: underline; }

  a:after { content: " (" attr(href) ")"; }

  abbr:after { content: " (" attr(title) ")"; }

  .ir a:after { content: ""; }  /* Don't show links for images */

  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }

  img { page-break-inside: avoid; }

  @page { margin: 0.5cm; }

  p, h2, h3 { orphans: 3; widows: 3; }

  h2, h3{ page-break-after: avoid; }
}



/*
 * Media queries for responsive design
 */

@media all and (orientation:portrait) {
  /* Style adjustments for portrait mode goes here */

}

@media all and (orientation:landscape) {
  /* Style adjustments for landscape mode goes here */

}

/* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome)
   Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {


  /* Prevent iOS, WinMobile from adjusting font size */
  html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; }
}

/*
#main
{
  min-width: 980px;
  max-width: 1180px;
  margin: 0 auto;
  background: #000000;
  clear: both;
}

.top-margin
{
  margin-top: 20px;
}

div#header
{
  background: transparent url(images/bg_logo.jpg) no-repeat;
  min-width: 980px;
  max-width: 1180px;
  height: 355px;
}

div#topimage
{
  position: absolute;
  float: left;
  background: transparent url(/images/top.jpg) no-repeat;
  width: 306px;
  height: 354px;
}

div#menu
{
  float: right;
  width: 880px;
  height: 47px;
  background: transparent url(/images/topmenubg.gif) repeat-x;
  margin-top: 13px;
}

#menu li
{
  height: 47px;
  color: #FFF;
  font-size : 100%;
  list-style-type: none;
  padding: 0px 20px 0px 15px;
  line-height: 47px;
  list-style: none;
  display: inline;
  float: right;
  background: url(/images/topmenuspacer.gif) no-repeat right;
}

#menu li.last-li
{
  background: transparent url(/images/topmenuright.jpg) no-repeat top right;
  padding-right: 25px;
}

#menu li a,
#banner a
{
  color: #f9e7a5;
  text-decoration: none;
}

#menu li a:hover,
#banner a:hover
{
  color: #d49143;
}


#submenu
{
  margin-left: -90px;
  margin-right: -90px;
  min-width: 880px;
  max-width: 1180px;
  text-align: left;
  margin-bottom: 30px;
}

#banner
{
  margin: 0 auto;
  width: 876px;
}

#banner a
{
  margin-left: 8px;
  width: 284px;
  height: 104px;
  line-height: 104px;
  display: block;
  float: right;
}

#banner a span
{
  padding-left: 100px;
  font-size : 130%;
}

#banner a.banner1,
#banner a.banner1bold
{
  background: transparent url(/images/banner1.jpg) no-repeat;
}

#banner a.banner2,
#banner a.banner2bold
{
  background: transparent url(/images/banner2.jpg) no-repeat;
}

#banner a.banner3,
#banner a.banner3bold
{
  background: transparent url(/images/banner3.jpg) no-repeat;
}

#banner a.banner1bold,
#banner a.banner2bold,
#banner a.banner3bold
{
  color: #d49143;
}

#banner a:hover.banner1bold,
#banner a:hover.banner2bold,
#banner a:hover.banner3bold
{
  color: #f9e7a5;
}


#content
{
  padding-left: 90px;
  padding-right: 90px;
}

.container
{
  width: 100%;
  overflow: hidden;
}

#footer
{
  border-top: solid 3px #ada682;
  margin: 40px 51px 0 55px;
  padding-top: 20px;
  padding-bottom: 30px;
  color: #a39f8f;
  font-size: 0.75em;
}

#footer a
{
  color: #d0be87;
}

#footer li
{
  border-right: solid 1px #d0be87;
  padding: 0 20px;
  list-style: none;
  display: inline;
  line-height: 1em;
  white-space: nowrap;
}

#footer li.last-li
{
  border: none;
}

#footer ul a
{
  color: #a39f8f;
  text-decoration: none;
}

#footer ul a:hover
{
  text-decoration: underline;
}

#footer ul
{
  padding-bottom: 10px;
}


.title1
{
  background: Transparent url(/images/title1.jpg) no-repeat;
  color: #FFF;
  border-bottom: solid 2px #2f2d23;
  height: 40px;
  line-height: 35px;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 35px;
}

.title2
{
  background: transparent url(/images/main.jpg) no-repeat;
  color: #FFF;
  height: 80px;
  line-height: 80px;
  padding-left: 70px;
  margin-right: 0px;
  margin-bottom: 15px;
  font-size: 200%;
  vertical-align: middle;
}

.padd1
{
  padding-bottom: 20px;
}

.news, .news-last
{
  padding-left: 8px;
  color: #FFFFFF;
  width: 235px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.75em;
  color: #a39f8f;
  padding-bottom: 15px;
  margin-top: 17px;
  border-bottom: solid 1px #2f2d23;
}

.news-last
{
  border:none;
}


.news_txt
{
  padding-top: 10px;
  padding-left: 2px;
}

.news strong, .news-last strong
{
  color: #cac5b1;
  font-weight: normal;
}

.col-2
{
  padding-left: 10px;
}

.col-2 img
{
  margin-right: 50px;
}

.cont
{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.75em;
  color: #a39f8f;
  padding-left: 40px;
  margin-right: 20px;
  clear: both;
}

.cont p,
.cont h2,
.cont h3
{
  padding-top: 20px;
}

.cont strong,
.cont h2
{
  color: #f4d581;
  font-weight: normal;
  text-transform: uppercase;
}

.cont h3
{
  color: #f4d581;
  font-weight: normal;
}

.cont a
{
  color: #d49143;
  text-decoration: underline;
}

.cont a:hover
{
  color: #d49143;
  text-decoration: none;
}

.read-more
{
  float: right;
  background: url(/images/read-more.gif) no-repeat;
  width: 78px;
  height: 23px;
  padding-top: 5px;
  line-height: 1em;
  padding-left: 15px;
  clear: both;
  margin-top: 30px;
  vertical-align: text-bottom;
  font-size: 0.75em;
  text-align: center;
}

.read-more a
{
  margin-left: -15px;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  color: #f9e7a5;
  text-decoration: none;
}

.read-more a:hover
{
  text-decoration: underline;
  color: #f9e7a5;
}

*/

