@charset "utf-8";
body  {
    margin: 0px; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
    padding: 0px;
    text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
    color: #F4F1EC;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 100%;
    background-image: url(images/home-hardent-v2.png);
    background-repeat: no-repeat;
    background-color: #DFD8C7;
    background-position: center top;
    background-attachment: fixed;
}
#footer #inside {
    padding-top: 20px;
    text-align: center;
}
#southern {
    width: 200px;
    float: right;
}

#inside a {
    text-decoration: none;

}


.thrColAbsHdr #container {
    position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
    width: 986px;
    text-align: left;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    height: auto;
    overflow: hidden;
    min-height:100%;
    background-color: #FFF;
    padding-top: 0px;
    padding-right: 6px;
    padding-bottom: 0px;
    padding-left: 9px;
    border-top-width: 1px;
    border-right-width: 1px;
    border-left-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    border-left-style: solid;
    border-top-color: #cdc7c7;
    border-right-color: #cdc7c7;
    border-left-color: #cdc7c7;
    background-image: url(images/line.jpg);
    background-position: 281px;
    background-repeat: no-repeat;
} 

/* Tips for absolutely positioned sidebars with header and footer:
1. Absolutely positioned (AP) elements must be given a top and side value, either right or left. (As a default, if no top value is given, the AP element will begin directly after the last element in the source order of the page. This means, if the sidebars are first element in the #container in the document's source order, they will appear at the top of the #container even without being given a top value. However, if they are moved later in the source order for any reason, they'll need a top value to appear where you desire.
2. Absolutely positioned (AP) elements are taken out of the flow of the document. This means the elements around them don't know they exist and don't account for them when taking up their proper space on the page. Thus, an AP div should only be used as a side column if you are sure the middle #mainContent div will always contain the most content. If either sidebar were to contain more content, that sidebar would run over the bottom of the parent div, and in this case the footer as well, and the sidebar would not appear to be contained.
3. If the above mentioned requirements are met, absolutely positioned sidebars can be an easy way to control the source order of the document.
4. If the source order is changed, the top value should be equal to the height of the header since this will cause the columns to visually meet the header.
*/
.thrColAbsHdr #header {
    height: 115px;
    margin: 0px;
    padding: 0px;
    float: left;
    width: 982px;
} 
.thrColAbsHdr #header h1 {
    margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
    padding-top: 0px;
    padding-right: 0;
    padding-bottom: 0px;
    padding-left: 0;
}
.thrColAbsHdr #sidebar1 {
    position: fixed;
    top: 60px;
    left: 0;
    width: 150px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
    background: #EBEBEB; /* padding keeps the content of the div away from the edges */
    float: left;
    padding-top: 15px;
    padding-right: 10px;
    padding-bottom: 15px;
    padding-left: 20px;
}
.thrColAbsHdr #sidebar2 {
    right: 0px;
    width: 272px; /* padding keeps the content of the div away from the edges */
    float: left;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    text-align: left;
    height: 100%;
    min-height:100%;

    overflow: hidden;

}
.thrColAbsHdr #mainContent {
    margin-top: 0;
    margin-right: 0px;
    margin-bottom: 80px;
    margin-left: 0px;
    padding-top: 0px;
    padding-right: 0px;
    padding-left: 0px;
    background-repeat: repeat-x;
    background-position: top;
    height: 100%;
    overflow: visible;
    width: auto;
}
.thrColAbsHdr #footer {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0;
    padding-left: 0;
    background-color: #dfd8c7;
    background-image: url(images/bottom-white.gif);
    background-position: top;
    background-repeat: no-repeat;
    width: 1003px;
    min-height:80px;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    float: none;
    clear: both;
} 
.thrColAbsHdr #footer p {
    margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
    color: #414141;
    font-size: 10pt;
    padding-right: 0;
    padding-left: 0;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
    float: right;
    margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
    float: left;
    margin-right: 8px;
}
#mainContent h1 {
    font-size: 1.2em;
    color: #94271e;
    margin: 0px;
    padding-bottom: 15px;
    font-weight: bold;
}
#mainContent p {
    font-size: 12px;
    line-height: 18px;
    padding-bottom: 10px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    color: #000;
    text-align: justify;
}

#mainContent h2 {
    font-size: 0.9em;
    color: #2e2a2b;
    margin: 0px;
    padding-top: 10px;
    padding-right: 0px;
    padding-bottom: 8px;
    padding-left: 0px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}
#flash {
    width: auto;
    height: auto;
    padding-top: 0px;
    padding-right: 0px;
    padding-left: 0px;
    float: left;
}

