/*-----Elementos generales-----*/
html, body{
	height: 100%;
}
body{
	background: #1c1c1c;
	font-family: Arial, Helvetica, sans-serif;
}
.clearFix{
	float: none;
	clear: both;
}
a:hover{
	text-decoration: underline;
}
.discList{
	list-style: disc;
	margin-left: 15px;
	margin-bottom: 10px;
}
.discList p{
	line-height: 1.2em;
	margin-bottom: 5px;
}
b{
	font-weight: bold;
}
strong{
	font-weight: bold;
	font-size: 1.28em;
}
i{
	font-style: italic;
}
.content-block-text a:link{
	color: #C24D31
}
.content-block-text a:visited{
	color: #C24D31
}
/*-----encabezado-----*/
header{
	background: #000 url(../img/shadow.png) center 31px no-repeat;
}
#top-header-wrapp{
	background: #fff;
	height: 35px;
	border-bottom: 1px solid #bbb;
}
#top-header{
	width: 960px;
	margin: 0 auto;
	position: relative;
}
#top-header ul{
	padding-top: 2px;
}
#options-right{
	position: absolute;
	right: 0;
	top: 0;
}
#top-header ul li{
	float:left;
	display: block;
	padding: 0 7px;
	border-right: solid #dcdcdc 1px;
	position: relative;
	height: 30px;
	letter-spacing: 1px
}
#top-header ul li:last-child{
	border: none;
}
#top-header ul li a.txtTop{
	color: #969696;
	text-decoration: none;
	font-size: 11px;
}
#top-header ul li a.txtTop:hover{
	text-decoration: underline;
}
.imgTop{
	display: block;
	width: 32px;
	height: 32px;
	overflow: hidden;
	text-indent: -999px;
	float: left;
	margin-right: 7px;
}
#contact-link{
	background: url(../img/contact.png);
}
#facebook-link{
	background: url(../img/facebook.png);
}
#twitter-link{
	background: url(../img/twitter.png);
}
#search-form{
	display: block;
	position: relative;
	top: 0px;
	left: 5px;
	width: 250px
}
#text-search{
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	background: #f9f9f9;
	border: 1px solid #dcdcdc;
	color: #969696;
	padding: 4px 0 4px 15px;
	width: 180px;
}
#text-search:focus{
	outline: none;
}
/* TO STYLE PLACE HOLDER */
::-webkit-input-placeholder {
   color: #969696;
}
:-moz-placeholder {  
   color: #969696;   
}
#btn-search{
	cursor: pointer!important;
	background: url(../img/search.png) center center repeat-x!important;
	border: none;
	margin: 0;
	padding: 0;
	width: 32px;
	height: 32px;
	margin-left: 3px;
	text-indent: -999px;
	overflow: hidden;
	line-height: 0;
}
header h1 a{
	display: block;
	text-indent: -999px;
	overflow: hidden;
	background: url(../img/logo.png) no-repeat;
	width: 350px;
	height: 100px;
	margin: 40px auto;
}
header h2{
	position: absolute;
	width: 77px;
	height: 59px;
	right: 5px;
	top: 140px;
}
header h2 a{
	display: block;
	text-indent: -999px;
	overflow: hidden;
	background: url(../img/ifpi.png) no-repeat;
	width: 77px;
	height: 59px;
}
/*-----Estilos para el menu-----*/
#nav-wrap{
	border-top: 1px solid #bbb;
	border-bottom: 1px solid #333;
	position: relative;
	background: -moz-linear-gradient(top, #c9de96 0%, #8ab66b 44%, #398235 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c9de96), color-stop(44%,#8ab66b), color-stop(100%,#398235)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #c9de96 0%,#8ab66b 44%,#398235 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #c9de96 0%,#8ab66b 44%,#398235 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #c9de96 0%,#8ab66b 44%,#398235 100%); /* IE10+ */
	background: linear-gradient(to bottom, #c9de96 0%,#8ab66b 44%,#398235 100%); /* W3C */
}
nav{
	width: 960px;
	margin: 0 auto;
	height: 35px;
}
nav ul{
	display: block;
}
nav ul li{
	display: block;
	float: left;
	padding: 6px 0;
	position: relative;
}
nav ul li a{
	color: #1c1c1c;
	font-size: 13px;
	text-decoration: none;
	font-weight: bold;
	display: block;
	height: 23px;
	line-height: 23px;
	padding: 0 18px;
	border-left: 1px solid #393942;
	border-right: 1px solid #4f5058;

	-webkit-transition: color .2s ease-in-out;
	-moz-transition: color .2s ease-in-out;
	-o-transition: color .2s ease-in-out;
	-ms-transition: color .2s ease-in-out;
	transition: color .2s ease-in-out;
}
nav ul li:hover > a {
	color: #f3f3f3;
	text-shadow: 1px 1px 1px rgba(0,0,0,.6);
	text-decoration: none;
}
nav ul li:first-child a {
	border-left: none;
}
nav ul li:last-child a{
	border-right: none;
}
nav ul li ul {
	width: 180px;
	z-index: 9999;
	position: absolute;
	top: 36px;
	left: 0;
	opacity: 0;
	background: #42883b;
	-webkit-border-radius: 0 0 5px 5px;
	-moz-border-radius: 0 0 5px 5px;
	border-radius: 0 0 5px 5px;

	-webkit-transition: opacity .25s ease .1s;
	-moz-transition: opacity .25s ease .1s;
	-o-transition: opacity .25s ease .1s;
	-ms-transition: opacity .25s ease .1s;
	transition: opacity .25s ease .1s;
}
nav ul li:hover > ul {
	opacity: 1;
}
nav ul li ul li {
	height: 0;
	overflow: hidden;
	padding: 0;
	display: block;
	width: 100%;

	-webkit-transition: height .25s ease .1s;
	-moz-transition: height .25s ease .1s;
	-o-transition: height .25s ease .1s;
	-ms-transition: height .25s ease .1s;
	transition: height .25s ease .1s;
}
nav ul li:hover > ul li {
	height: 36px;
	overflow: visible;
	padding: 0;
}
nav ul li ul li a {
	display: block;
	padding: 4px 0 4px 10px;
	margin: 0;

	border: none;
	border-bottom: 1px solid #353539;
}
nav ul li ul li:last-child a {
	border: none;
}
/*-----estilos para el contenido-----*/
#container{
	width: 960px;
	position: relative;
	margin: 0 auto;
}
/*-----estilos para slider-----*/
#slides{
	position: relative;
	width: 960px;
	height: 300px;
}
#homeSlider{
	display: block;
	width: 960px;
	height: 300px;
	overflow: hidden;
}
#homeSlider li{
	display: block;
	width: 960px;
	height: 300px;
	float: left;
}
#homeSlider li a, #homeSlider li a img{
	width: 960px;
	height: 300px;
	display: block;
}
#pager{
	position: absolute;
	top: 8px;
	right: 8px;
}
#pager a{
	display: block;
	width: 16px;
	height: 16px;
	float: left;
	overflow: hidden;
	text-indent: -999px;
	margin-left: 7px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	background: #fff;
}
#pager a.selected{
	background: gray;
}
.shadow{
	position: absolute;
	width: 960px;
	height: 8px;
	background: url(../img/middle-shadow.png) center top no-repeat;
	left: 0;
	top: 0;
	z-index: 999;
}
.slides_container {
	width:960px;
	height:400px;
}
.slides_container a{
	width:960px;
	height:400px;
    display:block;
}
.slides_container a img{
	width:960px;
	height:400px;
    display:block;
}
.pagination{
	position: absolute;
	bottom: 15px;
	right: 15px;
	z-index: 99;
}
ul.pagination li{
	float: left;
	padding-left: 5px; 
}
ul.pagination li.current a{
	background-position: bottom;
}
ul.pagination li a{
	display: block;
	text-indent: -999999px;
	background: url(../img/pagination.png) no-repeat;
	background-position: top;
	width: 14px;
	height: 15px;
}
/*-----estilos para el footer-----*/
footer{
	background: #f9f9f9 url(../img/footer.jpg) 0 10px repeat-x;
	height: 30px;
	padding-top: 20px;
	border-top: 1px solid #bbb;
}
footer ul{
	display: block;
	text-align: center;
}
footer ul li{
	display: inline-block;
	padding: 0 10px;
}
footer ul li a{
	font-size: 11px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
	color: #1c1c1c;
}