/*******************************************************************************
*  skidoo_too.css : 2005.03.07
* -----------------------------------------------------------------------------
*  A remake of the skidoo layout with the middle column appearing first in
*  source ordering.
*******************************************************************************/

/* begin with generic selectors so that they can be overridden if needed
 * by classes deeper in the stylesheet
 */

.clear
{
	clear: both;
}
.hide
{
	display: none;
}
.inside
{
	/* glitch in IE caused by vertical padding in this class, so 0 padding is
	 * set here and those blocks that need the vertical padding must be 
	 * applied to the parent element. the purpose of this class is to provide
	 * horizontal padding without using hacks to get around IE's broken box 
	 * model. so it's okay to apply vertical padding to the parent element, 
	 * just not horizontal padding.
	 */
	padding: 0 1em;
}
html[xmlns] .mozclear
{
	/* this selector should be valid CSS, but Opera 7.5 (and above) will pick
	 * this up as well. Shouldn't be a problem, Opera should handle this fine,
	 * but it's a Mozilla-targeted hack, and it should probably only affect
	 * mozilla. You can do that by replacing the INVALID CSS selector
	 * :root .mozclear for what's given here.
	 */
	border-bottom: 1px solid;
	border-color: transparent;
	margin-bottom: -1px;
}

/* margin values and font sizes for headings, and margins on paragraphs
 * and lists are not consistent across browser platforms. to achieve a
 * consistent look we need to explicity set these values here. it may
 * seem an odd way to declare the margins like this but you never
 * know what kind of horizontal padding a browser may be using on an
 * element, and I only want to change the vertical padding.
 *
 * pixels are used here, rather than ems, because I want a consistent
 * margin on the different headings. if I use ems, 1em for an h1 element
 * is much larger than 1em on an h6 element. I don't wnat this.
 *
 * salt to taste
 */

ul, ol, dl, p, h1, h2, h3, h4, h5, h6
{
	margin-top: 14px;
	margin-bottom: 14px;
	padding-top: 0;
	padding-bottom: 0;
}
h1
{
	font-size: 170%;
}
h2
{
	font-size: 130%;
}
h3
{
	font-size: 160%;
	padding-top: 0px;
}
h4
{
	font-size: 130%;
}
h5
{
	font-size: 100%;
}
h6
{
	font-size: 70%;
}

/* alter some HTML elements' default style
 */

a, a:link, a:visited, a:active
{
	text-decoration: none;
}
a:hover
{
	text-decoration: underline;
}
code
{
	font-family: "Courier New", Courier, monospace;
}
label
{
	cursor: pointer;
}
table
{
	font-size: 100%;
}
td, th
{
	vertical-align: top;
}

/* now we craft the core layout of the page. this includes positioning and
 * gutter space. colors and fonts should not come into play at this point.
 * when defining a border, default its color to white which is probably
 * the safest thing to do.
 */

body
{
	padding: 20px 0;
	margin: 0;
}
#pageWrapper
{
	text-align: center;	/* hack to center this under IE5 */

	border: solid 1px #fff;
	border-width: 0 1px;
	margin: 0 5%;		/* set side margins here 'cause IE doesn't like it set
				   on the body element */
	min-width: 40em;	/* IE doens't understand this property. I use ems rather
				   than pixels so that the layout shouldn't break even
				   when the browser's default size is set very large */
	width: 750px;
}
* html #pageWrapper
{
	text-align: left;	/* keep the content left-aligned */

	/* \*/
		word-wrap: break-word;
	/* invalid CSS but keeps IE from breaking horribly under narrow viewports */
}
#masthead
{
	border: 0px none #fff;
	padding: 0em;
	height: 100px;
	width: 750px;
	background-image: url(Assets/images/i_header_bg_long.gif);
	background-repeat: no-repeat;
	margin: 0px;
	background-color: #003399;
}
#masthead h1
{
	padding: 0;
	margin: 0;
}
#outerColumnContainer
{
	/* reserves space for the left and right columns. you can use either
	 * padding, margins, or borders, depending on your needs. however you
	 * can use the border method to create a background color for both left
	 * and right columns
	 */
	border-left: 175px solid #fff;
	border-right: 175px solid #fff;
}
#innerColumnContainer
{
	border: solid 1px #fff;
	border-width: 0 1px;
	margin: 0 -1px;		/* compensate for the borders because of
				   100% width declaration */
	width: 100%;
	z-index: 1;
}
#leftColumn, #middleColumn, #rightColumn, * html #SOWrap
{
	overflow: visible;	/* fix for IE italics bug */
	position: relative;	/* fix some rendering issues */
}
#SOWrap
{
	float: left;
	margin: 0 -1px 0 0;
	width: 100%;
	z-index: 3;
}
#middleColumn
{
	float: right;
	margin: 0 0 0 -1px;
	width: 100%;
	z-index: 5;
	background-color: #FFFFFF;
}
#leftColumn
{
	float: left;
	margin: 0 1px 0 -14em;
	width: 14em;
	z-index: 4;
}
#rightColumn
{
	float: right;
	width: 14em;
	margin: 0 -14em 0 1px;
	z-index: 2;
}
#footer
{
	border: solid 1px #fff;
	border-width: 1px 0;
	padding: 0.5em;
}