#slogan {
	padding-top: 0px;
    padding-right: 0px;
    padding-left: 0px;
	float: left;
	width: 708px;
	height: 241px;
	background-color: #EEEEEE;
	overflow: hidden;
	position: relative;
}



#slogan div {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1000;
}


#midle-home {
    padding-left: 0px;
    height: 100%;
    width: 707px;
    background-repeat: repeat-x;
    background-position: 8px top;
    overflow: hidden;
    float: left;
    background-image: url(images/back-main.jpg);
    margin-left: 1px;
}
.text-search {
    color: #FFF;
    font-size: 12px;
    font-weight: bold;
}
.form-search {
    font-size: 11px;
    border: 2px solid #0A4774;
}
#where-inside form {
    padding: 0px;
}
#become {
    height: auto;
    width: 210px;
    float: right;
    overflow: hidden;
    margin-top: 30px;
}
#become-inside {
    padding: 0px;
}
#become-inside {
    padding-left: 0px;
    padding-top: 0px;
}
#become-inside h2 {
    font-size: 1.1em;
    color: #01182d;
    font-weight: bold;
    margin: 0px;
    padding: 0px;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    overflow: hidden;
}
#become-inside h3 {
    color: #FFF;
    font-size: 1.3em;
    font-weight: bold;
    margin: 0px;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
}
#become-inside a {
    color: #FFF;
    font-size: 1em;
    font-weight: bold;
}
#search-home {
    padding-left: 0px;
    padding-top: 0px;
    height: auto;
    text-align: left;
    z-index: 0;
}
.search {
    border: 1px solid #000;
    font-size: 12px;
    width: 200px;
    height: 22px;
}
#search-home a {
    font-weight: bold;
    color: #0e4714;
    font-size: 14px;
}
#go {
    text-align: right;
    padding-right: 30px;
}
img {
    border-top-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 0px;
    border-left-width: 0px;
}
#inside-home {
    width: 410px;
    padding-top: 30px;
    float: left;
    margin-top: 0px;
    margin-right: 40px;
    margin-bottom: 80px;
    margin-left: 40px;
}
#testi {
    margin-left: 0px;
    padding-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
}
#date {
    font-size: 10px;
    color: #41585c;
}
#news-inside {
    border-bottom-width: 1px;
    padding-bottom: 0px;
    margin-bottom: 10px;
    text-align: justify;
    margin-top: 10px;
}
#news-inside em {
    font-weight: bold;
    font-style: italic;
    font-size: 8.5pt;
    text-align: right;
    color: #94271E;
}

#news-inside h4 {
    font-size: 11px;
    font-weight: normal;
    color: #003668;
    margin: 0px;
    padding-bottom: 5px;
    line-height: 18px;
}
#news-inside p {
    font-size: 11px;
    color: #555152;
    margin: 0px;
    line-height: 16px;
    text-align: left;
}
#line {
    height: 10px;
    width: 216px;
    background-image: url(images/testi-line.gif);
}
#line-inside {
    height: 10px;
    width: 216px;
    background-image: url(images/testi-line.gif);
    float: right;
    background-repeat: no-repeat;
    margin-right: 30px;
}

#inside-nav {
    padding-bottom: 10px;
    font-size: 11px;
    color: #003668;
    font-weight: bold;
    height: 100%;
    overflow: visible;
}
#inside-nav a {
    color: #5c5b56;
}
#testi-inside {
    border-bottom-width: 1px;
    padding-bottom: 0px;
    margin-bottom: 10px;
    text-align: justify;
    padding-right: 30px;
    padding-left: 20px;
}


#testi-inside p {
    font-size: 11px;
    color: #555152;
    margin: 0px;
    line-height: 14px;
    text-align: left;
} 

#sub-pic {
    height: 160px;
    padding-top: 5px;
    padding-right: 5px;
    padding-bottom: 15px;
    padding-left: 5px;
}
#sub-inside {
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
}
#sub-inside a {
    font-size: 1em;
    color: #002f5a;
    text-decoration: none;
    font-weight: bold;
}


