/*
CSS-file for Strictly CSS three column layout 2006
http://www.strictlycss.com
Developed by Eivind Savio
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}
/* remember to define focus styles! */
:focus {
	outline: 0;
}
body {
	line-height: 1.5;
	color: black;
	background: white;
}
ol, ul {
	list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}

label {
	padding: 5px;
}
select, textarea, input{
	margin: 5px;
}

body, html {
	color: #000; 
	font-family: Verdana, Arial, Tahoma, sans-serif;
	background-color: #fff; 
}
body {
	font-size: .8em;
	min-width: 760px;
}

.smaller {
	font-size: smaller;
}

p {padding: 7px 0 7px 0;}

#menu a:hover {
	color: #0000FF;
	text-decoration: none;
}

h2, h3 {
	padding-bottom: 3px;
}

h2 {
	font-size: larger;
	padding-bottom: 10px;
	font-weight: bold;
}

h3 {
	font-size: 1.1em;
	margin-top: 5px;
	margin-bottom: 0px;
	font-weight: bold;
}

.clear { clear: both; }
#mainContainer {
min-height: 300px;
background: #ffffff;
}
* html #mainContainer {
height: 300px; /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
}
/**************************
HEADER
**************************/
#header {
  background: white;
  background-image:url('img/lineaHoriz.png');
}

/**************************
CONTENT AND COLUMNS
**************************/
.outer {
border-left: 165px solid #ffd990; /*** This is the width and the color for our left column ***/
border-right: 130px solid #fff; /*** This is the width and the color for our right column ***/
}
* html .outer {
/*** No need for hacking IE on this layout ***/
}
.inner {
width: 100%; 
}
* html .inner {
/*** No need for hacking IE on this layout ***/
}
/*** div.inner is wider than its container, div.outer, and so overlaps to the right, pushing
div.right into the proper position. IE expands div.outer instead, requiring a Tan hack to avoid 
blowing the layout apart. IE gets the original 100% width as in the Livingstone layout. It blows 
my mind that all this hacking is being caused by the mighty Gecko engine! (shakes head ruefully)
***/
.float-wrap {
float: left;
width: 100%;
margin-left: -165px; /*** Same length as .outer border-left but with negative value ***/
}
* html .float-wrap {
/*** No need for hacking IE on this layout ***/
}
#content {
float: right;
margin-right: -165px;  /*** Same length as .outer border-left but with negative value ***/
width: 100%;
/*background: url("img/sombra_izq.png") repeat-y;
background-position: top left;*/
}
* html #content {
position: relative;
}

.contentWrap{
padding: 5px;
margin-left: 10px;

}
.contentWrap ol, .contentWrap ul {
margin: 3px 0 5px 35px;
}
.contentWrap li {
padding-bottom: 2px;

}
/**************************
LEFT COLUMN
**************************/
/*** div.left is in div.float-wrap, and when div.float-wrap is neg margined to the left, 
div.left is carried over into the proper position. 
***/
#left {
	float: left;
	width: 155px;
	min-height: 250px;
	padding: 5px;
	background-color: #ffd990;
}
* html #left {
position: relative;  /*** IE needs this  ***/
height: 250px;
}
#left ul {
list-style: none;
padding-bottom: 4px;
}
#left li {
padding-bottom: 2px;
}
/*************************
RIGHT COLUMN
**************************/
#right {
float: right; 
width: 120px;
padding: 5px;
min-height: 250px;
margin-right: -130px; /** This negative margin-right value is the width of the right column + the padding, in this example 130px. ***/

}
* html #right {
height: 250px;
position: relative;  /*** IE needs this  ***/
border-right: 1px solid #ffd990;

}
#right ul {
list-style: none;
padding-bottom: 4px;
}
#right li {
padding-bottom: 2px;
}

#right a:hover {
	background-color: #ffa500;
	color: white;
}
/**************************
FOOTER
**************************/
#footer {
text-align: center;
background-color: #ffd990;
}

/*#sombrafooter {
background: url("img/sombra.png") repeat-x;
margin-left: 167px;
z-index: -1;
}*/

#footer a:hover {
	background-color: #ffa500;
	color: white;
}

h1 {

position : absolute;
top : 0;
left : 0;
text-indent : -2000px;
margin : 0;
padding : 0;

}

#logo {

background : url("img/logo.jpg") no-repeat;
height : 84px;
margin : 0;
padding : 0;

}



/*
	Menu Vertical
*/

#menu {
	margin-top: 2px;
	width: 136px;
	font-size: 125%;
}

#menu ul, li {
	list-style-type: none;
}

#menu ul {
	margin: 0;
	padding: 0;
}

#menu li {
	border-bottom: 1px solid #ffd990;
}

#menu a {
	text-decoration: none;
	color: black;
	background: #ffd990;
	display: block;
	padding: 3px 6px;
	width: 143px;
}

#menu a:hover {
	color: white;
	background: #ffa500;
}

h2 {
	margin-top: 3px;
	margin-bottom: 5px;
	text-decoration: underline;
}

