body
{
	background-image: url( '../imagenes/pixel_weave.png' );
	background-repeat: repeat;
}

h1
{
	text-align: center;
	font-size: 1.5em;
	
}
.h1{
	font-size: 1.8em;
	font-family:"Trajan PRO";
	/* font-weight: bold; */
	padding: 0, 25px;
}
h3
{
	font-size: 1.3em;
}

h4
{
	font-size: 1.1em;
	font-weight: bold;
	text-align: center;
}

h5
{
	font-size: 1.2em;
	font-weight: bold;
	text-transform: uppercase;
}

a
{
	/* text-decoration: none;
	color: #4c4c4c;
	border-bottom: 1px dashed #4c4c4c; */
}

p
{
	line-height: 170%;
	text-align: justify;
}

.principal
{
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, .50);
	background-color: #ffffff;
	padding: 0px;
}

.listas
{
	list-style-type: circle;
	font: 15px 'trebuchet MS', 'lucida sans';
}

.control-label
{
	font-weight: normal;
}

.acceso
{
	border:1px solid #c5c5c5; 
	border-radius:15px;
}

footer
{
	background-color: #388c73;
    color: white;
    text-align: center;
	margin-top:15px;
	padding-top: 10px;
	padding-bottom: 10px;
}
.parrafo{
	padding: 30px;
	font-size: 16px;
	background-color: rgba(48, 114, 172,0.1);
	border-radius: 10px;
	margin-top: 5px;
} 
.parrafo1{
	padding: 0px 20px;
	font-size: 16px;
	margin-top: 5px;
}
.hr{
	border: 0.5px dashed;
	background-color: rgba(48, 114, 172,0.1);
}
/* ======================= */

 #lista2 {
    counter-reset: li; 
    list-style: none; 
    *list-style: decimal; 
    font: 15px 'trebuchet MS', 'lucida sans';
    padding: 0;
    text-shadow: 0 1px 0 rgba(255,255,255,.5);
}

#lista2 ol {
    margin: 0 0 0 2em; 
}

#lista2 li{
    position: relative;
    display: block;
    padding: .4em .4em .4em 2em;
    margin: .5em 0;
    color: #444;
    text-decoration: none;
    border-radius: .3em;
    transition: all .3s ease-out;   
}

#lista2 li:hover{
    background: #eee;
}

#lista2 li:hover:before{
}
/* #lista2 li:nth-child(even){
	background: #eee;
} */
#lista2 li:before{
    content: counter(li);
    counter-increment: li;
    position: absolute; 
    left: -0.7em;
    top: 60%;
    margin-top: -1.3em;
    background: rgba(47, 111, 166, 0.2);
    height: 2em;
    width: 2em;
    line-height: 2em;
    border: .1em solid rgb(189, 215, 180);
    text-align: center;
    font-weight: bold;
    border-radius: 2em;
    transition: all .3s ease-out;
} 
/* ========================= */

ul#listflecha {
    padding-left: 10px;
    list-style: none;
}
ul#listflecha li {
    padding-left: 20px;
    background-image: url(../imagenes/bullet_flecha.gif);
    background-repeat: no-repeat;
    background-position: 0 0;
	float:left;
	margin-left: 40px;
	font: 15px 'trebuchet MS', 'lucida sans'
} 
/* ==================================== */

.placeholder{
	background-color: rgb(198, 228, 243);
	border: 1px solid rgb(255, 255, 255); 
	border-radius: 5px;
	padding: 4px;
	font-size: 11px;
	font-weight: bold;
}

.constancia{
		background-image: url('../imagenes/constancia.jpg');
		background-repeat: no-repeat;
		background-size: contain;
		position: relative;
		height: 50px;
		width: 50px;
		float: right;
		cursor:pointer;		
}




/* =======================================SUBIR ARCHIVO===================================== */

 
 
/* Estilo del área del input[file] */
.drag-drop {
height: 8em;
width: 8em;
background-color: #ccc;
border-radius: 4em;
text-align: center;
color: white;
position: relative;
margin: 0 auto 1em;
}
 
.drag-drop span.desc {
display: block;
font-size: .7em;
padding: 0 .5em;
color: #000;
}
 
input[type="file"] {
height: 2em;
opacity: 0;
position: absolute;
top: 0;
left: 0;
width: 100%; 
/* z-index: 3; */
}
 
/* Estilo del área del input[file] con :hover */
 
.drag-drop:hover, input[type="file"]:hover {
background-color: #3276b1;
cursor: pointer;
}
 
.drag-drop:hover span.desc {
color: #fff;
} 
 
/* Composición del icono de Upload con FontAwesome */
.fa-stack { margin-top: .5em; }
 
.fa-stack .top { color: white; }
 
.fa-stack .medium { 
color: black;
text-shadow: 0 0 .25em #666;
}
 
.fa-stack .bottom { color: rgba(225, 225, 225, .75); }

/* == */
.drag-drop:hover .pulsating {
animation: pulse1 1s linear infinite;
animation-direction: alternate ;
-webkit-animation: pulse1 1s linear infinite;
-webkit-animation-direction: alternate ;
}
 
/* Keyframing de la animación */
 
@keyframes pulse1 {
0% { color: rgba(225, 225, 225, .75); }
50% { color: rgba(225, 225, 225, 0.25); }
100% { color: rgba(225, 225, 225, .75); }
}
 
@-moz-keyframes pulse1 {
0% { color: rgba(225, 225, 225, .75); }
50% { color: rgba(225, 225, 225, 0.25); }
100% { color: rgba(225, 225, 225, .75); }
}
 
@-webkit-keyframes pulse1 {
0% { color: rgba(225, 225, 225, .75); }
50% { color: rgba(225, 225, 225, 0.25); }
100% { color: rgba(225, 225, 225, .75); }
}
 
@-ms-keyframes pulse1 {
0% { color: rgba(225, 225, 225, .75); }
50% { color: rgba(225, 225, 225, 0.25); }
100% { color: rgba(225, 225, 225, .75); }
}
/* =======================================FIN SUBIR ARCHIVO===================================== */

@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed);




.wrap {
  width: 200px;
  margin: auto;
}

a {
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
}

.social {
  border-radius: 30px;
  position: relative;
  width: 150px;
  height: 32px;
  box-shadow: inset -1px 1px 1px 0px rgba(0, 0, 0, 0.2);
  display: inline-block;
}

.social .count {
  width: 58px;
  height: 31px;
  background: url(http://i83.photobucket.com/albums/j295/woratana/bubble.png) no-repeat;
  position: absolute;
  top: 0;
  right: -65px;
  line-height: 31px;
  text-align: center;
  text-indent: 8px;
  font-weight: bold;
  font-size: 14px;
  color: #868686;
}

.social span {
  font-size: 12px;
  color: #fff;
  line-height: 30px;
  display: block;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.2);
  margin-left: 30px;
  text-align: center;
  width: 120px;
}

.social .button {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  position: absolute;
  left: 0;
}
#facebook.social {
  background: #354970;
}

#facebook .button {
  background: #fff url(http://i83.photobucket.com/albums/j295/woratana/facebook.png) 5px 5px no-repeat;
  border: 1px solid #354970;
}


