.pic{/*position:absolute; */
     float: left;
     top:0px;
     left:0px;
     height: auto;
     width: auto
     padding: 0px 0px 0px 0px; 		
	}
.pic a {
	color: transparent;
	border: 0px
}

.picderecha {
	float: right;
	margin: 0px -1px 0px 5px;
	padding: 0px 0px 0px 0px;
    border: 1px solid;
/*	height: 140px;
	width: 163px;
*/

}

.picderechanoborder {
	float: right;
	margin: 0px -1px 0px 5px;
	padding: 0px 0px 0px 0px;
 /*	height: 140px;
	width: 163px;
*/

}

.picizquierda {
	float: left;
	margin: 0px 8px 0px 0px; 
	padding: 0px 0px 0px 0px;
    border: 1px solid;
/*	height: 140px;
	width: 163px;
*/
}
.picizquierdanoborder {
	float: left;
	margin: 0px 8px 0px 0px; 
	padding: 0px 0px 0px 0px;
      
/*	height: 140px;
	width: 163px;
*/

}
.picderecha a {
	margin: 0px 0px 0px 5px;
	padding: 0px 0px 0px 0px;
}

body {
	margin:0% 5% 0% 10%;
	padding:0px;
	font-family:utah, arial, verdana, arial, helvetica, sans-serif;
	color:#2D305E;
	background-color:white;
	}
h2 {
	border-bottom:1px solid #999;
	border-right:1px solid #999;
	margin:15px 300px 15px 0px;
	padding:6px;
	font-size:14px;
	line-height:14px;
	font-weight:700;
	background-color:#eee;
	color:#2D305E;
}

h1, h4, h5, .storyTitle, .storyCategory, .storyAuthor .storyTime .readTime {
	margin:15px 0px 10px 0px;
	padding:0px;
	font-size:28px;
	line-height:28px;
	font-weight:900;
	color:#2D305E;
	}
h4, h5, .storyTitle, .storyCategory, .storyAuthor { 
	font-size:12px;
	line-height:12px;
	font-weight:800;
	color:#2D305E;
	text-align: left;

}	
h4 {
    color:#2D305E;	
}

.bMore
{
	text-align: left;
}


.rightFlush
{
	text-align: left;
}
.derechos a
{
	text-align: right;
	font-size: 80%;

}

.rightFlush a
{
	font-size: 100%;

}

.bMore a
{
	font-weight: bold;
	font-size: 110%;
}


.storyTitle {
	font-family:georgia;
	font-size:18px;
	line-height:15px;
	color:#2D305E;
}

.storyTime {
	font-size:10px;
}

.storyTime a {
	font-weight: bold;
	color:#9C9CCE;
}

.readTime {
	font-size:10px;
	text-align: right;
	float: right; 
}
.readTime a {
	font-weight: normal;
	font-size:9px;
	
}


.storyTime a:link { color:#9C9CCE; }
.storyTime a:visited { color:#9C9CCE;}


.storyCategory, .storyAuthor {
	font-size:10px;
	line-height:10px;
}
.storyCategory a:link { color:#9C9CCE; }
.storyCategory a:visited { color:#9C9CCE;}



h5, .storyAuthor {
	font-size:10px;
	font-style:italic;
}
p, .storyContent {
	font:11px/20px  verdana utah, verdana, arial, helvetica, sans-serif;
	margin:0px 0px 0px 0px;
	padding-bottom:5px;
	}
.storyContent, .storyContent a {
/**	font:12px/16px georgia,"utah", arial, verdana, arial, helvetica, sans-serif;
**/
font:normal 0.84em georgia,"utah", arial, verdana, arial, helvetica, sans-serif;
color:black;
line-height:20px;

}

.storyContent a, .storyContent a:link, .storyContent a:visited {
	text-decoration: underline;
	color:#9C9CCE; 

}


.storyContent {
	margin-top: 20px;
	margin-bottom: 20px;
	margin-left:0px
	color:black;
	text-align: justify;
	border-bottom:2px solid #999;
}

.storyContent blockquote {
	border: 0px dotted #6699CC;
	padding: 12px 16px;
	font:13px/16px verdana, arial, verdana, arial, helvetica, sans-serif;
	background-color: #eee;
	margin: 10px;
	
}


#content>p {margin:0px;}
#content>p+p {text-indent:0px;}

#content>.storyContent {margin:30px;}
#content>.storyContent+.storyContent {text-indent:0px;}

a {
	font-size:11px;
	text-decoration:none;
	font-family: utah, arial, verdana, arial, helvetica, sans-serif;
	}
a:link {color:#919191;}
a:visited {color:#919191;}


#header {
	margin:0px 0px 10px 0px;
	padding:17px 0px 0px 20px;
	/* For IE5/Win's benefit height = [correct height] + [top padding] + [top and bottom border widths] */
	height:39px; /* 20px + 17px + 2px = 33px */
/*	border-style:solid;
	border-color:black;
	border-width:1px 0px;
*/ /* top and bottom borders: 1px; left and right borders: 0px */
	border-bottom:1px solid #999;
	border-right:1px solid #999;
	line-height:11px;
	background-color:white /* #eee; */

/* Here is the ugly brilliant hack that protects IE5/Win from its own stupidity. 
Thanks to Tantek Celik for the hack and to Eric Costello for publicizing it. 
IE5/Win incorrectly parses the "\"}"" value, prematurely closing the style 
declaration. The incorrect IE5/Win value is above, while the correct value is 
below. See http://glish.com/css/hacks.asp for details. */
	voice-family: "\"}\"";
	voice-family:inherit;
	height:20px; /* the correct height */
	}
/* I've heard this called the "be nice to Opera 5" rule. Basically, it feeds correct 
length values to user agents that exhibit the parsing error exploited above yet get 
the CSS box model right and understand the CSS2 parent-child selector. ALWAYS include
a "be nice to Opera 5" rule every time you use the Tantek Celik hack (above). */
body>#header {height:20px;}


#header a {
	font-size:22px;
	font-weight:800;
}

#content {
	margin: 1px 7% 50px 24%; 
	padding:0px;


	}

#contentcomments {
	margin:0px 0px 50px 30px;
	padding:10px;
	}

#menu {
	
	width: 21%;
	float: left;
	margin-left: 0px;
     margin-right: 5px;
	padding: 20px 0px 0px 0px;
/*
	float:left;
	margin: auto 0px 0px 0px;
	padding:20px 0px 0px 0px;
	background-color:white    
*/
/* Again, the ugly brilliant hack. 
	voice-family: "\"}\"";
	voice-family:inherit;
	width:18%; */
	}

/* Again, "be nice to Opera 5". */
body>#menu {width:20%;}



#menu .pensamientoText p {
	font-size:12px;
	padding:10px 0px 0px 0px;
	margin-left: 2px;
}

