/*  phpBB 3.0 Style Sheet
    --------------------------------------------------------------
	Style name:		subsilver2
	Based on style:	subSilver (the default phpBB 2 style)
	Original author:	subBlue ( http://www.subBlue.com/ )
	Modified by:		psoTFX and the phpBB team ( http://www.phpbb.com )
	
	This is an alternative style for phpBB3 for those wishing to stay with
	the familiar subSilver style of phpBB version 2.x
	
	Copyright 2006 phpBB Group ( http://www.phpbb.com/ )
    --------------------------------------------------------------
*/

/* Layout
 ------------ */
/*===========================================style===========================================*/
* {
	margin:0; padding:0;
	font-size:100%;
}

.min_width {min-width:750px; width:expression(((document.documentElement.clientWidth || document.body.clientWidth) < 1000)? "1000px" : "100%");}

body{
	background:#20263a url('../images/body_bg.gif') top repeat-x;
	color: #000000;
}

fieldset{
	padding:10px;
	border:1px solid #ccc;	
}

img {vertical-align:top;}
a img { border:0;}

ul { list-style:none;}

.left { float:left;}
.right {float:right;}
.clear  { clear:both;}


html, input, textarea
	{
		font-family:Arial;
		font-size:0.813em;
		line-height:1.154em;
		color:#4f4f4f;
	}

input, select { vertical-align:middle; font-weight:normal;}

