/* jma.css */

/* Block all default margins and padding */
* {
    margin: 0;
    padding: 0;
}

body {
    /* Required to center wrapper in old browsers */
    text-align: center; 
    /* Style to taste */
    background-color: #ccc;
    font-family: Verdana, Geneva, Sans-Serif;
}

#wrapper {
    /* Sets width of fixed or elastic layout */
    width: 960px; 
    /* Centers the layout (newer browsers) */
    margin: 0 auto; 
    /* Wrapper must have a border */
  /* border: solid 1px #6d6f71;
    /* Required so absolute mesaurement are in wrapper */
    position: relative; 
    /* Style to taste */
    background-color: #fcfcfc;
}

/* ---------------------- Start layout division styles ----------------- */
/* Branding division */
#branding {
     /* Style to taste */
    height: 180px;

    background-color: #fff;

}

/* Navbar division */
#navbar {
/*
     position: absolute; 
    /* Top = branding height */
/*	bottom: 0;
    right: 0; 
    /* Width = 100% */
    width: 100%;
    /* Style to taste. Content top padding must match this height. */
    height: 1.6em;  /* need smaller em to adjust the 80% font in links*/
    background: #aaa;
}

	#navbar ul {
	list-style-type:none; /* removes bullets in navbar */

	}
	
	#navbar ul  li {
		float: left; /* puts tabs in horizontal line */
		}
		
	#navbar a, #navbar a:link, #navbar a:visited {
		text-decoration: none;
		font-family: Verdana, Geneva,  Arial, Sans-Serif;
		font-size: 80%;
		color: #000;
		background-color: #aaa;
		display:block;
		height: 2em;
		width: 6em;
		border-right: solid 1px #ddd;
		text-align: center;
		line-height: 2em;
		outline-style: none; /* removes the dotted border in some browsers*/
		}
		
	#navbar a:hover, #navbar a:active {
		background-color: #74c149;
		color: #fff;}
		
/* Right column division */
#rightcolumn {
    position: absolute; 
    /* Top = branding+navbar heights */
	 padding-top:2em;
    top: 10em;
    right: 0;
    /* Style to taste */
    width: 220px; 
    text-align: center;
	margin-left:10px;
	margin-right:10px;
}

/* Content division */
#content {
    padding-top:2em; /* Same as navbar height */
	padding-left: .5em;
        /* Right margin = rightcolumn width */
    margin-right: 10em;
    /* Style to taste */
    text-align:left;
    padding-bottom: 0.5em;
    background-color: #fff;
    color: #000;    
}

/* Footer division */
#footer {
        /* Right margin = rightcolumn width */
    margin-right: 0em; 
    /* Style to taste */
    background-color: #aaa;
    color: #000;
    border-top: solid 1px #6d6f71;
    min-height: 1.6em;
}

#footer ul {
	list-style-type:none; /* removes bullets in navbar */

	}
	
#footer ul li {
	float: left;}
	
#footer a, #footer a:link,  #footer a:visited {
text-decoration: none;
		font-family: Verdana, Geneva,  Arial, Sans-Serif;
		font-size: 80%;
		color: #000;
		background-color: #aaa;
		display:block;
		height: 2em;
		width: 6em;
		border-right: solid 1px #ddd;
		text-align: center;
		line-height: 2em;
		outline-style: none; /* removes the dotted border in some browsers*/
		}
#footer p {
	font-family: Verdana, Geneva, Arial, Sans-Serif;
	font-size: 70%;
	color: #000;
	text-align: center;}
/* ---------------------- End layout division styles ---------------------- */
/* ---------------------- Start Content division styles -------------------- */

/* Heading 1 tags in content division */
#content h1 {
    margin-left: 10px;
    font-size: 1.5em;
	color: #74c149
}

#content h2 {
    margin-left: 10px;
    font-size: 1.25em;
}

#content h3{
    margin-left: 10px;
    font-size: 1em;
}
/* Paragraphs in content division */
#content p {
    font-size: 0.85em;
    line-height: 1.5em;
    margin: 1em 12px;
}

/* Bulleted lists in content division */
#content ul {
    font-size: 0.85em;
    margin: 1em 20px 1em 40px; /* top right bottom left */
}

#content ul li {
    margin-bottom: 0.5em;
}

#content  dl {
	font-size: 1em;
	margin: 1em 20px 1em 40px;
	}

#content  dl dt {
		line-height: 1.5em;
		font-weight: bolder;}
	
#content dl dd{
		margin-left: 60px;
		font-size:0.75em;}
	
.bold {
font-size:0.9em;
font-weight:bold;
color:#18312;}
/* ---------------------- End Content division styles -------------------- */

/* --------------------- spacing---------------------------------------------  */

.sp1 {width:1em;}
.sp2 {width:2em;}

.right {text-align:right}
.left {text-align:left}

/* --------------------- color--------------------------------------------  */
.red {color:red;}

/* --------------------- forms---------------------------------------------  */
.data1 {
		width:95%;
		border:1px solid black;
		border-collapse:collapse;
		margin-left:10px;
		margin-right:10px;
		
		}
.data1 td {	
		font-weight:bold;
		font-family:Arial, Helvetica, sans-serif;
		text-align:right;
		font-size:small;
		padding-right:0.1em;
		padding-top:.5em;
		padding-bottom:.5em;
		padding-left:0.1em;
		height:110%;}	
	
	
.data1 td.left {
		text-align:left;
		}	
		
.input1 {
	color:#00008b;
	background-color:#d1d1d1;
	border:1px outset #ddd;
	width:300px;}

.input2 {
	color:#00008b;
	background-color:#d1d1d1;
	border:1px inset #ddd;
	margin-left:5px;
	}	