 /*Isaias E. 04-05-2019*/

/*Sidebar*/
#sidebar-wrapper {
	z-index: 1;
	position: absolute;
	width: 0;
	height: 100%;
	overflow-y: hidden;
	background: #006579;
	transition: 0.4s;
}

/*Main content*/
#page-content-wrapper {
	width: 100%;
	position: absolute;
	padding: 15px;
	transition: 0.4s;
	
}

/* Change to width  of the sidebar to display it */
#wrapper.menuDisplay #sidebar-wrapper {
	width: 210px;
}

#wrapper.menuDisplay #page-content-wrapper {
	padding-left: 210px;
}


/* Sidebar style*/
.sidebar-nav {
	padding: 0;
	list-style: none;
	margin-top: 20px;
}

.sidebar-nav li {
	text-indent: 20px;
	/*espacios entre lineas*/
	line-height: 40px;
	margin-bottom: 5px;
}

.sidebar-nav li a {
	font-size: 12px;
    font-family: calibri, proxima_novalight, sans-serif;	
    letter-spacing: 2px;
	display: block;
	text-decoration: none;
	/*color: #ddd;*/
	color: white;
	font-weight: bold;
	width: 210px;
}

.sidebar-nav li a:hover {
	/*background: #16A085*/
	background: #0b3650;
	transition: 0.4s;
}







