@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap');

*{
	margin:0px;
	padding:0px;
}

body{
	font-family:'Open Sans', Helvetica, sans-serif;
}

#container{
	width:600px;
	height:450px;
	background-color:#FFFAF5;
	border:solid 1px #402B13;
	margin: 0;
}

#header{
	width:100%;
	height:15%;
	float:left;
	background-color:#333;
	background-image:url(../images/header_gradient.png);
	background-repeat:repeat-x;
	background-position:top;
}

#header h1{
	font-weight:700;
	text-align:center;
	font-size:1.75em;
	color:#fff;
	margin-top:0.5em;
}

#sideNav{
	width: 30%;
	height: 85%;
	float:left;
	background-color:#e3e0d9;
	border-right:solid 1px #402B13;
	overflow:hidden;	
}

#content{
	width: 69%;
	height:85%;
	float:left;
	background-color:inherit;
	overflow:scroll;
}

.contentText{
	width:82%;
	margin: 0 auto;
}

.contentText p, .contentText ul{
	font-size:0.75em;
	line-height:1.6em;
	margin-bottom:0.75em;
	color: #222;
	font-weight:600;
}

.contentText h2{
	color:#9B3E1D;
	padding-bottom:0.25em;
	margin-bottom:0.75em;
	margin-top:0.5em;
	border-bottom:solid 1px #9B3E1D;
	font-size:1.25em;
}

.contentText h3{
	font-size:0.9em;
	color:#222;
	margin-bottom:1em;
}

#sideNav .select{
    background-color:#9B3E1D;
	color:#fff;
}

#sideNav ul li{
	padding:5% 0 4% 0.5em;
	width:100%;
	border-bottom:solid #C09D7D 1px;
	overflow:auto;
	color:#9B3E1D;
	font-weight:700;
	font-size:0.75em;
	background-image:url(../images/nav_gradient.png);
	background-repeat:repeat-x;
	background-position:top;
	cursor:pointer;
}

#sideNav ul li:hover{
    background-color:#9B3E1D;
	color:#fff;
}

#sidebar{
	background-color:none;
}

