/* 
	Theme Name: The Chile Club 
	Theme URI: http://www.thechileclub.cl
	Description: Sitio desarrollado por Nenobora S.A para The Chile Club. 
	Version: 1.0. 
	Author: Nenobora S.A. 
	Author URI: http:///www.nenobora.com
	Tags: The Chile Club.
*/

.left {
	float: left;
}

.right {
	float: right;
}

/***********************************************
 *			2.-TÍTULOS
 ************************************************/
h1,h2,h3,h4,h5,h6 {
	font-family: 'Cantata One', serif;
	display: block;
	float: none;
	text-transform: normal;
	background: #0d345d;
	color: white;
	margin: 10px 0;
	padding: 4px;
}

h1 {
	font-size: 50pt;
	line-height: 50pt;
}

h2 {
	font-size: 43pt;
	line-height: 43pt;
}

h3 {
	font-size: 35pt;
	line-height: 35pt;
}

h4 {
	font-size: 28pt;
	line-height: 28pt;
}

h5 {
	font-size: 21pt;
	line-height: 21pt;
}

h6 {
	font-size: 14pt;
	line-height: 14pt;
}

/***********************************************
 *			3.-PARRAFOS
 ************************************************/
p,a,em,strong {
	font-family: 'Cantata One', serif;
	font-size: 12pt;
}

p {
	display: block;
}

