/* Start of CMSMS style sheet 'Layout: Top menu + 2 columns' */
/*****************
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: "Tahoma", Arial;
	font-size: 75.01%;
	scrollbar-base-color: #EEEEEE;
	scrollbar-arrow-color: #003970;
	scrollbar-3dlight-color: #eeeeee;
	scrollbar-darkshadow-color: #eeeeee;
	scrollbar-face-color: #eeeeee;
	scrollbar-highlight-color: #eeeeee;
	scrollbar-shadow-color: #bbbbbb;
	line-height: 1.2em;
}

i, em {
	font-family: Verdana, Arial;
}

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

/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link 
a:active {
   text-decoration: none;
   background-color: inherit; 
   color: #BA3D42; 
}

a:visited {
   text-decoration: none;
   background-color: inherit;
  color: #BA3D42;
}

a:hover {
   text-decoration: none;
   background-color: #C3D4DF;
   color: #385C72;
}

/*****************
basic layout 
*****************/
body {
   background-color: #ccc;
   color: #333;
   margin:1em; /* gives some air for the pagewrapper */
}

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


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

div#header {
	height: 262px; /* adjust according your image size */
	background-image: url(img/bigheader7.jpg);
}


div#search {
   float: right;
   width: 27em;     /* enough width for the search input box */
   text-align: right;
   padding: 0.6em 0 0.2em 0;
   margin: 0 1em;
}

div.breadcrumbs {
   padding: 1em 0 1.2em 0;
font-family: "Tahoma", Tahoma, Verdana;
   font-size: 90%;
   margin: 0 1em;
   border-bottom: 1px dotted #999;
}

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

div#main {
   margin-left: 29%;
   margin-right: 2%;
}

div#footer {
   clear:both;
   color: #fff;
   background-color: #385C72;
	font-size:9px;
}

div#footer p {
   padding: 1.5em;      /* some air for footer */
   text-align: center; /* centered text */
   margin:0;
}

div#footer p a {
   color: #000;
}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   margin: 1em;
   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 {

}

/* HEADINGS */
div#content h1 {
   font-size: 2em;  /* font size for h1 */
   line-height: 1em;
   margin: 0;
}
div#content h2 {
   color: #294B5F; 
   font-size: 1.5em; 
   text-align: left; 
/* some air around the text */
   padding-left: 0.5em;
   padding-bottom: 1px;
/* set borders around header */
   border-bottom: 1px solid #e7ab0b; 
   border-left: 1.1em solid #e7ab0b; 
   line-height: 1.5em;
/* and some air under the border */
   margin: 0 0 0.5em 0;
}
div#content h3 {
   color: #294B5F; 
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
}
div#content h4 {
   color: #294B5F; 

   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
div#content h5 {
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h6 {
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */

/* TEXT */
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 */
code, pre {
 white-space: pre-wrap;       /* css-3 */
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 white-space: -pre-wrap;      /* Opera 4-6 */
 white-space: -o-pre-wrap;    /* Opera 7 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */
 font-family: "Courier New", Courier, monospace;
 font-size: 1em;
}

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 */
}

/* END TEXT */

/* LISTS */
div#main ul,
div#main ol,
div#main dl {
  	font-size: 1.0em;
   line-height:1.4em;
   margin: 0 0 1.5em 0;
}
div#main ul li,
div#main ol li {
   margin: 0 0 0.25em 3em;
}

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


/* ____________________ELEMENTI AGGIUNTI DA ME */

/*                         TABELLA CONTENITORE */

td#left {
	font-size: 10px;
	padding: 10px 10px 25px 5px;
	vertical-align: top;
}
td#right {
	font-size: 10px;
	padding: 10px 5px 25px 10px;
	vertical-align: top;
}
td#centrale {
	padding: 10px 30px 25px 30px;
	vertical-align: top;
}
td#centr-home-sx {
	padding: 10px 10px 25px 20px;
	vertical-align: top;
}
td#centr-home-dx {
	padding: 10px 20px 25px 10px;
	vertical-align: top;
}
td#topaff {
	padding: 5px 10px 10px 10px;
text-align: center;
border-top: 1px dotted #999;
}
td#discl {
	padding: 10px 10px 10px 10px;
text-align: center;
border-top: 1px dotted #999;
background-color: #385C72;
color: #fff;
font-size:9px;
}
td#segnal {
	padding: 5px 10px 5px 10px;
text-align: center;
border-top: 1px dotted #999;
font-size:9px;
}
td#barra {
	padding: 5px 10px 5px 10px;
text-align: center;
border-top: 1px dotted #999;
font-size:10px;
}
td#testato {
	padding: 5px 10px 5px 10px;
text-align: center;
border-top: 1px dotted #999;
font-size:10px;
}

/*                 TITOLI */

div.sidetitle {
	font-family: "Arial Rounded MT Bold", Arial;
font-size: 11px;
background-image: url(img/bgsidetitle.png);
color: black;
padding: 1px 0 1px 0;
color: #385C72;
vertical-align: middle;
}

div.pagetitle {
font-family: "Arial Rounded MT Bold", Arial;
font-size: 21px;
color: black;
padding: 1px;
color: #006699;
}

div.sidebar {
font-family: "Tahoma", Tahoma, Verdana;
font-size: 11px;
padding: 3px;
background-color: #dfdfdf;
}
.frame-news-home {
border: 1px dotted #999;
padding: 2px;
}

