/* Start of CMSMS style sheet 'Accessibility and cross-browser tools' */
/* accessibility */

/* 
menu links accesskeys 
*/
span.accesskey {
   text-decoration:none;
}

/* 
accessibility divs are hidden by default 
text, screenreaders and such will show these 
*/
.accessibility, hr {
   position: absolute;
   top: -999em;
   left: -999em;
}

/* 
definition tags are also hidden 
these are also used for menu links    
*/
dfn {
   position: absolute;
   left: -1000px;
   top: -1000px;
   width: 0;
   height: 0;
   overflow: hidden;
   display: inline;
}
/* end accessibility */


/* wiki style external links */
/* external links will have "(external link)" text added, lets hide it */
a.external span {
  position: absolute;
  left: -5000px;
  width: 4000px;
}

/* make some room for the image */
a.external {
/* css shorthand rules, read: first top padding 0 then right padding 12px then bottom then right */
  padding: 0 12px 0 0;
}
/* colors for external links */
a.external:link {
  color: #18507C;
/* background image for the link to show wiki style arrow */
  background: url(images/cms/external.gif) no-repeat 100% 0;
}
a.external:visited {
  color: #18507C; /* a different color can be used for visited external links */

/* 
Set the last 0 to -100px to use that part of the external.gif image for different color for active links 
external.gif is actually 300px tall, we can use different positions of the image to simulate rollover image changes.
*/
  background: url(images/cms/external.gif) no-repeat 100% 0; 
}

a.external:hover {
  color: #18507C;
/* Set the last 0 to -200px to use that part of the external.gif image for different color on hover */
  background: url(images/cms/external.gif) no-repeat 100% 0; 
  background-color: #C3D4DF;
}
/* end wiki style external links */


/* clearing */
/* 
clearfix is a hack for divs that hold floated elements. it will force the holding div to span all the way down to last floated item.
We strongly recommend against using this as it is a hack and might not render correctly but it is included here for convenience.
Do not edit if you dont know what you are doing
*/
	.clearfix:after {
		content: "."; 
		display: block; 
		height: 0; 
		clear: both; 
		visibility: hidden;
	}
	/* html>body .clearfix {
		display: inline-block; 
		width: 100%;
	} */
	
	* html .clearfix {
		/* Hides from IE-mac \*/
		height: 1%;
		/* End hide from IE-mac */
	}

/* end clearing */



/* End of 'Accessibility and cross-browser tools' */

/* Start of CMSMS style sheet 'Layout: irepa3' */
/*****************
browsers interpret margin and padding a little differently, 
we'll remove all default padding and margins and
set them later on
******************/




* {
margin:0;
padding:0;
}

/*
Set initial font styles
*/
body {
   text-align: left;
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 75.01%;
   line-height: 1em;
}

/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 1em;
}

.bloc {
width:50%;
}

  .blocfloatleft {
float:left;
width:50%;
}

/*
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: #be0027; 
}

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: #be0027;
   color: #fff;
}



/*pdf link styles*/
/* set all links to have underline and bluish color */
a.pdf,
a.pdf:link 
a.pdf:active {
   text-decoration: underline;
   color: #be0027;
   padding:0 0 2px 20px;
   background: url(images/cms/PDFicon.gif) no-repeat;
line-height:1.5em;
}

a.pdf:visited {
   text-decoration: underline;
  color: #18507C;
}

/*video link styles*/
a.video,
a.video:link 
a.video:active {
   text-decoration: underline;
   color: #be0027;
   padding:0 0 2px 20px;
   background: url(images/cms/film.png) no-repeat;
line-height:1.5em;
}

a.video:visited {
   text-decoration: underline;
  color: #18507C;
}


/* remove underline on hover and change color */
a.pdf:hover {
   text-decoration: none;

   background-color: #be0027;
   color: #fff;
}

/*****************
basic layout 
*****************/
body {
   background-color: #ccc;
   color: #333;
   margin:10px; /* gives some air for the pagewrapper */
   background: #ccc url(images/cms/bodybg.gif) repeat-x; 
}

