
/*  General controls  */

* {
    font-family: Verdana, Arial;
}

html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    background: #FFFFFF;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    background: #FFFFFF;
    font-size: 62.5%;  /*  62.5%;  *//*  Sets all fonts to 10px, 100% corresponds to 16px  */
}

div {
    border: 0;
    margin: 0;
    padding: 0;
    position: relative;
}

p {
    margin: 0;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    border: 0;
}





/*  Overlay layer  */

div#overlayer_mask {
    position: absolute;
    z-index: 4;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0.7;
    filter: alpha(opacity=70);
    background-color: #808080;
}

table#overlayer {
    position: absolute;
    z-index: 5;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
}

div#overlayer_content {
    background: #FFFFFF;
    text-align: left;
}





/*  Page main structure  */

.clean {  clear: both;  }

#super {
    width: 100%;
    height: 100%;
    overflow: auto;
}

#container{
    width: 980px;
    margin: 0 auto;
}

#top {
    width: 980px;
    overflow: hidden;
}

#ticker_bar {
    border-top: 1px solid #75ADDF;
    padding-bottom: 1px;  /*  Boundary size, see line below  */
    background: #343434;  /*  #CCCCCC;  */
}

#ticker_bar img {
    float: right;
}

#ticker_news {
    float: right;
    padding: 8px 10px;
    background: #75ADDF;
}

#menu_box {
    padding: 10px 10px 1px 10px;
    background: #FFFFFF;
    no_border-top: 1px solid #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
    overflow: visible;
}

#menu_box_new {
    padding: 10px 10px 0px 10px;
    background: #FFFFFF;
    no_border-top: 1px solid #FFFFFF;
    no_border-bottom: 1px solid ;
    border-bottom: 1px solid #FFFFFF;
    overflow: visible;
}

#content {
        padding: 11px;
    border: 1px solid #CCCCCC;
        background: #FFFFFF;
    padding-bottom: 12px;
}

#column_left {
    float: left;
    width: 628px;
    overflow: hidden;
    padding-right: 20px;
    no_background: #FFFFFF;
}

#column_left.full {
    width: 936px;  /*  (628 + 300 + 8) + 'px'  */
}

#boundary {
    position: absolute;
    z-index: 3;
    width: 10px;
    top: 12px;
    right: 320px;
    bottom: 12px;
    cursor: pointer;
    border: 1px solid #9C9A9C;
    background:  url(images/bound_right.gif) repeat-y top center;
    opacity: 0.33;
    filter: alpha(opacity=33);
}

#column_right {
    float: left;
    width: 300px;
    padding-left: 8px;
}

#footer {
    width: 956px;
    height: 35px;
    margin-top: 5px;
        padding: 15px 11px 0 11px;
    border: 1px solid #CCCCCC;
        background: #FFFFFF;
}





/*  Ticker structure  */

#TICKER {
    width: 760px;
    height: 15px;
    line-height: 15px;
    overflow: hidden;
    background: #75ADDF;
}

#TICKER a {
    color: #FFFFFF;
    text-decoration: none;
}

#TICKER a:hover {
    text-decoration: underline;
}





/*  Menu structure  */

#menu_box span {

    display: -moz-inline-box;
    display: inline-block;
    padding: 0;
    margin: 0;

}

#menu_box a {

    display: block;
    zoom: 1;
    *display: inline;

    white-space: nowrap;
    height: 14px;
    padding: 4px 7px 2px 7px;
    margin: 1px 0 0 1px;
    background: #2C77BC;
    
    font-weight: bold;
    text-decoration: none;
    color: #FFFFFF;

}

#menu_box span div {

    background: #2C77BC;
    border: 1px solid white;
    z-index: 2;
    padding: 0;
    margin: 0;
    display: none;
    float: left;
    clear: both;

}

#menu_box span:hover div {  display: block;  }

#menu_box a.first {
    background: #32486D;
    color: #FFFFFF;
}

#menu_box a.actual {
    background: #333333;
    color: #FFFFFF;
}

#menu_box a:hover {
    color: #CCCCCC;
}