/* vertical navigation stuff. mostly exactly as seen in the vnav.css styleheet
 * in the original skidoo layout.
 */

.vnav
{
	margin: 1em 0;
}
.vnav ul, .vnav ul li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: block;
}
.vnav ul
{
	border: solid 1px #fff;
	border-bottom-width: 0;
}
.vnav ul li
{
	border-bottom: solid 1px #fff;
}
.vnav ul li, .vnav ul li a
{
	margin: 0;
	display: block;
	padding: 0;
	line-height: normal;
}
.vnav ul li a
{
	display: block;
	padding: 2px 5px 3px 5px;
}
.vnav ul li a, .vnav ul li a:link, .vnav ul li a:visited, .vnav ul li a:active, .vnav ul li a:hover
{
	text-decoration: none;
	cursor: pointer;
}
.vnav h3
{
	margin-bottom: 0;
	padding-bottom: 0;
	font-size: 126%;
}
* html .vnav ul li a/* hide from IE5.0/Win & IE5/Mac */
{
	height: 0.01%;
}
* html .vnav ul
{
	position: relative;	/* IE needs this to fix a rendering problem */
}

/* horizontal navigation stuff. mostly exactly as seen in the hnav.css styleheet
 * in the original skidoo layout.
 */

.hnav
{
	margin: 0;
	padding: 0px 0;
	white-space: nowrap;
	background-image: none;
	right: 0px;
	bottom: 0px;
	float: right;
	position: relative;
	top: 0px;
	border: none #fff;
	text-transform: uppercase;

}
.hnav ul span.divider
{
	display: none;
}
* html .hnav/* Hide from IE5/Mac (& IE5.0/Win) */
{
	height: 0.01%;	/* holly hack to fix a render bug in IE6/Win */
}
* html .HNAV
{
	height: auto;	/* above IE6/Win holly hack breaks IE5/Win when page 
			   length get beyond the point that 1% height is taller 
			   than the text height. IE5/Win does not need this 
			   holly hack so we remove it here */
	padding: 0;	/* IE5/Win will resize #hnav to fit the heights of its
			   inline children that have vertical padding. So this
			   incorrect case selector will remove that padding */
}
.hnav ul
{
	text-align: center;
	list-style-type: none;
	line-height: normal;
	margin: 0 0 2;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	border: none;
}
.hnav ul li
{
	display: inline;
	white-space: nowrap;
	margin: 0;
}
.hnav ul li a, .hnav ul li a:link, .hnav ul li a:visited, .hnav ul li a:hover, .hnav ul li a:active
{
	text-decoration: none;
	margin: 0 -1px 0 0;
	padding: 0px 20px 0px 30px;
	border: none #FFFFFF;
}
* html .HNAV ul li a
{
	/* \*/
		width: 1%;
	/* holly hack for IE5/Win inline padding. this hack fixes different 
	 * rendering bugs in 5.0 and 5.5. Width is used instead of height 
	 * because if the document is too long, these elements become very tall
	 * and disrupt the look of the document. too wide an element is better, 
	 * visually, than too tall. */
}
.hnav ul li a:hover
{
	text-decoration: none;
	font-weight: bold;

} 

/* below is a series of selectors to get a consistent font size across
 * platforms. this is outside the 'theme' section on purpose. use #pageWrapper
 * to set the base font-size for the layout.
 */