a {color:#1c9ed5;}
a:hover{text-decoration:none;}
p {padding-top:15px;}
.p {padding-top:23px;}
/* =============================layout ============================*/
#site_center {text-align:center;}
#main { width:100%; margin:0 auto; text-align:left;}

#header {height:auto; padding:0 15px 0 17px; background:url('../images/top_bg.gif') top right no-repeat;}


#footer { height:31px;}

.column1, .column2, .column3, .indent_column, .col1, .col2, .col3, .ind_col {float:left;}
.columns {width:100%;}

.content_inside {padding:0 0px 0 0px; color:#000000;}

/* ============================= index ===========================*/

#index .column1 {width:/*254px*/34%; background:url('../images/ver_line.gif') right repeat-y;}
#index .column2 {width:/*239px*/31%; background:url('../images/ver_line.gif') right repeat-y;}
#index .column3 {width:/*255px*/34%;}
/* =============================layout ============================*/
/* ============================= main layout ====================== */

.more {background:url('../images/more_bg.gif') no-repeat 0 0; padding-left:24px; font-weight:bold;}

.send {background:url('../images/list_bg.gif') no-repeat 0 0; padding-left:24px; font-weight:bold;}

h1 {background:url('../images/logo.gif') top left no-repeat; text-indent:-10000px; height:64px; line-height:1.25em; font-size:0.75em;}
h2 {font-size:2em; font-family:tahoma; font-weight:normal; margin-bottom:20px;}

li { background:url(images/list_bg.gif) no-repeat 0 5px; padding-left:31px;}
li a { line-height:1.846em;}

.imgindent {margin:0 20px 0 0; float:left;}
.blue {color:#1c9ed5;}
/* ============================= header ====================== */

#header .submenu {padding:5px 110px 3px 0; text-align:right; font-size:0.7em;}
#header .submenu a {background:url('../images/submenu_bg.gif') no-repeat 0 3px; padding-left:12px; text-transform:uppercase; color:#FFFFFF; text-decoration:none;}
#header .submenu a:hover {text-decoration:underline;}
#header .menu {background:url('../images/menu_tall.gif') top repeat-x; height:50px;}
#header .menu .bgl {background:url('../images/menu_left.gif') top left no-repeat; width:100%;}
#header .menu .bgr {background:url('../images/menu_right.gif') top right no-repeat;}
#header .menu .left {padding:5px 0 0 12px; }

/* Solo para el index */
#header .menu2 {padding:0px 0 0 0px;}
#header .left_bg {background:url('../images/top_right.gif') bottom right no-repeat; height:11px}
#header .right_bg {background:url('../images/top_left.gif') bottom left no-repeat #ffffff;}

.cols {width:100%;}
.logo {margin-bottom:23px;}
/*.menu li {float:left; border-right:1px solid #125999; padding:0 1px; background:none;}*/

#middle .indent {padding:16px 15px 6px 14px; background:#ffffff; color:#ffffff;}
#middle .indent .bgtall {background:url('../images/header_bgtall.jpg') top repeat-x; width:490px;}
#middle .indent .bgr {background:url('../images/header_bgr.jpg') top right no-repeat; width:100%;}
#middle .indent .bgl {background:url('../images/header_bgl.jpg') top left no-repeat;}
#middle .indent .content {padding:10px 0 0 8px; width:442px;}

#header .indent .padding2 {padding:30px 0 19px 6px;}
#header .col {width:118px; float:left; text-align:center; background:url('../images/h_line.gif') right repeat-y; font-size:1.077em;}
#header .col a {color:#ffffff; text-decoration:none;}
#header .col a:hover {text-decoration:underline;}
#header .col .pad {padding:15px 0 10px 0;}
#header .col img {margin-bottom:9px;}
#header .padding2 .last {background:none;}

/* ============================= menu ====================== */

	#menu{
			width: 100%;
			margin: 0;
			padding: 10px 0 0 0;
			list-style: none;
			border-radius: 10px;
	}
	
	#menu li{
			float: left;
			padding: 0 0 10px 0;
			position: relative;
	}
	
	#menu a{
			float: left;
			height: 25px;
			padding: 0 25px;
			color: #fff;
			text-transform: uppercase;
			font: 12px/25px Arial, Helvetica;
			text-decoration: none;
	}
	
	#menu li:hover > a{
			color: #fafafa;
	}
	
	*html #menu li a:hover{ /* IE6 */
			color: #000;
	}
	
	#menu li:hover > ul{
			display: block;
	}
	
	/* Sub-menu */
	
	#menu ul{
		list-style: none;
		margin: 0;
		padding: 0;
		display: none;
		position: absolute;
		top: 27px;
		left: 0;
		z-index: 99999;
		background: #fff;
		-moz-border-radius: 5px;
		border-radius: 8px;
		border:1px solid #23c1e4;
	}
	
	#menu ul li{
		float: none;
		margin: 0;
		padding: 0;
		display: block;
		-moz-box-shadow: 0 1px 0 #23c1e4, 0 1px 0 #777777;
		-webkit-box-shadow: 0 1px 0 #23c1e4, 0 1px 0 #777777;
		box-shadow: 0 1px 0 #23c1e4, 0 1px 0 #777777;
	}
	
	#menu ul li:last-child{
		-moz-box-shadow: none;
		-webkit-box-shadow: none;
		box-shadow: none;
	}
	
	#menu ul a{
		padding: 10px;
		height: auto;
		line-height: 1;
		display: block;
		white-space: nowrap;
		float: none;
		text-transform: none;
		color: #000;
	}
	
	*html #menu ul a{ /* IE6 */
			height: 10px;
			width: 150px;
	}
	
	*:first-child+html #menu ul a{ /* IE7 */
			height: 10px;
			width: 150px;
	}
	
	#menu ul a:hover{
			background: #23c1e4;
			/*background: -moz-linear-gradient(#20263a,  #158cce);
			background: -webkit-gradient(linear, left top, left bottom, from(#20263a), to(#158cce));
			background: -webkit-linear-gradient(#20263a,  #158cce);
			background: -o-linear-gradient(#20263a,  #158cce);
			background: -ms-linear-gradient(#20263a,  #158cce);
			background: linear-gradient(#20263a,  #158cce);*/
	}
	
	#menu ul li:first-child a{
		-moz-border-radius: 5px 5px 0 0;
		-webkit-border-radius: 5px 5px 0 0;
		border-radius: 5px 5px 0 0;
	}
	
	#menu ul li:first-child a:after{
		content: '';
		position: absolute;
		left: 30px;
		top: -8px;
		width: 0;
		height: 0;
		border-left: 5px solid transparent;
		border-right: 5px solid transparent;
		border-bottom: 8px solid #fff;		
	}
	
	#menu ul li:first-child a:hover:after{
		border-bottom-color: #fff;
	}
	
	#menu ul li:last-child a{
		-moz-border-radius: 0 0 5px 5px;
		-webkit-border-radius: 0 0 5px 5px;
		border-radius: 0 0 5px 5px;
	}
	
	/* Clear floated elements */
	#menu:after{
			visibility: hidden;
			display: block;
			font-size: 0;
			content: " ";
			clear: both;
			height: 0;
	}
	
	* html #menu             { zoom: 1; } /* IE6 */
	*:first-child+html #menu { zoom: 1; } /* IE7 */