/* center wrapper, min max width */
div#pagewrapper {
   border: 1px solid black;
   margin: 0 auto;     /* this centers wrapper */
   max-width: 110em;  /*IE wont understand these, so we will use javascript magick */
   min-width: 80em;
   /*width: 950px;*/
   background-color: #fff;;
   color: black;
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it
*/

div#header {
   height: 120px; /* adjust according your image size */

   background: #000 /*url(images/cms/header.jpg) no-repeat right*/;
text-align:right;
padding-right:30px;
   border-bottom: 1px solid #000;
position:relative;
}

div#header #flag {
width:30px;
position:absolute;
top:3px;
right:7px;
}

div#header img {
margin-bottom:2px;
}

div#header a.flag img {
margin-bottom:2px;
}

div#header li {
   background: #000 url(images/cms/logo-irepa.gif) no-repeat 0 12px; 
   display: block; 
   height: 120px;            /* adjust according your image size */
   width: 305px;
   text-indent: -999em;  /* this hides the text */
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
   float:left;
}

div#search {
   float: right;
   width: 220px;     /* enough width for the search input box */
   text-align: right;
   padding: 0.5em 0 0.5em 0;
   margin: 0;
}



div.breadcrumbs {
   padding: 1em 0 1.2em 0; /* CSS short hand rule first value is top then right, bottom and left */
   font-size: 90%;             /* its good to set fontsizes to be relative, this way viewer can change his/her fontsize */
   margin: 0 1em;              /* css shorthand rule will be opened to be "0 1em 0 1em" */
   border-bottom: 1px dotted #000;
}

 div.breadcrumbs span.lastitem { 
   font-weight:bold; 
 } 



#avmenu {
clear: left;
float: left;
margin: 0 0 0 0;
padding: 0;
font-size: 1.1em;
width: 230px;

}

#avmenu ul {	
list-style: none;
width: 230px;
margin: 0 0 0 0;
padding: 0;


}	

#avmenu li {
margin-bottom:0;
}


/* first level */
#avmenu li a {
font-weight: bold;
margin-bottom: 2px;
height: 18px;
text-decoration: none;
color: #505050;
display: block;
padding:5px 0 0 10px;
background: #f4f4f4;
border-left: 18px solid #cccccc;
border-bottom: 1px solid #ddd;
text-transform:uppercase;

}	
	
#avmenu li a:hover {
background: #eaeaea;
color: #000;
border-left: 18px solid #000;
}

#avmenu li a.menuactive {
background: #eaeaea;
color: #be0027;
border-left: 18px solid #be0027;
}


/* second level */
#avmenu li li a {
font-weight: normal;
height: 18px;
text-decoration: none;
color: #505050;
display: block;
padding: 3px 0 3px 35px;
background: #f4f4f4;
border:0;
font-size:0.9em;
text-transform:none;
}	

#avmenu li li a:hover {
background: #eaeaea;
color: #000;
border:0;
}

#avmenu li li a.menuactive {
background: #eaeaea;
color: #000;
font-weight:bold;
border:0;
}

/* third level */
#avmenu li li li a {
font-weight: normal;
height: 16px;
text-decoration: none;
color: #505050;
display: block;
padding: 3px 0 3px 45px;
background: #f4f4f4;
border:0;
}	

#avmenu li li li a:hover {
background: #eaeaea;
color: #3F3F3F;
border:0;
}

#avmenu li li li a.menuactive {
background: #eaeaea;
color: #3F3F3F;
border:0;
}



div#content {
   margin: 0 auto 0 0; /* some air above and under menu and content */
}

div#main {

   margin-left: 260px;/* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   margin-right: 25%; /* and some air on the right */
/*background:#fff url(images/cms/contentbg.gif) no-repeat right bottom;*/
position:relative;
}


div#sidebar {
   float: left;  /* set sidebar on the left side. Change to right to float it right instead. */
   /*width: 30%;*/    /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX ie doublemargin bug */
   margin-left: 0;
}

/* if sidebar doesnt include menu but content add class="hascontent" */
div#sidebar.hascontent {
   padding: 0 1%;
background:#ececec;
   /*width: 30%;/  /* make width smaller if there's padding, or it will get too wide for the floated divs in IE */
}