a {
	color: #0d345d;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

em {
	font-style: italic;
}

strong {
	font-weight: bold;
}

blockquote {
	padding: 20px;
	background: #f3f3f3;
}

/***********************************************
 *			4.-LISTAS
 ************************************************/
ul {
	list-style: disc;
}

ul li {
	margin-left: 20pt;
	font-size: 13pt;
}

ul li a {
	color: #0d345d;
	font-size: 13pt;
}

ol li {
	font-size: 13pt;
}

ol li a {
	color: #0d345d;
	font-size: 13pt;
}

/***********************************************
 *			5.-IMAGENES
 ************************************************/
img.redondeada {
	border-radius: 50%;
}

img.bordeada {
	padding: 2px;
	background: #ddd;
}

/***********************************************
 *			6.-TABLAS
 ************************************************/
table thead {
	background: #0d345d;
	padding: 4px;
	border: 1px solid white;
}

table thead tr td {
	color: white;
	padding: 4px;
	border-right: 1px solid white;
}

table tbody tr {
	-webkit-transition: 0.5s all ease;
	-moz-transition: 0.5s all ease;
	-o-transition: 0.5s all ease;
	-ms-transition: 0.5s all ease;
	transition: 0.5s all ease;
}

table tbody tr td {
	padding: 4px;

}

table tbody tr:nth-child(even) {
	background: #f1f1f1;
}

table tbody tr:hover {
	background: #ddd;
	cursor: pointer;

	-webkit-transition: 0.5s all ease;
	-moz-transition: 0.5s all ease;
	-o-transition: 0.5s all ease;
	-ms-transition: 0.5s all ease;
	transition: 0.5s all ease;
}

table tr td {
	padding: 4px;
}

table tfoot {
	background: #0d345d;
	padding: 4px;
	color: white;
}

table tfoot tr td {
	color: white;
}

/***********************************************
 *			7.-FORMS
 ************************************************/
form {
	padding: 20px;
}

form label {
	font-family: 'Cantata One', serif;
	font-size: 10pt;
	font-weight: normal;
}

form input[type="text"],form input[type="email"],form input[type="number"],form input[type="date"],form input[type=password],form select {
	width: 200px;
	border-radius: 2px;
	height: 15px;
	padding: 7px;

	-webkit-box-shadow: none;
	box-shadow: none;
	outline: none;
	border: 1px solid #ccc;
}

/***********************************************
 *			7.1-BOTONES
 ************************************************/
button {
	outline: none;
	border: none;
	padding: 6px 10px;
	color: black;
	background: #ccc;
	font-family: 'Cantata One', serif;
	font-weight: 400;
	text-shadow: none;
}

button.azul {
	outline: none;
	border: none;
	padding: 6px 10px;
	color: white;
	background: #0d345d;
	font-family: 'Cantata One', serif;
	font-weight: 400;
	text-shadow: none;
}

button.rojo {
	outline: none;
	border: none;
	padding: 6px 10px;
	color: white;
	background: #df0024;
	font-family: 'Cantata One', serif;
	font-weight: 400;
	text-shadow: none;
}

button.verde {
	background: #299a0b;
	outline: none;
	border: none;
	padding: 6px 10px;
	color: white;
	font-family: 'Cantata One', serif;
	font-weight: 400;
	text-shadow: none;
}

button.amarillo {
	background: #D3A910;
	outline: none;
	border: none;
	padding: 6px 10px;
	color: white;
	font-family: 'Cantata One', serif;
	font-weight: 400;
	text-shadow: none;
}

button.negro {
	background: #111;
	outline: none;
	border: none;
	padding: 6px 10px;
	color: white;
	font-family: 'Cantata One', serif;
	font-weight: 400;
	text-shadow: none;
}

button.grande {
	padding: 6px 10px;
	font-size: 19pt;
}

button.mediano {
	padding: 6px 10px;
	font-size: 15pt;
}

button.enano {
	padding: 6px 10px;
	font-size: 10pt;
}

button:hover {
	outline: none;
	border: none;
	padding: 6px 10px;
	color: black;
	background: #ddd;
}

button.azul:hover {
	background: #0a2747;
	color: white;
}

button.rojo:hover {
	background: #c60020;
	color: white;
}

button.verde:hover {
	background: #238209;
	color: white;
}

button.amarillo:hover {
	background: #B26E0E;
	color: white;
}

button.negro:hover {
	background: #040404;
	color: white;
}

/***********************************************
 *			8.-HEADER
 ************************************************/
header.header {
	background-image:url(images/fondo.jpg);
	background-color:transparent;
	background: transparent url(images/fondo.jpg);
	padding: 20px 0;
	border-bottom: 6px solid #df0024;
	display:block;
	width:100%;
	-webkit-background-size: 30%;
	-moz-background-size: 30%;
	background-size: 30%;
	height: 460px;
}

/***********************************************
 *			8.1-LOGO
 ************************************************/
.logo {
	margin-top: 15px;
	display: block;
}

.logo a{
	text-decoration:none;
}

.logo h1 {
	background: none;
	padding: 0;
	margin: 0;
}

.home {
	margin-top: 25px;
}

.top {
	border-bottom: 1px solid #AAA;
	display: block;
	padding: 0;
	margin-top: 5px;
	margin-bottom: 5px;
}

/***********************************************
 *			8.2-NAV
 ************************************************/
nav.nav {
	width: 100%;
	display: block;
	background: #0d345d;
	margin-bottom: 0px;
	margin-top: 25px;
}

nav.nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

nav.nav ul li {
	display: inline-block;
    zoom: 1;
    *display: inline;
	margin: 0;
	padding: 0;
}

nav.nav ul li a, nav.nav ul li a:visited, nav.nav ul li a {
	color: white;
	padding: 10px 15px;
	font-size: 10pt;
	display: block;
	line-height: auto;
	margin: 0;
}

.tinynav { 
	display: none;
}

/***********************************************
 *			9.-SLIDER
 ************************************************/
#slider {
	margin-top: 30px;
	background: white;
	position: relative;
	z-index: 999;
	background: #ccc;
	width:100%;
	display:block;
	height: 398px;
	border: 4px solid white;
	border-radius: 3px;
	overflow: hidden;
	-webkit-box-shadow: 0px 3px 11px 0px rgba(50, 50, 50, 0.75);
	box-shadow: 0px 3px 11px 0px rgba(50, 50, 50, 0.75);
}




#slider img {
	width: 100%;
}

/***********************************************
 *			10.-SECTIONS
 ************************************************/
section.bienvenida,section.evento {
	margin-top: 30px;
	display: block;
}

