
/**
 * Reset browser default settings. Do not reset settings for those elements,
 * which are not later defined in typo.css or forms.css.
 *
 * @package    themes
 * @subpackage default2
 * @author     Dmitri Lakachauskis <lakiboy83@gmail.com>
 */

/* Block elements */
body, p, pre { /* blockquote */
    margin: 0;
    padding: 0;
}


/* Headers */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-size: 1em;
    font-weight: normal;
}


/* Lists */
dl, dt, dd, ul, ol, li {
    margin: 0;
    padding: 0;
}
ol, ul {
    list-style: none;
}


/* Misc */
a {
    outline: none;
}
img, iframe {
    border: none;
}


/* Tables */
th, td {
    margin: 0;
    padding: 0;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption, th, td {
    text-align: left;
}
#article td {
	padding:3px;
}


/* Forms */
form, fieldset, legend, input, textarea, select {
    margin: 0;
    padding: 0;
}
fieldset {
    border: none;
}
input, textarea, select {
    font-size: 1em;
    font-family: inherit;
}


/* Inline elements */
/*
address, cite, code, dfn, em, strong, var {
    font-style: normal;
    font-weight: normal;
}
abbr, acronym {
    border: 0;
}
*/
/**
 * Tools:
 *   - easy clearing method
 *   - replace (useful for screen readers)
 *   - accessibility (useful for screen readers)
 *
 * @package    themes
 * @subpackage default2
 */

/* clearing */
.stretch,
.clear {
    clear: both;
    height: 1px;
    margin: 0;
    padding: 0;
    font-size: 15px;
    line-height: 1px;
}
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.clearfix { /* make method ie7 compatible */
    #display: inline-block;
}
* html .clearfix {
    /* Hides from IE-mac \*/
	height: 1%;
	display: block; /* restore block display for ie6 */
	/* End hide from IE-mac */
}
/* end clearing */


/* replace */
.replace {
    display: block;

	background-repeat: no-repeat;
	background-position: left top;
	background-color: transparent;
}
/* tidy these up */
.replace * {
    text-indent: -10000px;
    display: block;

    background-repeat: no-repeat;
    background-position: left top;
    background-color: transparent;
}
    .replace a {
		text-indent: 0;
	}
        .replace a span {
            text-indent: -10000px;
        }
/* end replace */


/* accessibility */
span.accesskey {
    text-decoration: none;
}
.accessibility {
    position: absolute;
    top: -9999em;
    left: -9999em;
}
/* end accessibility */


/* hide */
.hide {
    display: none;
}
/**
 * Typography.
 *
 * @package    themes
 * @subpackage default2
 * @author     Julien Casanova <julien_casanova@yahoo.fr>
 * @author     Dmitri Lakachauskis <lakiboy83@gmail.com>
 */

/* Blocks */
body {
    font-family: Arial, sans-serif;
    font-size: small;
    line-height: 1em;
    color: #fff;
}
p {
    margin-bottom: 0.7em;
    font-size: 1em;
    line-height: 1.1em;
}
pre { /* blockquote */
    margin-bottom: 1em;
    border: 1px solid #666;
    border-left: 5px solid #666;
    padding: 1em;
    background-color: #eee;
    font-family: monospace;
    font-size: 1em;
}
/* END blocks */


/* Headings */
h1 {
    margin-bottom: 1em;
    border-bottom: 1px solid #252525;
    padding-bottom: 0.3em;
    font-size: 1.1em;
    font-weight: bold;
    line-height: 1.3em;
    color: #ED1F24;
}
h2 {
    margin-bottom: 0.5em;
    font-size: 1.3em;
    font-weight: bold;
    line-height: 1.3em;
    color: #ED1F24;
}
h3 {
    margin-bottom: 0.3em;
    font-size: 1.2em;
    font-weight: bold;
    line-height: 1.2em;
    color: #acacac;
}
h4 {
    margin-bottom: 0.2em;
    font-size: 1.2em;
    font-weight: bold;
    line-height: 1.2em;
    color: #acacac;
}
h5 {
    margin-bottom: 0.1em;
    font-size: 1.1em;
    font-weight: bold;
    line-height: 1.1em;
    color: #acacac;
}
h6 {
    margin-bottom: 0.1em;
    font-size: 1em;
    font-weight: bold;
    line-height: 1em;
    color: #acacac;
}
/* END headings */


