﻿/* ----------------------------------------------------------------------------------------------------------

    Output device: screen, projection
    Structure:
        display; position; z-index; float; clear; width; height; overflow; margin; padding; border; background; align; font;

    Content:
    
        1) HTML tags
        2) HTML styles
        3) Layout
        4-1) Page: Homepage
        5) Others

---------------------------------------------------------------------------------------------------------- */

/* ----------------------------------------------------------------------------------------------------------
1) HTML tags

body {background:url("../design/bg.gif") 50% 0 repeat-y; font:0.8em/1.5 "arial", sans-serif;}

---------------------------------------------------------------------------------------------------------- */

body {background:url("../design/bg_n.gif") 50% 0 repeat-y; font:0.8em/1.5 "arial", sans-serif;}

a {color:#00F;}
a:hover {color:#F00;}

h1, h2, h3, h4, h5, h6, p, address, blockquote, table, dl {margin:5px 0;}

h1 {font-size:18px;}
h2 {font-size:16px;}
h3 {font-size:14px;}
h4 {font-size:12px;}
h5 {font-size:10px;}

fieldset {border: 0; margin:0; padding:0; }

/* ----------------------------------------------------------------------------------------------------------
2) HTML styles
---------------------------------------------------------------------------------------------------------- */


/* ----------------------------------------------------------------------------------------------------------
3) Layout
---------------------------------------------------------------------------------------------------------- */

#main {width:940px; margin:0 auto; overflow:hidden;}

	#header {width:940px; height:95px; overflow:hidden; background:url("../design/header.gif") 0 0 no-repeat;}
    /* Header - logo */
        #logo {	float:left; position: relative; width: 260px; height: 65px;	overflow: hidden; margin: 0 0 0 20px; padding: 0; font-size: 100%;	top: 16px; }
        #logo span {display:block; position:absolute; top:0; left:0; z-index:1; width:100%; height:100%; margin:0; padding:0; background:url("../design/logo_r.png") 0 0 no-repeat; cursor:pointer;}

	/* Main menu (tabs) */
	#tray {
		padding: 10px 0 0 0;
		margin:0 0 0 0;
		width: 940px;
		height: 33px;
		background: url("../design/tray.gif") 0 100% no-repeat;
	}

    #tray ul {margin:0 10px; padding:0; list-style:none;}
    #tray ul li {margin:0 5px 0 0; padding:0; float:left;}
    #tray ul li a {display:block; position:relative; padding:7px 15px; border:0; background:url("../design/tab_link.png") 0 0 repeat-x; color:#fff; font-weight:bold; text-decoration:none; cursor:pointer;}
    
    /* Main menu (tabs - link) */
    #tray ul li a span.tray-l, #tray ul li a:hover span.tray-l {position:absolute; top:0; left:0; _left:-15px; width:8px; height:8px; background:url("../design/tab_link_l.png") 0 0 no-repeat;}
    #tray ul li a span.tray-r, #tray ul li a:hover span.tray-r {position:absolute; top:0; right:0; _right:-1px; width:8px; height:8px; background:url("../design/tab_link_r.png") 100% 0 no-repeat;}
    
    /* Main menu (tabs - hover) */
    #tray ul li a:hover {background:url("../design/tab_hover.png") 0 0 repeat-x; color:#EAEAEA;}
    #tray ul li a:hover span.tray-l {background:url("../design/tab_hover_l.png") 0 0 no-repeat;}
    #tray ul li a:hover span.tray-r {background:url("../design/tab_hover_r.png") 100% 0 no-repeat;}
    
    /* Main menu (tabs - active) */
    #tray ul li#active a {background:#FFF; color:#DF0000;}
    #tray ul li#active a span.tray-l {position:absolute; top:0; left:0; _left:-15px; width:8px; height:8px; background:url("../design/tab_active_l.png") 0 0 no-repeat;}
    #tray ul li#active a span.tray-r {position:absolute; top:0; right:0; width:8px; height:8px; background:url("../design/tab_active_r.png") 100% 0 no-repeat;}


    #search {float:right; position:relative; top:37px; right:54px;}
    #search form {position:relative;}
    #search #search-input-out {position:absolute; top:0; right:39px; width:153px; height:30px; margin:0; padding:0; border:0; background:url("../design/search_input.gif") 0 0 no-repeat; font:bold 90%/100% "verdana",sans-serif; color:#000;}
    #search #search-input {width:140px; margin:5px 8px; padding:3px 0; border:0; background:#FFF; font:bold 100%/100% "verdana",sans-serif; color:#000;}
    #search #search-submit {position:absolute; top:0; right:0px;}
    #search fieldset {margin:0; padding:0; border:0;}
    #search fieldset {width:200px;}
    #search legend {display:none;}


/* ------------------------------------------------ */
    #cols {position:relative; margin:10px 0; background:url("../design/cols.gif") 0 0 repeat-y;}

    	#content {float:right; width:740px; overflow:hidden;}
    	
            /* #content-derecha{float:left; width:740px;} */
            #content-derecha-in {padding:0 10px;}
            
            #content-right {float:right; width:260px;}
            
            /* #content-center {
							float: left;
							width: 720px;
							padding:10px;
							}
			*/

    	#aside {float:left; width:190px; overflow:hidden;}
        #aside-top {width:190px; height:5px; background:url("../design/aside-top.gif") 0 0 no-repeat; font-size:0; line-height:0;}
        #aside-bottom {position:absolute; bottom:0; left:0; width:190px; height:5px; background:url("../design/aside-bottom.gif") 0 0 no-repeat; font-size:0; line-height:0;}
        
            .nav {margin:0; list-style:none;}
            .nav li {display:inline;}
            .nav li a {display:block; padding:7px 10px 7px 30px; background:url("../design/nav-link.gif") 15px 13px no-repeat; text-decoration:none;}
            .nav li#nav-active a {background:url("../design/nav-active.gif") 15px 13px no-repeat;}
            .nav #nav-active ul li a {padding-left:45px; background:url("../design/nav-sub.gif") 30px 10px no-repeat;}
            .nav a:hover {text-decoration:none;}
           
            #aside h4 {font-size:100%;}
            #aside h4.margin {margin:15px 0 5px 0;}

	#footer {overflow:auto; padding:20px 0; background:url("../design/footer.gif") 0 0 repeat-x; font-size:85%;}
	#footer p {margin:0;}
	#footer a:hover {text-decoration:none;}

/* ----------------------------------------------------------------------------------------------------------
4-1) Page: Homepage
---------------------------------------------------------------------------------------------------------- */

#topstory-top {width:740px; height:5px; background:url("../design/topstory-top.gif") 0 0 no-repeat; font-size:0; line-height:0;}
#topstory-bottom {width:740px; height:5px; background:url("../design/topstory-bottom.gif") 0 0 no-repeat; font-size:0; line-height:0;}
#topstory-bottom2 {width:740px; height:5px; background:url("../design/topstory-bottom2.gif") 0 0 no-repeat; font-size:0; line-height:0;}
#topstory {padding:5px 10px 10px 10px;}

    #topstory-img {float:left; width:180px;}
    #topstory-img img {display:block;}
    #topstory-desc {float:right; width:520px; padding:0px 10px 5px 10px;}
    
        #topstory-desc h2 {margin:0; font-size:140%; font-weight:normal;}
        #topstory-desc .info {margin:0; font-size:85%;}

#topstory-list {width:740px; padding:5px 0 10px 10px; overflow:hidden}
#topstory-list img {display:block; float:left; padding-right:10px;}
#topstory-list img.last {margin-right:0;}

#lista-imagenes {
	width: auto;
	padding: 10px 2px 0px 4px;
	overflow: hidden;
}
#lista-imagenes .cuadro {
	margin: 0 0 0 11px;
	display: block;
	float: left;
	width: 120px;
	height: 130px;
	text-align: center;
	font-weight: bold;
}
#lista-imagenes .cuadro img {display:block; float:left; padding:0px;}