div#sidebar-r {
   float: right;  /* set sidebar on the left side. Change to right to float it right instead. */
   width: 22%;    /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX ie doublemargin bug */
   margin-right: 0;
}



div#footer {
   clear:both;       /* keep footer below content and menu */
   color: #fff;
   background: #000 url(images/cms/bottombg.gif);

}

div#footer p {
   font-size: 0.8em;
   padding: 0.2em;      /* some air for footer */
   text-align: right;
   margin:0;
}

div#footer p a {
   color: #fff; /* needed becouse footer link would be same color as background otherwise */
}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   clear:both;
   height: 1px;
   margin: 2px 0 0.8em 0;
   background:#fff;
   border-bottom: 1px dotted black;
}

/* relational links under content */
div.left49 {
  float: left;
  width: 49%;  /* 50% for both left and right might lead to rounding error on some browser */
}

div.right49 {
  float: right;
  width: 49%;
  text-align: right;

}




/********************
CONTENT STYLING
*********************/
div#content {
padding-top:5px;

}

/* HEADINGS */
div#content h1 {
   color: #be0027;
  background:url(images/cms/puce.gif) no-repeat; 
   font-size: 1.5em; 
   text-align: left; 
/* some air around the text */
   padding-left: 37px;
   padding-top: 3px;
/* set borders around header */
   border-bottom: 2px solid #be0027;
   /*border-left: 1.1em solid #e7ab0b; */
   line-height: 1.7em;
/* and some air under the border */
   margin: 0 0 0.8em 0;
}
div#content h2 {
   color: #be0027;
  background:url(images/cms/puce.gif) no-repeat; 
   font-size: 1.5em; 
   text-align: left; 
/* some air around the text */
   padding-left: 37px;
   padding-top: 3px;
/* set borders around header */
   border-bottom: 2px solid #be0027;
   /*border-left: 1.1em solid #e7ab0b; */
   line-height: 1.7em;
/* and some air under the border */
   margin: 0 0 0.8em 0;
}

div#content h3 {
   color: #000;
  background:url(images/cms/puceh3.gif) no-repeat 0 6px;
padding-left: 23px;
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0.8em 0 0.8em 0;
}
div#content h4 {
   color: rgb(204, 0, 0); 
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0 0;
}
div#content h5 {
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0 0;
}
h6 {
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */

/* TEXT */
p {
font-size: 1em;
margin:0 0 0 0;  /* some air around p elements */
line-height:1.4em;
padding: 0;
}

p img {
margin:0;
border:#666666 solid 1px;
}

/*div#main img {
margin:0;
border:#666666 solid 1px;
}*/


blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}
pre {
   font-family: monospace;
   font-size: 1.0em;
}
strong, b {
/* explicit setting for these */
   font-weight: bold;
}
em, i {
/* explicit setting for these */
   font-style:italic;
}

/* Wrapping text in <code> tags. Makes CSS not validate */

pre {
   border: 1px solid #000;  /* black border for pre blocks */
   background-color: #ddd;
   margin: 0 1em 1em 1em;
   padding: 0.5em;
   line-height: 1.5em;
   font-size: 90%;   /* smaller font size, as these are usually not so important data */
}

table.formations {
width:95%;
font-family: Verdana;
font-size:1em;
border:1px solid #ddd;
border-collapse: collapse;
margin:auto;
}

table.formations th {
color:white;
font-weight:bold;
/*border:1px solid #ddd;*/
height:1.5em;
}

table.formations tr {
border:1px solid #ddd;
}

table.formations td {
border:1px solid #ddd;
height:1.5em;
line-height:1.2em;
}



