/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
  background: #A2B62E url("/templates/shared/img/bg_body.jpg") no-repeat fixed top center; /* Sets the background properties for an element using shorthand notation */
  color: #000;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 16px;
  margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
  color: #000;
  font-family: Verdana;
  font-size: 24px;
  font-weight: normal;
  line-height: 24px;
  text-transform: none;
  margin-bottom:25px;
}
/* Commonly used to style section titles. */
h2 {
  color: #000;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 14px;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #000;
  font-weight: normal;
  text-decoration: underline;
}
/* Sets the style for visited links. */
a:visited {
  color: #000;
  font-weight: normal;
  text-decoration: underline;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #000;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #000;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #000;
}

ul {
  margin:0px;
  margin-left:15px;
  padding: 0px;
  text-align:left;
}
ul li {
  padding: 0px;
  margin:0px;
}

#infodot ul {
  list-style-type:none;
  margin:0px;
  margin-left:15px;
  padding: 0px;
  text-align:left;
}
#infodot ul li {
  list-style-image:url(/templates/shared/img/info_bullet.gif);
  padding: 0px;
  margin:0px;
}

/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
  background-attachment: fixed;
  background-image: url("/templates/shared/img/bg_content.jpg");
  background-position: top center;
  background-repeat: no-repeat;
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 944px;
  z-index:1;
}
#outerWrapper #contentWrapper {
  background-attachment: fixed;
  background-image: url("/templates/shared/img/bg_content.jpg");
  background-position: top center;
  background-repeat: no-repeat;
  overflow: hidden;
  width: 944px;
}
#outerWrapper #contentWrapper #leftColumn {
  float: left;
  text-align:right;
  padding: 0px 0px 250px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 210px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
  width:734px;
  margin: 0px 0px 0px 210px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0px 0px 30px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #footer {
  background-image: url("/templates/shared/img/bg_bottom.jpg");
  background-position: top left;
  background-repeat: no-repeat;
  height: 85px;
  margin-top:30px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left;
  overflow: visible;
}
#login {
  margin:5px 33px 0px 0px;
  text-align:right;
  font-size:11px;
  width:172px;
  height:32px;
}
.login{font-family: Tahoma, "Arial Narrow", Helvetica-Narrow;font-size: 11px;color: #FFF;text-decoration: none;}
a.login:link{color: #FFF;text-decoration:none}
a.login:visited{color: #FFF;text-decoration: none}
a.login:hover{color: #999;text-decoration: none}

#flag {
  margin:0px 33px 0px 0px;
  text-align:right;
  font-size:11px;
  width:172px;
  height:95px;
}

#leftmenu {
  width:210px;
  text-align:left;
}
#contentTopLeft {
  width:473px;
  height:100px;
  padding-top:5px;
  float:left;
}
#admin {
  margin:15px 0px 0px 0px;
  font-family: Tahoma, "Arial Narrow", Helvetica-Narrow;
  text-align:left;
  font-size: 11px;
  color: #999;
  text-decoration: none;
  width: 446px;
  height:30px;
  margin:0 7px;
}

#admin a:link {color:#999;text-decoration:none;margin:0 7px;}
#admin a:visited {color:#999;text-decoration:none;margin:0 7px;}
#admin a:hover {color:#666;text-decoration:none;margin:0 7px;}

