.imgnorm, .imgover, .imgpane {
	/* box-sizing: border-box; /* new */
	background: lightgrey;
	width: 80px;
	height: 96px;
	margin: 0;
	padding: 0;
	cursor: initial;
}
.imgpane {
	border-bottom: 1px solid gray;
}
.imgnorm, .imgover {
	border: 1px solid gray;
	height: 100%;
}
.imgover {
	background: lightgreen;
	cursor: pointer;
}
.imgframe {
	text-align: center;
	font-family: arial;
	color: #000066;
	font-size: 0.8em;
	font-weight: bold;
	line-height: 1em;
	height: 100%;
}
.bigimage {
	width: 100px;
	height: 120px;
}
.indextab {
	border: 0px;
	/* table-layout: fixed; */
	margin-left: auto;
	margin-right: auto;
	border-spacing: 1em;
}
.bigdesc {
	min-height: 3em;
}
.subdesc {
	font-size: 0.6em;
	font-weight: normal;
	color: darkgreen;
}

body, html {
	margin: 0;
	padding: 0;
	overflow: hidden;
	height: 100%; 
	max-height: 100%; 
	font-family:Sans-serif;
	line-height: 1.25em;
}

.split {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;

	overflow-y: hidden; /* auto; */
	overflow-x: hidden;
}

.content {
	margin: 0px;
    border: 1px solid #C0C0C0;
	padding: 0px;
}

.gutter {
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 50%;
}

.gutter.gutter-horizontal {
    cursor: col-resize;
    background-image: url('grips/vertical.png');
}

.gutter.gutter-vertical {
    cursor: row-resize;
    background-image: url('grips/horizontal.png');
}

.split.split-horizontal, .gutter.gutter-horizontal {
    height: 100%;
    float: left;
}

.plain, .framepanel, .innertube { /* Borderless wrapper */
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	margin: 0px;
	border: 0px;
	padding: 0px;
}

.framepanel {
	position: relative;
	overflow: auto;
}

.innertube {
	padding: 1em; /* Provides padding for the content */
}
	
#header {
	position: absolute;
	text-align: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 50px; 
	overflow: hidden; /* Disables scrollbars on the header frame. To enable scrollbars, change "hidden" to "scroll" */
	background: SteelBlue;
}

#header h2 {
	margin: 0px;
}

#mid, #main { /* Full width section */
	position: fixed;
	top: 50px; /* Set this to the height of the header */
	left: 0px;
	bottom: 0px; /* Allow for footer. Override for mid */
	right: 0px; /* No right column */
	background: #fff;
	margin: 0px;
	padding: 0px;
	border: 0px;
}

#mid { /* Allows for Footer as well */
	bottom: 50px; /* Set this to the height of the footer */
}

#main { /* Allow for overflow as well */
	overflow: auto;
}

#footer {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 50px; 
	overflow: hidden; /* Disables scrollbars on the footer frame. To enable scrollbars, change "hidden" to "scroll" */
	background: SteelBlue;
}

p {
	color: #555;
}
		
/*IE6 fix*/
* html body{
	padding: 50px 0 50px 230px; /* Set the first value to the height of the header, the third value to the height of the footer, and last value to the width of the nav */
}

* html main{ 
	height: 100%; 
	width: 100%; 
}