#menu .pensamientoText a {
	font-size:11px;
	padding:0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	
}

#menu .pensamientoText br {
	padding:0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
.pensamientoText a, a:visited, a:link {
	color: black;
}

#menu .pensamientoAutor {
	//font-family: verdana, arial, helvetica, sans-serif;
	font-size:11px;
	font-style: oblique;
	float:center;
	
}
#menu .pensamientoAutor p{
	text-align:right;
	
}

.pensamientoAutor a, a:visited, a:link {
	color: black;
}

#menu .pensamientoAutor a {
	font-size:11px;
	padding:0px 0px 0px 0px;
	margin-left: 0px;
	
}


#menu h4 {
	font-size:12px;
	margin: 12px 0px 4px 0px;
	color:#2D305E;
}


.centerP {
    text-align: center; 
}


#contentcomments input, #content input, #menu input {
	margin: 1px;
	padding: 1px 1px 4px 1px;
	border: 1px solid #ccc;
	font:11px/14px utah, verdana, arial, helvetica, sans-serif;
}
#contentcomments textarea, #content textarea, #menu textarea {
	margin: 1px;
	padding: 1px;
	border: 1px solid #ccc;
	font:11px/14px utah, verdana, arial, helvetica, sans-serif;
}
.bComment
{
	text-align: left;
	padding-bottim: 10px;
}

/* Styles added when adapted to b2evolution: */
#menu p
{
	font-size:11px;
	line-height: normal;
	margin: 1ex 1ex 1ex 8px;
}


#menu>br {margin:0px;}

#menu a:link, a:visited
{
	color: #63639C;
	padding: 0px 0px 0px 0px ;
	margin: 0px 0px 0px 0px;
}

#menu ul
{


	margin: 0px;
	padding: 0px;
	font-size:11px;
	line-height: normal;
	margin-left: 0px;
	padding-left: 0px;

}
#menu li
{
	margin-left: 4px;
	padding-left: 2px;
	padding-bottom: 0px;
	font-size:9px;
}

#menu ul input
{
	border: none;
	margin: 0px;
	padding: 0px;

}
#menu form
{
	margin-top: 1ex;
	width: 90px;
}

.BlogButton
{
	background-color:#eee;
	border-bottom:1px solid #999;
	border-right:1px solid #999;
	padding: 5px;
}
.BlogButtonCurr
{
	background-color:#eee;
	border-bottom:1px solid #999;
	border-right:1px solid #999;
	padding: 5px;
	font-weight: bold;
}

a.BlogButton:hover, a.BlogButtonCurr:hover
{
	background-color:#fff;
}


form.bComment fieldset
{
	clear: both;
	border: none;
	margin: 2ex 0ex;
	padding: 0ex;
	/* border: 1px solid #f00; */
}

form.bComment label
{
	font-weight: bold;
}

input.bComment, 
textarea.bComment,
select.bComment
{
	background-color: #f0f0f0;
	border-width: 1px;
	border-color: #cccccc;
	border-style: solid;
	padding: .5ex;
	width: 98%;
	margin: 0ex;
}
fieldset .notes
{
	/* display: block; */
	font-size: 80%;
	color: #999999;
}
#contentcomments{
	margin: 0px 0px 0px 0px;
	font:11px/14px utah, verdana, arial, helvetica, sans-serif;

}
.bCommentTitle {
	font:11px/15px utah, verdana, arial, helvetica, sans-serif;
	
	padding-bottom: 5px;
	margin-top: 10px;
	
	line-height:12px;
	font-weight:600;
	color:#2D305E;
	text-align: left;


}

.bCommentText {
	font:12px/16px verdana, arial, helvetica, sans-serif;
	margin-bottom: 12px;
	text-align: justify;
	border-bottom:1px solid #999;
	
}

.bCommentSmallPrint
{
	font:10px/16px utah, verdana, arial, helvetica, sans-serif;
	
}