
/*   ALL PAGE ATTRIBUTES   *//*   ALL PAGE ATTRIBUTES   *//*   ALL PAGE ATTRIBUTES   */
/*   ALL PAGE ATTRIBUTES   *//*   ALL PAGE ATTRIBUTES   *//*   ALL PAGE ATTRIBUTES   */
/*   ALL PAGE ATTRIBUTES   *//*   ALL PAGE ATTRIBUTES   *//*   ALL PAGE ATTRIBUTES   */



/*  custom chrome scroll bars */
/*  custom chrome scroll bars */
/*  custom chrome scroll bars */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-button {
    width: 10px;
    height:0px;
}

::-webkit-scrollbar-track {
    background:#eee;
    border: thin solid lightgray;
    box-shadow: 0px 0px 3px #dfdfdf inset;
    /*border-radius:2px;*/
}

::-webkit-scrollbar-thumb {
    /*background:#999;*/
    background: #08AC04;
    border: thin solid gray;
    /*border-radius:10px;*/
}

::-webkit-scrollbar-thumb:hover {
    /*background:#7d7d7d;*/
    background: #007500;
}
/*  custom chrome scroll bars */
/*  custom chrome scroll bars */
/*  custom chrome scroll bars */






/*  BODY TEXT AND LINK ATTRIBUTES VALID FOR ALL PAGES   */
body {
    background-color: white;
    font-family: verdana;
}

h1 {
    margin: 0;
    margin-top: 10px;
    padding: 0;
    color: black;
    font-size: 23px;
}
h2 {
    margin: 0;
    padding: 0;
    font-size: 20px;
    color: black;
    font-weight: bold;
}
h3 {
    margin: 0;
    padding: 0;
    font-size: 18px;
    color: black;
    font-weight: bold;
    display: inline;
}
h4 {
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: black;
    font-weight: bold;
}
h5 {
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: black;
    font-weight: normal;
}
h6 {
    margin: 0;
    padding: 0;
    font-size: 12px;
    color: black;
    font-weight: normal;
    font-style: italic;
}


h4.newstitle {
    font-size: 16px;
    margin: 0;
    padding: 0;
    color: black;
    font-weight: bold;
    border-bottom:2px solid black;
    margin-bottom:3px;
}
h5.newsinfo {
    font-size: 12px;
    margin: 0;
    padding: 0;
    color: #666666;
    font-weight: bold;
    font-style: italic;
    text-align: right;
}
h6.newsbody {
    font-size: 14px;
    margin: 0;
    padding: 0;
    color: black;
    font-weight: normal;
    font-style: normal;
}
h5.question {
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: black;
    font-weight: bold;
}
h5.answer {
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: black;
    font-weight: normal;
    font-style: italic;
}





img {
    margin: 0;
    border: 0;
    padding: 0;
}

a:link, a:visited, a:active, a:hover {
    color: black;
    font-weight: bold;
    text-decoration:underline;
}
a:hover   {
    color: #007500;
}





/*  MAIN PAGES ATTRIBUTES   */
#container {
    min-width: 1100px;
    width: 85%;
    /*height: 100%;*/
    margin: 0px auto 20px auto;
    border: 0;
    background-color: white;
}





/*  HEADER STYLES   *//*  HEADER STYLES   *//*  HEADER STYLES   *//*  HEADER STYLES   */
#headerup, #headerdown {
    margin: 0; 
    border: 0;
    padding: 0;
    text-align: center;
    background-color: white;
    position: relative;
    /*height: 100%;*/
    height:110px;
    /*overflow: hidden;*/
}
#headerdown {
    /*overflow: visible;*/
    /*height:54px;*/
    /*height:27px;*/
    height:33px;
    border-top:2px solid black;
    border-bottom:2px solid black;
}


#logoright, #logoleft, #logo {
    margin: 0;
    border: 0;
    padding: 0;
    display: block;
    position: relative;
    float: left;
    height: 110px;
}
#logoright, #logoleft {
    width: 15%;
}
#logo {
    width: 70%;
    background-image: url("../images/newlogo.png");
    background-position: right;
}


#menuright, #menuleft, #menubar {
    margin: 0;
    border: 0;
    padding: 0;
    text-align: center;
    display: block;
    position: relative;
    float: left;
    background-color: #08AC04;
    font-family: verdana;
    font-weight: bold;
    color: white;
    height: 100%;
    /*height: 54px;*/
    /*height: 27px;*/
}
#menuright, #menuleft {
    width: 15%;
}
#menubar {
    width: 70%;
    overflow: visible;
    font-size: 14px;
}


#stackbar {
    margin: 0;
    border: 0;
    padding: 0;
/*    display: block;
    width: 100%;
    height: 3px;
    float: left;
    background-color: black;*/
}







/* NEW MENU BAR *//* NEW MENU BAR *//* NEW MENU BAR *//* NEW MENU BAR *//* NEW MENU BAR */
/* NEW MENU BAR *//* NEW MENU BAR *//* NEW MENU BAR *//* NEW MENU BAR *//* NEW MENU BAR */
/* http://line25.com/tutorials/how-to-create-a-pure-css-dropdown-menu */