/* Lists */
ul {
	margin: 0 0 0.7em 1em;
    list-style: none outside url(http://www.altitudetech.ca/themes/default/images/bullets/default.gif);
    line-height: 1.3em;
}
    ul li {
        margin-left: 30px;
	}
ol {
    margin: 0 0 0.7em 1em;
    list-style: outside decimal;
    line-height: 1.3em;
}
    ol li {
        margin-left: 30px;
	}
dl {
    margin-bottom: 0.7em;
    line-height: 1.3em;
}
	dl dt {
	    font-weight: bold;
	}
	dl dd {
        margin-bottom: 0.2em;
		margin-left: 30px;
	}
/* END lists */


/* Links */
a,
a:link,
a:active {
    color: #ED1F24;
    text-decoration: none;
}
a:visited {
    /* color: #184a84; */
}
a:hover {
    text-decoration: underline;
}
/* END links */


/* Misc */
hr {
    display: none;
}
div.hr {
    margin: 1em auto;
    height: 1px;
    background-color: #999;
    line-height: 1px;
}

#product-image {
		float:left;
		padding: 0 30px 10px 0;
}

#product {
		clear:left;
		border-top:1px solid #2B2B2B;
		padding-top:10px;
}
/**
 * Forms.
 *
 * @package    themes
 * @subpackage default2
 * @author     Dmitri Lakachauskis <lakiboy83@gmail.com>
 */

/* Fieldset / legend */
fieldset {
    margin-bottom: 0.6em;
    padding: 1em 0 0.5em;
    #padding-top: 0; /* fix MSIE fieldsetPadding behaviour */
}
fieldset.noLegend {
    padding-top: 0;
}
fieldset.hr {
    border-top: 1px solid black;
}
fieldset.lastChild {
    margin-bottom: 0;
    padding-bottom: 0;
}
    fieldset legend {
        #margin-bottom: 0.8em; /* fix MSIE behaviour */
        #margin-left: -7px;
        #padding-bottom: 0.2em;

        padding-right: 0.5em;
        font-weight: bold;
        font-size: 1.1em;
        color: #333;
    }


/* Form elements */
input.text, select, textarea {
    border-width: 1px;
    border-style: solid;
    border-color: #7c7c7c #c3c3c3 #ddd #c3c3c3;
    padding: 2px;
    background: #fff url(http://www.altitudetech.ca/themes/default/images/bg/form_input_m.gif) repeat-x left top;
    font-size: 0.9em;
    color: #666;
}
textarea {
    height: 6em;
}
textarea.wysiwyg {
    width:100%;
}
label {
    color: #CACACA;
}


/* Ordered list for displaying form elements */
form fieldset ol {
    margin: 0;
    list-style: none;
    line-height: 1em;
}
    form fieldset ol li {
        clear: left;
        margin: 0;
        padding-bottom: 0.6em;
        padding-left: 160px;
            }
        form fieldset ol li div {
                        #display: inline; /* fix MSIE */
            margin-bottom: 0;
        }
        form fieldset ol li label {
            float: left;
            margin-left: -160px;
            width: 140px;
            text-align: right;
        }
        form fieldset ol li p { /* field comments */
            margin-top: 0.2em;
            margin-bottom: 0;
            font-size: 0.9em;
        }
        form fieldset ol li p.error { /* field error */
            margin-top: 0;
            margin-bottom: 0.3em;
            color: #f00;
        }


/* Fields on top */
form fieldset ol.onTop {
}
    form fieldset ol.onTop li {
        clear: none;
        padding-left: 0;
            }
        
        form fieldset ol.onTop li label {
            float: none;
            display: block;
            margin-left: 0;
            margin-bottom: 0.2em;
            width: auto;
            text-align: left;
        }


/* Additional */
form em {
    font-style: normal;
    color: #f00;
}
form div,
form p {
    margin-bottom: 0.6em;
}
form .fieldIndent {
    margin-left: 160px;
}