section.bienvenida h3,section.evento h3 {
	display: block;
	font-size: 14pt;
	line-height: 14pt;
	padding: 9px;
}

section.bienvenida p,section.evento p {
	margin-top: 40px;
	text-align: justify;
}

section.bienvenida img.locacion,section.evento img.locacion {
	margin-top: 30px;
	margin-right: 10px;
	padding-bottom:40px;
}

/***********************************************
 *			10.1-ARTICLE
 ************************************************/
/***********************************************
 *			11.-SIDEBAR
 ************************************************/
aside.apartado {
	background: #e6e6e6;
	margin-top: 0px;
	padding: 0;
	padding-top:20px;
}

aside.apartado .speakers{
}

aside.apartado .widget2{
	padding:20px;
}

aside.apartado h3{
	font-size: 13pt;
	padding: 8px;
	text-align: center;
	line-height: 13pt;

}
aside.apartado .widget {
	padding: 0;
	padding-top: 20px;
}

aside.apartado .widget h3 {
	font-size: 13pt;
	padding: 8px;
	text-align: center;
	line-height: 13pt;
}

aside.apartado .widget ul {
	padding: 10px;
}

aside.apartado .widget .calendario {
	width: 100%;
}

.foto{
	padding:20px;
}

/***********************************************
 *			12.-FOOTER
 ************************************************/
footer.footer {
	margin-top: 40px;
	background: url('images/fondo.jpg');
	padding: 40px 0;

	-webkit-box-shadow: 0px -3px 15px 0px rgba(50, 50, 50, 0.75);
	box-shadow: 0px -3px 15px 0px rgba(50, 50, 50, 0.75);
}


/***********************************************
 *			12.- PÁGINA
 ************************************************/
.pagina{}
.pagina h1{
	display: block;
	font-size: 14pt;
	line-height: 14pt;
	padding: 9px;
	margin-top:30px;
	margin-bottom:30px;
}
.pagina .entrada{
	height:525px;
	overflow-y:auto;
}

.year{
	font-size:18pt;
	padding:20px 5px;
}


table.chairmen{
	width:95%;
	font-size:17pt;
}
table.chairmen tr{
	background:white;
	vertical-align: middle;
	height:60px;
}
table.chairmen tr:nth-child(2n-2){
	background:white;
}
table.chairmen tr:hover{
	background:none;
}

table.chairmen tr th{
	width:200px;
	font-weight:bold;
}

table.chairmen tr td{
	color:#666;
}

.titulo-statutes{
	font-weight:bold;
	display:block;

}




table.chairmen2{
	width:95%;
	font-size:12pt;
}
table.chairmen2 thead {
	background: #0d345d;
	padding: 4px;
	border: 1px solid white;
}

table.chairmen2 thead tr td {
	color: white;
	padding: 4px;
	border-right: 1px solid white;
}
table.chairmen2 tr{
	vertical-align: middle;
	height:60px;
}
table.chairmen2 tr:nth-child(2n-2){
	background:white;
}
table.chairmen2 tbody tr:hover{
	background:#ddd;
}

table.chairmen2 tr th{
	width:200px;
	font-weight:bold;
}

table.chairmen2 tr td{
	color:#666;
}





/**********************************************************************
*					The Blog
***********************************************************************/
.author, .date, .category, .comments{
	padding:0px 0 20px 0;
	font-weight:bold;
	margin-right:10px;
	font-size:8pt;
}

.category ul{
	list-style:none;
	margin:0;
	padding:0;
	display:inline-block;
}
.category ul li{
	padding:0;
	margin:0;
	display:inline-block;
}
.category ul li:after{
	content:',';
}

.category ul li:last-child:after{
	content:'';
}
.category ul li a{
	font-size:8pt;
}

.post{
	padding-top:20px;
}


.side-bar-slider-wrapper{
	margin-bottom:35px;
}
#side-bar-slider{
	margin-bottom:10px;
}
.side-bar-slider2-wrapper{
	margin-bottom:5px;
}


.widget{

	margin-bottom:20px;
}
