/* Start of CMSMS style sheet 'CSS_Protexa_2' */
/*****************
browsers interpret margin and padding a little differently, 
we'll remove all default padding and margins and
set them later on
******************/

/*
Set initial font styles
*/
body {
   text-align: left;
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 75.01%;
   line-height: 1.5em;
   background-color: #FFFFFF;
   color: #333;
   margin:0em;    /* gives some air for the pagewrapper */
}

/*
if img is inside "a" it would have 
borders, we don't want that
*/
img {
   border: 0;
}

/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link 
a:active {
   text-decoration: underline;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background-color: inherit; 
   color: #18507C; 
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
  color: #18507C;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   /*background-color: #C3D4DF;*/
   color: #385C72;
}


/* center wrapper, min max width */
div#pagewrapper {
   border-left: 1px solid black;
   border-right: 1px solid black;
   width:950px;
   margin: 0 auto;       /* this centers wrapper */
   /*max-width: 80em;   /* IE wont understand these, so we will use javascript magick */
   min-width: 60em;
*/
   background-color: #fff;;
   color: black;
}


div#mycontent {
    padding-top: 10px;   /* some air above and under menu and content */
	padding-left: 15px;
	padding-right: 15px;
 	margin: 0 0 0 0; 
}

div#mycontentaccueil{
    padding-top: 10px;   /* some air above and under menu and content */
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 0 0 0; 
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-style: normal;
	line-height: normal;
	font-weight: 400;
	font-variant: normal;
	color: #CCCCCC;
	text-decoration: none;

}

div#mycontentaccueil a{
   	color: #009cb6;
	text-decoration: none;
	font-weight: bold;

}
div#mycontentaccueil a:hover{
   	color: #009cb6;
	text-decoration: underline;

}
div#textelegal {
   font-weight:500; 
   font-size: 120%; 
   text-align:right;
   padding: 0em 1em 0em 1em;
}

div#textelegal a{
   color:#666666; 
   text-decoration: none;
}
div#textelegal a:hover{
   color:#000000; 
}

/* End of 'CSS_Protexa_2' */

