@import url(https://fonts.googleapis.com/css?family=Open+Sans);

body { 
  font-family: 'Open Sans', sans-serif;
  color: #666;
}

/* STRUCTURE */
#container {
   min-height:100%;
   position:relative;
}
#footer {
   position:absolute;
   bottom:0;
   width:100%;
   height:60px;   /* Height of the footer */
   background:#6cf;
}
#pagewrap {
	padding: 5px;
	width: 94%;
	margin: 20px auto;
}
header {
	height: 100px;
	padding: 0 15px;
	background-image: url("../images/laser.jpg");
}
#content {
	width: 20%;
	float: left;
	padding: 5px 15px;
}

#middle {
	width: 50%; /* Account for margins + border values */
	height: 600px;
	float: left;
	padding: 5px 15px;
	margin: 0px 5px 5px 5px;
}

#sidebar {
	width: 20%;
	padding: 5px 15px;
	float: left;
	position: fixed;
	right: 0px;
	height: 570px;
	overflow-y: scroll;
}

ul.breadcrumb {
  padding: 4px 4px;
  list-style: none;
  background-color: #eee;
}

/* Display list items side by side */
ul.breadcrumb li {
  display: inline;
  font-size: 18px;
}

/* Add a right arrow symbol (>) before/behind each list item */
ul.breadcrumb li+li:before {
  padding: 2px;
  color: black;
  content: ">";
}

/* Add a color to all links inside the list */
ul.breadcrumb li a {
  color: #0275d8;
  text-decoration: none;
}

/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
  color: green;
  text-decoration: underline;
}

p.cred {
	color:red;
}

p.cgreen {
	color:green;
}

input { text-align: right; }

:root{
	--strFontFace:       'Open Sans', sans-serif;
	--strTextColor:      #191970;
	--strTitleColor:     #000000;

	--strFuncLightColor: #ffffff;
	--strFuncShadeColor: #7f7f7f;
	--strLinkColor:      #ffffFF;
	--strVLinkColor:     #ffffff;
	
	--strNavBarColor:    #000000;
	--strNavLightColor:  #7f7f7f;
	--strNavShadeColor:  #000000;
	--strNavTextColor:   #ffffff;
	
	--strPageBGColor:    #FFFFFF;
	--strExBGColor:      #FFFFFF;
}

.FuncButton {
	border-style: solid;
	border-radius: 0.5em;
	padding: 0.5em;
	min-width: 3em;

	border-left-color: var(--strFuncLightColor);
	border-top-color: var(--strFuncLightColor);
	border-right-color: var(--strFuncShadeColor);
	border-bottom-color: var(--strFuncShadeColor);
	color: var(--strTextColor);
	background-color: var(--strExBGColor);

	border-width: 1pt;
	cursor: pointer;	
	box-shadow: 0.2em 0.3em 0.2em var(--strFuncShadeColor);
}

.FuncButton:active {
	box-shadow: none;
}

.FuncButton:hover{
	color: var(--strExBGColor);
	background-color: var(--strTextColor);
}

.responsive-img {
  max-width: 100%;
  height: auto; 
}

/************************************************************************************
MEDIA QUERIES
*************************************************************************************/
/* for 980px or less */
@media screen and (max-width: 980px) {
	
	#pagewrap {
		width: 94%;
	}
	#content {
		width: 41%;
		padding: 1% 4%;
	}
	#middle {
		width: 41%;
		padding: 1% 4%;
		margin: 0px 0px 5px 5px;
		float: right;
	}
	
	#sidebar {
		clear: both;
		padding: 1% 4%;
		width: auto;
		float: right;
	}

	header, footer {
		padding: 1% 4%;
	}
}

a.main:link, a.main:visited {
    background-color: #5f9ea0;
    color: white;
    padding: 8px 10px;
    text-align: center;
    text-decoration: none;
    display: block;
	border-left: 12px solid #008b8b;
	border-right: 2px solid #008b8b;

}

a.main:hover, a.main:active {
    background-color:#00CCCC ;
}

a.unit:link, a.unit:visited {
    background-color: #0055ff;
    color: white;
    padding: 8px 10px;
    text-align: center;
    text-decoration: none;
    display: block;
	border-left: 12px solid #0055ff;
	border-right: 2px solid #0055ff;

}

a.unit:hover, a.unit:active {
    background-color:#0099ff ;
}

body {
	background-color: #f8f8f8;
}

ul {
  list-style-type: none;
}
/* for 700px or less */
@media screen and (max-width: 600px) {

	#content {
		width: auto;
		float: none;
	}
	
	#middle {
		width: auto;
		float: none;
		margin-left: 0px;
	}
	
	#sidebar {
		width: auto;
		float: none;
	}

}

/* for 480px or less */
@media screen and (max-width: 480px) {

	header {
		height: auto;
	}
	h1 {
		font-size: 2em;
	}
	#sidebar {
		display: none;
	}

}

input { text-align: right; }

#content {
	background: #f8f8f8;
}
#sidebar {
	background: #f0efef;
}
header, #content, #middle, #sidebar {
	margin-bottom: 5px;
}

#pagewrap, header, #content;, #middle, #sidebar, footer {
	border: solid 1px #ccc;
}

	ul li {
	padding: 1%;
}