/* BASIC PAGE ELEMENTS */

body {
	background-color: #FFFFFF;
	margin: 0px;
	padding: 0px;
	font-family: Arial,Sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: #000000;
}

/*

these styles are here because IE is a piece of $41t browser and it does some weird stuff.
with paragraphs and table cells, in HTML it will default to left-alignment,
in XHTML IE defaults to centering - WTF??
it also places a margin around forms and paragraphs by default.
*/

p {
	text-align:left;
	margin:0px;
}

form {
	margin:0px;
}

td {
	text-align:left;
}

div {
	margin: 0px;
	padding: 0px;
}

/*
default link styles for any links that aren't assigned a class
they will inherit most font attributes from the body
*/

a:link {
	color:#333333;
	text-decoration: underline;
}

a:visited {
	color:#333333;
	text-decoration: underline;
}

a:hover {
	color:#333333;
	text-decoration: none;
}

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

/* Containers */

div.bodyContainer {
	width:100%;
	border: 0px dotted #990000;
}

div.container {
	width:750px;
	border: 0px dashed #009900;
}

/* Area Headers */

p.areaHeader {
	font-size: 12px;
	font-weight:bold;
	color:#993333;
	text-align:center;
}

/* HEADER */

div.pageHeader {
	width:750px;
	height:72px;
	border: 0px dashed #330099;
}

a.pageHeader:link {
	font-size: 10px;
	font-weight:normal;
	font-variant: small-caps;
	letter-spacing: 1px;
	color: #000000;
	text-decoration: none;
}

a.pageHeader:visited {
	font-size: 10px;
	font-weight:normal;
	font-variant: small-caps;
	letter-spacing: 1px;
	color:#000000;
	text-decoration: none;
}

a.pageHeader:hover {
	font-size: 10px;
	font-weight:normal;
	font-variant: small-caps;
	letter-spacing: 1px;
	color:#993333;
	text-decoration: none;
}

a.pageHeader:active {
	font-size: 10px;
	font-weight:normal;
	font-variant: small-caps;
	letter-spacing: 1px;
	color:#993333;
	text-decoration: none;
}

/*
CLASSES FOR FOOTER
*/

input.button1 {
    color: #333333;
    width: 100px;
    height: 18px;
    background-color: #DDDBC6;
    border: 1px solid #475E6A;
    font-weight: 900;
    font-size:11px;
    text-align: center;
}

input.button1Hover {
    color: #DDDBC6;
    width: 100px;
    height: 18px;
    background-color: #475E6A;
    border: 1px solid #475E6A;
    font-weight: 900;
    font-size:11px;
    text-align: center;
}
input.searchBox1 {
    width:80px;
    height: 16px;
    border: 1px solid #000000;
    margin-left:0px;
    margin-top:0px;
    margin-right:0px;
    margin-bottom:0px;
}
p.footerDetail {
    font-weight: normal;
    text-align:left;
}
p.footerTitle {
    font-size:12px;
    font-weight:bold;
    color:#A3475E;
    text-align:center;
}
a.ecfoot:link {
    color:#000000;
    text-decoration: underline;
    font-weight: normal;
}

a.ecfoot:visited {
    color:#003366;
    text-decoration: none;
    font-weight: normal;
}

a.ecfoot:hover {
    color:#A3475E;
    text-decoration: underline;
    font-weight: normal;
}

a.ecfoot:active {
    color:#000000;
    text-decoration: underline;
    font-weight: normal;
}

.lsCamerasNav {
    color:#993333;
    font-weight:bold;
    text-decoration:none;
}

a.lsCamerasNav:link {
    color:#333333;
    font-weight:bold;
    text-decoration:none;
}

a.lsCamerasNav:visited {
    color:#333333;
    font-weight:bold;
    text-decoration:none;
}

a.lsCamerasNav:hover {
    color:#993333;
    font-weight:bold;
    text-decoration:underline;
}

a.lsCamerasNav:active {
    color:#333333;
    font-weight:bold;
    text-decoration:none;
}

/* top right navigation */
.topRightNav {
    color:#993333;
	font-family:Arial;
	font-size:9pt;
    font-weight:normal;
    text-decoration:none;
}

a.topRightNav:link {
    color:#333333;
	font-family:Arial;
	font-size:9pt;
    font-weight:normal;
    text-decoration:none;
}

a.topRightNav:visited {
    color:#333333;
	font-family:Arial;
	font-size:9pt;
    font-weight:normal;
    text-decoration:none;
}

a.topRightNav:hover {
    color:#993333;
	font-family:Arial;
	font-size:9pt;
    font-weight:normal;
    text-decoration:underline;
}

a.topRightNav:active {
    color:#333333;
	font-family:Arial;
	font-size:9pt;
    font-weight:normal;
    text-decoration:none;
}

.cursor {  
	cursor: hand;
}

