/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the <body> tag 
will be appended with the "custom" class, like so: <body class="custom">. You can use 
the "custom" class to override *any* CSS declarations contained in the style.css file.

For example, if you wish to change the default link color to green, you would add the 
following declarations to this file:

	.custom a, .custom a:visited { color: #090; }	<--- This makes links green
	.custom a:hover { color: #00f; }				<--- This makes links blue when you mouse over them

WHY THIS WORKS:

By using the "custom" class, you are creating more specific CSS declarations for HTML
elements. CSS styling is applied through rules of specificity, and because declarations
prepended with .custom are more specific, they get applied when the page is rendered!

More information about styling your Thesis installation using this file can be found
in the User's Guide:
	http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/
*/
body {
	font-family: Arial, Helvetica, sans-serif;
	background-color: #000;
}

#header_area {
	background-image: url(images/bg_header_area.jpg);
	background-position: center 0px;
	background-repeat: repeat-x;
}
#header_area .page {
	width: 851px;
	padding: 0px;
	position: relative;
}
#header {
	height: 131px;
	border-top-width: 9px;
	border-right-width: 9px;
	border-bottom-width: 9px;
	border-left-width: 9px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #4A4B4B;
	border-right-color: #4A4B4B;
	border-bottom-color: #4A4B4B;
	border-left-color: #4A4B4B;
	margin-top: 0px;
	background-image: url(images/internas_r2_c2.jpg);
	background-repeat: no-repeat;
	padding: 0px;
	width: 851px;
}
tabs {
}
ul#tabs {
	/*background-image: url(images/home_r4_c4.jpg);*/
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	height: 54px;
	margin: 0px;
	/*border-top-style: none;
	border-right-style: solid;
	border-bottom-style: none;
	border-left-style: solid;
	border-top-width: 9px;
	border-right-width: 9px;
	border-bottom-width: 9px;
	border-left-width: 9px;
	border-top-color: #4A4B4B;
	border-right-color: #4A4B4B;
	border-bottom-color: #4A4B4B;
	border-left-color: #4A4B4B;*/
	padding-top: 2px;
	width: 851px;
	background-repeat: repeat;
}
#content_area {
	background-image: url(images/bg_content_area.jpg);
	background-repeat: repeat-y;
	background-position: center;
}
#content_area .page {
	/*border-top-width: 9px;
	border-right-width: 9px;
	border-bottom-width: 9px;
	border-left-width: 9px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: none;
	border-left-style: solid;
	border-top-color: #4A4B4B;
	border-right-color: #4A4B4B;
	border-bottom-color: #4A4B4B;
	border-left-color: #4A4B4B;*/
	margin:0 auto;
	padding-left:0;
	padding-right:0;
	width:851px;
	left: auto;
	right: auto;
}
#content_box {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	background-image: url(images/bg_content_box.jpg);
	background-repeat: repeat-y;
	background-position: 0px;
	width: 851px;
}
#content_box .page {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	background: none;
	width: 869px;
	left: auto;
	right: auto;
}
#content {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	/*background-image: url(images/home_r7_c4.jpg);
	background-repeat: repeat-x;*/
	width: 652px;
	background-color: #FFF;
}
#sidebars {
width:199px;
}
#footer_area {
	background-color: #000;
	height: 0px;
}
#footer_area .page {
	width: 869px;
}
#footer {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	/*border-top-width: 9px;
	border-right-width: 9px;
	border-bottom-width: 9px;
	border-left-width: 9px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #4A4B4B;
	border-right-color: #4A4B4B;
	border-bottom-color: #4A4B4B;
	border-left-color: #4A4B4B;*/
	background-color: #000;
	height: 3px;
	padding: 0px;
}
#custom-foot {
	height: 67px;
	/*border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-width: 9px;
	border-right-width: 9px;
	border-bottom-width: 9px;
	border-left-width: 9px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: none;
	border-left-style: solid;
	border-top-color: #4A4B4B;
	border-right-color: #4A4B4B;
	border-bottom-color: #4A4B4B;
	border-left-color: #4A4B4B;*/
	background-color: #000;
	padding-top: 5px;
	width: 851px;
	position: relative;
	left: 9px;
}
.custom #header #logo { text-indent: -9999px; }
.custom #header h1, .custom #header p#tagline { text-indent: -9999px; }

