

/*####################################################
##													##
## LUIS FELIPE NOE									##
## 													##
## ADMNAVBAR.CSS									##
## 													##
## 													##
## Estilo CSS										##
## Navbar del administrador							##
## Extensión PHP - CSS dinámico						##
##													##
####################################################*/

@charset "utf-8";

/* ESTILOS ESPECIALES */

.left {
	float: left;
}

.right {
	float: right;
}

.clear {
	clear: both;
}

/* NAVBAR ADMINISTRADOR */

#admnavbar * {
	color: #fff;
}

#admnavbar {
	width: 100%;
	background: #333;
	color: #fff;
	font-size: 22px;

	
		position: fixed; 

	
	
		top: 0;

	
	
		display: block;

	
	z-index: 5001;
}

	#admnavbar i {
		padding: 10px;
		position: relative;
		z-index: 1;
	}

	#admnavbar .right {
		margin-right: 5px;
		float: right;
	}

	#admnavbar #titulo-ubicacion {
	    margin: 14px;
    	float: left;
   		font-size: 14px;
	}

	#admnavbar ul {
		margin: 0;
		padding: 0;
		background: #333;
		font-size: 14px;
		text-decoration: none;
		display: none;
		box-shadow: 0px 0px 5px #222;
		list-style-type: none;
		position: absolute;
		left: 0;

		
			top: 42px;

		
		z-index: 5001;
	}

		#admnavbar ul li a {
			padding: 10px 15px;
			display: block;
			text-decoration: none;
		}

			#admnavbar ul li a:hover {
				background: #006699;
				text-decoration: none;
				color: #fff !important;
			}

	#admnavbar-titulo-sitio {
		width: 100%;
		font-size: 14px;
		display: block;
		text-align: center;
		position: absolute;
		top: 10px;
		left: 0;
		z-index: 0;
		cursor: default;
	}