/*  Superfish Menu strcuture  */
/*  Superfish Menu strcuture: ESSENTIAL STYLES  */

.sf-menu, .sf-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}
.sf-menu {
    line-height: 1.0;
}
.sf-menu ul {
    position: absolute;
    top: -999em;
    width: 10em;  /* left offset of submenus need to match (see below) */
}
.sf-menu ul li {
    width: 100%;
}
.sf-menu li:hover {
    visibility: inherit;  /* fixes IE7 'sticky bug' */
}
.sf-menu li {
    float: left;
    position: relative;
}
.sf-menu a {
    display: block;
    position: relative;
}
.sf-menu li:hover ul,
.sf-menu li.sfHover ul {
    left: 0;
    top: 2.5em;  /* match top ul list item height */
    z-index: 99;
}
ul.sf-menu li:hover li ul,
ul.sf-menu li.sfHover li ul {
    top: -999em;
}
ul.sf-menu li li:hover ul,
ul.sf-menu li li.sfHover ul {
    left: 10em;  /* match ul width */
    top: 0;
}
ul.sf-menu li li:hover li ul,
ul.sf-menu li li.sfHover li ul {
    top: -999em;
}
ul.sf-menu li li li:hover ul,
ul.sf-menu li li li.sfHover ul {
    left: 10em;  /* match ul width */
    top: 0;
}

/*  Superfish Menu strcuture: SKIN  */

.sf-menu {
    float: left;
    margin-bottom: 1px;  /* 1em */
}
.sf-menu a {
    border-left: 1px solid #ffffff;
    border-top: 1px solid #CFDEFF;
    padding: .5em 1em;
    text-decoration: none;
}
.sf-menu a, .sf-menu a:visited  {  /* visited pseudo selector so IE6 applies text colour */
    color: #FFFFFF;
    font-weight: bold;
}
.sf-menu li {
    background: #2C77BC;
}
.sf-menu li.first {
    background: #32486D;
}
.sf-menu li.first a {
    color: #FFFFFF;
}
.sf-menu li.current {
    background: #333333;
}
.sf-menu li.current a {
    color: #FFFFFF;
}
.sf-menu li li {
    background: blue;
}
.sf-menu li li li {
    background: green;
}
.sf-menu li:hover, .sf-menu li.sfHover,
.sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active {
    /*  background: ;  */
    outline: 0;
}
.sf-menu li:hover a, .sf-menu li.sfHover a,
.sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active {
    color: #CCCCCC;
}

/*  Superfish Menu strcuture: arrows  */

.sf-menu a.sf-with-ul {
    padding-right: 2.25em;
    min-width: 1px;  /* trigger IE7 hasLayout so spans position accurately */
}
.sf-sub-indicator {
    position: absolute;
    display: block;
    right: .75em;
    top: 1.05em;  /* IE6 only */
    width: 10px;
    height: 10px;
    text-indent: -999em;
    overflow: hidden;
    background: url('../images/arrows-ffffff.png') no-repeat -10px -100px;  /* 8-bit indexed alpha png. IE6 gets solid image only */
}
a > .sf-sub-indicator {  /* give all except IE6 the correct values */
    top: .8em;
    background-position: 0 -100px;  /* use translucent arrow for modern browsers */
}

/*  Superfish Menu strcuture: apply hovers to modern browsers  */

a:focus > .sf-sub-indicator,
a:hover > .sf-sub-indicator,
a:active > .sf-sub-indicator,
li:hover > a > .sf-sub-indicator,
li.sfHover > a > .sf-sub-indicator {
    background-position: -10px -100px;  /* arrow hovers for modern browsers */
}

/*  Superfish Menu strcuture: point right for anchors in subs  */

.sf-menu ul .sf-sub-indicator {
    background-position: -10px 0;
}
.sf-menu ul a > .sf-sub-indicator {
    background-position: 0 0;
}

/*  Superfish Menu strcuture: apply hovers to modern browsers  */
.sf-menu ul a:focus > .sf-sub-indicator,
.sf-menu ul a:hover > .sf-sub-indicator,
.sf-menu ul a:active > .sf-sub-indicator,
.sf-menu ul li:hover > a > .sf-sub-indicator,
.sf-menu ul li.sfHover > a > .sf-sub-indicator {
    background-position: -10px 0;  /* arrow hovers for modern browsers */
}