/* No forms layout */
div.fieldsetlike {
    padding-bottom: 0.6em;
}
    div.fieldsetlike h3 {
        margin-bottom: 0.6em;
        font-weight: bold;
        font-size: 1.1em;
        line-height: 1.1em;
        color: #CACACA;
    }
    div.fieldsetlike dl {
        margin-left: 160px;
        margin-bottom: 0;
        line-height: 1em;
    }
        div.fieldsetlike dl dt {
            float: left;
            display: inline;

            overflow: hidden; /* one row label only */
            height: 1.2em;

            margin-left: -160px;
            width: 140px;
            text-align: right;
            font-weight: normal;
            color: #CACACA;
        }
        div.fieldsetlike dl dd {
            margin-left: 0;
            margin-bottom: 0.4em;

            min-height: 1.2em;
            _height: 1.2em; /* min height for ie6 */

            padding-bottom: 0.2em; /* fix MSIE bug */
            color: #fff;
        }
/* END no forms layout */
/**
 * Site specific layout.
 *
 * @package    themes
 * @subpackage default2
 * @author     Julien Casanova <julien_casanova@yahoo.fr>
 * @author     Dmitri Lakachauskis <lakiboy83@gmail.com>
 */

html { /* inforces screen to show scrollbar */
    height: 100%;
}
body {
    background: #333333;
}


/* Wrappers */
div#wrapper-outer {
    margin: 0 auto;
    width: 898px;
    background: url(http://www.altitudetech.ca/themes/default/images/bgshadow.gif) repeat-y ;
}
div#wrapper-inner {
    background-color: #333333;
    margin: 0 auto;
    width:884px;
}


/* Header */
div#header {
    height:111px;
    width:884px;
    background: url(http://www.altitudetech.ca/themes/default/images/LogoRight.gif) no-repeat right top;
}


    div#header h1 {
        position: absolute;
        background: url(http://www.altitudetech.ca/themes/default/images/logo.gif) no-repeat left top;

        font-size: 30px;
        height:111px;
        font-family: "Trebuchet MS";
    }
        div#header h1 a {
            background-color: transparent;
            text-decoration: none;
            color: #fff;

            display: block;
            width: 665px;
            height: 111px;
        }
            div#header h1 a span {
                display: block;
                text-indent: -9999px;
            }
    div#header #bugReporter {
        position: absolute;
        right: -10px;
        bottom: 2px;
        display: block;
        width: 100px;
        min-height: 10px;
        _height: 10px; /* min-height for ie6 */
        background: url(http://www.altitudetech.ca/themes/default/images/bug.gif) no-repeat right center;
    }
    
    div#header #blockTop {
    		float:right;
    		padding-top:13px;
    		font-size:9pt;
    		
    }
    div#header #blockTop a {
    		color:#fff;
    	}
/* END header */


/* Footer */
div#footer {
    border-top:2px solid #A90000;
    background: url(http://www.altitudetech.ca/themes/default/images/footerRep.gif) repeat-x top;
}
		div#footer div#inner {
			background: url(http://www.altitudetech.ca/themes/default/images/footerLogo.jpg) no-repeat top right;
			padding:25px 10px;
			height:115px;
		}
    
    div#footer p {
        margin-bottom: 0.1em;
        font-size: 0.8em;
        color: #aaa;
    }
    div#footer #copy {
    		padding-top:110px;
        float:right;
    }
    div#footer #poweredby {
    	padding-top:43px;
    }
/* END footer */


/* Content */
div#content {
    background-color: #404040;
}

    /* Main */
    div#main {
        min-height: 350px;
        _height: 350px;  /* min height for ie6 */
        padding: 0.6em 10px 5px;
        float:left;
    }

    /* Sub */
    div#sub {
        padding: 2.6em 4px 4px 0;
        background: #3F3F3F url(http://www.altitudetech.ca/themes/default/images/blockBg.gif) repeat-x ;
    }
        div#sub div.inner {
            padding: 0.8em 5px 5px;
        }

    /* Local */
    div#local {
        padding-top: 0.8em;
    }
/* END content */