.tutorial {
	float: left;
	width: 100%;
	border-bottom: 1px solid #bbb;
	padding: 0;
	margin-left: -1px;
	margin-bottom: 12px;
	background: url("img/degradadoTutorial.png") no-repeat;
	background-position: bottom left;
}

.tutorial .titulo {
	background: url("img/esquinatuto.png") no-repeat;
	background-position: top left;
	margin-top: 0px;
	padding: 0;
}

.tutorial .thumbnail {
	float: left;
	margin: 4px 8px 3px 8px;
	}

.tutorial .thumbnail img { 
	width: 50px;
	height: 50px;
	border: 1px solid #999; 
}

.tutorial .infotutorial {
	color: #999;
	font-size: smaller;
	margin-bottom: 7px;
	margin-left: 5px;
}

.tutorial .descripcion {
	margin-left: 5px;
	margin-bottom: 5px;
}

.tutorial .enlaces {
	clear: left;
	color: #999;
	font-size: smaller;
}

.tutorial a, a:link, a:visited {
	color: #ffa500;
}

.tutorial h3 {
		padding: 1px 5px;
		margin-bottom: 5px;
}

.infotutorial a:hover {
		color: #fff;
		background-color: #ffa500;
		text-decoration:none;

	}


.thumbnail img {
	width: 50px;
	height: 50px;
	border: 1px solid #999; 
	}

.subcategorias {
	border-bottom: 1px solid #ffa500;
}

.subcategorias a {
	text-decoration: none;
}
	
.subcategorias a:hover {
	color: white;
	background-color: #ffa500;
}

div.pagination {
	padding: 3px;
	margin: 3px;
	text-align:center;
}

div.pagination a {
	padding: 2px 5px 2px 5px;
	margin-right: 2px;
	border: 1px solid #ffd990;
	
	text-decoration: none; 
	color: #2e6ab1;
}
div.pagination a:hover, div.pagination a:active {
	border: 1px solid #ffa500;
	color: #000;
}
div.pagination span.current {
	padding: 2px 5px 2px 5px;
	margin-right: 2px;
	border: 1px solid navy;
	font-weight: bold;
	background-color: #2e6ab1;
	color: #FFF;
}
div.pagination span.disabled {
	padding: 2px 5px 2px 5px;
	margin-right: 2px;
	border: 1px solid #929292;
}

.button { 
		background: #ffd990; 
		border-color: #ffa500; 
		color: #000000; 
}

#thumbs {
	margin-top: 7px;
	margin-bottom: 7px;
}

.pagi {
	margin: 5px 0;
}

.pagi span {
        border: 1px solid #ffa500;
	color: white;
	background-color: #ffa500;
	padding: 3px 5px;
}

.pagi a {
        text-decoration: none;
	color: black;
	background-color: #ffd990;
	border: 1px solid #ffa500;
	padding: 3px 5px;
}

.pagi a:hover {
        color: white;
	border: 1px solid #ffa500;
        background-color: #ffa500;
}


.pagi2 {
	clear:left;
	margin: 5px 0;
}

.pagi2 span {
        border: 1px solid #ffa500;
        color: white;
        background-color: #ffa500;
	padding: 3px 5px;
	margin: 5px 0;
}

.pagi2 a {
        text-decoration: none;
        color: black;
        background-color: #ffd990;
        border: 1px solid #ffa500;
	padding: 3px 5px;
	margin: 5px 0;

}

.pagi2 a:hover {
        color: white;
        border: 1px solid #ffa500;
	background-color: #ffa500;

}



#tutos {
	margin-bottom: 5px;
}

#tutoriales {
	margin-top: 0px;
}

#borleft {
	background-color: 1px solid;
}

#banner {
	float:right;
	margin-top: 5px
}

.comentario {
	clear:left;
	border-left: 5px solid #ffa500;
/*	border-top: 1px solid #ffa500;
	border-right: 1px solid #ffa500;
*/	border-bottom: 1px solid #ffd990;
	padding: 0px 5px;
	margin: 5px 0px 15px 0px;
}

.ventajas {
	clear: left;
	border-left: 5px solid #ffa500;
        padding: 0px 5px;
        margin: 5px 0px 15px 0px;
}

.comentario .infocomentario {
	color: #999;
	font-size: smaller;
}

.margenarriba {
	margin: 3px 0 0 0;
	padding: 0;
}

h4 {
	margin-bottom: 3px;
}

.nave {
	border-top: 1px solid #ffa500; border-left: 1px solid #ffa500; border-right: 1px solid #ffa500; padding: 0 3px;
}

.subrayado {
	border-bottom: 1px solid #999;
}

.banner_derecho {
	width: 125px;
	background-color: #ffd990;
}

.lateral {
	width: 300px;
	float: right;
	align: right;
	vertical-align: middle;
	border: 3px solid #ffd990;
}

.boton{
	color: #ffd990;
	background: #ffd990 url('img/buscar.png') no-repeat top left;
	width: 16px;
	height: 16px;
}