/*  Superfish Menu strcuture: shadows for all but IE6  */

.sf-shadow ul {
    background: url('../images/shadow.png') no-repeat bottom right;
    padding: 0 8px 9px 0;
    -moz-border-radius-bottomleft: 17px;
    -moz-border-radius-topright: 17px;
    -webkit-border-top-right-radius: 17px;
    -webkit-border-bottom-left-radius: 17px;
}
.sf-shadow ul.sf-shadow-off {
    background: transparent;
}





/*  Right column structure  */

.right_box {
    text-align: center;
    width: 300px;
    margin: 20px auto 0 auto;
}





/*  Video deportes structure  */

#video_deportes {
    text-align: left;
}

#video_headline {
    width: 290px;
    height: 15px;
    padding: 5px;
    color: #FFFFFF;
    background: #333333;
}

#video_lateral {
    width: 300px;
    height: 246px;
    background: #333333;
}

#video_zoom {
    width: 280px;
    padding: 5px 10px;
    text-align: right;
    background: #DFDFDF;
    display: none;
}

#video_date {
    width: 280px;
    padding: 5px 10px;
    background: #DFDFDF;
    font-weight: bold;
}

#video_title {
    width: 280px;
    padding: 0px 10px 10px 10px;
    background: #DFDFDF;
}

#video_list {
    padding: 5px 20px;
    font-weight: bold;
    background: #9C9A9C url(/img/fnd_cabvideos.gif) no-repeat 5px 7px;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
    color: #000000;
}
#video_list a {
    color: #000000;
}

#video_gallery {
    border-bottom: 1px solid #DFDFDF;
}
#video_gallery img {
    border: 3px solid #DFDFDF;
}
#video_gallery img:hover {
    border: 3px solid #FFFFFF;
}





/*  Flash goals structure  */

#goals_zoom {
    text-align: right;
}

#goals_zoom a {
    color: #000000;
}

#goals_big {
    margin: 10px auto;
    width: 100%;
}




/*  Agenda deportiva structure  */

#agenda_deportiva {
    padding: 1px;
    margin-top: 20px;
    border: 1px solid #9C9A9C;
    background: #DFDFDF;
}

#a_d_title {
    margin: 0 0 20px 0;
    font-weight:bold;
    color: #ffffff;
    background: #333333;
    padding: 2px 10px 2px 10px;
}

#a_d_date {
    color: #333333;
    font-weight: bold;
    padding: 1px 0px;
    margin: 0 0 10px 10px;
}

#agenda_deportiva ul {
    margin: 0 0 30px 0px;
    padding: 0 10px 0 25px;
    no_color: #BA543D;
}

#agenda_deportiva li {
    margin: 0 0 10px 0;
    color: #333333;
}

#agenda_deportiva a {
    color: #333333;
}





/*  Footer structure  */

#footer a {  color: #000000;  }

#footer_line1 {  height: 20px; position: absolute; left: 20px; top: 11px;  }
#footer_line1 a {  line-height: 20px; font-size: 120%; font-weight: bold;  }

#footer_line2 {  height: 20px; position: absolute; left: 20px; bottom: 8px;  }
#footer_line2 a {  line-height: 20px;  }

#copy_line1 {  display: none;  height: 20px; position: absolute; right: 20px; top: 11px;  }
#copy_line1 a {  display: none;  line-height: 20px; font-size: 120%;  }

#copy_line2 {  display: none;  height: 20px; position: absolute; right: 20px; bottom: 8px;  }
#copy_line2 a {  display: none;  line-height: 20px;  }





/*  NEWS STRUCTURE  */

.news_container {
    padding: 3px;
    margin-top: 12px;
    border: 1px solid #9C9A9C;
}

.news {
    padding: 10px;
    text-align: justify;
}

.news_image {
    z-index: 2;
    float: right;
    padding-left: 15px;
    margin-bottom: 10px;
    no_background: #FFFFFF;
}

