/* CONTENTS

    GENERAL:
    - color glossary
    - general styling
    - header and header menu
    - footer and footer menu

    FRONT END:
    - home (default)
    - about us (company)
    - products
    - news
    - events
    - contact us (contact)

    STORE, DEALER MENU, AND ADMIN:
    - shop (store/*.asp)
    - my account/dealer menu (store/shopcustadmin.asp)
    - admin menu (store/menu.aspx)
    - terms and conditions (data/termsConditions.htm)

    UNIDENTIFIED STUFF:
    for possible deletion

*/

/***
* GENERAL
***/

/* color glossary 

    FRONT-END:
        blue (in header): #0b3d92
        black (background): #000000
        off-white (text): #d3d3d3
        blue (links): #2e5db9
        off-white (link hover): #d3d3d3

    STORE AND ADMIN:
        darker grey (header background): #c9c9c9
        black (header text): #000000
        lighter grey (data background): #f0f0f0
        black (data text): #000000
        blue (links): #2e5db9
        black (link hover): #000000
        off-white (errors): #d3d3d3 (same as xfont in config db table and ErrorFontStart in shop$colors.asp)

*/

/* general styling */
body 
{
    padding: 0px;
    margin: 0px;
	text-align: center;
	font-family:  Verdana, Arial, sans-serif;
	font-size: small;
	background-color: #c0c0c0;
	color: #000000;
}
#bodyCenter
{
    padding: 20px 0px 0px 0px;
    margin: 0px auto;
    width: 980px;
	text-align: left;
    background: #b4b8b3 url(layoutimages/backgroundTopLeft.jpg) no-repeat top left;
    border: solid 1px black;
}
#content
{
    margin: 0px 20px;
	padding: 0px;
    width: 940px;
	min-height: 400px;
	background-color: #000000;
	color: #d3d3d3;
}
#content h2 
{
    margin: 0px;
    padding: 0px 0px 25px 0px;
    font-size: medium;
}
#content p
{
    margin: 0px;
    padding: 0px 0px 25px 0px;
	text-align: left;
}

.pageTitle
{
    margin: 0px;
    padding: 25px 25px 25px 25px;
    width: 940px;
}