/* Left/right blocks */
div.block {
    margin-bottom: 1.5em;
}
    div.block h2 {
        margin: 0 10px 8px;
        border-bottom: 1px solid #252525;
        padding-bottom: 0.4em;
        font-size: 1.1em;
        color: #ED1F24;
    }
    div.block div.content {
        padding: 0.4em 10px;
        font-size: 0.9em;
    }
    div.block-bottom {
    	
    	padding: 4px;
        background: #3F3F3F url(http://www.altitudetech.ca/themes/default/images/blockBg.gif) repeat-x ;
        border-top:1px solid #4F4F4F;
        border-right:1px solid #000;
        border-bottom:1px solid #000;
        border-left:1px solid #494949;
        
    }
    div#bottomBlockContainer {
    	float:left;
    	width:100%;
    }
    div.mini-block {
    		width:300px;
    		
    }
    
    div.big-block {
    		clear:left;
    }
    div.block-bottom h2 {
    	background: url(http://www.altitudetech.ca/themes/default/images/blockLogo.gif) no-repeat;
    	padding: 4px 0 0 25px;
    }
/* END left/right blocks */
/**
 * Blocks.
 *
 * @package    themes
 * @subpackage default2
 * @author     Dmitri Lakachauskis <lakiboy83@gmail.com>
 */

/* Logout */
div#block-logout {
}
    div#block-logout strong {
        color: #cacaca;
    }
    div#block-logout em {
        font-style: normal;
    }


/* Lang switcher */
div#langSwitcher {
    float: right;
}
    div#langSwitcher a {
        float: left;
        margin-left: 15px;
    }
        div#langSwitcher a img {
            display: block;
        }


/* Breadcrumbs */
#breadcrumbs {
    margin: 0;
    float: left;
}
    #breadcrumbs a {
        font-weight: bold;
        color: #66A326;
    }
    
#product-list ul{
	list-style:none;
	text-align:center;
}

#product-list ul li {
	margin:0;
	padding: 15px 0 0 0;
	
}

#product-list ul li a{
	color:#fff;
	
}
#product-list ul li img{
	padding: 5px 0 0 0;
	
}
/**
 * Common.
 *   - error messages
 *   - debug panel
 *   - tooltips
 *
 * @package    themes
 * @subpackage default2
 * @author     Julien Casanova <julien_casanova@yahoo.fr>
 * @author     Dmitri Lakachauskis <lakiboy83@gmail.com>
 */

/* Messages & errors */
div.message {
    width: 80%;
    margin: 0 auto;
}
    div.message p {
        margin-bottom: 1em;
        border-width: 2px;
        border-style: solid;
        padding: 0.5em;
        text-align: center;
    }
    div.message p.message-error {
        border-color: #f30;
        color: #f30;
    }
    div.message p.message-info {
        border-color: #66a326;
        color: #66a326;
    }
    div.message p.message-warning {
        border-color: #999;
        color: #999;
    }
    /* PEAR */
    div.message p.pear {
        border-top: none;
        border-color: #f30;
        text-align: left;
    }
    div.message h4 {
        border: 2px solid #f30;
        border-bottom: none;
        margin-bottom: 0;
        padding: 0.5em;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 0.3em;
        font-size: 1.1em;
        font-weight: bold;
        color: #f30;
    }
div#broadcastMessage {
    position: absolute;
    z-index: 300;
    left: 30px;
    top: 30px;
    width: 300px;
    padding: 10px 20px;
    background-color: #ffe9d9;
    color: #333;
}
    div#broadcastMessage a {
        position: absolute;
        right: 5px;
        top: 5px;
    }
#message {
    position: absolute;
    z-index: 200;
    right: 50px;
    top: 15px;
    max-width: 500px;
    overflow: hidden;
}
    #message p {
        margin-bottom: 0;
        padding: 5px 10px;
        text-align: left;
    }
    #message .success {
        background-color: green;
        color: #fff;
    }
    #message .error {
        background-color: red;
        color: #fff;
    }
/* END messages & errors */


/* Debug panel */
div#debugPanel {
    position: absolute;
    z-index: 9999;
    top: 0;
    right: 0;
    overflow: auto;
    border: 1px black solid;
    margin: 10px;
    min-width: 150px;
    height: 300px;
    padding: 5px 10px;
    background-color: #808080;
    opacity: 0.9;
    font-size: 0.9em;
    color: #333;
}
    div#debugPanel h3 {
        margin-bottom: 0.5em;
        color: #fff;
    }
    div#debugPanel a {
        color: #ccc;
        text-decoration: none;
    }
    div#debugPanel dl {
        margin-bottom: 0;
    }
        div#debugPanel dl dt {
            margin-bottom: 0.2em;
            font-weight: normal
        }
        div#debugPanel dl dd {
            margin-left: 0;
            margin-bottom: 0.5em;
        }