#news_image_big {
    padding: 0;
    margin: 10px 5px 0 5px;
}

/* .news_image .news_zoom { */
.news_zoom {
    position: absolute;
    display: block;
    bottom: 0px;
    left: 15px;
    right: 0px;
    color: #000000;
    text-decoration: none;
    background: #FFFFFF url(/img/lupa2.gif) no-repeat center left;
    height: 30px;
    line-height: 30px;
    padding: 0 30px;
    opacity: 0.33;
    filter: alpha(opacity=33);
    white-space: nowrap;
}

#news_image_big a {
    left: 0;
    width: 530px;
}

.news_subheadline {
    color: #6F6F6F;
    font-size: 120%;
    margin-bottom: 10px;
}

.news_subheadline a {
    color: #4b6CA3;
}

.news_headline {
    font-size: 160%;
    font-weight: bold;
    margin-bottom: 8px;
}

.news_headline a {
    color: #4b6CA3;
}

.news_entry {
    font-weight: bold;
    margin-bottom: 8px;
}

.news_date {
    color: #ba543d;
    font-weight: bold;
    padding: 2px 0;
    border-bottom: 1px solid #9C9A9C;
}

.news_text {
    margin: 8px 0 2px 0;
    font-size: 120%;
    line-height: 150%;
}

.news_text p {
    margin: 8px 0 2px 0;
}

.news_footer {
    background: #DFDFDF;
    font-weight: bold;
    padding: 4px 10px;
}

.news_footer a {
    color: #000000;
    margin-right: 20px;
    line-height: 16px;
}

a.news_print {
    padding: 2px 16px 2px 24px;
    background: url(/img/ico_imprimir.gif) no-repeat center left;
}

a.news_read {
    padding: 2px 16px 2px 22px;
    background: url(/img/ico_masnews.gif) no-repeat center left;
}

a.news_more {
    padding: 2px 16px 2px 22px;
    background: url(/img/ico_masnews.gif) no-repeat center left;
}





/*  VIDEO NEWS STRUCTURE  */

#video_tabs_container {
    border-top: 1px solid #333333;
    width: 600px;
    min-height: 500px;
    overflow: hidden;
}

#video_tabs_container p {
    margin: 0;
    padding: 10px 0 0 0;
}

#video_tabs_video {
    width: 908px;
}

#video_tabs_texto {
}

#video__video {
    width: 600px;
}

#video__player {
    width: 600px;
    height: 471px;
    margin-top: 10px;
    background: url(/img/loading.gif) no-repeat center center;
}

.video_headline {
    font-size: 140%;
    font-weight: bold;
    padding-top: 10px;
}

.video_text {
    font-size: 120%;
    line-height: 150%;
}

#video__more {
    margin-top: 10px;
    border: 1px solid #CCCCCC;
    float: right;
    width: 240px;
    padding: 15px;
}

#video__more img {
    width: 240px;
    height: 180px;
    padding-bottom: 15px;
}

#video__more div {
    width: 240px;
    overflow: auto;
}

#video__more p {
    padding: 0 10px 0 0;
    font-size: 120%;
    line-height: 150%;
}

/*  patch  */
#video_tabs_texto a {
    display: none;
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
}



/*  INFOGRAFIES STRUCTURE  */

#infografia {
    text-align: center;
    border-bottom: 1px solid #9C9A9C;
    margin-bottom: 10px;
}

#infografia_title {
    margin: 10px auto;
    text-align: left;
    font-size: 160%;
    font-weight: bold;
    line-height: 200%;
}

#infografia_flash {
    margin: 10px auto;
    width: 100%;
}

#infografia_text {
    margin: 10px auto;
    text-align: left;
}





/*  NEWS & INFOGRAFIES HISTORICAL  */

.story {}

.story_title {
    color: #ba543d;
    font-size: 120%;
    font-weight: bold;
    padding: 5px 10px;
    margin-top: 15px;
    border: 1px solid #9C9A9C;
    background: #DFDFDF;
}

#story_tabs {
    margin-top: 15px;
    border-bottom: 1px solid black;
}

