/*  mine  */
body {
	background-color: black;
	color: white;
}

img {
	border: none;
}

#indexTable {
	width: 90%;
}

#indexTable tr {
	width: 100%;
}

#indexTable td {
	background: lightgray;
	border: 1px solid grey;
	padding: 5px;
	text-align: center;
	vertical-align: top;
}

#indexTable td:hover {
	background: yellow;
	border: 1px solid grey;
	padding: 5px;
	text-align: center;
	vertical-align: top;
}

#indexTable img {
	border: 1px solid gray;
}

#indexTable td a:hover {
	border: none;
	cursor: pointer;
	/* for IE 
	filter: alpha(opacity = 60);*/
	/* CSS3 standard 
	opacity: 0.6;*/
}

#fileNameDiv {
	font-size: 11px;
}

#goBackLink {
	color: #000000;
}

#breadCrumbDiv {
	text-align: center;
	font-size: 18px;
	padding-bottom: 4px;
	font-weight: bold;
	color: #e00000
}

#subDirDiv {
	padding: none;
	border: none;
	width: 200;
}

#subDirLink {
	
}

a {
	padding-bottom: 10px;
	padding: 5px;
}

a:link {
	color: #276AAC;
	text-decoration: none;
	font-size: 16px;
}

a:visited {
	color: #276AAC;
	text-decoration: none;
	font-size: 16px;
}

a:hover {
	color: #276AAC;
	text-decoration: underline;
	text-transform: uppercase;
}

a:active {
	color: #276AAC;
	text-decoration: none;
}

/* end mine */
#thumbBox { /*Outermost DIV for thumbnail viewer*/
	position: absolute;
	left: 0;
	top: 0;
	width: auto;
	padding: 10px;
	padding-bottom: 0;
	background: #313131;
	visibility: hidden;
	z-index: 10;
}

#thumbBox .footerbar {
	/*Footer DIV of thumbbox that contains "close" link */
	font: bold 16px Tahoma;
	letter-spacing: 5px;
	line-height: 1.1em;
	color: white;
	padding: 5px 0;
	text-align: right;
	cursor: pointer;
}

#thumbBox #thumbImage {
	/*DIV within thumbbox that holds the enlarged image */
	background-color: white;
	color: black;
}

#thumbBox #thumbImage img {
	border: none;
	color: black;
}

#thumbBox #thumbImage a {
	border: none;
	/* for IE */
	filter: alpha(opacity = 100);
	/* CSS3 standard */
}

#thumbBox #thumbImage a:hover {
	border: none;
	cursor: pointer;
	/* for IE */ /* filter:alpha(opacity=60); */ /* CSS3 standard */
	/* opacity:0.6; */
}

#thumbLoading {
	/*DIV for showing "loading" status while thumbbox is being generated*/
	position: absolute;
	visibility: hidden;
	border: 1px solid black;
	background-color: #EFEFEF;
	padding: 5px;
	z-index: 5;
}