ul#tabs current_page_item {
	cursor: pointer;
	text-transform: none;
	height: 49px;
}

h1, h2, h3 {
	color: #900;
	font-weight: bold;
}
.format_text h3 {
	font-size:14px;
	margin:0px;
	font-weight: normal;
}
/*ul#tabs li {
	margin: 0px;
	padding: 0px;
	border-top-width: 0;
	border-right-width: 0;
	border-bottom-width: 0;
	border-left-width: 0;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	height: 47px;
	text-indent: -5000px;
	background: none;
}
ul#tabs li a {
	padding:0px;
	height: 50px;
	margin: 0px;
}
ul#tabs li.home-item {
	background: url(images/botonera_r2_c2.jpg);
	width: 99px;
}
ul#tabs li.page-item-1 {
	background: url(images/botonera_r2_c3.jpg);
	width: 115px;
}
ul#tabs li.page-item-2 {
	background: url(images/botonera_r2_c4.jpg);
	width: 187px;
}
ul#tabs li.page-item-3 {
	background: url(images/botonera_r2_c5.jpg);
	width: 96px;
}
ul#tabs li.page-item-4 {
	background: url(images/botonera_r2_c7.jpg);
	width: 103px;
}
ul#tabs li.page-item-5 {
	background: url(images/home_r5_c11.jpg);
	width: 108px;
}

#ul#tabs li.current_page_item {
	margin: 0px;
	padding: 0px;
	height: 48px;
}

ul#tabs li.home-item:hover {
	background: url(images/botonera_r2_c2.jpg);
}
ul#tabs li.home-item.current_page_item {
	background: url(images/botonera_r2_c2.jpg);
}
ul#tabs li.page-item-1:hover {
	background: url(images/botonera_r2_c3.jpg);
}
ul#tabs li.page-item-1.current_page_item {
	background: url(images/botonera_r2_c3.jpg);
}
ul#tabs li.page-item-2:hover {
	background: url(images/botonera_r2_c4.jpg);
}
ul#tabs li.page-item-2.current_page_item {
	background: url(images/botonera_r2_c4.jpg);
}
ul#tabs li.page-item-3:hover {
	background: url(images/botonera_r2_c5.jpg);
}
ul#tabs li.page-item-3.current_page_item {
	background: url(images/botonera_r2_c5.jpg);
}
ul#tabs li.page-item-4:hover {
	background: url(images/botonera_r2_c7.jpg);
}
ul#tabs li.page-item-4.current_page_item {
	background: url(images/botonera_r2_c7.jpg);
}
ul#tabs li.page-item-5:hover {
	background: url(images/home_r5_c11.jpg);
}
ul#tabs li.page-item-5.current_page_item {
	background: url(images/home_r5_c11.jpg);
}*/


.menu, .menu a, .menu li ul {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	font-size: 0px;
	text-indent: -9999px;
	height: 54px;
	overflow: hidden;
	background-image: url(images/bg_menu_area.jpg);
	background-repeat: repeat-x;
	background-position: top;
}
.menu .tab-home a, .menu .tab-home a:hover, .menu .tab-home .current a {
	background: url(images/botonera_r2_c2.jpg);
	width: 99px;
	height: 48px;
	cursor: pointer;
	margin-top:2px;
}
.menu .tab-1 a, .menu .tab-1 a:hover, .menu .tab-1 .current a {
	background: url(images/botonera_r2_c3.jpg);
	width: 115px;
	height: 48px;
	cursor: pointer;
	margin-top:2px;
}
.menu .tab-2 a, .menu .tab-2 a:hover, .menu .tab-2 .current a {
	background: url(images/botonera_r2_c4.jpg);
	width: 187px;
	height: 48px;
	cursor: pointer;
	margin-top:2px;
}
.menu .tab-3 a, .menu .tab-3 a:hover, .menu .tab-3 .current a {
	background: url(images/botonera_r2_c5.jpg);
	width: 96px;
	height: 48px;
	cursor: pointer;
	margin-top:2px;
}
.menu .tab-4 a, .menu .tab-4 a:hover, .menu .tab-4 .current a {
	background: url(images/botonera_r2_c7.jpg);
	width: 103px;
	height: 48px;
	cursor: pointer;
	margin-top:2px;
}
.menu .cat-item-364 a, .menu .cat-item-364 a:hover, .menu .cat-item-364 .current a {
	background: url(images/botonera_r2_c22.jpg);
	width: 115px;
	height: 48px;
	cursor: pointer;
	margin-top:2px;
}