#sidebar2-inside {
    width: 270px; /* padding keeps the content of the div away from the edges */
    float: left;
    padding-bottom: 15px;
    padding-left: 0px;
    background-repeat: no-repeat;
    margin-top: 10px;
    margin-right: 0px;
    margin-bottom: 0px;
    text-align: left;
    height: 100%;
    overflow: hidden;
}
#search-home-inside a {
    font-weight: bold;
    color: #0e4714;
    font-size: 14px;
}
#search-home-inside {
    padding-left: 22px;
    padding-top: 30px;
    height: 156px;
    text-align: left;
    z-index: 0;
}
.search-inside {
    border: 1px solid #000;
    font-size: 12px;
    width: 150px;
    height: 22px;
}
#search-inside2 {
    background-image: url(images/back-search.gif);
    background-repeat: repeat-y;
}
#category {
    background-image: url(images/category.gif);
    background-repeat: repeat-x;
    text-align: left;
    height: 100%;
    width: 182px;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #b3ad9e;
    overflow: auto;
    background-color: #021537;
    background-position: top;
    margin-left: 12px;
    padding-left: 10px;
    padding-right: 10px;
    color: #FFF;
    font-size: 11px;
    padding-top: 4px;
    padding-bottom: 4px;
}
#category a {
    color: #FFF;
    text-decoration: none;
}

#category:hover  {
    background-image: url(images/backover.gif);
    background-repeat: repeat-x;
    background-color: #0855e1;
    
}

#category:active {
    background-image: url(images/backover.gif);
    background-repeat: repeat-x;
    background-color: #0855e1;
    
}

#category_active {
    background-image: url(images/backover.gif);
    background-repeat: repeat-x;
    background-color: #0855e1;
    text-align: left;
    height: 100%;
    width: 182px;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #b3ad9e;
    overflow: auto;
    margin-left: 12px;
    padding-left: 10px;
    padding-right: 10px;
    color: #FFF;
    font-size: 11px;
    padding-top: 4px;
    padding-bottom: 4px;
}

#category_active a {
    color: #FFF;
    text-decoration: none;
}

#page {
    border-top-width: 1px;
    border-top-style: dashed;
    border-top-color: #666;
    font-size: 11px;
    color: #003668;
    font-weight: bold;
    text-align: right;
    padding-bottom: 15px;
    padding-top: 5px;
    margin-top: 10px;
}
#page a {
    color: #666;
    font-size: 11px;
    font-weight: bold;
}
#products-detail1 {
    background-image: url(images/back-details.gif);
    background-repeat: repeat-x;
    height: 100%;
    width: 355px;
    float: left;
    border: 1px solid #f0eddd;
    padding-bottom: 5px;
    background-color: #EDE7C3;
    background-position: top;
    margin-top: 20px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-left: 10px;
}
#sub-pic-details {
    height: 112px;
    width: 120px;
    text-align: center;
    float: left;
    overflow: visible;
    padding-top: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
}
#sub-details {
    padding-left: 0px;
    padding-right: 10px;
    text-align: left;
    margin-bottom: 20px;
    float: left;
    width: 250px;
}
#sub-details h2 a {
    color: #003668;
    text-decoration: none;
    font-size: 12px;
    height: 100%;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: #666;
    padding-bottom: 5px;
}
#sub-details p {
    color: #333;
    margin: 0px;
    padding: 0px;
    line-height: 15px;
}
#sub-details a {
    color: #002f5a;
    text-decoration: none;
}

#sub-details p strong {
    color: #003668;
}
#midle-details {
    width: 630px;
    padding-top: 0px;
    float: left;
    margin-top: 0px;
    margin-right: 40px;
    margin-bottom: 40px;
    margin-left: 40px;
}

#midle-details li{
    font-size: 12px;
    color: #2e2a2b;
    line-height: 14px;
    padding-bottom: 15px;
    list-style-image: url(images/bullet-home.gif);
    text-align: justify;
}

#print {
    float: right;
    margin-left: 10px;
    width: 123px;
}
#products-thubnail {
    background-image: url(images/thubnail-back.gif);
    background-repeat: no-repeat;
    height: 100%;
    width: 241px;
    float: left;
    margin-left: 0px;
    margin-top: 20px;
    overflow: visible;
}
#pic-product {
    height: 185px;
    padding-top: 5px;
    padding-right: 5px;
    padding-bottom: 10px;
    padding-left: 5px;
    margin-bottom: 20px;
}
#become2 {
    background-image: url(images/become-a-retailer.jpg);
    background-repeat: no-repeat;
    height: 214px;
    width: 283px;
}
#bottom-logos {
    height: 100%;
    width: 629px;
    float: right;
    padding-bottom: 10px;
    background-position: top;
    margin-right: 0px;
    margin-left: 0px;
    vertical-align: top;
    padding-top: 0px;
    overflow: visible;
    padding-right: 40px;
    padding-left: 30px;
}
#mainproducts {
    margin-top: 0;
    margin-right: 10px;
    margin-bottom: 0px;
    margin-left: 5px;
    padding-top: 0;
    padding-right: 0px;
    padding-bottom: 0;
    padding-left: 0px;
    background-image: url(images/back-main.gif);
    background-repeat: repeat-x;
    background-position: top;
    background-color: #FAF5E2;
    height: 100%;
    overflow: auto;
}
#mainproducts h2 {
    color: #002F5A;
    font-size: 1.2em;
    margin-top: 10px;
    margin-right: 10px;
    margin-bottom: 18px;
    margin-left: 0px;
}
#sub-details h3 {
    font-size: 15px;
    font-weight: bold;
    color: #125e1a;
    margin: 0px;
    padding-bottom: 5px;
}
#sub-details h4 {
    font-size: 13px;
    color: #64635e;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
}
#sub-details h4 strong {
    color: #002F5A;
}
#lines {
    padding-top: 5px;
    border-top-width: 1px;
    border-top-style: dashed;
    border-top-color: #666;
    border-right-color: #666;
    border-left-color: #666;
    overflow: hidden;
    margin-bottom: 5px;
    width: 460px;
}
#caracteris {
    font-size: 11px;
    font-weight: bold;
    color: #5c5b56;
    width: 191px;
    float: left;
    height: 100%;
    overflow: hidden;
}
#caracteris2 {
    font-size: 11px;
    font-weight: bold;
    color: #003668;
    width: 260px;
    float: left;
    height: 100%;
    overflow: hidden;
}

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
    clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