table.formations .orange{ background-color:#F8B617; }
table.formations .orangec{ background-color:#FFCC99; }
table.formations .rouge{ background-color:#F6263E; }
table.formations .purple{ background-color:#831078; }
table.formations .rose{ background-color:#FADFF0; }
table.formations .vertf{ background-color:#6C8B0A; }
table.formations .vertc{ background-color:#DEF245; }
table.formations .red{ background-color:#BE0027; }

table.formations td p{
font-size:0.9em;
padding : 0 10px 5px 10px;
}

/* END TEXT */



li.gmapSidebarItem {
list-style-type:none;
display:none;
}

div#gmapmarker{
width:200px;}

/************menutop*************************/



.menutop{
padding: 0;
float: right;
/*border-top: 2px solid #BE0027;*/
width:auto;
font-size: 1.1em;
}

.menutop ul{
margin:0;
padding: 0;
list-style: none;
}

.menutop li{
display: inline;
margin: 0 2px 0 0;
padding: 0;
}

.menutop a{
float: left;
display: block;
height:15px;
font-weight:bold;
color: #505050;
text-decoration: none;
margin: 0 2px 0 0; 
padding: 5px 10px 5px 10px; 
background: #f4f4f4;
border-left: 18px solid #cccccc;
}

.menutop a:hover{
background: #BE0027; 
height:18px;
border-left-color:#000;
color: white;
}

.menutop .current a{ 
background: #BE0027;
height:18px;
border-left-color:#000;
color: white;
}

/********************filelist  ***************************/

/*table{
width : 95%;
border:1px solid #cccccc;
border-collapse: collapse;
}*/


table.filelist {
width : 95%;
border:1px solid #cccccc;
border-collapse: collapse;

}


table.filelist td {
padding:0.5em;
border-bottom:1px solid #cccccc;
}

table.filelist td.right {
text-align:right;
}
/********************en savoir+ ***************************/
#main .arrowlistmenu{
width: 320px;/*width of menu*/
list-style-type: none;
}



#main .arrowlistmenu ul{
list-style-type: none;
margin: 0;
padding: 0;
margin-bottom: 8px; /*bottom spacing between each UL and rest of content*/
}

#main .arrowlistmenu ul li{
padding-bottom: 2px; /*bottom spacing between menu items*/
list-style-type: none;
}

#main .arrowlistmenu ul li a{
color: #A70303;
background: url(images/cms/arrowbullet.png) no-repeat center left; /*custom bullet list image*/
display: block;
padding: 2px 0;
padding-left: 19px; /*link text is indented 19px*/
text-decoration: none;
font-weight: bold;
border-bottom: 1px solid #dadada;
font-size: 90%;
}

#main .arrowlistmenu ul li a:visited{
color: #A70303;
}

#main .arrowlistmenu ul li a:hover{ /*hover state CSS*/
color: #A70303;
background-color: #F3F3F3;
}

#main .arrowlistmenu ul li a.currentpage{ /*hover state CSS*/
color: #000;
background-color: #F3F3F3;
}

























#main .arrowlistmenu h1 a{




color: #A70303;
background: url(images/cms/arrowbullet.png) no-repeat center left; /*custom bullet list image*/
display: block;
padding: 2px 0;
padding-left: 19px; /*link text is indented 19px*/
text-decoration: none;
font-weight: bold;
border-bottom: 1px solid #dadada;
font-size: 90%; 
}












	/* Sample FormBuilder CSS base */
	form {margin-top:0; width:95%;}
	form, li { font-size: 100%}
	form div {margin-bottom:0}
	fieldset div {
		margin-bottom:0.5em;
		margin-left:1em;
	}
	fieldset div div {
		margin-top:0.5em;
		margin-left:1em
	}
	fieldset {
		margin-bottom:1em;
		border:1px solid #BE0027;
		padding:0.5em
	}
	fieldset label {
		width:auto;
	}
	legend {
		color:#FFF;
		background:#F60;
		font-style:italic;
		font-size:1.2em;
		margin-bottom:0.5em;
		padding:0.2em;
		width:auto;
		border:1px solid #CCC
	}
	textarea {
		margin: 0.5em 0;
		width:90%;
		height: 6em
	}

	/* Apply this class to text/select input fields with shorter labels
		to help alignment */
	.short-label label {float:left; width:10em}
	.short-label fieldset div input,
	.short-label fieldset div select {width:16em}

	/* Pretty up your Captcha image output */
	.captcha {
		margin:0.5em 0;
		width:200px;
		text-align:center
	}
	.captcha img {border:1px solid #F60; margin-bottom:0.5em}
	.captcha input {width:196px; margin-top:0.5em}

	/* Just a bit more room for the Submit button */
	.submit {margin-top:0.5em}



.contactform fieldset {padding: 1em; background-color: #eee;} .contactform fieldset legend {font-weight: bold;} .contactform div {width: 100%; padding: 0.20em 0 0.20em 0;} .contactform div label {display: block; width: 10em; } .contactform div.required {color: #BE0027;}

#banner {
width : 230px;
overflow:hidden; 
}

/* LISTS */
div#main ul,
div#main ol,
div#main dl {
  font-size: 1em;
   line-height:1.4em;
   margin: 10px 0 10px 30px;
   list-style:inside;
}

