/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Stylesheet for CustomTop
    (c) Paweł Golonko <pgolonko@gmail.com>
   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

@import url('reset.css');
@import url('jquery.lightbox.css');
@import url('workshop.css');

/* =global
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

body {
    background: url('../images/background.jpg');
    color: #5A5A5A;
    font: normal 100% Arial, sans-serif;
}

a {
    outline: 0;
}

a:hover {
    text-decoration: underline !important;
}

#tooltip {
	background-color: #FFF;
	border: 2px solid #BBB;
	font-size: .69em;
	max-width: 400px;
	padding: 5px;
	position: absolute;
	z-index: 3000;
}

    #tooltip p.image {
        padding-top: 10px;
        text-align: center;
    }

.without-margin { margin: 0 !important }

.relative { position: relative }

.message {
    background: #FFE894;
    border: 1px solid #CCAD3A;
    color: #544600;
    font-size: 11px;
    line-height: 150%;
    margin-bottom: 5px;
    padding: 11px 12px 0;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

    .message a.close {
        background: url('../images/message-close.gif') no-repeat 0 3px;
        color: #403500 !important;
        padding-left: 12px;
    }

	.message.hidden .message-content {
		display: none;
	}

/* =page
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#page {
    font-size: .81em;
    margin: 0 auto;
    width: 928px;
}

/* =header
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#header {
    height: 155px;
    position: relative;
}

#header h1 {}
    #header h1 a {
        background: url('../images/customtop-beta.png');
        display: block;
        height: 150px;
        overflow: auto;
        text-indent: -666em;
        width: 155px;
    }

/* -navigation
~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#nav {
    height: 22px;
    left: 187px;
    position: absolute;
    top: 51px;
    width: 465px;
}

#nav li {
    display: block;
    float: left;
    height: 22px;
}

#nav li a {
    background-image: url('../images/nav.png');
    display: block;
    height: 22px;
    overflow: hidden;
    text-indent: -69em;
}

#nav #nHome a {
    background-position: 0 0;
    width: 66px;
}
    #nav #nHome a:hover { background-position: 0 -22px }

#nav #nAbout a {
    background-position: -66px 0;
    width: 74px;
}
    #nav #nAbout a:hover { background-position: -66px -22px }

#nav #nWhatWeDo a {
    background-position: -140px 0;
    width: 131px;
}
    #nav #nWhatWeDo a:hover { background-position: -140px -22px }

#nav #nWorkshop a {
    background-position: -271px 0;
    width: 111px;
}
    #nav #nWorkshop a:hover { background-position: -271px -22px }

#nav #nContact a {
    background-position: -382px 0;
    width: 83px;
}
    #nav #nContact a:hover { background-position: -382px -22px }

/* -login-box
~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#login-box {
    background: url('../images/loginbox-background.png') bottom;
    height: 112px;
    position: absolute;
    right: 14px;
    top: 43px;
    width: 223px;
}

#login-box h2 {
    color: #FFF;
    font-size: 1.25em;
    height: 26px;
    padding: 9px 0 0 10px;
    text-transform: uppercase;
    width: 213px;
}
    #login-box h2#hLogin { background: url('../images/loginbox-header.png') }

#login-box > ul {
    margin-top: 4px;
}

    #login-box > ul li {
        border-bottom: 1px solid #48350B;
        margin-bottom: 2px;
        padding-bottom: 1px;
    }

    #login-box > ul li a {
        color: #48350B;
        display: block;
        padding: 4px 10px 5px;
        text-decoration: none;
    }

    #login-box > ul li a:hover {
        background: url('../images/loginbox-header.png') no-repeat center center;
        color: #FFF;
        text-decoration: none !important;
    }

/* =bar
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#bar {
    background: url('../images/bar.png');
    height: 37px;
    margin: 0 0 6px 12px;
    width: 902px;
}

/* =intro
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#intro {
    height: 325px;
    margin: 0 0 0 12px;
    width: 902px;
}

/* -rotator
~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#rotator {
    float: left;
    height: 325px;
    position: relative;
    width: 675px;
}

#rotator li {
    left: 0;
    position: absolute;
    top: 0;
}

/* -guide
~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#guide {
    float: right;
    width: 223px;
}

#guide li {
    margin-bottom: 4px;
}
    #guide li#gWorkshop { margin-bottom: 0 }

#guide li a {
    background-image: url('../images/guide.png');
    display: block;
    height: 106px;
    overflow: hidden;
    text-indent: -666em;
    width: 223px;
}

#guide #gTop a { background-position: 0 0 }
#guide #gLabel a { background-position: -223px 0 }
#guide #gWorkshop a { background-position: -446px 0 }

/* =body
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#body {
    background: #FFF;
    margin: 0 0 0 12px;
    overflow: auto;
    padding: 31px 15px 13px;
    width: 872px;
}
    .body-top {
        background: url('../images/body-top.png');
        height: 22px;
    }
    .body-bottom {
        background: url('../images/body-bottom.png') no-repeat;
        height: 11px;
        margin-bottom: 19px;
    }

    #body.workshop {
        padding-top: 7px;
    }

#body h2 {
    border-bottom: 1px solid #DDD;
    color: #595959;
    font: normal 1.88em "Trebuchet MS", sans-serif;
    margin-bottom: .8em;
    padding-bottom: 4px;
}
    #body h2 em { font-style: normal }

#body p {
    margin-bottom: 11px;
    text-align: justify;
}

#body strong {
    font-weight: bold;
}

/* -form
~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#body form {
    margin: 0 10px 10px;
    overflow: auto;
}

#body fieldset {
    border-top: 1px solid #DDD;
    padding-top: 15px;
}

#body legend {
    font-weight: bold;
    padding-right: 15px;
}

#body label {
    display: block;
    margin-bottom: 4px;
}

#body input, #body select, #body textarea {
    margin-bottom: 4px;
    padding: 4px 6px;
    width: 300px;
}

#body input[type=checkbox] {
    vertical-align: middle;
}

#body textarea {
    height: 75px;
}

#body button {
    background: #0F6084;
    border: 1px solid #A1A1A1;
    color: #FFF;
    font-weight: bold;
    padding: 4px 6px;
    text-transform: uppercase;
}

    #body .box-purple button {
        background: #5C3466;
    }

#body .formdiv, #body .inline {
    margin-bottom: 8px;
}

#body p.error {
    background: url('../images/icons/error.png') no-repeat 0 0;
    color: #BA1111;
    padding: 0 0 3px 20px;
}

#body form div.type {
    margin-bottom: 5px;
    overflow: auto;
}

    #body form div.type label {
        color: #33383E;
        display: inline;
        font-weight: bold;
        padding-top: 8px;
    }

/* -half-box
~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

.half-box {
}

.half-box.left {
    float: left;
    margin-left: 18px;
    width: 435px;
}

.half-box.right {
    float: right;
    margin-right: 18px;
    width: 360px;
}

.half-box .lead {
    min-height: 160px;
}

a.readmore {
    display: block;
    height: 25px;
    overflow: hidden;
    text-indent: -666em;
    width: 99px;
}

    /* -half-box purple
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

    .half-box.purple h2 em { color: #A76CA6 }
    .half-box.purple a.readmore { background-image: url('../images/readmore-purple.png') }

    /* -half-box green
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

    .half-box.green h2 em { color: #7AA958 }

    /* -half-box blue
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

    .blue h2 { color: #0071AB !important }
    .half-box.blue a.readmore { background-image: url('../images/readmore-blue.png') }

    .half-box.blue div.lead.what_we_do {
        background: url('../images/what-we-do-lead.gif') no-repeat 0 0;
        padding-left: 170px;
    }

/* =content-pages
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#content-page {
    min-height: 400px;
    padding-right: 400px;
}

#content-page.about {
    background: url('../images/content/about.jpg') no-repeat top right;
    min-height: 320px;
}
#content-page.what-we-do {
    background: url('../images/content/what-we-do.jpg') no-repeat top right;
}
#content-page.contact {
    min-height: 0;
}

#content-page h3 {
    border-bottom: 1px solid #DDD;
    color: #595959;
    font: normal 1.3em "Trebuchet MS", sans-serif;
    margin-bottom: .8em;
    padding-bottom: 4px;
}

#content-page ul {
    line-height: 140%;
    list-style: inside circle;
    margin: 0 0 1em 1em;
}

/* -portfolio
~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#content-page.portfolio {
    padding-right: 0;
}

#portfolio ul {
    line-height: 0;
    margin: 0;
}

#portfolio li {
    float: left;
    list-style: none;
    margin-bottom: 10px;
}

    #portfolio li:nth-child(2n+1) {
        margin-right: 10px;
    }

/* =client panel
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* -client-panel-nav
~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#client-panel-nav {
    border-right: 1px solid #CCC;
    float: left;
    padding-bottom: 60px;
    width: 200px;
}

#client-panel-nav li {
    margin-bottom: 2px;
}

    #client-panel-nav li.active a {
        background: #036994;
        color: #FFF;
    }

#client-panel-nav a {
    background: #DDD;
    color: #595959;
    display: block;
    font-weight: bold;
    padding: 10px 10px;
    text-decoration: none;
    text-transform: uppercase;
}

/* -client-panel
~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#client-panel {
    float: right;
    width: 660px;
}

#client-panel h3 {
    background: #DDD;
    color: #444;
    margin-bottom: 5px;
    padding: 4px 10px;
    text-transform: uppercase;
}

/* -orders list
~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#client-panel .orders-list {
    color: #595959;
    font-size: 1.09em;
    margin: 0 0 10px 0;
}

#client-panel .orders-list > ul > li {
	margin: 0 0 4px 10px;
}

#client-panel .orders-list > ul > li > ul > li {
    background: #EBEBEB;
    margin: 0 0 4px 10px;
    overflow: auto;
    padding: 10px 14px;
}

    #client-panel .orders-list > ul > li > ul > li > strong {
        float: left;
    }

    #client-panel .orders-list .menu {
        float: right;
        margin-right: 20px;
    }

	#client-panel .orders-list ul h3 {
		background-image: url('../images/stock-expand.png');
	    background-position: 2px 3px;
	    background-repeat: no-repeat;
	    padding-left: 19px;
	}

		#client-panel .orders-list ul h3.expanded {
		    background-position: 2px -22px;
		}

        #client-panel .orders-list .menu li {
            background-position: right center;
            background-repeat: no-repeat;
            float: left;
            margin-left: 35px;
            padding-right: 20px;
        }

        #client-panel .orders-list li.order-view {
            background-image: url('../images/icons/pdf.png');
        }

        #client-panel .orders-list li.order-edit {
            background-image: url('../images/icons/customtop.png');
        }

        #client-panel .orders-list li.order-proforma {
            background-image: url('../images/icons/excel.png');
        }

#client-panel .orders-list form {
	margin: 0;
}

	#client-panel .orders-list form input {
		margin: 0;
		padding: 0;
		vertical-align: baseline;
		width: auto;
	}
	
	#client-panel .orders-list form label {
		display: inline;
		margin: 0;
	}
	
	#client-panel .orders-list form button:disabled {
		background-color: #555;
	}

#client-panel .orders-list a {
    color: #595959;
}

#client-panel .orders-list .info {
    font-weight: normal;
}

/* -stock
~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#stock-list {
    float: left;
    width: 49%;
}

#stock-details {
    float: right;
    width: 49%;
}

    #stock-details h3 {
        background: #5C3466;
        color: #FFF;
    }

	#stock-list .orders-list > ul > li {
	    background: #EBEBEB;
	    margin: 0 0 4px 10px;
	    overflow: auto;
	    padding: 10px 14px;
	}

	    #stock-list .orders-list > ul > li > strong {
	        float: left;
	    }

	    #stock-list .orders-list .menu {
	        float: right;
	        margin-right: 20px;
	    }
	
		#stock-list .orders-list .menu li {
			padding: 0;
		}

		#stock-list .orders-list ul h3 {
			background-image: url('../images/stock-expand.png');
		    background-position: 2px 3px;
		    background-repeat: no-repeat;
		    padding-left: 19px;
		}

			#stock-list .orders-list ul h3.expanded {
			    background-position: 2px -22px;
			}

	        #stock-list .orders-list .menu li {
	            background-position: right center;
	            background-repeat: no-repeat;
	            float: left;
	            margin-left: 35px;
	            padding-right: 20px;
	        }

	        #stock-list .orders-list li.order-view {
	            background-image: url('../images/icons/pdf.png');
	        }

	        #stock-list .orders-list li.order-edit {
	            background-image: url('../images/icons/customtop.png');
	        }

	        #stock-list .orders-list li.order-proforma {
	            background-image: url('../images/icons/excel.png');
	        }

/* -details list
~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

ul.details {
    border-top: 1px solid #EEE;
    margin-bottom: 20px;
}

ul.details li {
    border-bottom: 1px solid #EEE;
    overflow: auto;
    padding: 6px 0;
}

ul.details strong {
    color: #632411;
    float: left;
    margin-right: 10px;
    width: 100px;
}

/* =footer
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#footer {
    height: 130px;
    position: relative;
}

#footer a {
    color: #3F3D3C;
    font-weight: bold;
    text-decoration: none;
}
    #footer a:hover {
        color: #000;
    }

/* -footer-nav
~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#footer-nav {
    left: 16px;
    position: absolute;
    top: 53px;
}

#footer-nav li {
    display: inline;
    margin-right: 18px;
}

/* -footer-buttons
~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#footer-buttons {
    height: 34px;
    left: 560px;
    position: absolute;
    top: 40px;
}

#footer-buttons li {
    float: left;
    margin-right: 5px;
}

#footer-buttons a {
    display: block;
    height: 34px;
    overflow: hidden;
    text-indent: -666em;
}

    #footer-buttons #facebook {
        background: url('../images/fb.gif') no-repeat 0 0;
        width: 120px;
    }

    #footer-buttons #money-back {
        background: url('../images/mbg.gif') no-repeat 0 0;
        width: 110px;
    }

/* -copyrights
~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#copyrights {
    background: url('../images/footer-logo.png');
    height: 110px;
    overflow: hidden;
    position: absolute;
    right: 0;
    text-indent: -666em;
    top: 0;
    width: 121px;
}