/* END debug panel */


/* Turn of tooltips */
.tipOwner .tipText {
    display: none;
}

/*
===================Manager-actions images=====================*/
/*-- Each action link (<a> tag) has a standard "action" class name
  -- plus a specific <action-type> class name e.g. "add", "edit",...
  -- to define which image to use. This allows to change assigned
  -- images in a single location : here. ---------------------*/
#manager-actions {
    width: 100%;
    height: 32px;
    padding: 1px 0;
    background: #3F3F3F url(http://www.altitudetech.ca/themes/default/images/blockBg.gif) repeat-x ;
        border-top:1px solid #4F4F4F;
        border-right:1px solid #000;
        border-bottom:1px solid #000;
        border-left:1px solid #494949;
}
html>body #manager-actions {
    padding: 1px 0 0;
}
#manager-actions span {
    float: left;
    text-indent: 2em;
    padding-right: 10px;
    height: 30px;
    line-height: 30px;
    font-weight: bold;
    color: ;
}
#manager-actions a {
    float: left;
    display: block;
    margin-right: 0.5em;
    padding: 0 4px 0 28px;
    height: 28px;
    line-height: 28px;
    border-top:1px solid #4F4F4F;
    border-right:1px solid #000;
    border-bottom:1px solid #000;
    border-left:1px solid #494949;
    color: ;
    text-decoration: none;
    /* -- See below for each action backgroud image
    -----------------------------------------------*/
}
#manager-actions a:hover {
    background-color: ;
    border-style: solid;
    border-width: 1px;
    border-color: ;
}
#manager-actions a:active {
    background-color: ;
    border: none;
}
#manager-actions a:focus {
    background-color: ;
    border: none;
}

#manager-actions select {
    float: left;
    margin-top: 5px;
    margin-right: 5px;
}
a.action {
    background-position: 3px 50%;
    background-repeat: no-repeat;
}
a.add {
    background-image: url('http://www.altitudetech.ca/themes/default/images/22/action_add.gif');
}
a.edit {
    background-image: url('http://www.altitudetech.ca/themes/default/images/22/action_edit.gif');
}
a.delete {
    background-image: url('http://www.altitudetech.ca/themes/default/images/22/action_delete.gif');
}
a.save {
    background-image: url('http://www.altitudetech.ca/themes/default/images/22/action_save.gif');
}
a.validate {
    background-image: url('http://www.altitudetech.ca/themes/default/images/22/action_validate.gif');
}
a.cancel {
    background-image: url('http://www.altitudetech.ca/themes/default/images/22/action_cancel.gif');
}
a.undo {
    background-image: url('http://www.altitudetech.ca/themes/default/images/22/action_undo.gif');
}
a.download {
    background-image: url('http://www.altitudetech.ca/themes/default/images/22/action_download.gif');
}
a.upload {
    background-image: url('http://www.altitudetech.ca/themes/default/images/22/action_upload.gif');
}
a.reorder {
    background-image: url('http://www.altitudetech.ca/themes/default/images/22/action_reorder.gif');
}
a.search {
    background-image: url('http://www.altitudetech.ca/themes/default/images/22/action_search.gif');
}
a.addcat {
    background-image: url('http://www.altitudetech.ca/themes/default/images/22/action_addcat.gif');
}
a.addrootcat {
    background-image: url('http://www.altitudetech.ca/themes/default/images/22/action_addrootcat.gif');
}
a.adduser {
    background-image: url('http://www.altitudetech.ca/themes/default/images/22/action_adduser.gif');
}
a.scannew {
    background-image: url('http://www.altitudetech.ca/themes/default/images/22/action_scannew.gif');
}
a.delorphaned {
    background-image: url('http://www.altitudetech.ca/themes/default/images/22/action_delorphaned.gif');
}