div#main ol li {
list-style-type:decimal;
}

div#main ul li{
list-style-type:square;
}

div#dl dt {
   font-weight: bold;
   margin: 0 0 0.25em 3em;
}
div#dl dd {
   margin: 0 0 0 3em;
}
/* END LISTS */

#xiti-logo {
text-align:right;
}


table {
padding:0;
margin:0;
border:0;
border:none;
}

td {
text-align:left;
padding:0;
margin:0;
border:0;
}

td h1 {
background : none;
text-align:left;
}

td h2 {
background-image : none;
border:0;
border:none;
text-align:left;
}

.newsletter {font-family: Verdana;}

.newsletter li{
   color: #be0027;
  background:url(images/cms/puce.gif) no-repeat; 
   font-size: 1.5em; 
   text-align: left; 
/* some air around the text */
   padding-left: 37px;
   padding-top: 3px;
/* set borders around header */
   border-bottom: 2px solid #be0027;
   /*border-left: 1.1em solid #e7ab0b; */
   line-height: 1.7em;
/* and some air under the border */
   margin: 0 0 0.8em 0;
}

.newsletter p {text-align:justify;font-size: 11px; padding-bottom:10px;}
.newsletter_actus {font-family: Verdana; padding: 10px; color: #fff;}
.newsletter_actus .titre {font-size:14px;font-style: italic;font-weight:bold;text-transform: uppercase;padding:0;margin:0;color: #fff;}
.newsletter_actus .sstitre {color: #CCCCCC;font-weight:bold;padding:0;margin:0; font-size:12px;}
.newsletter_actus .parag {text-align:justify;font-size: 11px;color: #CCCCCC;padding-bottom:10px;padding-top:7px; margin-top:0;border-bottom:#666666 dashed 1px;}

.newsletter_agenda {font-family: Verdana;padding-left: 15px; width: 170px; padding-top: 5px; text-align: left;}
.newsletter_agenda .titre {font-size:12px;font-weight: bold; color: #cc0000;padding:0;margin:0;padding-top:10px;}
.newsletter_agenda .sstitre {font-size:11px;font-weight: bold;padding:0;margin:0;}
.newsletter_agenda .parag {font-size: 11px;padding-top:7px;margin:0;padding-bottom:5px;}
a img {text-decoration:none; border:0;}

div#news ul {
background: black url(http://www.irepa-laser.com/images/cms/pucenews.gif) no-repeat 3px 12px;
line-height: 1.5em;
margin: 0px 0px 0.8em;
padding: 0px;
font-weight: bold;
color: gray;
padding-left: 33px;
font-size: 1.5em;
padding-top: 3px;
text-align: left;
}

div#newsletter ul {
background: black url(http://www.irepa-laser.com/images/cms/pucenews.gif) no-repeat 3px 12px;
line-height: 1.5em;
margin: 0px 0px 0.8em;
padding: 0px;
font-weight: bold;
color: gray;
padding-left: 33px;
font-size: 1.5em;
padding-top: 3px;
text-align: left;
width: 197px;
}

div#agenda ul {
background: black url(http://www.irepa-laser.com/images/cms/pucenews.gif) no-repeat 3px 12px;
line-height: 1.5em;
margin: 0px 0px 0.8em;
padding: 0px;
font-weight: bold;
color: gray;
padding-left: 33px;
font-size: 1.5em;
padding-top: 3px;
text-align: left;
}


/* End of 'Layout: irepa3' */

/* Start of CMSMS style sheet 'News irepa3' */
div#news {
  /*margin: 2em 0 1em 1em;*/  /* margin for the entire div surrounding the news list */
  /*border: 1px solid #000; */
  background: #ececec; 
font-size:0.9em;

}

div#news h2 {
   line-height: 1.5em;
   background: #000 url(images/cms/pucenews.gif) no-repeat 3px 12px;
color:#808080;
padding-left:33px;
border-bottom: 2px solid #fff; 
}



.NewsSummary {
    padding: 0.5em 0.5em 1em; /* padding for the news article summary */
    margin: 0 0.5em 1em 0.5em; /* margin to the bottom of the news article summary */
    border-bottom: 1px solid #ccc; 
}

.NewsSummaryPostdate {
  font-size: 90%;
  font-weight: bold;
 }

.NewsSummaryLink {
    font-weight: bold;
    padding-top: 0.2em;
}

.NewsSummaryCategory {
  font-style: italic;
  margin: 5px 0;
 }

.NewsSummaryAuthor {
  font-style: italic;
  padding-bottom: 0.5em;
}

.NewsSummarySummary, .NewsSummaryContent {
  line-height: 140%;
 }

.NewsSummaryMorelink {
  padding-top: 0.5em;
}

#NewsPostDetailDate {
  font-size: 90%;
  margin-bottom: 5px;
  font-weight: bold;
  }

#NewsPostDetailSummary {
   line-height: 150%;
   }

#NewsPostDetailCategory {
  font-style: italic;
  border-top: 1px solid #ccc;
  margin-top: 0.5em;
  padding: 0.2em 0;
}