/*                       NEWS */

div.sommario-news, .contenuto-news {
font-size: 12px;
font-style: normal;
}
div.titolo-news {
	border-bottom: 1px dotted #bbb;
	font-size: 15px;
	font-family: "Arial Rounded MT Bold", Tahoma, Verdana;
	padding-bottom: 3px;
	padding-top: 2px;
}
div.leggitutto {
	text-align: right;
	font-size: 10px;
	margin-top: 7px;
	font-weight: bold;
	text-transform: uppercase;
	font-family: "Tahoma", Tahoma, Verdana;
}
div.sommario-home {
	border: 1px dotted #999;
	background-color: #ddd;
	padding: 4px;
}
div.sommario-news-home, .contenuto-news-home {
	font-size: 11px;
	font-style: normal;
	line-height: 1.2em;
}
div.titolo-news-home {
	font-size: 13px;
	font-family: "Arial Rounded MT Bold", Tahoma, Verdana;
	padding: 3px;
	background-color: #efefef;
}
div.data-home {
	font-size: 11px;
	border-bottom: 1px dotted #fff;
	padding: 2px;
	font-family: "Tahoma", Verdana;
}

/*                          LISTE */

div.mappa ul {	
	margin-bottom: 2px;
}

div.mappa li {
	margin-right: 0px;
	margin-bottom: 0px;
}

td#centrale ul {
	margin: 0 0 1.5em 1em;
	padding-left: 1em;
	list-style-image: url(../img/smalldot.png);
}
td#centrale li {
	margin-bottom: 2px;
}


/*                          SOTTOMENU */

.sub-m {
	background-image: url(../img/bgsubm.png);
	margin-bottom: 15px;
	font-size: 16px;
	padding: 2px 0px 2px 3px;
}

.titolosubm {
	font-weight: bold;
	font-style: normal;
	background-image: url(../img/bgsubm.png);
	padding-left: 2px;
	line-height: normal;
}

.sub-menu {
	height: 70px;
	font-style: italic;
	vertical-align: top;
	padding: 5px 0px 15px 3px;
}

.titolosubm-grande {
	background-image: url(../img/bgsubm.png);
	margin-bottom: 15px;
	font-size: 16px;
	padding: 2px 0px 2px 3px;
	color: #5F7AA9;
	font-style: italic;
}


/*                    STILE GUIDE EPISODI E MUSICALE */

table.sottomenuep {
	width: 420px;
}

td.submep {
	background-color: #C5D4E8;
	text-align: center;
	font-size: 11px;
	vertical-align: top;
	border: 1px dotted #999999;
}

div.otherseasons {
	font-weight: bold;
}

div.epsummary {
	text-align: left;
	border: 1px dotted #666666;
	padding: 4px 4px 4px 4px;
	background-color: #DDDDDD;
}

td.eptit {
	font-weight: bold;
	padding: 2px 2px 2px 2px;
	color: #5F7AA9;
	font-size: 12px;
	background-image: url(../img/bgsubm.png);
}

td.airdate {
	font-weight: bold;
	background-color: #dddddd;
	padding: 2px 2px 2px 2px;
	font-size: 10px;
	text-align: right;
}

td.epdata {
	font-size: 11px;
}
td.epdata-music {
	font-size: 12px;
	line-height: 1.4em;
}

.epcat {
	color: #5F7AA9;
	font-style: italic;
}

td.epmore {
	background-color: #dddddd;
	font-size: 10px;
	text-align: center;
	font-weight: bold;
	padding: 2px;
}
.epstills {
	border: 1px solid #333333;
	margin-right: 4px;
}

/* STILE SCANSIONE TEMPORALE */

table.scan {
	font-size: 12px;
}
table.scan tr td {
	border: 1px solid #dddddd;
	border-collapse: collapse;
padding: 2px;
}
.decenniscan {
	color: #5F7AA9;
	text-align: center;
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 0.1em;
}

/* STILE BIOGRAFIE */

.titoloinside {
	background-color: #888888;
	color: #eeeeee;
	padding-left: 2px;
	padding-right: 2px;
	font-weight: bold;
	letter-spacing: 0.1em;
}

/* STILE AUDITEL */

table.auditel {
	width: 100%;
}

table.auditel tr td {
	border: 1px solid #dddddd;
	font-size: 11px;
	padding: 2px;
}

/*                Stile Doppiaggio */

table.dopp {
	width: 100%;
	font-size: 11px;
}

/*                SONDAGGI CHIUSI */

div.barrasond {
	background-color: #d63131;
	font-family: Tahoma, Verdana;
	font-size: 12px;
	padding-left: 3px;
	font-weight: bold;
	color: #ffffff;
}
div.vocisond {
	font-family: Tahoma, Verdana;
	font-size: 12px;
	color: #000;
}

/*           SPAN ULTIME MODIFICHE */

span.lastmod {
	text-transform: capitalize;
	font-size: 11px;
	font-weight: bold;
}

/*            CALENDARIO */


div.titolo-evento {
	font-weight: bold;
	font-size: 9px;
	text-transform: uppercase;
}

span.calendar-date-from {
	text-transform: capitalize;
}
/* End of 'Layout: Top menu + 2 columns' */

