/*
 * screen.css
 *
 * Written by: Ciro Durán <ciro - at - ldc - dot - usb - dot - ve>
 * Date: August 15th, 2005
 * 
 * You may read and learn about CSS in this file and my page. But DO NOT steal
 * my design, please. That is, the whole set of colors, HTML layout and content
 * sectioning. Thank you :-).
 *
 */

/******************
* COMMON ELEMENTS *
******************/

* {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
}

body {
	background: #17538e;
}

hr {
	margin-top: 10px;
	margin-bottom: 5px;
}

a {
	text-decoration: none;
}

a img {
	border: 0;
}

a:hover {
	text-decoration: underline;
}

a:visited {
	color: #669;
}

a:active {
	text-decoration: underline;
}

.clear {
	clear: both;
}

.vspace {
	height: 10px;
}

#container {
	margin: 10px;
	padding: 10px;
	background: #fff;
	-moz-border-radius: 15px;
	
}

/************
* TOP FRAME *
************/

#top-frame {
	background: #0099CC;
	-moz-border-radius: 15px;
	border: 1px solid #0076ae;
}

/* TITLE */

#title {
	float: left;
	padding: 16px 0px 0px 16px;
	color: #fff;
}

#title h1 {
	font-variant: small-caps;
}

#title img {
	float: left;
	vertical-align: text-top;
	margin-right: 10px;
}

/* COMMON MENU */

#common-menu ul {
	top: 20px;
	right: 30px;
	position: absolute;
	float:right;
}

#common-menu ul li {
	float:left;
	list-style: none;
	font-size: small;
}

#common-menu ul li a {
	display: block;
	text-decoration: none;
	width: auto;
	text-align: center;
	margin: 0px 5px 0px 5px;
	padding: 0px 6px 2px 6px;
	-moz-border-radius-bottomleft: 6px;
	-moz-border-radius-bottomright: 6px;
	border: 1px solid #0076ae;
	
	background: #aad5ff;
	color: #000;
	
	filter: alpha(opacity=50);
	-moz-opacity: 0.5;
	opacity: 0.5;
}

#common-menu ul li.selected {
	background: #fff;
	color: #000;
	margin: 0px 5px 0px 5px;
	padding: 0px 6px 2px 6px;
	-moz-border-radius-bottomleft: 6px;
	-moz-border-radius-bottomright: 6px;
	border: 1px solid #0076ae;
	border-top: 1px solid #fff;
	font-weight: bold;
}

#common-menu ul li a:hover {
	background: #ffc;
}

/* SECTIONS MENU */

#menu {
	right: 70px;
	position: absolute;
	margin-top: -6px;
}

#menu ul {
	list-style: none;
}

#menu ul li {
	float: left;
	font-weight: bold;
}

#menu ul li a {
	display: block;
	text-decoration: none;
	width: auto;
	margin: 0px 5px 0px 5px;
	padding: 2px 6px 3px 6px;
	-moz-border-radius-topleft: 6px;
	-moz-border-radius-topright: 6px;
	border: 1px solid #0076ae;
	
	background: #aad5ff;
	color: #000;
}

#menu ul li a:hover {
	background: #ffc;
}

#menu ul li.selected {
	background: #fff;
	color: #000;
	margin: 0px 5px 0px 5px;
	padding: 2px 6px 3px 6px;
	-moz-border-radius-topleft: 6px;
	-moz-border-radius-topright: 6px;
	border: 1px solid #0076ae;
	border-bottom: 1px solid #fff;
	font-weight: bold;
}

/***************
* MIDDLE FRAME *
***************/

/* IMPORTANT NOTE:
 * The following 4 lines are set with the sole purpose of defeating the
 * Peek-a-boo bug IE6 shows. Google for 'Peekaboo bug' if you don't know what
 * is this about.
 */
/* Hides from IE-mac \*/
* html #middle-frame {height: 1%;}
/* End hide from IE-mac */

/* SUBMENU */

#submenu {
	position: absolute;
	left: 20px;
	width: 150px;
	background: #006699;
	padding: 10px;
	color: #fff;
	-moz-border-radius: 15px;
}

#submenu h4 {
	color: #ff0;
}

#submenu ul {
	padding-left: 1.5ex;
	list-style: url(../img/list-ball.png);
}

#submenu ul li a {
	display: block;
	text-decoration: none;
	width: auto;
	color: #fff;
}

#submenu ul li a:hover {
	display: block;
	text-decoration: none;
	width: auto;
	color: #fff;
	background: #0084c4;
}

a.submenu-root-link {
	color: #ff0;
	font-weight: bold;
	text-decoration: none;
	display: block;
}

a.submenu-root-link:hover {
	background: #0084c4;
}

/* CONTENT */

#content {
	margin-left: 180px;
	color: #000;
}

#content h2, #content h3, #content h4 {
	margin-bottom: 0.6em;
}

#content p {
	line-height: 1.3em;
	margin-bottom: 0.6em;
}

#content ul {
	padding-left: 1.5ex;
	list-style-position: inside;
	margin-bottom: 1em;
}

.article-image {
	float: left;
	border: 1px thin #000;
	margin-right: 1em;
	margin-bottom: 1em;
}

/***************
* BOTTOM FRAME *
***************/

#bottom-frame {
	background: #0099CC;
	color: #fff;
	-moz-border-radius: 15px;
	border: 1px solid #0076ae;
	padding: 5px;
	text-align: center;
}

#bottom-frame a {
	font-size: small;
	color: #ff0;
}

/************
* CHANGELOG *
************/

.changelog-entrada-fecha {
	font-weight: bold;
}

.skip {
	display:none;
}

/*******************
* PRINTING CLASSES *
*******************/

.noprint {
}

.onlyprint {
	display:none;
}

/******************
* CONTACT ME FORM *
******************/

.contact-form {
	padding: 10px;
	background: #ccf;
	-moz-border-radius: 10px;
}

.contact-form input {
	margin-top: 5px;
}

.contact-form-label {
	text-align: right;
	font-weight: bold;
}

.contact-form-text {
	text-align: center;
}