
/********************************************
   HTML ELEMENTS
********************************************/ 


/* This file contains all the styles for x_y.html in my 72 dirctory. */  
/* Whatever needs to be individual site, it must be moved to that sheet.  */ 
/* For now the only "individual" are the colors and sizes of columns */


html, body {
    overflow: auto;
    margin: 0;
    padding: 0;
}

.date {	position: relative;
	width: 100%;   /*This is always 100% of the box it is in */
	height : 20px;
	margin: 5px; 
	font-size: 0.8em;
	font-style: italic;
	text-align: right;
	}



/* Add a black background color to the top navigation */
.topnav {
  	position: fixed;
  	top: var(--header-height);
	clear: both;
	-webkit-box-sizing: border-box;
    	-moz-box-sizing: border-box;
    	-ms-box-sizing: border-box;
    	box-sizing: border-box;
	z-index: 3; 
	left: calc(0.5*(100% - var(--view-width)));
	margin-right: auto;
	margin-left: auto; /* 1 */
	margin-top: 0px;
	margin-bottom: 20px; 
	width: var(--view-width);
  	background-color: var(--highlight-color); /* #333; */
  	overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  border-right:1px solid #FFF
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #04AA6D;
  color: white;
}



.wrapper {
	position: relative; 
	margin-right: auto; /* 1 */
	margin-left: auto; /* 1 */
	width:1200px; /* 2 */
	padding-right: var(--wrapper-rpad); /* 3 */
	padding-left: var(--wrapper-lpad); /* 3 */
	background-color: var(--wrapper-background-color); 
  	border: var(--wrapper-border) solid green;
  	padding: 10px;
	margin-top: 100px;
  	margin-bottom: 100px;
	overflow: auto;
	display: block;
	}


.right-column {
  float: right;
  width: calc(100% - var(--left-column-w));
  background: var(--rc-background-color);
  padding: var(--std-padding)
}

.left-column {
  float: left;
  width: var(--left-column-w); 
  background: var(--article-background-color);
  // padding: var(--std-padding)

} 

.menu-box {
  position: relative;
  background: var(--menu-box-background-color);
  width: 100%; /*var(--left-column-w); */
  padding: var(--std-padding);
}

.menu-box h1 {
	margin: 10px 0 0 0; 
	padding: 4px 0 4px 8px; 
	font: bold 1em Arial, Sans-Serif;
	color: #FFF;
	text-transform: uppercase; 
	background: var(--highlight-color); 
	letter-spacing: 1px;	
	font-size: 1.1em;
}

.menu-box ul {
	list-style: none;
	text-align: left;
	vertical-align:middle;  /*I added this on 9/16/2012*/
	margin: 5px 0px 5px 0; padding: 0;
	text-decoration: none;	
	font-size: 1.0em;	
}

.menu-box a {
	font-weight: bolder;
	padding: 10px;	
	/* background: none; */
	color: var(--highlight-color);  /*#003366;*/
	background-color: inherit;
	text-decoration: none;
}

.menu-box a:hover {
  color: #087830;
}

.menu-box a:visited {
  color: pink;
}

#article-box {
  position: relative;
  background: var(--article-box-background-color);
  width: 100%; /*var(--left-column-w); */
  padding: var(--article-padding);
  min-height: 500px;
}

#article-box p  {      
    text-align: justify;
    font-size: 1.05em;
    font-family: Candara, Cambria, Helvetica, Verdana, Arial;
}

#article-box h1 { 
  	margin: 15px;
	padding: 4px 0 4px 8px; 
	font-size: 1.2em;
	color: #FFF;
	text-transform: uppercase; 
	background-color: var(--highlight-color);	
	letter-spacing: .5px;
}

#article-box h2 { 
  	margin: 15px;
	padding: 4px 0 4px 8px; 
	font-size: 1.15em;
	color: var(--highlight-color);
	text-transform: uppercase; 
	letter-spacing: .5px;
}
 

/* setting tables - this assumes tables are uniform in all the page */
table {
  border: 1px solid;
  border-style: solid;
  border-color: #003366;
}

th, td { 
    padding: 10px;
    border: 1px solid;
    border-style: solid;
    border-color: #003366;
    text-align: center;
}

.app-box {
  position: relative;
  background: var(--app-box-background-color); 
  width: 100%; /*var(--left-column-w); */
  overflow: hidden;
  padding: 20px; 
  font-size: 1.0em;
  margin-top: 100px;
}

.app-box-left {
  float: left;
  background: white;
  width: 30%; /*var(--left-column-w); */ 
  padding-top: 50px;
  // overflow: visible;  /* created a sliding bar, auto did not do it */
  // overflow: hidden;  cropped the image   
}

.app-box img {
  max-height: 150px;
  float: left; 
  padding-right: 20px;
}

.spacer-box {
  margin: 15px;
}



.app-box-lef img {
  max-height: 100%;
  max-width: 100%;
  // overflow: auto; extended the box   
}

.app-box-right {
  float: right;
  background: blue;
  width: 70%; /*var(--left-column-w); */
  padding: var(--std-padding);
}

.spacer {
  position: relative;
  width: 100%;
  background: magenta; 
 
}
	

	





.footer {
	position: fixed;
  	bottom: 0px;
	left: calc(0.5*(100% - var(--view-width)));
	width: var(--view-width); /* 2 */
	padding-right: 10px; /* 3 */
	padding-left: 10px; /* 3 */
	color: white; 
	background-color: var(--highlight-color);

  	padding: 15px;
  	margin-right: auto; /* 1 */
	margin-left: auto; /* 1 */
	margin-top: 20px;
	margin-bottom: 0px; 
	height : 40px;
	font-family: "MV Boli";
	}


.header {
	position: fixed;
  	top: 0px; 
	clear: both;
	-webkit-box-sizing: border-box;
    	-moz-box-sizing: border-box;
    	-ms-box-sizing: border-box;
    	box-sizing: border-box;
	z-index:3;
	left: calc(0.5*(100% - var(--view-width)));
	margin-right: auto; /* 1 */
	margin-left: auto; /* 1 */
	margin-top: 0px;
	margin-bottom: 20px; 
	width: var(--view-width); 
	color: white;
	/* padding-right: 10px; 3 */
	/* padding-left: 10px; 3 */
	background-color: var(--highlight-color);
  	padding: 10px;
	height : var(--header-height); 
	display: block;
	font-size: 1.4em;
    	font-family: "Comic Sans MS", Candara, Cambria, Helvetica, Verdana, Arial;
	border-bottom: 1px solid;
	}

.coollist ul {
    list-style-type: square;
    font-family: Candara, Cambria, Helvetica, Verdana, Arial; 
} 

.coollist li {
    padding-left: 5px; 
    padding-bottom: 2px;
    padding-top: 2px;
} 



.equation_box {
  margin-bottom: 15px;
  padding: 15px;
  border: 0px solid black;
  background-color: #cefad0;
}
  	
	