li.widget {
	background-color: #FFF;
	/*background-image: url(images/home_r8_c13.jpg);
	background-repeat: repeat-x;*/ 
}
#ingresaralclub {
	padding: 9px;
	font-size: 10px;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #D3D3D3;
	border-right-color: #D3D3D3;
	border-bottom-color: #D3D3D3;
	border-left-color: #D3D3D3;
}
#ingresaralclub input[type="text"] {
	background-color: #FFF;
	height: 16px;
	width: 106px;
	margin: 0px;
	padding: 0px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 2px;
	border-left-width: 0px;
	border-top-color: #E6E6E6;
	border-right-color: #E6E6E6;
	border-bottom-color: #E6E6E6;
	border-left-color: #E6E6E6;
	font-size: 12px;
	position: relative;
	float: left;
}
#ingresaralclub input[type="password"] {
	background-color: #FFF;
	height: 16px;
	width: 106px;
	margin: 0px;
	padding: 0px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 2px;
	border-left-width: 0px;
	border-top-color: #E6E6E6;
	border-right-color: #E6E6E6;
	border-bottom-color: #E6E6E6;
	border-left-color: #E6E6E6;
	font-size: 12px;
	position: relative;
	float: left;
}
#cajaregistro {
	font-size: 12px;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #D3D3D3;
	border-right-color: #D3D3D3;
	border-bottom-color: #D3D3D3;
	border-left-color: #D3D3D3;
	padding-top: 9px;
	padding-right: 9px;
	padding-bottom: 9px;
	padding-left: 9px;
}
#cajaregistro input[type="text"] {
	background-color: #FFF;
	height: 16px;
	width: 100px;
	margin: 0px;
	padding: 0px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-color: #E6E6E6;
	border-right-color: #E6E6E6;
	border-bottom-color: #E6E6E6;
	border-left-color: #E6E6E6;
	font-size: 12px;
}
#cajaregistro form {
	clear: none;
	float: none;
	border-style: none;
	margin: 0px;
	padding: 0px;
}
/* #cajaregistro input, textarea {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}*/
#todo_inicio {
	float: left;
	width: 632px;
	/*background-image: url(images/home_r7_c4.jpg);
	background-repeat: repeat-x;*/
	padding: 10px;
}
#todo_inicio p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: normal;
	color: #333;
}
#todo_inicio h3 {
	font-size: 16px;
}
#video-home {
	float: right;
	border-top-width: 3px;
	border-right-width: 5px;
	border-bottom-width: 5px;
	border-left-width: 3px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #B5B5B5;
	border-right-color: #B5B5B5;
	border-bottom-color: #B5B5B5;
	border-left-color: #B5B5B5;
	margin-top: 20px;
	margin-left: 10px;
	height: 263px;
	width: 350px;
}
.notaprecio {
	font-size: 12px;
	white-space: normal;
}
.textoslayersazul {
	text-decoration: none;
	color: #000;
}
#lineabajotitulo {
	background-color: #A8A8A8;
	height: 2px;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.post_box, .teasers_box, .full_width #content_box .page {
	margin-top: 0;
	margin-right: 20px;
	margin-bottom: 20px;
	margin-left: 30px;
}
    .style1 {font-weight: bold}