body
{
	font-size: 100.1%;
}
html>body
{
	/* Opera's default font size is typically 10% smaller than IE or Mozilla
	 * so we correct for this here, since we're using percentages 
	 * everywhere. And we do this because pixel-based fonts don't resize
	 * under IE/Win and percentages/ems are essentially the same, and I like
	 * percentages for fonts.
	 */
	font-size: 110%;
}
body:last-child, * html body
{
	/* of course the previous selector for Opera's fix is caught by more 
	 * than a few other browsers, so we reset that value here.
	 */
	font-size: 100.1%;
}

/* everything below this point is related to the page's "theme" and could be
 * placed in a separate stylesheet to allow for multiple color/font scemes on
 * the layout. you should probably leave a default theme within this stylesheet
 * just to be on the safe side.	
 */

#pageWrapper, #masthead, #innerColumnContainer, #footer, .vnav ul, .vnav ul li, .hnav, .hnav ul li a
{
	border-color: #565;
}
body
{
	background-color: #CCCCCC;
	color: #666666;
	font-family: arial, helvetica, sans-serif;
}
#pageWrapper
{
	font-size: 80%;	/* set your default font size here. */
}
#masthead
{
	background-color: #CC0000;
	color: #fff;
}
.hnav
{
}
#outerColumnContainer
{
	border-left-color: #FF9933;	/* left column background color */
	border-right-color: #F0F0F0;	/* right column background color */
}
.vnav ul li a:link, .vnav ul li a:visited, .vnav ul li a:active
{
	text-decoration: none;
	background-color: #cdc;
	color: #000;
}
.vnav ul li a:hover
{
	text-decoration: none;
	background-color: #898;
	color: #fff;
}
.hnav ul li a:link, .hnav ul li a:visited
{
	color: #FFFFFF;
}
.hnav ul li a:hover
{
	color: #FF9933;
}
.hnav ul li a:active
{
	color: #FF9933;
}
#rightColumn .inside
{
	/* if you apply a font size to just #rightColumn, then its width,
	 * which is specified in EMs, will also be affected. you don't want
	 * that. so apply font size changes to the .inside element which exists
	 * inside underneath all three columns
	 */
	font-size: 90%;
}
#footer
{
	background-color: #898;
	color: #fff;
	text-align: center;
}

/******************************************************************************/
		
		
		
		
		
		.inside2 {
	/* glitch in IE caused by vertical padding in this class, so 0 padding is
	 * set here and those blocks that need the vertical padding must be 
	 * applied to the parent element. the purpose of this class is to provide
	 * horizontal padding without using hacks to get around IE's broken box 
	 * model. so it's okay to apply vertical padding to the parent element, 
	 * just not horizontal padding.
	 */
	padding: 0 20px 0 30px;
}
.mastSlogan {
	font-family: "Times New Roman", Times, serif;
	font-size: 15px;
	font-style: oblique;
	font-weight: bold;
	background-color: #00FF00;
	position: relative;
	right: 20px;
	text-align: right;
	top: 30px;
	float: right;
	height: 20px;
	width: 450px;
	clear: left;
}





body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	padding: 0px;
	margin: 0px;
	background-color: #999999;
}
h2,h3 {
	margin-top: 0px;
	padding-top: 0px;
}
a:link {
	color: #FF9933;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-decoration: none;
}
a:visited {
	color: #FF9933;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-decoration: none;
}
a:hover {  color: #FF9933; text-decoration: underline; font-family: Verdana, Arial, Helvetica, sans-serif}


div#head {
	left:0px;
	width:750px;
	height:100px;
	background-color: #003399;
	top: 0px;
	position: absolute;
	background-image: url(images/i_header_bg_long.gif);
	vertical-align: top;
	background-repeat: no-repeat;
	text-align: left;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-bottom-color: #FFFFFF;
}
div#navbar2 li a:active {
	 color: #FF9933;
}
	
	
div#wrapper {
	position:relative;
	margin-left:auto;
	margin-right:auto;
	top: 8px;
	width:750px;
	background-color: #3366CC;
	height: auto;
	background-image: none;
	background-repeat: no-repeat;
	z-index: 2;



}
div#columns {
	width: 750px;
	position: relative;
	top: 100px;
	background-color: #FFFFFF;
	background-image: url(images/i_leftcolour.gif);
	background-repeat: repeat-y;
	border-top: 2px solid #FFFFFF;
	border-right: none;
	border-bottom: none;
	border-left: none;
	height: auto;

}
div#side1 {
	position:relative;
	left:0px;
	width:auto;
	top: 0px;
	margin: auto;
	background-position: left top;
	padding: 0px;
	height: 100%;


}
div#side1 ul {
	margin: 0px;
	padding: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #FFF;
	line-height: normal;
	white-space: normal;
	font-weight: bold;
	text-align: left;
	list-style-position: outside;
	list-style-type: none;
	display: block;
	border: 0px none;






}
div#side1 li {
	list-style-type: none;
	display: block;
	font-size: 11px;
	line-height: normal;
	font-weight: bold;
	margin-bottom: 4px;
	list-style-position: outside;
	margin-left: 15px;
	text-align: left;
	margin-right: 5px;
	font-variant: normal;






}
 div#side1 li a {
	text-decoration: none;
	padding: 0px;
	color: #FFF;
	font-size: 11px;
	line-height: normal;
	font-weight: bold;

} 
div#side1 li a:link {
	color: #FFF;
	font-size: 11px;
	line-height: normal;
	font-weight: bold;