#menubar ul {
    list-style: none;
    position: relative;
    display: inline-table;
    background: #08AC04;
    padding: 0;
    margin: 0;
    width: 100%;
}
    #menubar ul:after {
        content: "";
        clear: both;
        display: block;
    }
#menubar ul li {
    float: left;
    height:33px;
    width: 16.66%;
}
    #menubar ul li.current {
        background: #007500;
    }
    #menubar ul li:hover {
        background: #007500;
    }
        #menubar ul li:hover a {
            color: #fff;
        }
    #menubar ul li a {
        display: block;
        text-decoration: none;
        color: white;
        padding: 5px 5px;
    }
#menubar ul ul {
    display: none;
    padding: 0;
    position: absolute;
    top: 100%;
    background: #08AC04;
    width: 100%;
}
    #menubar ul li:hover > ul {
        display: block;
        z-index:10;
        width: 16.66%;
    }
    #menubar ul ul li {
        float: none; 
        position: relative;
        width: 100%;
        border-bottom: 2px solid black;
    }
    #menubar ul ul li.current {
            background: #007500;
        }
    #menubar ul ul li:first-child { 
        border-top: 2px solid black;
    }
        #menubar ul ul li a {
            color: #fff;
            padding: 5px 5px;
        }    
            #menubar ul ul li a:hover {
                background: #007500;
            }
#menubar ul ul ul {
    position: absolute;
    left: 100%;
    top:0;
}



/* NEW MENU BAR *//* NEW MENU BAR *//* NEW MENU BAR *//* NEW MENU BAR *//* NEW MENU BAR */
/* NEW MENU BAR *//* NEW MENU BAR *//* NEW MENU BAR *//* NEW MENU BAR *//* NEW MENU BAR */










/*  MAIN PAGE STYLES   *//*  MAIN PAGE STYLES   *//*  MAIN PAGE STYLES   *//*  MAIN PAGE STYLES   */
#main {
    position: relative;
    height: 600px;
    /*min-height: 350px;*/
    /*overflow: hidden;*/
    /*overflow: scroll;*/
    overflow-y: auto;
    
    margin: 0;
    border: 0;    
    padding: 0;


}
#contentleft, #contentright, #content {
    margin: 0;
    border: 0;
    padding: 0;
    display: block;
    position: relative;
    height: 100%;
    float: left;
    background-color: white;
}
#contentleft, #contentright, #content {
    width: 15%;
}
#content {
    width: 70%;
    font-size: 11px;
    font-weight: bold;
    text-align: center;
    color: black;
}




/*  MENU LIST STYLES   *//*  MENU LIST STYLES   *//*  MENU LIST STYLES   *//*  MENU LIST STYLES   */



#formmenu {
    padding: 2px 2px 2px 2px;
}






/*  FOOTER ATTRIBUTES   *//*  FOOTER ATTRIBUTES   *//*  FOOTER ATTRIBUTES   *//*  FOOTER ATTRIBUTES   */
#footer {
    margin: 0;
    border: 0;
    padding: 0;
    display: block;
    position: relative;
    /*height: 25px;*/
    height: 100%;
    text-align: center;
    border-bottom:5px double #08AC04;
    border-top:2px solid black;
}
#footerstackbar {
    margin: 0;
    border: 0;
    padding: 0;
    /*isplay: block;
    position: relative;
    width: 100%;
    height: 3px;
    //float: left;
    background-color: black;*/
}
#footerinfo {
    margin: 0;
    border: 0;
    padding: 0;
    display: block;
    position: relative;
    /*height: 100%;*/
    font-size: 11px;
    font-weight: bold;
    text-align: center;
    padding: 5px 0px 5px 0px;
    background-color: #08AC04;
    font-family: verdana;
    color: white;
}





/* SET ALL THE INPUT STYLES */
/* SET ALL THE INPUT STYLES */

input[type='submit'], input[type='reset'], input[type='button'] {
    background-color: #08AC04;
    font-family: verdana;
    font-size: 14px;
    color: white;
    font-weight: bold;
    padding: 2px 30px;
    border: 2px outset white;
}
input[type='submit']:hover, input[type='reset']:hover, input[type='button']:hover {
    cursor:pointer;
}
input[type='submit']:active, input[type='reset']:active, input[type='button']:active {
    border: 2px inset white;
}
input[type='text'], textarea, select {
    background-color: white;
    font-family: verdana;
    font-size: 14px;
    color: black;
    border: 1px solid #08AC04;
}
fieldset {
    border: 1px solid #08AC04;
    margin: 0.2em 0.5em 0.2em 0.5em;
    padding: 0em 0.5em 0em 0.5em;
    font-size: 14px;
}




/*
http://www.html.it/articoli/personalizzare-checkbox-e-radio-button-con-i-css-2/
*/


p {
    display: inline;
    line-height: 22px;
}



/* SET ALL THE INPUT STYLES */
/* SET ALL THE INPUT STYLES */