.enrojo {
	color: #900;
	font-weight: bold;
	font-size: 18px;
}
.tituloacordeeon {
	font-family: Arial, Helvetica, sans-serif;
	font-style: normal;
	font-weight: bold;
	font-variant: normal;
	text-transform: none;
	color: #000;
	text-decoration: none;
	font-size: 19pt;
}
.enazul {
	color: #006;
	font-weight: bold;
	font-size: 18px;
}
.enrojogrande {
	color: #900;
	font-weight: bold;
	font-size: 24px;
}
.engrisgrande {
	color: #333;
	font-weight: bold;
	font-size: 24px;
}
.format_text a {
	color: #B38600;
	text-decoration: none;
}
.format_text a:link {
	text-decoration: none;
}
.format_text a:hover {
	text-decoration: none;
}
a {
	color: #B38600;
	text-decoration: none;
}
a:link {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
#ventaoro {
	border: 8px solid #FAC826;
	position: relative;
	left: auto;
	right: auto;
	padding: 25px;
	background-color: #FFFBEC;
	margin-top: 30px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 10px;
}
#ventaoro h1{
	font-size: 28px;
	color: #B38600;
}
#ventaoro h6{
	font-size: 11px;
	color: #000;
	text-align: center;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	margin-bottom: 5px;
}
/*#ventaoro li {
	list-style-position: outside;
	list-style-image: url(images/medalla-oro-bullet.png);
}*/
#ventaplata {
	border: 8px solid #C9C8C7;
	position: relative;
	left: auto;
	right: auto;
	padding: 25px;
	background-color: #F5F5F5;
	margin-top: 30px;
	margin-right: 10px;
	margin-bottom: 30px;
	margin-left: 10px;
}
#ventaplata h1{
	font-size: 28px;
	color: #737472;
}
#ventaplata h6{
	font-size: 11px;
	color: #000;
	text-align: center;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	margin-bottom: 5px;
}
/*#ventaplata li {
	list-style-position: outside;
	list-style-image: url(images/medalla-plata-bullet.png);
}*/

#playerventas {
	height: 300px;
	width: 400px;
	border-top-width: 3px;
	border-right-width: 5px;
	border-bottom-width: 5px;
	border-left-width: 3px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #B5B5B5;
	border-right-color: #B5B5B5;
	border-bottom-color: #B5B5B5;
	border-left-color: #B5B5B5;
}
#testimoniosbdsm {
	padding: 9px;
	font-size: 10px;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #D3D3D3;
	border-right-color: #D3D3D3;
	border-bottom-color: #D3D3D3;
	border-left-color: #D3D3D3;
}
#boton-bajo-video-home {
	float: right;
	height: 69px;
	width: 350px;
	margin-top: 10px;
}
.texto-inicio {
	float: left;
}
#video-y-boton {
	float:right;
	width:370px;
}
/*#comments {
	font-size: 0px;
	text-indent: -9999px;
}*/
#imagenproducto {
	float: left;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	width: 300px;
}
.format_text h2 {
	color: #900;
}
.format_text a {
	color: #333;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	font-variant: normal;
	text-transform: capitalize;
}
#divisorprod {
	float: left;
	position: relative;
	width: 100%;
}
#descripprod {
	float: left;
	width: 290px;
	position: relative;
}
#descripprod input[type="image"] {
	padding: 0px;
	width: 232px;
	margin: 0px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}
