@charset "utf-8";
.noShowMob {
.display:none;
}
body  {
	font-size: 12px;
	font-family:Georgia, "Times New Roman", Times, serif;
	background: #FFF;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
#container { 
	margin: 10px auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header {
	background: #DDDDDD;
	background-image:url(../images/topImageMob.jpg);
	background-position:center;
	background-repeat:no-repeat;
	height: 208px;
} 
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#sidebar1 {
	display:none;
}
#mainContent {
	padding: 0 3px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD; 
} 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.clearfloatMob { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
/* Vertical Menu */
.nav img{
	margin:0;
	padding: 0;
}
ul.nav {
	text-align: left;
	list-style: none;
	margin: 0;
	font-size: 11px;
	font-family:Georgia, "Times New Roman", Times, serif;
	padding: 0;

}
ul.nav li {
	display: block;
	margin: 0;
	padding: 0;

	}
ul.nav li a {
	display: block;
	width: 194px;
	color: #000;
	text-decoration: none;
	padding: 3px 0 3px 3px;
	
}
ul.nav li a:hover {
	color: #fff;
	background-color: #91B1C5;
	width: 194px;
}
ul.nav li#current a,  ul.nav li#current a:hover {
	color: #fff;
	background-color: #91B1C5;
	width: 194px;
}
ul.nav li.subHead a, ul.nav li.subHead a:visited  {
	padding-left: 7px;
	color: #00F;
	width: 188px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #DC143C;
}
ul.nav li.subHeadCur a, ul.nav li.subHeadCur a:visited, ul.nav li.subHead a:hover {
	padding-left: 7px;
	color: #DC143C;
	width: 188px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #DC143C;
}
/* WW1 soldiers */
.nameHead {
	color: #fff;
	background-color: #91B1C5;
	padding: 3px;
}
.roll {
	border-left-width: 5px;
	border-left-style: solid;
	border-left-color: rgb(0,0,0);
	padding-left: 10px;
}
.warmem {
	border-left-width: 5px;
	border-left-style: solid;
	border-left-color: rgb(0,0,255);
	padding-left: 10px;
}
.census {
	border-left-width: 5px;
	border-left-style: solid;
	border-left-color: rgb(204,102,0);
	padding-left: 10px;
}
.graves {
	border-left-width: 5px;
	border-left-style: solid;
	border-left-color: rgb(255,0,0);
	padding-left: 10px;
}
.cwcg {
	border-left-width: 5px;
	border-left-style: solid;
	border-left-color: rgb(0,153,0);
	padding-left: 10px;
}
.army {
	border-left-width: 5px;
	border-left-style: solid;
	border-left-color: rgb(128,128,128);
	padding-left: 10px;
}
.newspapers {
	border-left-width: 5px;
	border-left-style: solid;
	border-left-color: rgb(0,176,240);
	padding-left: 10px;
}
.other {
	border-left-width: 5px;
	border-left-style: solid;
	border-left-color: rgb(255,0,255);
	padding-left: 10px;
}
/* Photo Tables */
table.photoTable {
	border: 0 ;
	width: 100% ;
}
table.photoTable th {
	background-color:#91B1C5;
	color:#fff;
	padding: 5px;
}
table.photoTable tr {
	height:40px;
	vertical-align:top;
}
table.photoTable tr.even {
	background-color:#DDD;
}
img {
	max-width:300px;
}