/*
========================Options Links=========================*/
#optionsLinks {
    width:100%;
    font-size: 0.9em;
}
#optionsLinks ul {
	 
    padding:10px 7px 0;
}
#optionsLinks li {
    float:left;
    width: auto;
    border-top:1px solid #4F4F4F;
    border-right:1px solid #000;
    border-bottom:1px solid #000;
    border-left:1px solid #494949;
}
#optionsLinks li.current {
    background:#333;
}
#optionsLinks a {
    display: block;
    padding: 5px 10px 4px;
}
#optionsLinks li.current a {
    padding-bottom: 5px;
}
#navigationContent, #navigationRights, #navigationOptimisation{
	float:left;
	width:100%;
	
}
/*
-- articleManager.html ---------------------------------------*/
#frmAddArticle p label {
    width: 140px;
}
#articleTypeSelector {
    display: none;
    position: absolute;
    top: 6em;
    left: 7em;
    background: #555;
    border-style: solid;
    border-color: #333;
    border-width: 1px;
    z-index:10;
}
#articleTypeSelector a {
    display: block;
    clear: left;
    float: left;
    margin: 0;
    padding: 0 5px;
    border: none;
    background: none;
    text-indent: 10px;
    
    color:#ACACAC;
}
#articleTypeSelector a:hover {
    border: none;
    color:#fff;
}

/*
-- articleMgrAdd.html / articleMgrEdit.html ------------------*/
#articleAddOptions p label {
    width: 200px;
}
#articleAddContent p label {
    width: 80px;
    text-align: left;
}
#articleAddContent p input.longText {
    width: 80%;
}
#articleAddContent span.tipText {
    width: 250%;
}
img.calendar{
    border: none;
    vertical-align: middle;
    cursor: pointer;
}

/*
========================Miscellaneous=========================*/
.floatLeft {
    float: left;
}
.floatRight {
    float: right;
}
.clear {
    clear: both;
}
.spacer {
    clear: both;
    visibility: hidden;
    line-height: 1px;
}
.left {
    text-align: left;
}
.right {
    text-align: right;
}
.center {
    text-align: center;
}
.altFont {
    font-family: ;
}
.hide {
    display: none;
}
.narrow {
    width: 45%;
}
.wide {
    width: 60%;
}
.full {
    width: 100%;
}
.noBg {
    background: none;
}
.pager {
    white-space: nowrap;
    font-size: .9em;
    line-height:2em;
}
.pager .results {
    padding-right: 0.5em;
    color: ;
}
.pager .currentPage {
    font-weight: bold;
    padding: 0 0.75em;
    color: ;
    font-weight: bold;
}
.pager a {
    padding: 0 0.75em;
    color: ;
    font-weight: bold;
}
.pager a:hover {
    background: ;
    color: ;
}
a.clearSearch {
    background: url('http://www.altitudetech.ca/themes/default/images/16/action_no.gif') no-repeat 5px 50%;
    margin-left: 10px;
    padding: 3px 5px 3px 25px;
    color: ;
    font-size: 1.1em;
}
a.clearSearch:hover {
    text-decoration: none;
    color: ;
}
.disabled, a.disabled, a.disabled:visited {
    color: grey;
}

/*
==================Tables default layout=======================*/
#container table { /*
------------------- Actually concerns all table but #container specialization is required not to interfere ------------------- with FCKeditor or JsCalendar css */
    margin: 5px 0;
    background: #fff;
    border-collapse: collapse;
    border-width: 1px;
    border-style: solid;
    border-color:    ;
    font-family: helvetica;
}
html>body #container table {
    border-collapse: separate;
    border-spacing: 0px;
}
#container table.noBorder {
    border: none;
}
#container table.transparent {
    background-color: transparent;
    border: none;
}
#container tr {
    height: 24px;
    line-height: 24px;
    vertical-align: middle;
}
tr img, tr input {
    vertical-align: middle;
}
tr th, tr td {
    text-align: center;
    border: none;
}
tr th {
    color: #afafaf;
    font-weight: bold;
}
thead tr {
    background: ;
    color: ;
}
thead tr.infos, tfoot tr.infos {
    background: ;
    font-size: 10px;
    color: ;
}
thead td {
    padding: 0 12px;
}
thead th, thead th a {
    color: ;
}
thead tr a:hover {
    color: ;
}
tr.backLight {
    background: ;
    border-bottom: 1px solid ;
}
tr.backDark {
    background: ;
    border-bottom: 1px solid ;
}
tr.backHighlight {
    background: ;
}
/**
 * - navigation bar at the top
 * - 2 columns (main + sub)
 *
 * @package    themes
 * @subpackage default2
 * @author     Dmitri Lakachauskis <lakiboy83@gmail.com>
 */


