/* CSS Document */

/* -------------------------------------------------------------- 
  
   reset.css
   * Resets default browser CSS.
   
-------------------------------------------------------------- */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, code,
del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}

body { 
  line-height: 1.5; 
}

/* Tables still need 'cellspacing="0"' in the markup. */
table { border-collapse: separate; border-spacing: 0; }
caption, th, td { text-align: left; font-weight: normal; }
table, td, th { vertical-align: middle; }

/* Remove possible quote marks (") from <q>, <blockquote>. */
blockquote:before, blockquote:after, q:before, q:after { content: ""; }
blockquote, q { quotes: "" ""; }

/* Remove annoying border on linked images. */
a img { border: none; }






/* -------------------------------------------------------------- 
  
VCOM CSS
   
-------------------------------------------------------------- */




body {
	margin: 0;
	text-align: center;/*correct IE bug */
 	background-color: #c2c2c2; 
 	font-family: sans-serif;
	font-size: x-large;
	color: #666666;
	height: 100%;
}

/* -------------------------------------------------------------- 

Accessibility nav

-------------------------------------------------------------- */

span#hide {/*back to graphic version on the text only version - hide on the graphic version*/
	
}
div#flash{
}

p.textOnly{
display:none;
}

/* -------------------------------------------------------------- 

common tags

-------------------------------------------------------------- */


a {
	color: #666666;
	text-decoration: none;
	font-size: large;
}

a:hover {
	color:#fe0084;
}

h1{
	font-size: xx-large;
	color:#666666;
	margin-bottom:10px;
	margin-top:30px;
}

h2{
	font-size: x-large;
	color: #5e2986;
	line-height:normal;
	margin-top:10px;
}


/* -------------------------------------------------------------- 

general class for images

-------------------------------------------------------------- */


.imgAlignMiddle {
	vertical-align: middle;
}
.imgAlignTop {
	vertical-align: top;
}
.floatLeft {
	float: left;
}
.floatRight {
	float: right;
}
.imgLeftMargin{
	margin-right: 1em;
	margin-bottom: 1em;
	float: left;
}
.wideImg{
	margin-top: 1em;
}
.imgRightMargin{
	float:right;
	margin-left:1em;
	margin-top:1em;
}

/* -------------------------------------------------------------- 

General class

-------------------------------------------------------------- */

.button{
	border: #333333 1px solid;
	height: 2em;
	font-size: small;
	color: #333333;
	font-size:small;
	font-weight:bold;
	background-color:#CCCCCC;
	padding:3px 3px 4px 3px;	
}
.alignRight{
text-align:right;}


/* -------------------------------------------------------------- 

MAIN STRUCTURE

-------------------------------------------------------------- */

div#container{/* includes everything:  main div  and footer*/
 	margin: auto;
	width: 35.8em;/* page size */
	text-align: left;
	background:none;/* if changed it will affect the background color of the footer*/
	display: table;/* necessary to work with height 100%*/
	background-color:#FFFFFF;
}

div#header {
	width: 35.8em;
	display:block;
	border: 0;
	margin: 0;
	padding: 0;
}
div#main_nav {
	width: 35.8em;
	display: block;
	border: 0;
	margin: 0;
	padding: 0;
}

div#main_content{
	background-color: #FFFFFF; 
	width: 35.8em;
	border: 0;
	margin: 0;
	padding: 0;
	overflow:auto;
	position:relative;
}



/*specific to the home page*/

div#column_nav_home {
	float:left;
	width: 21em;
	min-height: 400px; /* understood by all browser will set the size to that minimum size if not enough content. IE will need a proper height  */
	height: 100%; /* compulsory for the content to push other bloc down  */
	display:block;
	border: 0;
	margin: 0;
	padding: 10px 30px;
}
div#column_action{
	float:left;
	width: 10.8em;
	min-height: 400px; /* understood by all browser will set the size to that minimum size if not enough content. IE will need a proper height  */
	height: 100%; /* compulsory for the content to push other bloc down  */
	border: 0;
	margin: 0;
	padding:30px 20px 10px 0px;
	margin-right:-3px;
}