.article {margin-bottom:10px; padding-bottom:10px; background:url("../design/dot.gif") 0 100% repeat-x;}
.article .article-img {float:left; width:180px;}
.article .article-img img {display:block; margin:10px 0 5px 0;}
.article .article-desc {float:right; width:520px; padding:0px 10px 5px 10px;}
.article .article-desc-todo {padding:0px 10px 5px 10px;}
.article .article-img-ampli {margin-top:10px; float:left; width:250px;}
.article .article-desc-ampli{float:right; width:440px; padding:0px 10px 5px 10px;}
.article a.subir {float:right; text-align:right;}

		
    .article .article-desc h3 {margin:0; font-size:140%; font-weight:normal;}
    .article .article-desc .info {margin:0; font-size:85%;}
    .article .article-desc p.nomb {margin-top:8px; text-align:justify;}
    .article .article-desc p.mini {margin-top:8px; text-align:justify; font-size:x-small}
    .article .article-desc a.subir {float:right; text-align:right;}
        
    .article .article-desc-ampli p.nomb {margin-top:8px; text-align:justify;}
    .article .article-desc-ampli p.mini {margin-top:1px; text-align:justify; font-size:x-small}
    .article .article-desc-ampli ol.list, ul.list {padding:0px 10px 0px 35px;}
    .article .article-desc-ampli a.subir {float:right; text-align:right;}
    
    .article .article-desc-todo .info {margin:0; font-size:85%;}   
    .article .article-desc-todo p.nomb {margin-top:8px; text-align:justify;}
    .article .article-desc-todo p.mini {margin-top:8px; text-align:justify; font-size:x-small}
    .article .article-desc-todo ol.list, ul.list {padding:0px 10px 0px 35px;}
	.article .article-desc-todo a.subir {float:right; text-align:right;}
    