/*   SPECIFIC PAGE ATTRIBUTES   *//*   SPECIFIC PAGE ATTRIBUTES   *//*   SPECIFIC PAGE ATTRIBUTES   */
/*   SPECIFIC PAGE ATTRIBUTES   *//*   SPECIFIC PAGE ATTRIBUTES   *//*   SPECIFIC PAGE ATTRIBUTES   */
/*   SPECIFIC PAGE ATTRIBUTES   *//*   SPECIFIC PAGE ATTRIBUTES   *//*   SPECIFIC PAGE ATTRIBUTES   */


/*  NEWS PAGE STYLES   */
#news, #subcontent {
    text-align: justify;
}




/*  CONTACT PAGE STYLES   */
table.form {
    margin: 0;
    padding:2px;
    border: 0;
    width:100%;
    font-size: 14px;
    empty-cells: show;
    /*border-collapse: collapse;*/
    font-family: verdana;
    text-align: left;
    font-weight: normal;
}
table.form td {
    padding: 3px;
    vertical-align:text-top;
}
input.contact, textarea.contact, select.contact {
    width: 100%;
}
/*  CONTACT PAGE STYLES   */


/* PRODUCTS PAGES */
table.products {
    margin: 0;
    padding:2px;
    border: 0;
    width:100%;
    font-size: 13px;
    empty-cells: show;
    /*border-collapse: collapse;*/
    font-family: verdana;
    text-align: left;
    font-weight: normal;
}
table.products td.labels {
    padding: 3px;
    vertical-align: middle;
    text-align: right;
}
table.products td.elements {
    padding: 3px;
    vertical-align: middle;
    text-align: left;
}
/* PRODUCTS PAGES */

/* TOOLS PAGES */
table.tools {
    margin: 0;
    padding:2px;
    border: 0;
    /*width:100%;*/
    font-size: 13px;
    empty-cells: show;
    /*border-collapse: collapse;*/
    font-family: verdana;
    text-align: left;
    font-weight: normal;
}
table.tools td.labels {
    padding: 3px;
    vertical-align: middle;
    text-align: right;
}
table.tools td.elements {
    padding: 3px;
    vertical-align: middle;
    text-align: left;
}
/* TOOLS PAGES */



/*  BRIEFING-PACK PAGE STYLES  */
input.bpdate {
    font-weight:bold;
    color: red;
}
.normlabel {
	border: 1px solid #08AC04;
	padding: 0.2em 0.5em 0.2em 0.5em;
	color: black;
	font-weight: bold;
}
.label {
	padding: 0px;
	text-align: left;
	font-weight: bold;
	font-size: 14px;
	color: black;
	margin: 0;
	padding: 0 0 0 0;
}
/*  BRIEFING-PACK PAGE STYLES  */



/*  XWIND PAGE STYLES   */
.xwind {
    margin: 0;
    padding:0;
    empty-cells: show;
    border: 1px solid black;
    border-collapse: collapse;
    font-family: verdana;
    font-weight: normal;
    width: 100%;
    text-align: center;
}
.xwind th {
    border: 1px solid black;
    background-color: #08AC04;
    color: white;
}
.xwind td {
    border: 1px solid black;
}
.xwind tr.oddrow, .xwind tr.evenrow {
    font-size: 13px;
    height: 22px;
    background-color: #EEEEEE;
    color: black;
}
.xwind tr.evenrow {
    background-color: #CCCCCC;
}


/*  SUNRISE PAGE STYLES   */
.sunrise {
    margin: 0;
    padding:0;
    empty-cells: show;
    border: 1px solid black;
    border-collapse: collapse;
    font-family: verdana;
    font-weight: normal;
    width: 100%;
    text-align: center;
    font-size: 13px;
}
.sunrise th {
    width: 25%;
    font-weight: bold;
    border: 1px solid black;
    background-color: #08AC04;
    color: white;
}
.sunrise td {
    width: 25%;
    border: 1px solid black;
    background-color: #EEEEEE;
    color: black;
}


/*  BRAKING ACTION PAGE STYLES   */
.braking {
    margin: 0;
    empty-cells: show;
    border: 1px solid black;
    border-collapse: collapse;
    font-family: verdana;
    font-weight: normal;
    /*width: 100%;*/
    text-align: center;
    font-size: 13px;
}
.braking th {
    padding: 5px 15px;
    /*width: 25%;*/
    font-weight: bold;
    border: 1px solid black;
    background-color: #08AC04;
    color: white;
}
.braking td {
    padding: 5px 15px;
    /*width: 25%;*/
    border: 1px solid black;
    background-color: #EEEEEE;
    color: black;
}


/*  XWIND PAGE STYLES   */
.ba {
    margin: 0;
    padding:0;
    empty-cells: show;
    border: 1px solid black;
    border-collapse: collapse;
    font-family: verdana;
    font-weight: normal;
    width: 100%;
    font-size: 14px;
    text-align: center;
}
.ba th {
    border: 1px solid black;
    background-color: #08AC04;
    color: white;
}
.ba td {
    padding:5px;
    font-family: courier new;
    font-weight: 600;
    border: 1px solid black;
}
.ba tr.oddrow, .ba tr.evenrow {
    height: 22px;
    background-color: #EEEEEE;
    color: black;
}
.ba tr.evenrow {
    background-color: #CCCCCC;
}