/*second level only*/
div#column_nav {
	float:left;
	width: 8.3em;
	min-height: 400px; /* understood by all browser will set the size to that minimum size if not enough content. IE will need a proper height  */
	height: 100%; /* compulsory for the content to push other bloc down  */
	display:block;
	border: 0;
	margin: 0;
	padding:10px;
	
}

div#column_content{
	width:25em;
	float:left;
	display:block;
	border: 0;
	margin: 0;
	padding:0px 15px;
	margin-right:-3px;

}



/*Bottom link menu*/
div#link{
	width: 35.8em;
	border: 0;
	margin: 0;
	padding:0;
	float:left;
	border-bottom:1px solid #666666;
	margin-right:-3px;
}


/*Bottom link menu END*/

div#footer{
	width: 35.8em;
	float:left;
	border: 0;
	padding: 0;
	margin-bottom:10px;
	margin-top:10px;
	margin-right:-3px;
	
}


/* -------------------------------------------------------------- 

 from here be really carefull of size  margin and padding - if a div doesn't have enough space it will go under the other.

quick reminder :
-> FOR ALL BROWSER : width or height = content size + padding + border.
-> FOR IE : width or height = content size including padding and border.

-------------------------------------------------------------- */




/* -------------------------------------------------------------- 

header class

-------------------------------------------------------------- */
#main_nav ul{
margin:10px 0px;
width:35.8em;
}
#main_nav ul li{
display:inline;
}
#main_nav ul li a{
margin-right:25px;
margin-left:17px;
}

/* -------------------------------------------------------------- 

content hometemplate

-------------------------------------------------------------- */

div#column_nav_home p{
	line-height:normal;
	font-size:large;
}
div#column_nav_home ul li{
	margin-left:100px;
	list-style:disc;
	color:#666666;
	line-height:normal;
	font-size:large;
}
.signupForm{
	margin-left:20px;
	margin-top:10px;
}
.signupForm td{
	padding:8px 5px;
	color:#333333;
	font-size:large;
}
.signupForm td input{
	background-color:#EBEBEB;
	color:#333333;
	border:1px #666666 solid;
	font-size:large;
	height:1.5em;
	width: 7em;
}



/* -------------------------------------------------------------- 
columnNav Class
-------------------------------------------------------------- */
.columnNavBox{
	margin: 20px 0px 0px 0px;
	padding:0px 20px 10px 10px;
	border-right:1px solid #666666;
}
.columnNavBox ul li{
	list-style:none;
	}
.menu1{
	font-size: x-large;
	color:#5e2986;
	line-height:normal;
	display:block;
	margin-bottom:5px;
	margin-top:10px;
	padding-top:5px;
	list-style:none;
}
.columnNavBox ul li ul li{
	list-style:none;
	line-height:normal;
}
.columnNavBox ul li ul li a{
	color:#333333;
}
.columnNavBox ul li ul li a:hover{
	color:#fe0084;
}
.clearAll{
clear:both;
}


/* -------------------------------------------------------------- 

content class

-------------------------------------------------------------- */
div#column_content p{
	margin-bottom:10px;
	line-height:normal;
}

div#column_content ul li{
	margin-left:20px;
	list-style:disc;
	color:#666666;
	line-height:normal;
}

div#column_content ul {
margin-bottom:10px;
}




/* -------------------------------------------------------------- 

Bottom Link class

-------------------------------------------------------------- */
div#link img{
margin-top:3px;
}
div#link img.boddlesLogo{
float:left;
width:250px;
margin-top:20px;
}


/* -------------------------------------------------------------- 

footer class

-------------------------------------------------------------- */
p#copyright{
	font-size:small;
	float:right;
	margin-right:20px;
}

div.accessLinks {
	width:500px;
	display:block;
	float:left;
	text-align:left;
	font-size:small;
	margin-left:15px;
}