.related_post_title {
	float: left;
	position: relative;
	width: 100%;
	padding-bottom: 5px;
}
.related_post li {
	float: left;
	position: relative;
	font-weight: normal;
	width: 100%;
}
.related_post li a {
	font-weight: normal;
}
#notaimaprod {
	font-size: 10px;
	color: #999;
	text-align: center;
	float: left;
	position: relative;
	width: 310px;
	line-height: 10px;
}
#separador {
	background-color: #999;
	float: left;
	width: 100%;
	position: relative;
	height: 1px;
	margin-bottom: 5px;
	margin-top: 5px;
}
.caja_destacada {
	width: 85%;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
	padding-top: 5px;
	padding-right: 15px;
	padding-bottom: 5px;
	padding-left: 15px;
	border: 4px solid #ffe9bb;
	background-color: #ffffcc;
}
/* .format_text input, #commentform input, #commentform textarea {
border-width:0;
padding:0;
width:210px;
}*/
.home-new-1 {
	border: 1px solid #CDCDCD;
	padding: 10px;
	background-color: #F1F0F0;
	color: #666;
	margin-bottom: 15px;
}
#homenew-tabla1 img {
	height: 26px;
	margin: 0px;
	padding: 0px;
}
#homenew-tabla2 {
	line-height: 14px;
	margin: 0px;
	padding: 0px;
	font-size: 12px;
}
#homenew-tabla2 td {
}
#homenew-tabla2 img.alignleft {
margin:5px 2px 0 0;
}
#homenew-tabla2 .format_text img.center, .format_text img.aligncenter, .wp-caption.aligncenter {
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
.home-separador {
	margin-top: 20px;
	margin-bottom: 10px;
}
#homenew-tabla3 img.alignleft {
margin:7px 2px 0 0;
}
#homenew-tabla4 {
	font-size: 12px;
}
/*#homenew-tabla4 img {
	margin: 4px;
}*/
#homenew-tabla5 {
	border: 2px solid #FFF;
}
#homenew-tabla5 td {
	font-size: 13px;
	padding: 1px;
	text-align: center;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #FFF;
	border-right-color: #FFF;
	border-bottom-color: #FFF;
	border-left-color: #FFF;
}
#homenew-tabla5 img {
	margin: 4px;
}
#homenew-tabla5 h2 {
	font-size: 15px;
	margin-top: 10px;
	margin-bottom: 10px;
}
#homenew-tabla5 p {
	margin-bottom: 5px;
}
#homenew-tabla5 a {
	font-size: 13px;
	text-decoration: underline;
}
#homenew-tabla6 {
	font-size: 12px;
}
..home-new-1 p {
	/*margin-bottom:10px;*/
	font-size: 13px;
}
#text-4 input[type="image"] {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	background:none;
}
#text-8 input[type="image"] {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	background:none;
}
#text-3 input[type="image"] {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	background:none;
}
#dap-loginlogout-widget-3 input {
background: none;
border-width: 1px;
}
#dap-loginlogout-widget-3 input[type="image"] {
background: none;
border-width: 0px;
}
#dap-loginlogout-widget-3 input[type="text"] {
	background-color: #FFF;
	height: 10px;
	width: 80px;
}
#dap-loginlogout-widget-3 input[type="password"] {
	background-color: #FFF;
	height: 17px;
	width: 88px;
}
#dap-loginlogout-widget-3 img {
	padding-top: 10px;
}
#ingresaalclubtexto {
	font-size:1.3em;
	line-height:1.385em;
	padding-bottom: 5px;
}
#home-nota-imagen {
	font-size: 9px;
	color: #666;
	text-align: center;
	width: 600px;
	margin-top: 5px;
}
#hometabla1 {
	font-size: 12px;
	margin-bottom: -30px;
}
#hometabla1 img {
	margin-bottom: 0px;
	margin-top: 22px;
	*margin-top: 5px;
}
#imagen-editorial {
	overflow: hidden;
	position: absolute;
	height: 200px;
	width: 185px;
	background-color: #666;
	margin-top: 20px;
}
/*#premiun1 {
	height: 55px;
	width: 190px;
	background-image: url(http://www.liderazgoyexito.com/wp-content/uploads/2010/01/index_v4_clean_r2_c2.jpg);
	margin-left: 5px;
	background-repeat: no-repeat;
	background-position: left top;
	margin-top: 5px;
	padding-top: 11px;
	padding-left: 5px;
	padding-right: 50px;
	line-height: 18px;
	font-weight: bold;
	color: #333333;
}
#premiun2 {
	height: 55px;
	width: 190px;
	background-image: url(http://www.liderazgoyexito.com/wp-content/uploads/2010/01/index_v4_clean_r2_c2.jpg);
	margin-left: 5px;
	background-repeat: no-repeat;
	background-position: left top;
	margin-top: 5px;
	padding-top: 11px;
	padding-left: 5px;
	padding-right: 50px;
	line-height: 18px;
	font-weight: bold;
	color: #333333;
}
#premiun3 {
	height: 55px;
	width: 190px;
	background-image: url(http://www.liderazgoyexito.com/wp-content/uploads/2010/01/index_v4_clean_r2_c2.jpg);
	margin-left: 5px;
	background-repeat: no-repeat;
	background-position: left top;
	margin-top: 5px;
	padding-top: 11px;
	padding-left: 5px;
	padding-right: 50px;
	line-height: 18px;
	font-weight: bold;
	color: #333333;
}
#premiun4 {
	height: 55px;
	width: 190px;
	background-image: url(http://www.liderazgoyexito.com/wp-content/uploads/2010/01/index_v4_clean_r2_c2.jpg);
	margin-left: 5px;
	background-repeat: no-repeat;
	background-position: left top;
	margin-top: 5px;
	padding-top: 11px;
	padding-left: 5px;
	padding-right: 50px;
	line-height: 18px;
	font-weight: bold;
	color: #333333;
}*/
#rdm1 {
	margin-top: 35px;
	width: 170px;
	margin-right: auto;
	margin-left: auto;
}
#rdm1 p {
	margin-bottom: 5px;
	line-height: 16px;
	font-weight: bold;
	color: #333;
}
#text-9 {
	background-color: #B5B5B5;
}
#editorialtable img {
	overflow: visible;
	position: absolute;
	margin-top: 30px;
}
#texto-editorial {
	border: 1px solid #EAE9E9;
	background-color: #F1F0F0;
	padding-top: 15px;
	padding-left: 50px;
	padding-right: 10px;
	margin-bottom: 10px;
	font-size: 12px;
	margin-left: 150px;
}
#texto-editorial p {
	margin-bottom:3px;
}
#texto-editorial a {
	color:#333333;
	font-style:normal;
	font-variant:normal;
	font-weight:normal;
	line-height:normal;
	text-transform:capitalize;
	text-decoration: underline;
}
#dap-loginlogout-widget-3 img {
	padding-top:10px;
	padding-bottom: 10px;
}
#dap-loginlogout-widget-3 input[type="image"] {
	background:none repeat scroll 0 0 transparent;
	border-width:0;
	padding-bottom: 10px;
}
#archive_info p {
	text-indent: -9999px;