a.register:link{color:#999;text-decoration:none}
a.register:visited{color:#999;text-decoration:none}
a.register:hover{color:#666;text-decoration:none}
a.myworkspace:link{color:#999;text-decoration:none}
a.myworkspace:visited{color:#999;text-decoration:none}
a.myworkspace:hover{color:#666;text-decoration:none}
a.admin:link{color:#999;text-decoration:none}
a.admin:visited{color:#999;text-decoration:none}
a.admin:hover{color:#666;text-decoration:none}
a.logout:link{color:#999;text-decoration:none}
a.logout:visited{color:#999;text-decoration:none}
a.logout:hover{color:#666;text-decoration:none}
a.print:link{color:#999;text-decoration:none;margin-right:7px;}
a.print:visited{color:#999;text-decoration:none;margin-right:7px;}
a.print:hover{color:#666;text-decoration:none;margin-right:7px;}

#topmenu {
  width:446px;
  height:110px;
}


#searchbar {
  width:250px;
  height:55px;
}

#logo {
  width:250px;
  height:140px;
  margin-right:11px;
  margin-top:1px;
  float:right;
  font-size:10px;
  font-weight:bold;
  text-align:center;
}

#logo a{
	font-weight:bold;
	text-decoration:none;
}

#topflashbanner {
	float:left;
	width:734px;
	height:160px;
}
#mainContent {
  float:left;
  padding-top:20px;
  width:460px;
}
#contentRight {
  float:right;
  padding-top:20px;
  padding-right:24px;
  width:223px;
}
#vignet {
	position:relative;
	left: 11px;
	top: -295px;
	width:180px;
	height:250px;
	margin-bottom: -250px;
	padding-bottom: -250px;
	z-index:1000;
}
#adresse {
	margin-left:210px;
	font-size:11px;
	color:#666;
	text-transform:uppercase;
}
#adresse a {
	color:#666;
	text-decoration:none;
}
#bundmenu{
	margin-top:25px;
	text-align:center;
	font-size:10px;
	line-height:14px;
	text-transform: uppercase;
	/*color:#FFF44E;*/
	color:#7A8922;
}
#bundmenu a {
	/*color:#FFF44E;*/
	color:#7A8922;
	text-decoration:none;
}
.copyright{
	margin-top:0px;
	text-align:center;
	font-size:9px;
	color:#7A8922;
	text-transform:none;
}

/* TOP NAVIGATION */
/*.topmenuAdd{font-family:Verdana;font-weight:normal;font-size:10px;color:#fff;font-weight:bold; }
.topmenu{font-family:Verdana;font-weight:normal;font-size:12px;color:#fff;font-weight:normal;}
a.topmenu:link{font-size:10px;color:#fff;text-decoration:none;padding-left:12px;padding-top:2px;padding-bottom:4px;width:171px;height:24px; display:block;background: url(/templates/shared/img/topmenu_bg.gif) no-repeat top left;}
a.topmenu:visited{font-size:10px;color:#fff;text-decoration:none;padding-left:12px;padding-top:2px;padding-bottom:4px;width:171px;height:24px; display:block;background: url(/templates/shared/img/topmenu_bg.gif) no-repeat top left;}
a.topmenu:hover{font-size:10px;color:#fff;text-decoration:none;padding-left:12px;padding-top:2px;padding-bottom:4px;width:171px;height:24px; display:block;background: url(/templates/shared/img/topmenu_bg.gif) no-repeat top left;}
.topmenuSelected{font-size:10px;color:#fff;text-decoration:none;padding-left:12px;padding-top:2px;padding-bottom:4px;width:171px;height:24px; display:block;background: url(/templates/shared/img/topmenu_bg.gif) no-repeat top left;} */


/* PRINT */
/* .print{font-family:Verdana;font-weight:normal;font-size:12px;color:#fff;font-weight:bold; width:171px;height:24px; display:block;background: url(/templates/shared/img/topmenu_bg.gif) no-repeat top left; }
a.print:link{font-size:10px;color:#fff;text-decoration:none;padding-left:12px;padding-top:2px;padding-bottom:4px;}
a.print:visited{font-size:10px;color:#fff;text-decoration:none;padding-left:12px;padding-top:2px;padding-bottom:4px;}
a.print:hover{font-size:10px;color:#fff;text-decoration:none;padding-left:12px;padding-top:2px;padding-bottom:4px;} */

/*MAIN NAVIGATION (VERTICAL) */
.mnuVertical {width:170px; margin-left:25px; font-size:12px}
.mnuOver {height:20px;font-weight:bold;color:#000;background:url(/templates/shared/img/menubullet_over.gif) no-repeat top right}
.mnuOverLevel1 {height:20px;color:#7E678D; font-size:12px;background:url(/templates/shared/img/menubullet_over_level1.gif) no-repeat top right}
.mnuSelected {height:20px;font-weight:bold;background:url(/templates/shared/img/menubullet_selected.gif) no-repeat top right}
.mnuSelectedLevel1{height:20px;color:#7E678D; font-size:12px;background:url(/templates/shared/img/menubullet_selected_level1.gif) no-repeat top right}

.mnuPath {height:20px;font-weight:bold}
.mnuPathLevel1{height:20px;color:#7E678D; font-size:12px;}
.mnuNormal {height:20px; font-weight:bold}
.mnuNormalLevel1{height:20px; color:#7E678D; font-size:12px;}

/* BREADCRUMB */
.breadcrumb{font-family: Tahoma, "Arial Narrow", Helvetica-Narrow;font-size: 9px; margin-bottom:15px; color:#999;}
a.breadcrumb:link{color:#999;text-decoration:none}
a.breadcrumb:visited{color:#999;text-decoration:none}
a.breadcrumb:hover{color:#999;text-decoration:underline}

/* NEWSLETTER SIGNUP BOX */
.boxSubscribe {width:100%}
.boxHeaderSubscribe {font-weight:bold;font-size:10px;font-family:Tahoma;padding-left:7px;height:27px;}
.boxFormSubscribe {padding:7px;text-align:left;font-size:10px; color:#999999}
.boxButtonSubscribe {padding-left:7px;padding-bottom:15px;text-align:left;white-space:nowrap}
.btnSubscribe {font-family:tahoma;font-size:8pt;}

/* SEARCH BOX */
.boxSearch {margin-right:54px;}
.textbox {border:1px #999 solid;}
.boxInputSearch {margin:0px; padding:0px; margin-right:5px}
.boxButtonSearch {margin:0px; padding:0px}
.btnSearch {border:none;background-color:#D60D8C; width:40px; height:21px;font-family:tahoma;font-size:10px;color:#FFF;line-height:10px}
.txtSearch {font-family:tahoma;font-size:8px;}

/* LILLA LINK */
.lillalink{margin-bottom:15px;color:#7E678D; font-weight:bold;padding-left:20px; line-height:25px}
a.lillalink:link{color:#7E678D;text-decoration:none;font-weight:bold;padding-left:20px}
a.lillalink:visited{color:#7E678D;text-decoration:none;font-weight:bold;padding-left:20px}
a.lillalink:hover{color:#7E678D;text-decoration:none;font-weight:bold;padding-left:20px}

/* SPOT LINK */


a.spotlink:link{color:#000;font-size:12px;font-weight:bold;text-decoration:none}
a.spotlink:visited{color:#000;font-size:12px;font-weight:bold;text-decoration:none}
a.spotlink:hover{color:#000;font-size:12px;font-weight:bold;text-decoration:none}

td{
	color: #000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
}

/* CUSTOM LISTING (In a Box) */
.boxHeader {font-weight:bold;font-size:14px;font-family:Arial;color:#000000;padding-left:0px;padding-top:7px;height:20px;}
.boxContent {padding:0px;padding-left:0px;text-align:left;}
.boxFooter {padding-left:7px;text-align:left}