:
}
div#side1 li a:visited {
	color: #FFFFFF;
	text-decoration: none;

}
div#side1 li a:hover {
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: underline;
	font-size: 11px;
	line-height: normal;
}

div#side1 li a:active {

	font-weight: bold;
	color: #FFFFFF;
	text-decoration: underline;
	font-size: 11px;
	line-height: normal;
}
div#side1 h2 {
	font-size:14px;
	margin-left: 10px;
	font-weight: bold;
	margin-top: 0px;
	margin-bottom: 6px;
	color: #FFFFFF;
	text-transform: uppercase;
	padding: 0px;

}


div#content {
	width: auto;
	position: relative;
	margin: 0px 0px 0px 30px;
	background-color: #FFFFFF;
	border: 10px none #CCCCCC;
	height: auto;
	list-style-position: inside;
	list-style-type: disc;






}
div#content h2 {
	font-size:13px;
	font-weight: bold;
	color: #FF9933;
	margin: 0px;
	padding: 0px;
	line-height: normal;



}
div#content p {
	font-size:12px;
	font-weight: normal;
	color: #666666;
	line-height: 16px;
	margin: 0px 0px 10px;
	padding: 0px 30px 0px 0px;



}
div#content ul {
	margin: 0px 0px 10px;
	padding: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #666666;
	line-height: normal;
	white-space: normal;
	font-weight: normal;
	list-style-position: inside;
	list-style-type: disc;
	border: 0px none;


}
div#content li {
	list-style-type: disc;
	display: block;
	font-size: 12px;
	line-height: normal;
	font-weight: normal;
	color: #666666;
	margin-bottom: 10px;
	margin-left: 0px;
	list-style-position: inside;
	list-style-type: disc;
	margin-top: 10px;
	margin-right: 20px;
	padding: 0px;
	border-top: none;
	border-right: none;
	border-bottom: none;
	border-left: none;
	left: 0px;

}

div#side2 {
	position:relative;
	width:175px;
	background-color: #FFFFFF;
	top: 0px;
	float: right;
	right: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 60px;
	padding-left: 0px;
	margin: 0px;
	border-top: none #FFFFFF;
	border-right: none #FFFFFF;
	border-bottom: none #FFFFFF;
	border-left: 25px solid #FFFFFF;
	overflow: visible;








}
div#side2 h3 {
	font-size:12px;
	margin-left: 0px;
	font-weight: bold;
	margin-top: 16px;
	margin-bottom: 10px;
	color: #FD9936;
}

div#side2 ul {
	margin: 0px 0px 0px 10px;
	padding: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #999999;
	line-height: normal;
	white-space: normal;
	font-weight: normal;
	list-style-position: outside;
	list-style-type: none;




}
div#side2 li {
	list-style-type: none;
	display: block;
	font-size: 11px;
	line-height: normal;
	font-weight: normal;
	color: #999999;
	margin-bottom: 10px;
	padding: 0px;
	margin-left: 0px;
	list-style-position: outside;



}
div#side2 li a {
	text-decoration: none;
	padding: 0px 8px 0px 0px;
	color: #666666;
	font-size: 11px;
	line-height: normal;
	font-weight: normal;
	border: thin none;
	list-style-position: outside;
	list-style-type: none;

}
div#side2 li a:link {
	color: #666666;
	font-size: 11px;
	line-height: normal;
	font-weight: normal;
:
}
div#side2 li a:visited {
	 color: #666666;
}
div#side2 li a:hover {
	font-weight: normal;
	color: #666666;
	text-decoration: underline;
	font-size: 11px;
	line-height: normal;
}