font-size:0;
line-height:1em;
margin-bottom:1.1em;
}
.comments_closed p {
color:#888888;
letter-spacing:1px;
text-transform:uppercase;
	text-indent: -9999px;
font-size:0;
}
.comments_closed {
margin-bottom: 0em;
margin-top: 0em;
}
.tabla-editoriales {
	background-color: #F1F0F0;
	border: 2px solid #E9E8E8;
	margin: 15px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
}
.video-club {
	margin-right: auto;
	margin-left: auto;
	margin-top: 15px;
	margin-bottom: 15px;
	text-align: center;
}
.boton-despues-texto, .boton-despues-texto input {
	text-align: center;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	background: none;
}
.custom #divisorprod h2 {
	font-size:22px;
	line-height:normal;
	font-weight: bold;
	margin-top: 15px;
	margin-bottom: 20px;
}
.custom #divisorprod h3 {
	font-size:18px;
	line-height:normal;
	font-weight: bold;
	margin-top: 15px;
	margin-bottom: 20px;
	text-align: center;
	margin-right: 40px;
	margin-left: 40px;
	color: #000;
	background-color: #FC0;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-right: 5px;
	padding-left: 5px;
}
#compra-producto {
	float: left;
	margin-top: 30px;
}
#regresaracatalogo {
	width: 100%;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #808080;
	float: left;
	margin-top: 20px;
	padding-top: 10px;
}
hr {
	padding-top: 10px;
	padding-bottom: 5px;
}
#yamiembro input[type="image"] {
	padding: 0px;
	width: 98px;
	margin: 0px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}