#pdf {
    padding-top: 10px;
}
#pdf a {
    color: #002F5A;
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;
}
#products h5 {
    color: #125e1a;
    font-size: 15px;
    font-weight: bold;
    width: 450px;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: #666;
    padding-top: 15px;
    padding-right: 0px;
    padding-bottom: 5px;
    padding-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
}
#products p {
    font-size: 11px;
    color: #01213e;
    line-height: 17px;
    margin: 0px;
    padding-bottom: 10px;
    padding-right: 20px;
}
#products h6 {
    font-size: 14px;
    margin: 0px;
    padding-bottom: 5px;
    color: #002F5A;
    padding-top: 15px;
}
#sidebar-news {
    right: 3px;
    width: 271px; /* padding keeps the content of the div away from the edges */
    float: right;
    padding-top: 15px;
    padding-right: 5px;
    padding-bottom: 15px;
    padding-left: 0px;
    background-repeat: no-repeat;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    text-align: right;
    height: 100%;
    overflow: auto;
}
#pic-news {
    width: auto;
    float: left;
    margin-bottom: 20px;
    margin-right: 20px;
}
#search-others {
    color: #03457F;
    font-size: 12px;
    border-bottom-width: 1px;
    border-bottom-style: dashed;
    border-bottom-color: #666;
    margin-bottom: 10px;
    width: 500px;
    padding-bottom: 10px;
}
#midle-details h3 {
    color: #646057;
    font-size: 0.8em;
    margin: 0px;
    padding-bottom: 5px;
    font-weight: bold;
    padding-top: 2px;
}
#search-name {
    font-size: 15px;
    color: #105D19;
    padding-bottom: 10px;
    font-weight: bold;
}
#search-others a {
    color: #0A4774;
    text-decoration: underline;
    font-weight: bold;
}
.grey {
    color: #125E1A;
}
.not-found {
    color: #00275E;
    font-size: 13px;
}
.text12_intern {
    font-size: 13px;
    color: #94271E;
    font-weight: bold;
}
#advance-search {
    position: absolute;
    visibility: hidden;
    height: 360px;
    background-color: #105D19;
    z-index: 2;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    width: 235px;
    left: 755px;
    top: 294px;
    overflow: hidden;
    border: 1px solid #013668;
    margin-left: -10px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: left;
}
#seach-brand {
    text-align: left;
    padding-left: 10px;
    font-size: 12px;
    color: #FFF;
    font-weight: bold;
    padding-bottom: 10px;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: #FAF7F0;
    margin-bottom: 10px;
}
#search-botom {
    width: 100px;
    text-align: left;
    padding-left: 10px;
}
.searchinside {
    color: #000;
    background-color: #D1CCC0;
    width: auto;
    padding: 2px;
    font-size: 11px;
    font-weight: bold;
    border: 1px solid #333;
}
#close {
    float: right;
    padding-right: 10px;
    font-size: 12px;
    font-weight: bold;
    color: #FAF8EC;
}
#close a {
    color: #F9F7EA;
    text-decoration: none;
}

#advance-search-inside {
    position: absolute;
    visibility: visible;
    height: 360px;
    background-color: #105D19;
    z-index: 2;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    width: 199px;
    left: 27px;
    top: 294px;
    overflow: hidden;
    border: 1px solid #013668;
    margin-left: -10px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: left;
}