div#foot {
	width: auto;
	clear: none;
	position: relative;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: normal;
	color: #999999;
	text-align: center;
	clip:        rect(auto auto auto auto);
	left: auto;
	right: auto;
	background-image: none;
	background-repeat: no-repeat;
	line-height: normal;
	border: none #FF3300;
	top: auto;
	bottom: auto;
	background-color: #FFFFFF;
	z-index: 1;
	margin: auto;
	padding: 10px;







}
div#foot ul {
	margin: 0px;
	padding: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #999999;
	line-height: normal;
	white-space: nowrap;
	font-weight: normal;
	display: inline;

}
div#foot li {
	list-style-type: none;
	display: inline;
	font-size: 10px;
	line-height: normal;
	font-weight: normal;
	color: #999999;
	padding-right: 6px;
	padding-left: 6px;
	padding-top: 10px;
	padding-bottom: 0px;

}
div#foot li a {
	text-decoration: underline;
	padding: 0px 8px 0px 0px;
	color: #999999;
	font-size: 10px;
	line-height: normal;
	font-weight: normal;
	border: thin none;
}
div#foot li a:link {
	color: #999999;
	font-size: 10px;
	line-height: normal;
	font-weight: normal;
:
}
div#foot li a:visited {
	 color: #999999;
}
div#foot li a:hover {
	font-weight: normal;
	color: #999999;
	font-size: 10px;
	line-height: normal;
	text-decoration: none;

}

.clear {
	clear:both;
}
.sideAccueil {
	position:static;
	left:0px;
	width:auto;
	top: 0px;
	background-image: url(images/i_left_accueil.gif);
	margin: 0px;
	background-repeat: no-repeat;
	height: auto;
	background-position: left top;
	padding: 0px;
	background-color: #FF9933;
}
.sideProduits {

	position:relative;
	left:0px;
	width:auto;
	background-color: #FF9933;
	top: 0px;
	background-image: url(images/i_left_produit.gif);
	margin: auto;
	background-repeat: no-repeat;
	height: auto;
	background-position: left top;
}
.sideSupport {

	position:relative;
	left:0px;
	width:auto;
	background-color: #FF9933;
	top: auto;
	background-image: url(images/i_left_support.gif);
	margin: auto;
	background-repeat: no-repeat;
	height: 350px;
	background-position: left top;
}
.sideContact {

	position:relative;
	left:0px;
	width:auto;
	background-color: #FF9933;
	top: auto;
	background-image: url(images/i_left_contact.gif);
	margin: auto;
	background-repeat: no-repeat;
	height: 350px;
	background-position: left top;
}
div#content h1 {
	font-size:17px;
	margin-left: 0px;
	font-weight: bold;
	margin-top: 0px;
	margin-bottom: 8px;
	color: #FF9933;
	line-height: normal;
	white-space: normal;
	height: auto;

}
div#content h3 {
	font-size:14px;
	margin-left: 0px;
	font-weight: bold;
	margin-top: 0px;
	margin-bottom: 8px;
	color: #666666;
	line-height: normal;
	white-space: normal;
	height: auto;
	padding-top: 30px;
	background-image: url(images/i_line.gif);
	background-repeat: no-repeat;
	background-position: left center;
	border: thin none #999999;






}
.clients {

	width: 500px;
	position: static;
	margin-top: 30px;
	margin-left: 205px;
	margin-bottom: 30px;
	border-top: none #CCCCCC;
	border-right: thin none #CCCCCC;
	border-bottom: none #CCCCCC;
	border-left: none #CCCCCC;
	background-color: #CCFFCC;
}
.centered {
	font-size:xx-small;
	font-weight: normal;
	color: #666666;
	line-height: normal;
	margin: 0px 0px 10px;
	padding: 0px;
	text-align: center;
	background-color: #00CC00;



}

.headerSlogan2 {
	margin: 0 0px 0 0;
	padding: 0px 20 0 0;
	text-align: right;
	font-size: 16px;
	color: #CA854A;
	position: relative;
	font-style: italic;
	font-family: "Times New Roman", Times, serif;
	font-weight: bold;
	letter-spacing: normal;
}
.activeSide {
	font-weight: normal;
	color: #00CC00;
	line-height: normal;
	margin: 0px 0px 10px;
	padding: 0px;
	text-align: center;
	text-decoration: underline;

}