/* ============================= middle ====================== */

#middle { width:100%;}
#middle .mainindent {padding:0 15px 0 17px;}
#middle .left_bg {background:url('../images/middle_br.gif') bottom right no-repeat;}
#middle .right_bg {background:url('../images/middle_bl.gif') bottom left no-repeat #ffffff;}
#middle .indent {padding:0px 0 23px 0; height:auto}

/* ============================= footer ====================== */

#footer {color:#ffffff; font-size:0.923em;}
#footer .indent {padding:10px 0 10px 20px;}
#footer a {color:#1171ba;}

/* ============================= index ============================= */

#index .t1 {margin-bottom:25px;}
#index .t3 {margin-bottom:22px;}

#index .column1 .padding {padding:14px 20px 22px 20px;}

#index .column2 .padding {padding:14px 0 0 19px;}
#index .column2 ul {margin:16px 0 28px 1px;}

#index .column3 .padding {padding:14px 20px 0 18px;}
/*===========================================style===========================================*/

#wrapheader {
	min-height: 120px;
	height: auto !important;
	height: 120px;
/*	background-image: url('../images/background.gif');
	background-repeat: repeat-x;*/
/*	padding: 0 25px 15px 25px;*/
	padding: 0;
}

#wrapcentre {
	margin: 15px 25px 0 25px;
}

#wrapfooter {
	text-align: center;
	clear: both;
}

#wrapnav {
	width: 100%;
	margin: 0;
	background-color: #ECECEC;
	border-width: 1px;
	border-style: solid;
	border-color: #A9B8C2;
}

#logodesc {
	margin-bottom: 5px;
	padding: 5px 25px;
	background: #D9DFE4;
	border-bottom: 1px solid #4787A7;
}

#menubar {
	margin: 0 25px;
}

#datebar {
	margin: 10px 25px 0 25px;
}

#findbar {
	width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
}

.forumrules {
	background-color: #F9CC79;
	border-width: 1px;
	border-style: solid;
	border-color: #BB9860;
	padding: 4px;
	font-weight: normal;
	font-size: 1.1em;
	font-family: "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
}

.forumrules h3 {
	color: red;
}

#pageheader { }
#pagecontent { }
#pagefooter { }

#poll { }
#postrow { }
#postdata { }


/*  Text
 --------------------- */
h1 {
	color: black;
	font-family: "Lucida Grande", "Trebuchet MS", Verdana, sans-serif;
	font-weight: bold;
	font-size: 1.8em;
	text-decoration: none;
}

h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 1.5em;
	text-decoration: none;
	line-height: 120%;
	color: #106eb7;
}

p {
	font-size: 1.1em;
}

p.moderators {
	margin: 0;
	float: left;
	color: black;
	font-weight: bold;
}

.rtl p.moderators {
	float: right;
}

p.linkmcp {
	margin: 0;
	float: right;
	white-space: nowrap;
}

.rtl p.linkmcp {
	float: left;
}

p.breadcrumbs {
	margin: 0;
	float: left;
	color: black;
	font-weight: bold;
	white-space: normal;
	font-size: 1em;
}

.rtl p.breadcrumbs {
	float: right;
}