.story_list {
    padding: 0;
    margin: 0;
}

#story_list_left {
    width: 49%;
    float: left;
}

#story_list_right {
    width: 49%;
    float: right;
}

.story_item {
    padding: 4px;
    margin-top: 5px;
    border: 1px solid #DFDFDF;
}

.story_list a.dd {
    display: block;
    padding-left: 4px;
    color: #4b6ca3;
    line-height: 160%;
    font-weight: bold;
}

.story_list a.dt {
    display: block;
    line-height: 140%;
    padding-left: 4px;
    color: #000000;
}

#video_story div.story_list {
    margin-right: -12px;
    no_height: 100px;
}

* html #video_story div.story_list {
    height: 1%;
    width: 640px;
}

#video_story div.story_item {
    display: block;
    float: left;
    width: 286px;
    height: 75px;
    no_overflow: hidden;
    padding: 10px;
    margin: 9px 12px 0 0;
}

#video_story div.story_list a.dd {
    padding-left: 6px;
}

#video_story div.story_list a.dt {
    padding-left: 6px;
}

.story_over, .story_item:hover {
    border: 1px solid #9C9A9C;
    background: #DFDFDF;
}





/*  IMAGE GALLERY IN LAYER  */

#gallery_shown {
    width: 800px;
    height: 530px;
    padding: 10px;
    text-align: center;
    background: url(/img/bg_gallery.gif) no-repeat 0px 0px;
}

.gallery_shown_boxer {
    position: absolute;
    width: 780px;
    margin: 10px;
    left: 10px;
}

#gallery_shown_real {
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
}

#gallery_shown_real img {
    background: url(/img/loading_alpha.gif) no-repeat center center;
}

#gallery_shown_descr {
    background-color: #FFFFFF;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 5px 10px;
    opacity: 0.33;
    filter: alpha(opacity=33);
    text-align: justify;
}

#gallery_shown_descr:hover {
    opacity: 0.90;
    filter: alpha(opacity=90);
}

#gallery_close {
    position: absolute;
    top: 7px;
    right: 7px;
    opacity: 0.7;
    filter: alpha(opacity=70);
}

#gallery_close:hover {
    opacity: 1;
    filter: alpha(opacity=100);
}

#gallery {
    position: absolute;
    text-align: center;
    top: 6px;
    right: 6px;
    bottom: 6px;
    width: 140px;
}

#gallery_title {
    font-weight: bold;
    line-height: 23px;
    height: 23px;
    border: 1px solid #9C9A9C;
    padding-right: 26px;
    opacity: 0.7;
    filter: alpha(opacity=70);
}

#gallery_images {
    width: 140px;
    height: 510px;
    overflow: auto;
    text-align: center;
    margin-top: 3px;
    visibility: inherit;
}

#gallery a {
    display: block;
    width: 104px;
    border: 1px solid #9C9A9C;
    padding: 2px 0;
    margin: 10px 0 0 5px;
    opacity: 0.5;
    filter: alpha(opacity=50);
}

#gallery a.shown {
    border: 1px solid #9C9A9C;
    opacity: 1;
    filter: alpha(opacity=100);
}


#gallery a:hover {
    text-decoration: none;
    border: 1px solid #9C9A9C;
    opacity: 1;
    filter: alpha(opacity=100);
}

#gallery img {
    width: 100px;
}





/*  Auxiliary definitions  */

.top_first {
    margin-top: 0;
}

*html ul#menu {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #FFFFFF;
}

#tooltip {
  position: absolute;
  z-index: 3000;
  border: 1px solid #111;
  background-color: #eee;
  padding: 5px;
  opacity: 0.90;
}

#tooltip.pretty {
  border: none;
  width: 210px;
  padding: 20px;
  height: 135px;
  opacity: 0.8;
  background: url('/img/shadow.png');
}

#tooltip.pretty div {
  width: 210px;
  text-align: left;
  height: 135px;
  overflow: hidden;
}

#tooltip.pretty span {
  background-color: white;
  padding: 2px 4px 2px 10px;
  position: absolute;
  right: 20px;
  bottom: 20px;
}