#NewsPostDetailContent {
  margin-bottom: 15px;
  line-height: 150%;
  }

#NewsPostDetailAuthor {

  padding-bottom: 1.5em;
  font-style: italic;
}


/* to add specific style to the below divs, uncomment them. */

/* 
#NewsPostDetailTitle {}
#NewsPostDetailHorizRule {}
#NewsPostDetailPrintLink {}
#NewsPostDetailReturnLink {}
*/


div#agenda {
  /*margin: 2em 0 1em 1em;*/  /* margin for the entire div surrounding the news list */
  /*border: 1px solid #000; */
  background: #ececec; 
font-size:0.9em;
padding-bottom:1.2em;

}

div#agenda h2 {
   line-height: 1.5em;
   background: #000 url(images/cms/pucenews.gif) no-repeat 3px 12px;
color:#808080;
padding-left:33px;
border-bottom: 2px solid #fff; 
}

div#partenaires {
  /*margin: 2em 0 1em 1em;*/  /* margin for the entire div surrounding the news list */
  /*border: 1px solid #000; */
  background: #ececec; 
font-size:0.9em;
padding-bottom:1.2em;
height: 170px;
text-align:center;
}

div#partenaires h2 {
   line-height: 1.5em;
   background: #000 url(images/cms/pucenews.gif) no-repeat 3px 12px;
color:#808080;
padding-left:33px;
border-bottom: 2px solid #fff; 
}

div#partenaires #images {
width:200px;
text-align:center;
margin-left : auto;
margin-right : auto;
}

.imgcenter {
text-align:center;
margin-left : auto;
margin-right : auto;
}



div#newsletter {
  /*margin: 2em 0 1em 1em;*/  /* margin for the entire div surrounding the news list */
  /*border: 1px solid #000; */
  background: #ececec; 
font-size:0.8em;
padding-bottom:1.2em;

}

div#newsletter form {
padding-left:1em;
}
div#newsletter input {
margin-bottom:0.5em;
}

div#newsletter h2 {
   line-height: 1.5em;
   background: #000 url(images/cms/pucenews.gif) no-repeat 3px 12px;
color:#808080;
padding-left:33px;
border-bottom: 2px solid #fff; 
}

table {
padding:0;
margin:0;
border:0;
border:none;
}

td {
text-align:left;
padding:0;
margin:0;
border:0;
}

td h1 {
background : none;
text-align:left;
}

td h2 {
background-image : none;
border:0;
border:none;
text-align:left;

/* End of 'News irepa3' */