p.datetime {
	margin: 0;
	float: right;
	white-space: nowrap;
	font-size: 1em;
}

.rtl p.datetime {
	float: left;
}

p.searchbar {
	padding: 2px 0;
	white-space: nowrap;
} 

p.searchbarreg {
	margin: 0;
	float: right;
	white-space: nowrap;
}

.rtl p.searchbarreg {
	float: left;
}

p.forumdesc {
	padding-bottom: 4px;
}

p.topicauthor {
	margin: 1px 0;
}

p.topicdetails {
	margin: 1px 0;
}

.postreported, .postreported a:visited, .postreported a:hover, .postreported a:link, .postreported a:active {
	margin: 1px 0;
	color: red;
	font-weight:bold;
}

.postapprove, .postapprove a:visited, .postapprove a:hover, .postapprove a:link, .postapprove a:active {
	color: green;
	font-weight:bold;
}

.postapprove img, .postreported img {
	vertical-align: bottom;
}

.postauthor {
	color: #000000;
}

.postdetails {
	color: #000000;
}

.postbody {
	font-size: 0.91em;
	line-height: 1.4em;
	font-family: "Tahoma", "Trebuchet MS", Helvetica, Arial, sans-serif;
}

.postbody li, ol, ul {
	margin: 0 0 0 1.5em;
}

.rtl .postbody li, .rtl ol, .rtl ul {
	margin: 0 1.5em 0 0;
}

.posthilit {
	background-color: yellow;
}

.nav {
	margin: 0;
	color: black;
	font-weight: bold;
}

.pagination {
	padding: 4px;
	color: black;
	font-size: 1em;
	font-weight: bold;
}

.cattitle {

}

.gen {
	margin: 1px 1px;
	font-size: 1.2em;
}

.genmed {
	margin: 1px 1px;
	font-size: 1.1em;
}

.gensmall {
	margin: 1px 1px;
	font-size: 1em;
}

.copyright {
	color: #1171BA;
	font-weight: normal;
	font-family: "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
}

.titles {
	font-family: "Lucida Grande", Helvetica, Arial, sans-serif;
	font-weight: bold;
	font-size: 1.3em;
	text-decoration: none;
}

.error {
	color: red;
	font-size: 12px;
}


/* Links
 ------------ */
a:link {
	color: #006597;
	text-decoration: none;
}

a:active,
a:visited {
	color: #005784;
	text-decoration: none;
}

a:hover {
	color: #D46400;
	text-decoration: underline;
}

a.forumlink {
	color: #005784;
	font-weight: bold;
	font-family: "Tahoma", Helvetica, Arial, sans-serif;
	font-size: 1.2em;
}

a.topictitle {
	margin: 1px 0;
	font-family: "Tahoma", Helvetica, Arial, sans-serif;
	font-weight: bold;
	font-size: 1.2em;
}

a.topictitle:visited {
	color: #106EB7;
	text-decoration: none;
}

th a,
th a:visited {
	color: #FFA34F !important;
	text-decoration: none;
}

th a:hover {
	text-decoration: underline;
}


/* Form Elements
 ------------ */
form {
	margin: 0;
	padding: 0;
	border: 0;
}

input {
	color: #333333;
	font-family: "Lucida Grande", Verdana, Helvetica, sans-serif;
	font-size: 1.1em;
	font-weight: normal;
	padding: 1px;
	border: 1px solid #A9B8C2;
	background-color: #FAFAFA;
}

textarea {
	background-color: #FAFAFA;
	color: #333333;
	font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
	font-size: 1.3em; 
	line-height: 1.4em;
	font-weight: normal;
	border: 1px solid #A9B8C2;
	padding: 2px;
}

select {
	color: #333333;
	background-color: #FAFAFA;
	font-family: "Lucida Grande", Verdana, Helvetica, sans-serif;
	font-size: 1.1em;
	font-weight: normal;
	border: 1px solid #A9B8C2;
	padding: 1px;
}