.box-01-top {width:260px; height:5px; margin-top:5px; background:url("../design/box-01-top.gif") 0 0 no-repeat; font-size:0; line-height:0;}
.box-01-top-b {padding:5px 10px 15px 10px; background:url("../design/box-01-top-b.gif") 0 100% no-repeat;}
.box-01-top-b .f-left {text-transform:uppercase;}
.box-01-top-b .f-right {padding-top:2px; font-size:85%;}
.box-01-bottom {width:260px; height:11px; background:url("../design/box-01-bottom.gif") 0 0 no-repeat; font-size:0; line-height:0;}
.box-01 {padding:5px; background:url("../design/box-01.gif") 0 0 repeat-y;}
.box-01 .bg {margin:10px 0; padding:10px 0;}

    .news {margin:0;}
    .news dt {display:block; float:left; width:50px; font-weight:bold; text-align:center; line-height:1.2;}
    .news dt span {font-size:140%;}
    .news dd {display:block; float:left; width:190px; font-size:85%; line-height:1.6;}

.box-02-top {width:260px; height:5px; margin-top:10px; background:url("../design/box-02-top.gif") 0 0 no-repeat; font-size:0; line-height:0;}
.box-02-top-b {padding:5px 10px 15px 10px; background:url("../design/box-02-top-b.gif") 0 100% no-repeat; text-transform:uppercase;}
.box-02-bottom {width:260px; height:11px; background:url("../design/box-02-bottom.gif") 0 0 no-repeat; font-size:0; line-height:0;}
.box-02 {padding:5px 15px; background:url("../design/box-02.gif") 0 0 repeat-y;}

    .mostreaded {margin:0; list-style:none;}
    .mostreaded span {font-size:85%;}

/* ----------------------------------------------------------------------------------------------------------
5) Others
---------------------------------------------------------------------------------------------------------- */

#aside .padding {padding:10px 15px;}

.more {padding-right:15px; background:url("../design/arrow.gif") 100% 50% no-repeat;}

.rss {padding-left:22px; background:url("../design/rss.gif") 0 50% no-repeat;}

img.entexto_izqd
{
	float: left;
	margin: 5px 10px 10px 0px;
}

img.entexto_drcha
{
	float: right;
	margin: 5px 0 10px 10px;
}

/* ----------------------------------------------------------------------------------------------------------
6) Tabla
---------------------------------------------------------------------------------------------------------- */


table.tb_resistencia
{
	margin: 20px auto 20px auto;
	text-align: center;
	font-family: arial, sans-serif;
	border-width: 1px 1px 0px 1px;
	border-collapse: collapse;
	border-style: solid solid none solid;
	border-color: #4F81BD;
}


th
{
	border-color: #4F81BD;
	border-width: 1px;
	border-style: solid;
	border-spacing: 0px;

}


td
{
	border-color: #4F81BD;
	border-width: 1px;
	border-style: solid;
	border-spacing: 0px;
}

.celda_cabecera
{
	padding: 10px 20px 10px 20px;
	margin: 0;
	background-color: #4F81BD;
	color: white;
}


.celda_par
{
	padding: 10px 20px 10px 20px;
	background-color: #D3DFEE;
}

.celda_impar
{
	padding: 10px 20px 10px 20px;
	background-color: white;
}

.celda_foto
{
	padding: 10px 10px 10px 10px;
	vertical-align: middle;
	background-color: white;
}


table.tb_cocinas
{
	margin: 20px auto 20px auto;
	text-align: center;
	font-family: arial, sans-serif;
	border-width: 1px 1px 0px 1px;
	border-collapse: collapse;
	border-style: none;
	border-color: #FFFFFF;
}

.sin_borde
{
	border-color: #FFFFFF;
	border-style: none;
}


