﻿/* 
File: SVEA - content.css
Content: Styles for content and general html-elements
Credit: http://wiki.github.com/stubbornella/oocss
*/


/* **************** CONTENT OBJECTS ***************** */

/* ========================== Default spacing ========================== */
pre{margin: 10px;}
table h1,table h2,table h3, table h4, table h5, table h6, table p, table ul, table ol, table dl,
ul h1,ul h2,ul h3, ul h4, ul h5, ul h6, ul p, ul ul, ul ol, ul dl,
ol h1,ol h2,ol h3, ol h4, ol h5, ol h6, ol p, ol ul, ol ol, ol dl {padding:0;}
/*p{margin-bottom:1em;}*/


/* ========================== Elements ========================== */
em{font-style: italic;}
strong{font-weight:bold;}
hr{border: 5px solid #e2e2e2; border-width: 0 0 5px 0; margin: 20px 10px 10px 10px;}
code{color:#0B8C8F;}
label{
    cursor:pointer;
    font-size:1.15em;
    font-weight:bold;
}
label.left{
    margin-right:20px;
    display:block;
    padding-top:5px;
}
button{
    border:none;
    cursor:pointer;
    margin:0;
    overflow:visible;
    padding:0;
    font-family:arial,verdana,sans-serif;
    font-size: 13px;
    line-height: normal;
    width: auto;
}

/* ========================== Headings ========================== */
/* .h1-.h6 classes should be used to maintain the semantically appropriate heading levels - NOT for use on non-headings */
h1, h2, h3, h4, h5, h6, h7{
    line-height:1.1em;
    font-family: inherit;
    margin-bottom: .5em;
}
h1, .h1{font-size:196%;font-weight:normal;}
h1.red{font-size:196%;font-weight:normal;color: red}
h2, .h2{font-size:167%;font-weight:normal;}
h3, .h3{font-size:146.5%;font-weight:normal;}
h4, .h4{margin-top: 30px; 
        padding-bottom: 5px; 
        border-bottom: 1px solid #DFDFDF;
        font-size:14px;
font-weight:bold;
color:#666;

        }
h5, .h5{font-size:108%; }
h6, .h6{font-size:108%; font-weight:normal;}


/* if additional headings are needed they should be created via additional classes, never via location dependant styling */
.category{font-size:108%; font-weight:normal; font-style: normal; text-transform:uppercase; color: #333;}
.category a{color: #333;}
.important a{font-weight:bold;}


/* ========================== Links ========================== */
a { color:#4084C4;text-decoration: none;}
a:focus, a:hover{ text-decoration: underline; }
a:visited { color:#4084C4; }


/* ========================== Lists ========================== */
/* numbered list */
ol.simpleList li{list-style-type: decimal; margin-left:40px;}
/* standard list */
ul.simpleList li{list-style-type:disc; margin-left:40px;}

.error-box ul{
    margin-top:10px;
    margin-left:-25px;
}
.error-box li{
    padding-bottom:5px;
    font-weight:normal;
    font-size:.8em;
}

ul.radio-btns,
ul.radio-btns li{
    padding-bottom:10px;
}


/* ========================== Tables ========================== */
table{font-size:inherit;}
.data{position:relative; vertical-align: bottom;border-right:solid 1px transparent;/* border fixes a FF2 bug which causes the data table to overlay its borders*/}
.data table {width:100%;border:1px solid #AE0345;}
th, td{vertical-align:bottom;border:1px solid #AE0345;}
.txtC, .data .txtC td, .data .txtC th{text-align:center;}
.txtL, .data .txtL td, .data .txtL th{text-align:left;}
.txtR, .data .txtR td, .data .txtR th{text-align:right;}
.txtT, .data .txtT td, .data .txtT th{vertical-align:top;}
.txtB, .data .txtB td, .data .txtB th{vertical-align:bottom;}
.txtM, .data .txtM td, .data .txtM th{vertical-align:middle;}
.data th,.data td{padding:3px 20px}
.data thead tr{background-color: #fff0f8;}
.data th{color: #000; font-weight:bold}

/* verification table */
.verification {
    background: url(../images/skin/bg-form-box.png) no-repeat bottom right;
    padding-bottom:11px;
    margin:0 10px;
}
.verification table{
    border:none;
    background: url(../images/skin/bg-form-box.png) no-repeat 0 2.3em;
    font-size:1.15em;
}

.verification .first{
    padding-left:30px;
}
.verification .last{
    padding-right:30px;
}
.verification th{
    font-weight:bold;
    border:none;	
    padding:10px 10px 18px 10px;
}
.verification td{
    border:none;
    background:#fff;
    padding:5px 10px 10px 10px;
    word-break: break-all;
    word-wrap: break-word;
}
.verification span{
    display:block;
    min-height:1.2em;
    border-bottom:1px dashed #a0a0a0;
    padding:0 2px;
}
.verification .first-name{
    width:140px;
}
.verification .surname{
    width:140px;
}
.verification .pin{
    width:125px;
}
.verification .email{
    width:225px;	
}
.verification .phone{
    width:120px;
}


/* ========================== Blockquote ========================== */
cite{display:block; text-align:right; padding-top: 10px;}

/* ========================== Callout ========================== */
.callout{font-size:189%;color:#999999; font-style:italic;}
.callout cite{display:block; text-align:right;padding-top: 30px; font-size:69.25%;}
.callout span.quot{font-size: 500%; vertical-align: sub; color:#e2e2e2; line-height:25px; font-weight:bold;}
.callout span.quotLast{vertical-align:middle;}

/* ========================== Image treatments (get more from jason santa maria) ========================== */
.caption{font-size:13px; color:#666666; font-style:italic;padding-top:0;}
/* will need to either 
1. find a way to capture the width of the caption in the width of the image or flash
2. Set some default widths, mby use flickr widths?
*/

/* ========================== Price ========================== */
.price-container{
    padding-left:28px;
}
.price{	
    font-weight:bold;
}
.price span{
    color:#7ab5e5;
}


/* ========================== General  ========================== */
.navigation-buttons{
    text-align:center;
}
.left{
    float:left;
}
.right{
    float:right;
}
.error-box{	
    font-weight:bold;
    font-size:1.3em;
}
.no-float{
    float:none !important;
}


/* ========================== Key - Value ========================== */
.key, .value{
    font-size:1.15em;
    height:1.25em;
    line-height:1.25em;
}
.key{
    font-weight:bold;
    display:block;
    float:left;
}
.value{		
    border-bottom:1px dashed #a0a0a0;
    margin:0 20px 0 10px;
    display:block;
    float:left;
    padding:0 2px;	
}
.value.co,
.value.street,
.value.town{	
    min-width:270px;	
}
.value.street-number,
.value.letter,
.value.door,
.value.floor{	
    min-width:30px;
}
.value.property-owner,
.value.property-description{
    min-width:380px;
}
.value.phone{
    min-width:130px;
}


/* ========================== Visibility and display ========================== */
.non-visual {
    color:#fff;
    font-size:1px;
    left:-900px;
    position:absolute;
    width:0pt;
    line-height:0pt;
}
.display-none{
    display:none;
}
.script-show{
    display:none !important;
}
.not-implemented{
    color:#ccc;
    font-style:italic;
}
.big-hint{
    display:none;
}