option {
	padding: 0 1em 0 0;
}

option.disabled-option {
	color: graytext;
}

.rtl option {
	padding: 0 0 0 1em;
}

input.radio {
	border: none;
	background-color: transparent;
}

.post {
	background-color: white;
	border-style: solid;
	border-width: 1px;
}

.btnbbcode {
	color: #000000;
	font-weight: normal;
	font-size: 1.1em;
	font-family: "Lucida Grande", Verdana, Helvetica, sans-serif;
	background-color: #EFEFEF;
	border: 1px solid #666666;
}

.btnmain {
	font-weight: bold;
	background-color: #ECECEC;
	border: 1px solid #A9B8C2;
	cursor: pointer;
	padding: 1px 5px;
	font-size: 1.1em;
}

.btnlite {
	font-weight: normal;
	background-color: #ECECEC;
	border: 1px solid #A9B8C2;
	cursor: pointer;
	padding: 1px 5px;
	font-size: 1.1em;
}

.btnfile {
	font-weight: normal;
	background-color: #ECECEC;
	border: 1px solid #A9B8C2;
	padding: 1px 5px;
	font-size: 1.1em;
}

.helpline {
	background-color: #DEE3E7;
	border-style: none;
}


/* BBCode
 ------------ */
.quotetitle, .attachtitle {
	margin: 10px 5px 0 5px;
	padding: 4px;
	border-width: 1px 1px 0 1px;
	border-style: solid;
	border-color: #A9B8C2;
	color: #333333;
	background-color: #A9B8C2;
	font-size: 0.85em;
	font-weight: bold;
}

.quotetitle .quotetitle {
	font-size: 1em;
}

.quotecontent, .attachcontent {
	margin: 0 5px 10px 5px;
	padding: 5px;
	border-color: #A9B8C2;
	border-width: 0 1px 1px 1px;
	border-style: solid;
	font-weight: normal;
	font-size: 1em;
	line-height: 1.4em;
	font-family: "Lucida Grande", "Trebuchet MS", Helvetica, Arial, sans-serif;
	background-color: #FAFAFA;
	color: #4B5C77;
}

.attachcontent {
	font-size: 0.85em;
}

.codetitle {
	margin: 10px 5px 0 5px;
	padding: 2px 4px;
	border-width: 1px 1px 0 1px;
	border-style: solid;
	border-color: #A9B8C2;
	color: #333333;
	background-color: #A9B8C2;
	font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
	font-size: 0.8em;
}

.codecontent {
	direction: ltr;
	margin: 0 5px 10px 5px;
	padding: 5px;
	border-color: #A9B8C2;
	border-width: 0 1px 1px 1px;
	border-style: solid;
	font-weight: normal;
	color: #006600;
	font-size: 0.85em;
	font-family: Monaco, 'Courier New', monospace;
	background-color: #FAFAFA;
}

.syntaxbg {
	color: #FFFFFF;
}

.syntaxcomment {
	color: #FF8000;
}

.syntaxdefault {
	color: #0000BB;
}

.syntaxhtml {
	color: #000000;
}

.syntaxkeyword {
	color: #007700;
}

.syntaxstring {
	color: #DD0000;
}


/* Private messages
 ------------------ */
.pm_marked_colour {
	background-color: #000000;
}

.pm_replied_colour {
	background-color: #A9B8C2;
}

.pm_friend_colour {
	background-color: #007700;
}

.pm_foe_colour {
	background-color: #DD0000;
}


/* Misc
 ------------ */
img {
	border: none;
}

.sep {
	color: black;
	background-color: #FFA34F;
}

table.colortable td {
	padding: 0;
}

pre {
	font-size: 1.1em;
	font-family: Monaco, 'Courier New', monospace;
}

.nowrap {
	white-space: nowrap;
}

.username-coloured {
	font-weight: bold;
}

.nav{
	padding:10px 10px 10px 35px; color:#000; 
	background-color:#e7e7e7; 
	margin-bottom:20px
}