/* general styles */

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #BAB9B9;
    color: #000;
	text-align: center;
}

body, input, select, textarea, button, table {
	font-family: Verdana, Arial, sans-serif;
	font-size: 12px;
}

#container {
    position: relative;
	margin: 0 auto;
    width: 1000px;
    height: auto !important;
    height: 100%;
    min-height: 100%;
	background-color: #FFF;
	text-align: left;
}

.clear {
    clear: both;
}

img {
    vertical-align: bottom;
}

a img {
    border: none;
}

h1 {
    margin: 10px 0 20px;
    font-size: 18px;
    font-weight: bold;
    color: #0000B0;
}

a {
    color: #00F;
    text-decoration: none;
}
    a:hover {
        text-decoration: underline;
    }


/* header */

#header {
    margin-bottom: 5px;
    border-bottom: 3px solid #933;
    height: 100px;
    background: #036 url(../images/header-bg.gif) repeat-x;
}

#logo {
	float: left;
}

#headerInfo {
    float: right;
}

#loggedInfo {
    margin: 10px 10px 0 0;
    color: #FFF;
    text-align: right;
}
    #loggedInfo a {
        color: #FFD700;
        font-weight: bold;
    }

#shoppingCart {
    margin: 15px 10px 0 0;
    color: #FFF;
    text-align: right;
    line-height: 150%;
}
    #shoppingCart a {
        color: #FFD700;
        font-weight: bold;
    }
    
/* main navigation */

#mainNav {
    padding: 0 10px 5px;
    border-bottom: 1px solid #933;
}
    #mainNav a {
        font-weight: bold;
    }

/* main content */

#content {
    height: auto;
	padding: 10px 20px 40px;
}


/* copyright bar */

#copyright {
 	position: absolute;
    margin: 0;
    border-top: 3px solid #933;
	padding: 5px 0px;
    width: 100%;
    height: 15px;
	bottom: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
    background-color: #FFF;
    color: #000;
	text-align: center;
}
    #copyright a {
        color: #000;
    }

    
/* forms */

.formMessage {
    margin-bottom: 10px;
    font-weight: bold;
}

.normal {
    color: green;
}

.attention {
    color: red;
    font-weight: bold;
}

.attention2 {
    color: #FF7F50;
    font-weight: bold;
}

.disabled {
    color: #AAA;
}

#overDiv {
    position: absolute;
    visibility: hidden;
    z-index: 1000;
    text-align: left;
}

img.tooltip {
    padding: 0 0 3px 3px;
}

form {
    margin: 0;
    padding: 0;
}

fieldset {
    display: block;
    margin: 10px 0;
    border: 1px solid #CCC;
    padding: 5px 0 15px 0;
    background-color: #F0F0F0;
}

legend {
    margin-left: 10px;
    padding: 0 5px;
    color: #000080;
    font-weight: bold;
}

.fieldsetCont {
    width: 100%;
}

.columnSet {
    margin-top: -10px;
    width: 100%;
    overflow: hidden;
}

.column1, .column2 {
    width: 470px;
}

.column1 {
    float: left;
}

.column2 {
    float: right;
}

label {
	display: block;
	float: left;
	margin: 11px 0 0;
	width: 170px;
	text-align: right;
}

input, select, textarea {
    margin: 8px 0 0 4px;
}

input, textarea {
    padding: 1px;
    width: 240px;
}

button {
    padding: 1px 7px;
    overflow: visible;
}

form button {
    margin: 15px 0 5px 4px;
}

.editButtons {
    width: 100%;
    overflow: auto;
    text-align: center;
}

.editButtons button {
    margin: 15px 5px 5px;
    width: 90px;
    padding: 2px 7px;
    font-family: Arial;
    font-size: 13px;
    font-weight: bold;
}

.editButtons img {
    padding: 0 3px 0 0;
}


/* data rows */

.toolbar {
    margin-bottom: 10px;
    width: 100%;
    overflow: hidden;
}
    .toolbar .column1 {
        text-align: left;
    }
        .toolbar .column1 button {
            margin-right: 5px;
        }
    .toolbar .column2 {
        text-align: right;
    }
        .toolbar .column2 button {
            margin-left: 5px;
        }
    

.dataRows {
    width: 100%;
}
    .dataRows table {
        width: 100%;
        border-collapse: collapse;
        font-size: 11px;
    }
    .dataRows td, .dataRows th {
        border: 1px solid #003399;
        padding: 2px 5px;
    }
    .dataRows th {
        text-align: center;
        font-weight: bold;
        background-color: #ADD8E6;
    }
    .dataRows .colActions {
        width: 75px;
        text-align: center;
    }


