body{
    background-color: #444;
	width: 100%;
	height: 100%;	
    background: url("../img/fondo.jpg");
    background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
}

#padding-div{
	padding-top: 100px;
}
@media only screen and (max-width: 767px) {
	body {
		background: url("../img/fondo.jpg");
		background-position: center center;
		background-repeat: no-repeat;
		background-attachment: fixed;
        background-size: cover;
	}
	#padding-div{
		padding-top: 50px;
	} 
}
@media only screen and (min-device-width: 768px) and (max-device-width : 1024px) {
	body {
		background: url("../img/fondo.jpg");
		background-position: center center;
		background-repeat: no-repeat;
		background-attachment: fixed;
        background-size: cover;
	}
	
	#padding-div{
		padding-top: 50px;
	} 
}
@media only screen and (max-device-width : 767px) {
	body {
		background: url("../img/fondo.jpg");
	}
	#padding-div{
		padding-top: 50px;
	} 
}

@media only screen and (max-device-width : 767px) and (orientation : landscape){
	body {
		background: url("../img/fondo_xs_vertical.jpg.gz");
		background-repeat: no-repeat;
		background-attachment: fixed;
		background-size: cover;
	}
	
	#padding-div{
		padding-top: 0px;
	} 
	
	.panel_col{
		width: 50%;
		margin-left: 25%;
	}
	
	.lead{
		margin-bottom: 0px;
	}
	
	hr{
		display: none;
	}
}
.form-signin input[type="text"] {
	margin-bottom: 5px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.form-signin input[type="password"] {
	margin-bottom: 10px;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.form-signin .form-control {
	position: relative;
    font-size: 16px;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    height: auto;
    padding: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.vertical-offset-100 {
	padding-top: 100px;
}
.img-responsive {
	display: block;
	max-width: 100%;
	height: auto;
	margin: auto;
}
.panel {
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.75);
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}