 body {margin: 0; padding: 0; height: 100%; text-align: center; min-width: 950px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size:11px; text-align:left } 

/* General Links */
a:link { text-decoration : none; border: 0px;} 
a:active { text-decoration : none; border: 0px;} 
a:visited { text-decoration : none; border: 0px;} 
a:hover { text-decoration : none; border: 0px; color:#000;} 

.img2 { margin: 5px 15px 5px 0px; border: solid 0px #000000; filter:progid:DXImageTransform.Microsoft.Shadow(color="#777777", Direction=135, Strength=2); padding-bottom:10px; }

img { border:0px;}

input { font-family: Arial, Helvetica, sans-serif; color: #000000; font-size: 12px; } 

textarea { font-family: Arial, Helvetica, sans-serif; color:#000000; font-size: 12px;  }
select { font-family: Arial, Helvetica, sans-serif; color: #000000; font-size: 12px;}

h1, h2, h3 {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-weight: normal;
	text-align:left;
	color:;

}
h4 {font-family:Verdana, Arial, Helvetica, sans-serif; font-weight:normal; text-align:left}
h5 {font-family: "Times New Roman", Times, serif; font-size:17px; font-weight:bold; font-style:italic; font-stretch: extra-expanded;}





#bgcontain { width: 100%} 
/* IE min height hack */ * html #container { height: 200px;} 
#container { width: 100%; margin-top:0px; text-align:left} 

/* +++Flash info de DevEdit ++++++++++++++++++++++++++++++++ */



/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */


.header { width: 100%; position:  relative; height: 18px; margin-top: 17px; background-color:#000;}
/* .header h1 { font-size: 0px; letter-spacing: -1px; font-weight: normal; padding: 12px 0px; margin: 0px }
.header h1 a { font-size:0px; z-index:-100000}
.header h1 a:visited {}
.header h1 a:hover {text-decoration: none;} */



.header .search h2 { font-size: 10px; font-weight: normal; margin: 0px; padding: 0px 0px 0px 0px; text-transform:none;}

.header .search { position: absolute; top: 24px; right: 60px; width: 190px;}
.header .search form { padding: 0px; margin: 0px;}
.header .search .input { border: solid 3px #fff; font-size: 11px; padding: 0px 0px 0px 0px; margin: 0px;}
/*.header .search .arrow { width: 80px; height: 22px; background: url(../Images/SearchArrow.png) no-repeat;}  
.header .search .arrow:hover { background: #ffd780 url(../Images/SearchArrow.png) no-repeat 0 -22px; }
.header .search .arrowIE { width: 69px; height: 22px; background: #ffd780 url(../Images/SearchArrow.png_) no-repeat 0 -22px; }*/

/* IE/Win min height hack */ * html .searcharrow { margin: -23px 0px 0px 135px; } /* */ 
.searcharrow { padding: 0px; margin: -22px 0px 0px 135px; top: 0px; background: none;}
.header .search p { padding: 0px 0px; margin: 0px; float: left;}


/* Top Menu (Site Menu - SiteMenuPanel.html) 
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.TopMenu { position: absolute; top: -18px; right: 0px; width:100%; background-color:#000; }
.TopMenu ul { padding: 0px; margin: 0px;}
.TopMenu li { padding: 0px 5px; margin: 0px; list-style-type: none; display: inline; font-size: 11px; font-family: ARIAL; font-weight:bold; text-transform: uppercase;}
.TopMenu li a { text-decoration:none;}
.TopMenu li a:visited { text-decoration:none;}
.TopMenu li a:hover { text-decoration:none;}

/* DropDown Menu ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */



/* - - - ADxMenu: BASIC styles [ MANDATORY ] - - - */

/* remove all list stylings */
.menu, .menu ul {
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;


}

.menu li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block ;
	float: right;	/* move all main list items into one row, by floating them */
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5;		/* thus we need to apply explicit z-index here... */
}

.menu li:hover {
	z-index: 10000;	/* ...and here. this makes sure active item is always above anything else in the menu */
	white-space: normal;/* required to resolve IE7 :hover bug (z-index above is ignored if this is not present)
							see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp for other stuff that work */
}

.menu li li {
	float: none;/* items of the nested menus are kept on separate lines */
}

.menu ul {
	visibility: hidden;	/* initially hide all submenus. */
	position: absolute;
	z-index: 10;
	left: 0;	/* while hidden, always keep them at the top left corner, */
	top: 0;		/* 		to avoid scrollbars as much as possible */
}

.menu li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	top: 100%;	/* 1st level go below their parent item */
}
.menu li li:hover>ul {	/* 2nd+ levels go on the right side of the parent item */
	top: 0;
	left: 100%;
}

/* -- float.clear --
	force containment of floated LIs inside of UL */
.menu:after, .menu ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
.menu, .menu ul {	/* IE7 float clear: */
	min-height: 0;
}
/* -- float.clear.END --  */

/* -- sticky.submenu --
	it should not disappear when your mouse moves a bit outside the submenu
	YOU SHOULD NOT STYLE the background of the ".menu UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
.menu ul {
	background-image: url(../Images/empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 10px 30px 30px 30px;
	margin: -10px 0 0 -30px;
	/*background: #f00;*/	/* uncomment this if you want to see the "safe" area.
								you can also use to adjust the safe area to your requirement */
}
.menu ul ul {
	padding: 30px 30px 30px 10px;
	margin: -30px 0 0 -10px;
}
/* -- sticky.submenu.END -- */

/* - - - ADxMenu: DESIGN styles [ OPTIONAL, design your heart out :) ] filter:progid:DXImageTransform.Microsoft.Shadow(color="#777777", Direction=180, Strength=2)  - - - */

/* ICI MENU CONTAINER ON VOIT LE BORD SI ON EN MET UN*/

.menu { float:right;
height:18px; 
width:100%;

}
.menu, .menu ul li {
	font-size: 10px; font-weight: bold;
	/* / old background #99FFCC #CCC  */
}

.menu ul {
	width: 11em;
}

/* MENU DES PAGES - PAS DE LA BANDE, JUSTE TEXTE */
.menu a {
	text-decoration: none; padding-left : 5px; padding-right: 15px ; line-height:18px;
	display: block;
	font-weight: normal;
	position: relative;
	text-transform: uppercase;
	font-family: arial;
	font-size: 11px;
		color: #666;
	

}
/* EN DESSOUS COULEURS MENU */
.menu ul a:link {
	padding-left:10px;
	text-decoration: none;
	font-weight: normal;
	width: 160px;
	text-decoration:none;
	background-color:#FFF;
	border:dotted 1px #CCC;
}

.menu ul a:visited {
		padding-left:10px;
	text-decoration: none;
	color:;
	font-weight: normal;
	width: 160px;
	text-decoration:none;
	background-color:#FFF;
	border:dotted 1px #CCC;
	}

.menu a:hover { color:#000; }

.menu ul a:hover {
			padding-left:10px;
	text-decoration: none;
	background-color: #F8F8F8;
	font-weight: normal;
	text-decoration:none;

}
/*  MENU HOVER */ C
.menu li:hover>a {
	color:;
	background-color: ;
}


.menu li li a {	/* create borders around each item */

	font-size: 11px;
}
.menu ul>li + li {	/* and remove the top border on all but first item in the list */
	border-top: 0;
}

.menu li li:hover>ul {	/* inset 2nd+ submenus, to show off overlapping */
	top: 0px;
	left: 90%;
}

/* special colouring for "Main menu:", and for "xx submenu" items in ADxMenu
	placed here to clarify the terminology I use when referencing submenus in posts */
.menu>li:first-child>a, .menu li + li + li li:first-child>a {
	
}

/* Fix for IE5/Mac *//*/
.menu a {
	float: left;
}
/* End Fix */

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.content {float: left; width:60%;} 

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
/* BreadCrumb position:relative; overflow:hidden; height:60px; left:0px; top:0px; width:100px; z-index:10; background-color: green; clip: rect(0,120,50,10)"}  header!!! styles 1 2 3   color:#F36 */
.BreadCrumb2 { 
     display:none;
	position:absolute;
	overflow:hidden;
	left:28px;
	padding-left:8px;
	padding-right: 50px; line-height:55px;
	z-index:50;
	top:2px;
	width:500px;
	height:55px;
	
	font-family: "Times New Roman", Times, serif;
	font-style:italic;
/*	FILTER: Alpha(Opacity=80, FinishOpacity=70, Style=2); */
	font-size:30pt;
	list-style-type:none;
}
.BreadCrumb2 li {font-size:30pt; background-color:#FFF}
.BreadCrumb2 li a:link {FILTER: Alpha(Opacity=80, FinishOpacity=70, Style=3); font-size:30pt; background-color:#FFF;display:none}
/*.BreadCrumb2 li a:visited {FILTER: Alpha(Opacity=80, FinishOpacity=70, Style=3); font-size:30pt;background-color:#FFF; display:none} */
.BreadCrumb2 li a:active {FILTER: Alpha(Opacity=80, FinishOpacity=70, Style=3); font-size:30pt;background-color:#FFF;display:none}
.BreadCrumb2 li a:hover {FILTER: Alpha(Opacity=80, FinishOpacity=70, Style=3); font-size:30pt;background-color: #FFF;display:none}



.PhotoHeader { position:absolute; top:0px; left:600px;
	}
/*  Premiere page + Nom ecrit dans le Header */
.NomduS { display:block;
	position:absolute;
	overflow:hidden;
	left:30px;
	padding-left:8px;
	padding-right: 50px; 
	line-height:55px;

	top:2px;
	width:500px;
	height:55px;
	z-index:20;
	font-family: "Times New Roman", Times, serif;
	font-style:italic;
	

/*	FILTER: Alpha(Opacity=80, FinishOpacity=70, Style=2); */
	font-size:30pt;
	list-style-type:none;
}
.NomduS li a:link {FILTER: Alpha(Opacity=80, FinishOpacity=70, Style=3); font-size:30pt; }
.NomduS li a:visited {FILTER: Alpha(Opacity=80, FinishOpacity=70, Style=3); font-size:30pt;} 
.NomduS li a:active {FILTER: Alpha(Opacity=80, FinishOpacity=70, Style=3); font-size:30pt;}
.NomduS li a:hover {FILTER: Alpha(Opacity=80, FinishOpacity=70, Style=3); font-size:30pt;}

/*  NouvellesDuQuartier.com : */
.NDQ {
	left:520px;
	top:40px;
	display:block;
	position:absolute;
	overflow:hidden;
	padding-left:0px;
	padding-right:0px;
	line-height:30px;
	width:300px;
	height:30px;
	z-index:100;
	font-family: "Times New Roman", Times, serif;
	color:#999;
	font-style:italic;
	/*	FILTER: Alpha(Opacity=80, FinishOpacity=70, Style=2); */
	font-size:18pt;
	list-style-type:none;

}

.NDQ a:link { color: #999 }
.NDQ a:visited { color:#999 } 
.NDQ a:active {color:#999 }
.NDQ a:hover {color:#999 }

/* date tout en haut - prob avec Firefox  right ne fonctionne pas (voir lje.fr)*/
.date {position: relative; right:0px; top:5px; font-family:Arial, Helvetica, sans-serif; font-size:11px; font-style:italic; color: #999;}

/* VOIR AUSSI SNIPETS ViewCategoryPanel.html <--- 
/*BreadCrumb  Trails!!! (Ex. un des deux menus superposes en bas) .content .BreadCrumb ul { color:#FFF; }*/
.content .BreadCrumb { font-size:11px; font-family: Arial, Helvetica, sans-serif; line-height:18px;}
.content .BreadCrumb li {}
.content .BreadCrumb li a:link {}
.content .BreadCrumb li a:visited {}
.content .BreadCrumb li a:active {}
.content .BreadCrumb li a:hover {}

/* position: absolute; top:68px; SousCat (barre du menu DU HAUT CATEGORIES)
.Categories { display:inline-block; color:#000; font-size: 11px; line-height:18px; font-family: 'Arial'; background-color}
.Categories li { padding-left:15px; display:inline-block; list-style-type:none;}
.Categories li a:link {}
.Categories li a:visited {}
.Categories li a:active {}
.Categories li a:hover {}*/

/* Page Trail.html BON   */
.TrailCategory { font:11px; width:60%; line-height:18px; font-family: Arial, Helvetica, sans-serif; padding-left:20px; padding-right:20px;  }
.TrailCategory li {font-size:11px;padding-right:20px;display:inline; }
.TrailCategory li a:link {font-size:11px;}
.TrailCategory li a:visited {font-size:11px;}
.TrailCategory a:active {font-size:11px; display:hidden;}
.TrailCategory li a:hover {font-size:11px;} 

.SubCategories {display:inline-block;font-size:11px; font-family:Arial, Helvetica, sans-serif; line-height:18px;list-style-type:none; padding-right:20px; padding-left:20px}

.SubCategories a:link {padding-right:20px; display:inline-block;list-style-type:none;}
.SubCategories a:visited {padding-right:20px;display:inline-block;list-style-type:none;}
.SubCategories a:active {padding-right:20px;display:inline-block;list-style-type:none;}
.SubCategories a:hover {padding-right:20px;display:inline-block;list-style-type:none;}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
page Tailles des titres des article - H1=Devant (et comments) H2=Page article unique  H3=article par auteur
*/

.content h1 { padding-left:0px; padding-top:0px; font-size: 30px; line-height:32px; text-align:left; font-weight: normal; padding: 5px 0px 5px -; margin: 0px 0px 0px 0px; font-family:"Times New Roman", Times, serif;}
/* Sous Titres (desactives) */
.content h2 {font-size: 18px; padding: 5px 0px; margin: 0px 0px 5px 0px; letter-spacing: -1px;text-align:left}
.content h3 {font-size: 20px; letter-spacing: -1px; padding: 0px 0px; margin: 0px 0px 5px 0px;text-align:left}


/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
Articles  De la page Articles (pas le Front Page!)*/

.Articles {font-family: Verdana, Arial, Helvetica, sans-serif; margin: -0px -0px; clear: left; padding-left:20px; padding-right:20px; padding-top:15px; padding-bottom:20px}

/*.Articles {text-align:left}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
Featured (le mot feature h1 et la page en general)*/

.Featured { margin: 0px 0px; clear: left; padding-left:20px; padding-right:20px; padding-top:20px; padding-bottom:0px;}
.Featured h1 {font-size: 14px; letter-spacing:2px; color:#999;font-style:italic; margin-left:-18px; margin-top:-40px; margin-bottom:-5px; text-align:left; font-family:Arial, Helvetica, sans-serif;}
.Featured h2 { font-size: 24px; line-height:26px; margin-bottom: 10px;; text-align:left;}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
Recent NOTHING!!! (le mot h1 et la page en general ATT Double emploi avec Content (h2)*/

.RecentArticles { margin: 0px 0px; padding-left:20px; padding-right:20px; padding-top:20px; padding-bottom:20px; margin-bottom:20px; }
.RecentArticles h1 {font-size: 14px;margin-left:-18px; margin-top:-15px; margin-bottom:-5px; text-align:left; color: #999; letter-spacing:2px; font-style:italic; font-family:Arial, Helvetica, sans-serif;}
.RecentArticles h2 {font-size: 24px; text-align:left; line-height:26px;}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
Categories */

.Categories {margin-top:0px; padding-left:20px; padding-right:20px; padding-top:20px; padding-bottom:10px;}
.Categories h1 {font-size: 16px;  margin-top:-15px; text-align:left; color: #000;}
.Categories h2 { font-size: 24px; line-height:26px; margin-bottom: 10px;; text-align:left}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
Search */

/*.Advanced Search { margin-left:20px; background-color: #FDFEE0; padding-left:20px; padding-right:20px; padding-top:10px; padding-bottom:20px; float:right}
.Advanced Search h1 { padding:25px; font-size: 16px;margin-left:18px; margin-top:-15px; text-align:left; color:#99FFCC}
.Advanced Search h2 { font-size: 24px; line-height:26px; margin-bottom: 10px;; text-align:left}*/

.SearchResults { margin: -0px -0px; clear: left; background-color: #FFFFFF; padding-left:20px; padding-right:20px; padding-top:10px; padding-bottom:20px;}
.SearchResults h1 {font-size: 14px; line-height:30px; margin-left: 0px; margin-top:15px; text-align:left; color: #333333 ;display: compact; }
/*.SearchResults h2 { font-size: 24px; line-height:30px; margin-bottom: 10px;; text-align:left; }




/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
Blogs PAGE DE STYLE A PART*/

.Blogs h1 {font-size: 30px; text-align:left; letter-spacing: -1px; font-weight: normal; padding: 5px 0px; margin: 0px 0px 5px 0px}
.Blogs h2 {font-size: 14px; padding: 5px 0px; margin: 0px 0px 5px 0px; letter-spacing: -1px;text-align:left}
.Blogs h3 {font-size: 20px; letter-spacing: -1px; padding: 0px 0px; margin: 0px 0px 5px 0px;text-align:left}


.Blogs {margin: 0px 0px 0px 0px; background: #FFFFFF; padding-top:5px; padding:30px; }

.Blogs .Post { padding: 0px 0px}
.Blogs .Post .PostInfo { padding-bottom:3px; margin: 0px; font-size: 10px; color: #666666; font-style:normal; background: none;}
.Blogs .Post .PostContent { padding-top:3px; font-size: 11px; line-height: 11px; margin-bottom:15px; text-align:left}
.Blogs.Post .PostContent p { padding: 0px 0px; margin: 0px 0px; font-size: 11px; line-height: 14px;}
.Blogs.Post .readmore { margin-bottom:0px; background: url(../Images/icon_FullStory.png) no-repeat left center; padding-left:17px;}
.Blogs .Post .PostContent img { margin: 5px 0px 5px 0px; padding: 0px; border: solid 1px #000000; filter:progid:DXImageTransform.Microsoft.Shadow(color="#777777", Direction=135, Strength=1); }



/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
Authors */

/* IE min height hack */ * html .Authors { height: 150px;} 
.Authors {min-height: 150px; padding:25px}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
Pages*/

.Pages {}

.Pages { margin: 0px 0px 0px 0px; clear: left; padding-top:10px; padding-left:20px; padding-right:20px; padding-bottom:20px}
.Pages h1 {font-size: 24px; letter-spacing:2px; margin-left:-18px; margin-top:-15px; text-align:left;}
.Pages h2 { font-size: 24px; line-height:26px; margin-bottom: 10px;; text-align:left}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
News */

.News { position: relative; padding-left:20px; padding-right:20px; padding-top:5px; padding-bottom:20px; background-position:left; background-repeat:repeat-y; border-left: dotted 1px #999; border-bottom: dotted 1px #999; background: url(../Images/cote3.gif); background-position:right; background-repeat:repeat-y;}

.News h1 {line-height:4px; font-size: 14px; margin-left:-18px; margin-top: 2px; margin-bottom: 15px; color: #999; letter-spacing:2px; font-style: italic; font-family:Arial, Helvetica, sans-serif;}
.News h2 { font-size: 26px; line-height:22px; font-weight: normal; letter-spacing: -1px; text-align:left}
.News .Post { padding: 0px 0px}
.News .Post .PostInfo { padding-bottom:3px; padding-top:3px; margin: 0px; font-style:normal; background: none;}
.News .Post .PostContent { color:#4A4A4A; padding-bottom:20px;font-size: 11px; line-height: 14px; }
.News .Post .PostContent p { color:#4A4A4A; padding-botton: 20px; margin: 0px 0px; font-size: 11px; line-height: 14px;}
.News .Post .readmore { margin-bottom:0px; background: url(../Images/icon_FullStory.png) no-repeat left center; padding-left:17px;}
.News .Post .PostContent img {} 

/* +++++ATT : PostContent et Postcontent p (meme chose!)++ 
SearchResults */

.SearchResults {}

/* +++++++++++  Post */
.Post { padding-bottom:1px; padding-top:3px; margin: 0px;}

/* Post Author left side from the article 
.Post .PostAuthorDetails { float: right; padding: 5px; margin: 5px 0px 5px 20px; width: 140px; font-size: 11px; border-bottom: #E5E5E5 1px solid; border-left: #E5E5E5 1px solid; border-right: #E5E5E5 1px solid; border-top: #E5E5E5 1px solid; background-color: #FFFFFF}
.Post .PostAuthorDetails h2 { font-size: 11px; font-weight:bold; font-style: normal; letter-spacing: normal; letter-spacing: 0px; color:#373d4a; }
.Post .PostAuthorDetails p { font-size: 9px; padding: 0px; margin: 0px; color:#333;}
.Post .PostAuthorDetails img { margin: 0px 7px 0px 0px; padding: 0px; border: #FCFCFC solid 1px; filter:progid:DXImageTransform.Microsoft.Shadow(color="#777777", Direction=135, Strength=1);}
.Post .PostAuthorDetails a { font-size: 9px; display: block; padding-left:0px; text-align: left; font-style: italic}*/

.CarteDeVisite {position: relative; right:10px; top:5px; size:11px; float:right; margin-bottom:-20px; color:#CCC;}
.Post .PostAuthorDetails {width: 100%;  border: solid 1px #CCC; font-size:11px;}

/* filter:progid:DXImageTransform.Microsoft.Shadow(color="#CCCCCC", Direction=138, Strength=2) ;padding: 0px; margin: 5px 0px 5px 0px;  font-size: 11px; */

.Post .PostAuthorDetails { }
.Post .PostAuthorDetails img { border: solid 1px #9dceee; }

.Post .PostAuthorDetails h2 { font-size: 11px; font-weight:bold; font-style: normal; letter-spacing: normal; letter-spacing: 0px;}
.Post .PostAuthorDetails p { font-size: 11px; padding: 0px; margin: 0px;}
.Post .PostAuthorDetails img {margin: 5px 10px 0px 0px; border: #CCC solid 1px; }
.Post .PostAuthorDetails a { position:relative; font-size: 11px; padding-left:0px; margin-bottom:-10px; margin-left:-10px; float:right; font-style:italic}
/* filter:progid:DXImageTransform.Microsoft.Shadow(color="#777777", Direction=135, Strength=1); */


/* Post Head */
.Post .PostHead {}
.Post .PostHead h1 { padding: 0px 0px; margin: 0px 0px;}
.Post .PostHead h2 { padding: 0px 0px; margin: 0px; font-family:"Times New Roman", Times, serif; }

/* Post Info/Details */
.Post .PostInfo { padding: 4px 0px 0px 0px; margin: 0px 0px 15px 0px; font-size: 11px;}
.Post .PostInfo li { padding-left: 0px; margin: 0px; display: inline; list-style-type: none;}
.Post .PostInfo a {}
.Post .PostInfo .Author { padding-right: 5px;}
.Post .PostInfo .Time {padding-right: 5px;}
.Post .PostInfo .Categ {padding: 0px 0px 0px 0px;}
.Post .PostInfo .Rating {padding-right:5px;}

/* Post Content ici Liste des journalistes   */
.Post .PostContent { margin: 0px; padding: 0px; font-size: 12px; line-height: 17px}
/*.Post .PostContent img {margin: 0px 10px 5px 0px; padding: 0px; border: #FCFCFC solid 1px; filter:progid:DXImageTransform.Microsoft.Shadow(color="#777777", Direction=135, Strength=1);} */
.Post .PostContent p {font-size: 12px; line-height: 17px; margin:0px; padding:0px;}

/* Post Content -Single Page */
.Post .PostContentSingle { margin: 0px; padding: 0px 0px; font-size: 11px; line-height: 20px;}
/*.Post .PostContentSingle img {} */
.Post .PostContentSingle h1 { padding: 5px 0px; margin: 0px 0px 5px 0px;}
.Post .PostContentSingle p { font-size: 11px; line-height: 14px; padding: 0px 0px; margin: 6px 0px;}

/* Post Bottom - Printer Version +  Full story + Visit Site */
.Post .PostBottom { padding: 0px 0px 0px 0px; margin: 0px;}
.Post .PostBottom li { padding: 0px 0px; margin: 0px 0px 8px 0px; list-style-type: none; display: inline; font-size: 9px; font-style:italic; }
.Post .PostBottom li a { float: right; padding-bottom:0px; padding-top:0px; text-decoration:none; }
.Post .PostBottom li a:visited { text-decoration:none; }
.Post .PostBottom li a:hover { text-decoration:none;}
.Post .PostBottom .FullStory { z-index:50; padding-left: 0px; text-decoration:none; font-size:11px;}
.Post .PostBottom .VisitSite { padding-left: 0px; float: right;}
.Post .PostBottom .PrinterVersion { padding-left: 0px;}
.Post .PostBottom .EditArticle { padding-left: 17px;}

/* Article More Related Info */
.Post .PostMore { padding-left:20px; padding-right:20px;}
.Post .PostMore h1 { font-size: 12px; padding: 5px 0px; margin: 0px; }

/* Article Comments  LISTE DES COMMENTAIRES */
.Post .PostMore .Comment, .Post .PostMore .CommentAlt { padding: 0px 0px 0px 0px;}
.Post .PostMore .Comment .Title, .Post .PostMore .CommentAlt .Title { font-size: 9px; padding: 2px 2px; padding-left:0px; margin: 0px;}
.Post .PostMore .Comment .Details, .Post .PostMore .CommentAlt .Details { font-size: 9px; padding: 0px 3px; padding-left:0px; margin: 0px; color: #7E8996;}
.Post .PostMore .Comment .Reply, .Post .PostMore .CommentAlt .Reply { float: right; font-size: 8px; padding-top:3px; color: #7E8996; clear: both;}
.Post .PostMore .Comment .Content, .Post .PostMore .CommentAlt .Content { font-size: 11px; padding: 0px 0px 0px 0px; margin: 0px;}


/* Article Submit Comments*/
.PostSubmitComments { font-size: 10px;}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
Article Navigation */

/* IE min height hack */ * html .ArtNav { height: 15px;} 
.ArtNav {font-size: 11px; line-height: 13px; background: #f8f8f8; padding: 30px; min-height: 15px;}
.ArtNav strong { letter-spacing: -1px;}
.ArtNavLeft { float: left }
.ArtNavRight { float: right }

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
Category Top */

/* Category Top ( Only on the Category page)  */
.Category { padding: 0px; margin: 10px 0px 10px 0px; z-index: 100;}
.Category h1 {font-size: 16px; z-index: 100; font-family: Arial, Helvetica, sans-serif; color:#999; margin-top:-15px;}
.Category .Desc { font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif; line-height: 15px; color:#cc0000;z-index: 100; }
.Category .rss {float: right;}


/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
Authors A-Z - ( Only on the Author page) */

.AZ { padding: 0px; margin: 15px 0px; position: relative; font-size: 10px; font-weight: bold;}
.AZ ul { padding: 5px 0px; margin: 0px;}
.AZ li { padding: 0px 1px; margin: 0px; list-style-type: none; display: inline;}
.AZ a { padding: 0px 3px; margin-right: 1px;}
.AZ a:visited { padding: 1px 3px;}
.AZ a:hover { padding: 1px 3px; }

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
ListAuthors */

.ListAuthors {}
.ListAuthors ul { padding:25px; margin: 0px; padding: 0px 0px 0px 20px; list-style: none; }
.ListAuthors li { line-height: 16px;}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
PageForms  COULEUR BACKGROUND ICI : */  

.PageForms {font-size: 10px; padding-left:20px; padding-right:20px; padding-top:7px; float: none;}
.PageForms form { width:100%; background: #FDFDFD; border-left: dotted 1px #CCC;border-right: dotted 1px #CCC;border-bottom: dotted 1px #CCC;}
.PageForms td {}
.PageForms th { text-align: left; font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif; font-weight: normal;} 

.PageForms td table td { padding: 10px; font-size: 12px}
.PageForms td table td input { padding: 1px; font-size: 12px; }
.PageForms td table td input.keyfield { border:dotted 1px #CCC; font-size: 12px;}
.PageForms td table td textarea { font-size:14px; border:dotted 1px #CCC; font-size: 12px; }
.PageForms td table td select { border: inset 1px #ccc; padding: 1px; font-size: 12px; }

.PageForms .Button { font-size: 10px; padding: 2px 2px; font-weight: bold; float:right}
.PageForms .Required { color:#FF0000;}
.PageForms tr td { padding:5px; }
.PageForms tr td table tr td { padding: 1px; font-size: 11px; }
.PageForms tr td table tr td table tr td { padding: 1px; font-size: 11px; }

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
Messages */

.Message { color: #000000  ; background: url('../Images/agt_action_success.png') #FFFFFF no-repeat 5px center; font-size: 9px; padding: 6px 6px 6px 25px; line-height: 9px; border: 0px solid  #999999;  margin-left: 5px;}
.ErrorMessage { color: #ff0000; background: url('../Images/exclamation.png') no-repeat left center; font-size: 11px;padding-left: 20px; line-height: 16px;}
.SuccessMessage { color: #66ad00; background: url('../Images/agt_action_success.png') no-repeat left center; font-size: 11px;padding-left: 20px; line-height: 16px;}


/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
Tabs Styles */

#tabnav { height: 26px; margin: 0px 0px 10px 0px; background: url('../Images/tab_bottom.gif') repeat-x bottom;}
#tabnav li { margin: 0px; padding: 0px;	display: inline; list-style-type: none; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;}
#tabnav li a {}
#tabnav li a:visited {}
#tabnav li a:hover {}

#tabnav .navlinks {margin: 0px; padding: 0px; display: inline; list-style-type: none; float: right;}
.tablink { float: left; }
#tabnav .tablink a:link, #tabnav  .tablink a:visited 
{ float: left; padding: 5px 10px 5px 10px; margin: 0px 4px 0px 0px ; text-decoration: none; }
#tabnav .tablink a:link.active, #tabnav .tablink a:visited.active {}
#tabnav a:hover {}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
ViewAll */

.ViewAll { font-size: 12px; font-style:bold; padding-left:5px; color: #cc0000; font-family: Verdana, Arial, Helvetica, sans-serif;  text-align:left; float:right;}
.ViewAll a { color:#cc0000;}
.ViewAll a:visited { color:#cc0000;}
.ViewAll a:hover { color:#cc0000;}

/* +++++++COLONNES MENU+++++++++++++++++++++++++++++++++++++++++++ TEST
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++T*/
.right { float: right; width: 40%} 

.right .R1  { float:right; width: 50%;} 
.right .R1 .Acro  { position: absolute} 

.right .R2  { float:left; width: 50%; background: url(/templates/Gazette/Images/background_vertical.gif); background-position:right; background-repeat:repeat-y; border-bottom:dotted 1px #CCC;} 

background: url(../Images/cote3.gif); background-position:right; background-repeat:repeat-y;

.right .R2 .Acro  { position: absolute;  }
 
.right ul { padding-left : 10px ; margin-left: 10px; list-style-image: url(../Images/ArrowLeft.png); font-size:9px; } 
.right li { padding: 0px; margin: 0px; list-style-type:none} 
.right h2 { font-size: 14px; font-weight: bold; line-height: 15px; margin-left:15px; padding-top:0px; letter-spacing: 0px;}


.right li a {}
.right li a:visited {}

/* +++++++XXXXXXXXXX++++++++++ */

.right .ArticleOptions { padding-top:5px; padding-left: 0px; border-bottom: solid 1px #CCCCCC;border-right: solid 1px #CCCCCC; background: #FFFFFF}
.right .ArticleOptions h2 { padding-left:0px; color: #00FFCC}
.right .ArticleOptions li a {}
.right .ArticleOptions .EmailToFried { background: url(../Images/ArticleOptionsEmail.png) no-repeat left center; padding-left: 15px;}
.right .ArticleOptions .PrintArticle { background: url(../Images/ArticleOptionsPrint.png) no-repeat left center; padding-left: 15px;}
.right .ArticleOptions .RemoveFavorites { background: url(../Images/ArticleOptionsFavorites.png) no-repeat left center; padding-left: 15px;}
.right .ArticleOptions .AddToFavorites { background: url(../Images/ArticleOptionsFavorites.png) no-repeat left center; padding-left: 15px;}
.right .ArticleOptions .ArticlesToRead { background: url(../Images/ArticleOptionsRead.png) no-repeat left center; padding-left: 15px;}
.right .ArticleOptions .RemoveRead { background: url(../Images/ArticleOptionsRead.png) no-repeat left center; padding-left: 15px;}

/* +++++++XXXXXXXXXX++++++++++ */


.right .FavoriteArticles {padding:0px; margin-bottom: 0px;}
.right .FavoriteArticles h2 { background: url(../Images/ArticleOptionsFavorites.png) no-repeat left top; padding-left: 20px;}
.right .FavoriteArticles li a {   }

.right .ArticlesToRead {padding:0px; margin-bottom: 0px;font-size:9px;}
.right .ArticlesToRead h2 { background: url(../Images/ArticleOptionsRead.png) no-repeat left top; padding-left: 20px; }
.right .ArticlesToRead li a { }

.right .Categories { margin-top:-30px;}
.right .Categories h2 {}
.right .Categories ul { padding:0px; margin:0px;padding-top: 0px;  border-top: solid 1px #dfe6ec; padding-bottom: 0px; list-style-image: none;}
.right .Categories ul { margin-top:-15px;}
.right .Categories li {}
.right .Categories li a:visited {font-size: 9px; color: #666;}
.right .Categories li a { font-size: 9px;display: block; border-bottom: solid 1px #dfe6ec;; padding-top: 2px; padding-bottom: 2px; }
.right .Categories li a:hover {font-size: 9px;display: block; border-bottom: solid 1px; padding-top: 2px; padding-bottom: 2px; background:#F4F4F4; color:#000;}


/*Recent Blogs (IT IS REALY Popular ARTICLES!!!) */
.right .RecentBlogs {margin-top:0px; padding:0px; font-size:9px; }
.right .RecentBlogs h2 { background: url(../Images/IcoPopularArticles.png) no-repeat left top; padding-left: 20px;}

/* +++++++Realy : Authors! ++++++++++ */
.right .PopularArticles {margin-bottom: 0px; font-size:9px;}
.right .PopularArticles h2 { background: url(../Images/user.png) no-repeat left top; padding-left: 20px;}
.right .PopularArticles li a { }

/* +++++++XXXXXXXXXX++++++++++ */

/* +++++++ ???? Do not work ++++++++++ */
.right .ArticleHistory {padding:5px; margin-bottom: 0px;background: #DFF9F0}
.right .ArticleHistory h2 { background: url(../Images/IcoPopularArticles.png) no-repeat left top; padding-left: 20px;}
.right .ArticleHistory li a { }

.right .Newsletter {padding:15px; margin-bottom: 15px; font-size: 11px; padding-top: 10px; background:#996699}
.right .Newsletter h2 { background: url(../Images/IcoPopularArticles.png) no-repeat left top; padding-left: 20px;}
.right .Newsletter h2 { margin-bottom: 10px;}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */



/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/*Recent Blogs (IT IS REALY RECENT ARTICLES!!!) 
.right .RecentBlogs { background: #E6EBFF; font-size: 9px; padding: 0px; }
.right .RecentBlogs h2 { background: url(../Images/IcoPopularArticles.png) no-repeat left top; padding-left: 20px;}
.right .R2 .RecentBlogs ul { padding: 0px; margin: 0px; }
.right .R2 .RecentBlogs li { padding: 0px 0px; margin: 0px; list-style-type: none; border-bottom: solid 0px #e0e0e0;}
.right .R2 .RecentBlogs li big { display: block; font-size: 11px; font-family: 'Georgia';}
.right .R2 .RecentBlogs li small { font-size: 9px; color:#636a70;}
.right .R2 .RecentBlogs li small a { color:#636a70; text-decoration: underline; }*/

/* +++++++Not Authors! ++++++++++ 

.right .PopularAuthors {padding:5px; margin-bottom: 0px;background: #F1EDEF}
.right .PopularAuthors h2 { background: url(../Images/IcoPopularArticles.png) no-repeat left top; padding-left: 20px;}
.right .PopularAuthors li a { }*/

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.EmailToFriend { margin: 0px} 

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
Footer */

.footer {padding: 0px; width: 100%; margin: 0 auto; background-color: #000; clear: both; color:#61614e;}
.footer p { padding: 3px; margin: 0px;  font-size: 10px; color:#FFFFFF; background-color:#000;}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
Paging */
.Paging { text-align: right; padding: 2px; margin: 5px 0px; font-size: 10px; line-height: 10px;}
.Paging strong { letter-spacing: -1px;}
.Paging a { display: inline; padding: 2px 2px;}
.Paging a:visited {}
.Paging a:hover { text-decoration: none;}
.PagingDisabled { display: inline; padding: 2px 5px; }
.PagingCurrentPageNumber { display: inline; font-weight: bold; padding: 2px 5px;}
/* Spread the Word */

.SpreadTheWord { padding-top:20px;}


.SpreadTheWord ul { padding: 0px; margin: 0px; }
.SpreadTheWord li { padding: 0px 2px; margin: 0px; list-style-type: none; display: inline; font-size: 20px; line-height: 18px;}


.msgWarning
{
	background-image: url('../Images/warning.gif');
	background-repeat: no-repeat;
	background-position: 6px 7px;
	font: normal 11px/18px Tahoma;
	padding: 5px;
	margin-bottom: 15px;
	padding-left: 25px;
	border: dotted 1px #C0C0C0;
	background-color: #FFFFFF;
	color: #333333;
	text-decoration: none;
/*	display:'';  */
	z-index:1000;
	width: 220px;
}



.ArticleExtraContent { font-size: 11px;}
.ArticleExtra ol, .ArticleExtra ol li { font-size: 11px;}
.ArticleExtra ul, .ArticleExtra ul li { font-size: 11px;}


.ArticleExtra ul { padding-top: 0px; padding-bottom: 0px; margin:0px; list-style-type: none;  padding-left: 20px;}
.ArticleExtra ul li a {  font-size: 11px; display: block; padding-left: 20px; background: url(../Images/ArrowLeft.png) no-repeat left top; }

/* Summary Article Attachment */
.AttachmentList { padding: 6px;}
.AttachmentList ul { padding-top: 0px; padding-bottom: 0px; margin:0px; list-style-type: none;  padding-left: 20px;}
.AttachmentList ul li { padding: 3px;}
.AttachmentList ul li a { font-size: 10px; display: block; padding-left: 20px; }
.AttachmentHeading { font-size: 10pt; font-weight: bold; font-family: Verdana, Arial, Helvetica, sans-serif; }

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */


/* Teaser Image Styles */

/* disabled (SERGE)  */

.FeatureImageSpan { font-size: 9px; margin: 5px;}
.FeatureImageCaption {  padding-left: 3px; padding-right: 3px;}