#products li {
    font-size: 11px;
}#products ul {
    padding-bottom: 10px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
}
#container #print-this #mainproducts #midle-details #products #altura {
    height: 310px;
}

#sub-pic img {
-ms-interpolation-mode: bicubic;
    height: 163px;
    width: auto;
     max-width: 98%;


}
#sub-pic-details  img {
    -ms-interpolation-mode: bicubic;
    height: 112px;
    width: auto;
         max-width: 115px;
}


#pic-product img {
    -ms-interpolation-mode: bicubic;
    height: 185px;
    width: auto;
         max-width: 98%;
}
#footer a {
    overflow: visible;
    font-size: 9pt;
    color: #414141;
    font-weight: 200;
    padding-right: 8px;
    padding-left: 8px;
}
#footer p {
}
#southern a{
    color: #cdc7bf;
    text-decoration: none;

}
#inside-home a {
    color: #94281B;
}
#inside-home li {
    font-size: 12px;
    color: #585851;
    line-height: 14px;
    padding-bottom: 10px;
    list-style-image: url(images/bullet-home.gif);
}
#inside-home li a {
    color: #000;
}
#inside-home table, tr, td, td a {
    font-size: 12px;
    color: #585851;
    line-height: 14px;
    padding-bottom: 3px;
    font-weight: bold;
    color: #94281B;
}
#signature {
    text-align: right;
    font-weight: bold;
    color: #94271e;
    font-size: 11px;
    line-height: 14px;
}
#bullets-left {
    text-align: left;
    padding-left: 0px;
    padding-right: 0px;
    height: auto;
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: #AE3021;
}
#bullets-left-inside {
    text-align: left;
    padding-left: 0px;
    padding-right: 0px;
    height: auto;
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: #AE3021;
    border-bottom-width: 3px;
    border-bottom-style: solid;
    border-bottom-color: #000;
}

#lines2 {
    border-top-width: 1px;
    height: 2px;
    background-color: #000;
}
#inside-home ul {
    margin-top: 10px;
    margin-right: 0px;
    margin-bottom: 15px;
    margin-left: 0px;
    padding-top: 0px;
    padding-right: 30px;
    padding-bottom: 0px;
    padding-left: 50px;
}

#bedcrome {
    color: #585743;
    font-size: 11px;
    padding-bottom: 10px;
    width: 621px;
    background-image: url(images/line-redundant.gif);
    background-repeat: no-repeat;
    background-position: bottom;
    padding-top: 18px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
}
#inside-home ol li {
    font-weight: normal;
    text-align: justify;
}
#inside-home h3 {
    color: #585544;
    font-size: 0.85em;
    font-style: normal;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 5px;
    padding-left: 0px;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: #74714E;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
}
.increase {
    font-size: 13px;
}
#logo-brabd {
    text-align: center;
    padding-top: 20px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
}
.form-contact {
    font-size: 11px;
    background-color: #DFDBDA;
    border: 1px solid #585544;
    width: 250px;
}
.form-note {
    font-size: 11px;
    color: #32434B;
}
.why-titile {
    font-size: 12px;
    color: #000;
    font-weight: bold;
}

#news-inside p a {
    color: #32434B;
}
#pictures {
    width: auto;
    height: auto;
    float: left;
    padding-right: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
    margin-top: 0px;
    margin-right: 15px;
    margin-bottom: 0px;
    margin-left: 0px;
    background-color: #FFF;
    font-size: 0.7em;
    color: #20292F;
    text-align: center;
}






#midle-inside {
    padding-left: 0px;
    height: 100%;
    width: 802px;
    background-image: url(images/top-midle-in.jpg);
    background-repeat: no-repeat;
    background-position: left top;
    overflow: hidden;
}
.submit {
    font-size: 13px;
    background-color: #94271E;
    border: 1px solid #333;
    font-weight: bold;
    color: #FFF;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 72px;
    font-style: normal;
}
#nav {
    float: left;
}


#news-inside p a {
    color: #32434B;
}
#bedcrome a {
    color: #585743;
}
#midle-details p a {
    font-weight: bold;
    color: #94281B;
}
#midle-details li a {
    color: #94281B;
    text-decoration: underline;
    font-weight: bold;
}

#midle-details ul {
    margin: 0px;
    padding-bottom: 5px;
    padding-top: 5px;
}

#pic-profile {
    float: left;
    padding-right: 15px;
    margin-top: 6px;
    margin-bottom: 18px;
}

#pic-profile img {
    border: 1px solid #635E5A;
}

.pre-register-button {
    margin-top: 1px;
    margin-bottom: 1px;
    width: 110px;
}

#promotion-button {
	float:right;
	margin:5px;

}