div.clearFloats /* for Firefox */
{
    clear: both;
    line-height: 0px;
    height: 0px;
    width: 940px;
}
a { color: #2e5db9; text-decoration: underline; }
a:hover { color: #d3d3d3; text-decoration: none; }
img { border: 0; }

/* header and header menu */
#header 
{
    margin: 0px 20px;
    padding: 0px;
	width: 940px;
	background-color: #0b3d92;
	color: #000000;
}
#mainLogo
{
    float: left;
    padding: 5px 0px 0px 15px;
}
#menu
{
    float: right;
    padding: 0px;
	margin: 0px;
	width: 672px;
	font-family: Veranda, Helvetica, sans-serif;
	font-size: x-small;
    font-weight: bold;
    text-transform: uppercase;
    list-style: none;
	background: #646464 url(layoutimages/menuBackground.gif) no-repeat top right;
	color: #ffffff;
}
#menu li
{
    float: left;
    padding: 60px 12px 0px 12px;
    margin: 0px;
    height: 65px;
}
#menu li.menu_start, #menu li.menu_start_highlite
{
    float: left;
    padding: 60px 12px 0px 45px;
    margin: 0px;
}
#menu li a
{
    display: block;
    padding: 5px 3px;
    margin: 0px;
	text-decoration: none;  
    color: #ffffff;
}
#menu li a:hover, #menu li.menu_highlite a, #menu li.menu_highlite a:hover 
{
    display: block;
    padding: 5px 3px;
    margin: 0px;
	text-decoration: none;  
    color: #cccccc;
}

/* footer and footer menu */
#footer 
{
    clear: both;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px;
	width: 980px;
	font-family: Veranda, Helvetica, sans-serif;
	font-weight: normal;
	font-size: x-small;
    text-transform: uppercase;
    text-align: center;
    background: #b4b8b3;
	color: #000000;
}
#footer a
{
    text-decoration: none;
	color: #000000;
}
#footer a:hover
{
    text-decoration: none;
	color: #2e5db9;
}
#footer_menu
{
    font-weight: bolder;
    line-height: 3.5em;
}
#footer_menu a, #footer_menu a:hover
{
    padding: 0px 5px;
    font-weight: bolder;
}
#footer #iproLogo 
{
    float: left;
    margin: 6px 0px 0px 35px;
    padding-top: 12px;
    width: 105px;
    height: 56px; 
}
#footer #cediaLogo
{ 
    float: right; 
    margin: 6px 35px 0px 0px;
    width: 105px;
    height: 68px; 
}

/***
* FRONT-END
***/

/* home (default) */
#homeContent 
{
	padding: 0px;
    margin: 0px 20px;
    width: 940px;
	font-family: Myriad Pro, Arial, Sans-Serif;
	background: #000000;
	color: #ffffff;
	text-align: center;
}
#homeText
{
    margin: 0px;
    padding: 6px 0px;
	font-size: medium;
	color: #d3d3d3;
}
#homeText h1
{
    margin: 0px;
    padding: 0px;
    font-weight: normal;
	font-size: larger;
	line-height: 2em;
}
#homeText p
{
    margin: 0px;
    padding: 0px;
}
#homeLinks
{
    margin: 0px auto;
    padding: 0px;
    position: relative;
    width: 912px;
    height: 490px;
	background: #000000 url(layoutimages/homeImage.jpg) no-repeat top left;
	text-align: left;
}
#homeLinksInner
{
    position: absolute;
    top: 463px;
    left: 826px;
}
#homeLinks a
{
    padding: 0px 8px 0px 8px;
    text-decoration: none;
}
#homeLinks a:hover {}

/* about us (company) */
#companyContent
{
    margin: 8px 25px 20px 25px;
    padding: 0px;
}
#companyContent img#territory 
{
    float: right;
    width: 218px;
    padding-left: 30px;
    padding-bottom: 48px;
}
#companyContent div.staffGroup
{
    float: left;
    margin: 0px;
    padding: 0px;
    width: 47%;
}
#companyContent #staffGroup1
{
    margin-right: 36px;
}
#companyContent dl 
{ 
    float: left;
    position: relative; 
    margin: 0px 0px 24px 0px;
    padding: 0px;
    width: 100%;
}
#companyContent dt, dd 
{
    margin: 0px;
    padding: 0px;
}
#companyContent dt.staffName { display: none; }
#companyContent dd.staffDesc { text-align: justify; }
#companyContent dd.staffPhoto
{
    float: right;
    margin: 0px;
    padding: 0px 0px 24px 18px;
    width: 102px;
}
#companyContent dd.staffEmail
{
    position: absolute;
    top: 130px;
    left: 315px;
    width: 102px;
    text-align: center;
    font-size: smaller;
    color: #2e5db9;
}

/* products */
#prodContent
{
    padding: 0px;
    margin: 15px 20px 20px 20px;
}
#prodContent p.introPara
{
    width: 100%;
    font-weight: bold;
    text-align: center;
}
#prodContent dl
{
    padding: 15px;
    margin: 0px;
    border-bottom: solid 1px #2e5db9;
}
#prodContent dt.prodName
{
    display: none;
}
#prodContent dd.prodLogo0, #prodContent dd.prodLogo1
{
    float: left;
    padding: 0px;
    margin: 0px 20px 0px 0px;
    height: 60px;
    width: 200px;
    background-color: #ffffff;
}
#prodContent img
{
    padding: 0px;
    margin: 0px;
    height: 60px;
    width: 200px;
}
#prodContent dd.prodDesc0, #prodContent dd.prodDesc1
{
    padding: 0px;
    margin: 0px 0px 0px 220px;
    text-align: left;
}

/* news */

/* events (also, see calendar.css) */
#eventContent
{
    padding: 0px 20px 20px 20px;
    margin: 0px auto;
}
#eventContent p.introPara
{
    width: 100%;
    font-weight: bold;
    text-align: center;
}
.CalendarStyle
{
    padding: 0px;
    margin: 0px auto;
}
.SmallCalendarStyle
{
    float: left;
    padding: 0px;
    margin: 0px 0px 0px 50px;
}
.CalendarDetailPanel
{
    float: right;
    padding: 0px;
    margin: 0px 50px 0px 0px;
}
#eventContent input#BackButton
{
    float: right;
    margin-right: 195px;
}

/* contact us (contact) */
#contactContent
{
    padding: 0px;
    margin: 0px;
}
#contactContent h2
{
    font-weight: bold;
    padding-bottom: 6px;
    color: #2F5CB9;
}
#contactInfo1
{
    float: right;
    margin: 0px 0px 0px 80px;
	padding: 0px;
	width: 350px;
}
#contactInfo1 p
{
    margin: 0px 0px 15px 0px;
}
#contactForm
{
    float: right;
	padding: 0px;
    margin: 0px;
	width: 410px;
	text-align: left;
}
#contactForm h2
{
    padding-left: 0px;
}
#contactForm p.introPara
{
    margin: 0px 0px 10px 0px;
    padding: 0px;
	width: 400px;
}
#contactForm input, #contactForm select, #contactForm textarea 
{
    margin: 0px;
    padding: 0px;
	width: 400px;
}
#contactForm span#lblSuccess
{
    color: #2e5db9;
}
.formSubmitSection 
{
    position: relative;
    padding: 0px;
    margin: 0px;
}
.formCaptcha 
{
    min-height: 10px;
    text-align: left ! important; 
}    
#contactForm input#cmdSend
{
    position: absolute;
    top: 48px;
    left: 285px;
    width: 105px;
}
#contactForm #ValidationSummary1
{
    font-weight: bold;
    color: #d3d3d3 ! important;
}

/***
* STORE, DEALER MENU AND ADMIN
***/

/* shop (store/*.asp) */
#shopcontent
{
	padding: 0px;
    margin: 0px 20px;
    width: 940px;
	min-height: 400px;
	text-align: center;
	background-color: #000000;
	color: #d3d3d3;
}
#shopcontent a:hover { color: #d3d3d3; text-decoration: none; }
#shopcontent table a:hover { color: black; text-decoration: none; }

#crumbs
{
    margin: 0px;
    padding: 25px 25px 25px 25px;
    width: 940px;
	text-align: left;
}
.floatingcrumbs {
	float: left;
	width: 900px;
}
#shopLinks
{
    float: right;
    width: 900px;
	padding: 0px 20px 0px 0px;
    margin: 0px;
}
#cartlink
{
	float: right;
    width: 150px;
    padding: 0px;
    margin: 0px;
    text-align: right;
    vertical-align: middle;
}
#cartlink img
{
    display: none;
}
#searchbox
{
	float: right;
    width: 250px;
    padding: 0px;
    margin: 0px;
    text-align: right;
}
#shopbylink
{
    float: right;
    width: 200px;
    margin: 0px;
    padding: 0px;
    text-align: right;
}

/* my account/dealer menu */

#pricesheets table
{
    font-size: inherit;
    text-align: left;
	background-color: #000000;
	border: solid 1 #000000;
}
#pricesheets th
{
	padding: 5px 8px 5px 8px;
	background-color: #C9C9C9;
	color: #000000;
}
#pricesheets td 
{
	padding: 5px 8px 5px 8px;
	background-color: #F0F0F0;
	color: #000000;
}

.DownloadsTable
{
	background-color: #000000;
}
.DownloadsTable th
{
	padding: 3px 5px 3px 5px;
	font-weight: bold;
	background-color: #C9C9C9;
	color: #000000;
}
.DownloadsTable td
{
	padding: 3px 5px 3px 5px;
	background-color: #F0F0F0;
	color: #000000;
}

/* admin menu (store/menu.aspx) */
.MenuGroup
{
    margin: 0px 20px 20px 20px;
    width: 900px;
    font-size: inherit;
    line-height: 1.5em;
    text-align: left;
    background-color: #ffffff;
    color: #000000;
	border: solid 1px black;
}
.MenuGroup th 
{
    margin: 0;
    padding: 2px 15px 2px 15px;
    background-color: #c9c9c9;
    color: #000000;
    border-bottom: solid 1px black;
}
.MenuGroup td {
    padding: 10px 15px 10px 15px;
    background-color: #f0f0f0;
    color: #000000;
}
.MenuGroup a {
    font-weight: bold;
}
.MenuGroup a:hover {
    font-weight: bold;
    color: #000000;
}

/* terms and conditions (date/TermsConditions.htm) and privacy policy */
#privacy 
{
    margin: 8px 25px 0px 25px;
    padding: 0px;
}
#privacy b
{
    color: #2e5db9;
}

/***
* UNIDENTIFIED STUFF 
***/

#articlelist, #articlesummary, #articledownload { padding: 10px;}
#shopdisplay, #shopbrands, #shopproducts {
	clear: both;
}
#pages { text-align: left; margin-left: 10px;}
#prodcartlink
{
    width: 140px;
	float: right;
	padding-top: 8px;
	padding-bottom: 8px;
    vertical-align: middle;
}
#prodsearchbox 
{
    width: 180px;
	float: right;
    vertical-align: middle;
}
#prodsearchbox form { margin: 0; padding: 0}
#prodsearchbox .SearchTerms
{
    width: 115px;
    height: 20px;
    margin-right: 3px;
    border: solid 1px #CFCFCF;
}
#prodsearchbox .Submit 
{
    width: 55px;
    color: #333333;
}
#prodcrumbs 
{
	text-align: left;
	padding: 10px 0px 0px 10px;
	font: bold 11px Arial, sans-serif;
	color: #215B5A;
}
.prodfloatingcrumbs {
	width: 780px;
	float: left;
}