/**
 * - horizontal navigation
 * - toolbar
 *
 * @package    themes
 * @subpackage default2
 * @author     Dmitri Lakachauskis <lakiboy83@gmail.com>
 */

/* Main navigation */

/* END main navigation */


div#nav-main {
}
div#nav-main ul { 
	margin: 0;
	padding: 0;
	list-style: none;
	position: relative;
	line-height: 1.7em;
	z-index:10;
	background: url(http://www.altitudetech.ca/themes/default/images/menu_bg.gif) repeat-x;
	height:40px;
}

div#nav-main ul ul {
 width: 160px; /* Sub Menu Width */
 margin: 0;
 list-style: none;
 display: none;
 position: absolute;
 top: 100%;
 left: 0;
}

div#nav-main ul ul ul,div#nav-main ul ul ul ul { top: 0; left: 100%; }

div#nav-main ul li { float: left; display: inline; position: relative; margin: 0;list-style: none;}
div#nav-main ul ul li { width: 100%; display: block;}

/* Root Menu */
div#nav-main ul a {
 padding: 0.65em 1em 0.55em;
 float: left;
 display: block;
 color: #fff;
 text-decoration: none;
 list-style: none;
 font-weight: bold;
 
}
div#nav-main ul ul a {
	border-right: none;
 border-bottom: 1px solid #404040;
  padding:5px 10px;
 color: #fff;
 line-height:1.2em;
 
 
}

/* Root Menu Hover Persistence */
div#nav-main ul a:hover,div#nav-main ul li:hover a,div#nav-main ul li.iehover a {
 color: #fff;
 background: #000;
}

/* 2nd Menu */
div#nav-main ul li:hover li a,div#nav-main ul li.iehover li a {
 float: none;
 background: #333333;
 color:#fff;
}

/* 2nd Menu Hover Persistence */
div#nav-main ul li:hover li a:hover,div#nav-main ul li:hover li:hover a,div#nav-main ul li.iehover li a:hover,div#nav-main ul li.iehover li.iehover a {
 background: #B00000;
}

/* 3rd Menu */
div#nav-main ul li:hover li:hover li a,div#nav-main ul li.iehover li.iehover li a {
 background: #B00000;
}

/* 3rd Menu Hover Persistence */
div#nav-main ul li:hover li:hover li a:hover,div#nav-main ul li:hover li:hover li:hover a,div#nav-main ul li.iehover li.iehover li a:hover,div#nav-main ul li.iehover li.iehover li.iehover a {
 background: #B00000;
}

/* 4th Menu */
div#nav-main ul li:hover li:hover li:hover li a,div#nav-main ul li.iehover li.iehover li.iehover li a {
 background: #666;
}

/* 4th Menu Hover */
div#nav-main ul li:hover li:hover li:hover li a:hover,div#nav-main ul li.iehover li.iehover li.iehover li a:hover {
 background: #333;
}

/* Hover Function - Do Not Move */
div#nav-main ul li:hover ul ul,div#nav-main ul li:hover ul ul ul,div#nav-main ul li.iehover ul ul,div#nav-main ul li.iehover ul ul ul { display: none; }
div#nav-main ul li:hover ul,div#nav-main ul ul li:hover ul,div#nav-main ul ul ul li:hover ul,div#nav-main ul li.iehover ul,div#nav-main ul ul li.iehover ul,div#nav-main ul ul ul li.iehover ul { display: block; }
/* END main navigation */

div#content {
    position: relative;
    width: 884px;

    /* padding needed for navigation */
    padding-top: 3em;
    background-position: left 3em;
}
div#main {
    float: left;
    width: 638px;
    display: inline;

    margin-right: -200px;
}
div#sub {
    float: right;
    width: 212px;
    display: inline;
}
div#local {
    display: none;
}
div#nav-main {
    position: absolute;
    top: 0;
    left: -1px;
    width: 884px;
}