.testimoniosalespage {
	text-align: center;
	width: 85%;
	margin-right: auto;
	margin-left: auto;
	margin-top: 50px;
	margin-bottom: 50px;
	border: 3px solid #EA0000;
	padding-top: 20px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 15px;
	background-color: #FFC;
}
.audiosalespage {
	text-align: center;
	width: 85%;
	margin-right: auto;
	margin-left: auto;
	margin-top: 50px;
	margin-bottom: 50px;
	border: 4px dashed #EA0000;
	padding-top: 20px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 15px;
	background-color: #FFC;
}
.fotossalespage {
	margin-top: 30px;
	margin-bottom: 30px;
	padding-top: 20px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #CCC;
	border-bottom-color: #CCC;
}
.fotosextrasalespage {
	margin-top: 30px;
	margin-bottom: 30px;
	padding-top: 20px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
	height: 158px;
	width: 500px;
	margin-right: auto;
	margin-left: auto;
}
#profile a {
	color: #009;
	text-decoration: underline;
}
#videos-gratis {
	text-align: center;
}
#videos-gratis h2 {
	color: #000;
	padding-bottom: 20px;
	font-size: 22px;
}
#videos-gratis h1 {
	padding-bottom: 45px;
	font-size: 30px;
	line-height: normal;
}
#videos-gratis a {
	padding-bottom: 0px;
	font-size: 24px;
	padding-top: 20px;
	color: #009;
	text-decoration: underline;
}
#videos-gratis h3 {
	padding-bottom: 30px;
	font-size: 26px;
	padding-top: 5px;
	color: #333;
	font-weight: bold;
}
#videos-gratis p {
	margin: 0px;
	padding: 0px;
}
#comocomprar {
	background-image: url(http://www.liderazgoyexito.com/wp-content/uploads/2010/05/ayuda-compra.jpg);
	height: 240px;
	width: 320px;
	position: absolute;
	visibility: hidden;
	z-index: 200;
	top: -40px;
	font-size: 0px;
}
#comocomprarlink {
	text-align: center;
	width: 100%;
}
#comocomprarlink a {
	font-size: 14px;
	font-weight: normal;
	color: #00F;
	text-decoration: underline;
}
#botoncomprar {
	text-align: center;
}
#garantia {
	text-align: center;
	margin-top: 15px;
	margin-bottom: 30px;
}
#ingresaralclublogin {
	margin-top: 30px;
	margin-bottom: 30px;
}
#ingresaralclublogin input[type="image"] {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin: 0px;
	padding: 0px;
	height: 30px;
	width: 98px;
}
#menu-derecha-header {
	position: absolute;
}
#links-menu-header {
padding-left:600px;
padding-top:30px;
top:100px;
width:180px;
}
#links-menu-header a img {
	margin-bottom: 5px;
}
#post-2483 .format_text a {
	color:#00F;
	font-size: 24px;
}
#post-2483 .format_text img.left, .format_text img.alignleft, .wp-caption.alignleft {
	margin:0;
	padding-top: 3px;
	padding-right: 5px;
}
#cajaregistrointerna {
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	font-size: 12px;
}
#cajaregistrointerna input[type="text"] {
	background-color: #FFF;
	height: 16px;
	width: 100px;
	margin: 0px;
	padding: 0px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-color: #E6E6E6;
	border-right-color: #E6E6E6;
	border-bottom-color: #E6E6E6;
	border-left-color: #E6E6E6;
	font-size: 12px;
}
#cajaregistrointerna form {
	clear: none;
	float: none;
	border-style: none;
	margin: 0px;
	padding: 0px;
}
#cajaregistrointerna input[type="image"] {
	background:none repeat scroll 0 0 transparent;
	border-width:0;
	width: 123px;
}