
/**
 * 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;
}


/* 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: Verdana, Arial, sans-serif;
    font-size: small;
    line-height: 1.3em;
    color: #fff;
}
p {
    margin-bottom: 0.7em;
    font-size: 1em;
    line-height: 1.3em;
}
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 #666;
    padding-bottom: 0.3em;
    font-size: 1.3em;
    font-weight: bold;
    line-height: 1.3em;
    color: #fff;
}
h2 {
    margin-bottom: 0.5em;
    font-size: 1.3em;
    font-weight: bold;
    line-height: 1.3em;
    color: #fff;
}
h3 {
    margin-bottom: 0.3em;
    font-size: 1.0em;
    font-weight: bold;
    line-height: 1.2em;
    color: #fff;
}
h4 {
    margin-bottom: 0.2em;
    font-size: 1.2em;
    font-weight: bold;
    line-height: 1.2em;
    color: #fff;
}
h5 {
    margin-bottom: 0.1em;
    font-size: 1.1em;
    font-weight: bold;
    line-height: 1.1em;
    color: #fff;
}
h6 {
    margin-bottom: 0.1em;
    font-size: 1em;
    font-weight: bold;
    line-height: 1em;
    color: #000;
}
/* END headings */


/* Lists */
ul {
	margin: 0 0 0.7em 1em;
    list-style: none outside url(http://www.heiko-westermann.de/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: #fff;
    text-decoration: underline;
}
a:visited {
    /* color: #184a84; */
}
a:hover {
    /*text-decoration: underline; */
    color: #fff;
}
/* END links */


/* Misc */
hr {
    display: none;
}
div.hr {
    margin: 1em auto;
    height: 1px;
    background-color: #fff;
    line-height: 1px;
}
/**
 * Forms.
 *
 * @package    themes
 * @subpackage default2
 * @author     Dmitri Lakachauskis <lakiboy83@gmail.com>
 */

/* Fieldset / legend */
fieldset {
    margin-bottom: 0.6em;
    padding: 1.6em 0 0.5em;
    border-top: 1px solid #8a0000;
    background: url(http://www.heiko-westermann.de/themes/default/images/tablebg.gif) no-repeat left top;
    border-bottom: 1px solid #191919;
}
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: #fff;
    }


/* Form elements */
input.text, input.textShort, input.textLong, select, select.short, select.long, textarea, textarea.short, textarea.long {
    border-width: 1px;
    border-style: solid;
    border-color: #7c7c7c #c3c3c3 #ddd #c3c3c3;
    width: 225px;
    padding: 2px;
    background: #fff url(http://www.heiko-westermann.de/themes/default/images/bg/form_input_m.gif) repeat-x left top;
    font-size: 0.9em;
    color: #000;
}
input.text, input.textShort, input.textLong {
    padding-left: 6px;
}
input.textLong {
    width: 460px;
}
input.textShort {
    width: 90px;
}
input[type=file] {
    width: auto;
}
select {
    width: 230px;
}
select.short {
    width: 100px;
}
textarea {
    width: 229px;
    height: 9em;
}
textarea.short {
    width: 94px;
}
textarea.long {
    width: 464px;
}
label {
    color: #fff;
}
.required {
    color: red;
    font-weight: bold;
}
select.day, select.month, select.year {
    width: 76px;
    margin-right: 10px;
}
select.month, select.year {
    width: 77px;
}
/* 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: 120px;
    }
        form fieldset ol li div {
            #display: inline; /* fix MSIE */
            margin-bottom: 0;
        }
        form fieldset ol li label {
            float: left;
            margin-left: -120px;
            width: 100px;
            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 */
            background: url(/navigation2/img/icons/error.gif) no-repeat 0 0;      		           
            padding-top: 1px;
            padding-left: 24px;
            line-height: 1.6em;
            color: red;        
        }

/* 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: #333;
    }
    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: #333;
        }
        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: #666;
        }
/* 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 {
    height: 100%;
}
body {
    height: 100%;
    background: #000;
}

/* Wrappers */
div#wrapper-outer {
    margin: 0 auto 0;
    width: 998px;
    height: 100%;
    background: #000 url(http://www.heiko-westermann.de/themes/default/images/bg.gif) repeat-y top center;       
}
div#wrapper-inner {
    background: #000 url(http://www.heiko-westermann.de/themes/default/images/bg.gif) repeat-y top center;       
    padding: 0 3px 0 3px;
    position: relative;
}

/* Footer */
div#footer {
    color: #fff;
    background: #000 url(http://www.heiko-westermann.de/themes/default/images/bg.gif) repeat-y top center;       
    padding-right: 20px;
}
    div#footer div.wrap-left {
        padding-left: 20px;
    }
    div#footer div.wrap-right {
        padding: 0.8em 0 0.5em;
        text-align: center;
    }
    div#footer p {
        margin-bottom: 0.1em;
        font-size: 0.9em;
        line-height: 1.6em;
        color: #fff;
    }
/* END footer */

div#homePanel1 {
    position: absolute;
    left: 0px;
    top: 151px;
    width: 713px;
    height: 308px;
    background: url(http://www.heiko-westermann.de/themes/default/images/banner_bg.gif) no-repeat top left;       
    
}
div#video-more {
    padding-top: 15px;
    padding-left: 85px;
    font-size: 0.8em;
}
div#video-more a {
    text-decoration: none;
}
div#video-more a:hover {
    text-decoration: underline;
}
div#video {
    position: absolute;
    left: 476px;
    top: 20px;
    width: 212x;
    height: 120px;
    z-index: 2000;
}
div#video .inner {
    padding: 11px;
    z-index: 2001;
}

div#video .inner #video-inner {
    width: 212px;
    height: 120px;
    z-index: 2002;
}

div#video2 {
    width: 212px;
    height: 120px;
}

div#video2 .inner #video-inner2 {
    width: 212px;
    height: 120px;
}
div#home-banner {
    position: absolute;
    left: 0px;
    top: 207px; 
}

/* Content */
div#content {
}

    /* Main */
    div#main {
        background-color: #000;
    }
    div#main .headline {
        padding-bottom: 2px;
        background: url(http://www.heiko-westermann.de/themes/default/images/headlineBg.jpg) no-repeat bottom left;       
    }    
    * html div#main .headline { padding-bottom: 6px; }
    div#main .headline h2 {
        width: 205px;
        font-size: 0.9em;
        text-align: right;
        color: #634635;
    }
    div#main .headline h2 span.seperator {
        font-weight: normal;
        color: #8a0000;   
    }
    div#main .headline h2 span.category {
        font-weight: bold;
        color: #8a0000;   
    }    
    div#main .headline h1 {
        font-size: 0.9em;
        text-align: left;
        color: #634635;
        border: none;
        margin-bottom: 2px;
    }
    div#main .headline h1 span.root {
        width: 200px;
        display: block;
        text-align: right;
        float: left;
    }
    div#main .headline h1 span.seperator {
        font-weight: normal;
        color: #8a0000;   
        padding-left: 5px;
        padding-right: 5px;
    }
    div#main .headline h1 span.category {
        font-weight: bold;
        color: #8a0000;   
    }        
    div#main .leftcol {
        background: url(http://www.heiko-westermann.de/themes/default/images/leftColBg.jpg) no-repeat top left;       
        padding-top: 10px;
        padding-bottom: 30px;
    }
    div#main .leftcol .inner2 {
        padding-top: 64px;
        padding-left: 30px;    
    }
    div#main .leftcol .inner2 h3 {
        color: #8a0000;   
    }    
    div#main .leftcol a {
        font-size: 0.8em;    
        text-decoration: none;
    }
    div#main .leftcol a:hover {
        text-decoration: underline;
    }
    div#main .leftcol .newsItem {
        margin-left: 20px;
        padding-left: 20px;
        margin-top: 10px;
        margin-bottom: 10px;
        background: url(http://www.heiko-westermann.de/themes/default/images/button.gif) no-repeat top left;       
        color: #fff;   
    }
    div#main .leftcol .newsItem .newsDate {
        font-weight: bold;
        color: #faddba;   
    }
    div#main .leftcol .newsItem a {  
        color: #fff;     
        text-decoration: none;    
    }
    div#main .leftcol .newsItem a:hover {  
        color: #8a0000;   
        text-decoration: none;
    }    
    div#main .leftcol .newsItem a.current {  
        color: #8a0000;   
    }
    
    div#main .leftcol .resultItem {    
        position: relative;
        font-size: 2.0em;
        text-align: center;
        color: #8a0000;
        padding-top: 10px;
        padding-bottom: 10px;
        background: url(http://www.heiko-westermann.de/themes/default/images/resultSeperator.gif) no-repeat bottom center;       
    }
    div#main .leftcol .resultNames {    
        font-size: 0.4em;
        color: #fff;
        padding-top: 2px;
    }
    div#main .leftcol .resultNames .name1 {    
        width: 95px;
        text-align: right;
        float: left;
    }
    div#main .leftcol .resultNames .nameSeperator {    
        width: 15px;
        float: left;
        text-align: center;
    }    
    div#main .leftcol .resultNames .name2 {    
        width: 95px;
        float: left;    
        text-align: left;    
    }    
    div#main .centercol {
        float: left;
        width: 410px;
    }
    div#main .homecentercol {
        width: 280px;
    }    
    div#main .centercol .inner {
        line-height: 1.4em;
    }
    div#main .centercol .inner2 {
        padding: 20px;
        line-height: 1.4em;
    }    
    div#main .centercol .nextLink {
        text-decoration: none;
        color: #faddba;  
        background: url(http://www.heiko-westermann.de/themes/default/images/button.gif) no-repeat top right;       
        padding-right: 20px;
    }
    div#main .centercol .nextLink2 {
        text-decoration: none;
        color: #faddba;  
        padding-right: 22px;
    }    
    div#main .introHead, div#main h3 {
        color: #930000;   
        font-weight: bold;
        margin-bottom: 10px;
    }
    div#main .introFoot {
        color: #930000;
        font-weight: bold;   
    }
    div#main .tabContent {
        padding: 0 !important;
        padding-top: 1px !important;
        color: #ead2b1;        
    }
    div#main .tabContentItem {
        background: url(http://www.heiko-westermann.de/themes/default/images/tablebg.gif) no-repeat top left;       
        padding: 0 !important;
        margin-bottom: 5px;        
    }
    div#main .tabContentItem .tabContentHead {
        background: url(http://www.heiko-westermann.de/themes/default/images/bullets/default.gif) no-repeat center left;       
        padding: 5px 10px 5px 10px;
        margin-left: 10px;
        color: #ead2b1;     
    }
    div#main .tabContentItem .tabContentHead a {
        color: #ead2b1;     
        text-decoration: none;
    }
    div#main .tabContentItem .tabContentText {
        color: #fff;
        padding: 10px !important;
        border-bottom: 1px solid #191919;
    }
    div#main .tabContentItem .tabContentText a {
        color: #fff;     
        text-decoration: none;
    }    
    div#main #galleryImage {
        width: 500px;
        height: 350px;
        text-align: center;
        position: relative;
    }
    div#main #galleryZoom {
        display: block;
        width: 50px;
        height: 50px;
        background: url(http://www.heiko-westermann.de/themes/default/images/zoom.gif) no-repeat bottom right;       
        position: absolute;
        bottom: 5px;
        right: 0;
    }
    div#main #galleryImage .inner {
        height: 345px;
        background: #aca7ab;
    }
    div#main .galleryImage {
        float: left;
        margin-right: 15px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    div#main .galleryImage .inner {
        width: 90px;
        height: 62px;
        position: relative;
        background: #aca7ab;
        text-align: center;
    }    
    div#main #galleryTitle {    
        background: url(http://www.heiko-westermann.de/themes/default/images/bullets/default.gif) no-repeat center left;       
        padding: 5px 10px 5px 10px;
        margin-left: 10px;
        color: #ead2b1;         
        font-weight: bold;
    }

    div#main #galleryThumbs {
        position: relative; /*leave this value alone*/
        overflow: hidden; /*leave this value alone*/
        width: 500px; /*Width of Carousel Viewer itself*/
        height: 80px; /*Height should enough to fit largest content's height*/
    }
    
    div#main #galleryThumbs .belt {
        position: absolute; /*leave this value alone*/
        left: 0;
        top: 0;
    }
    
    div#main #galleryThumbs a.thumb {
        display: block;
        float: left; /*leave this value alone*/
        overflow: hidden; /*clip content that go outside dimensions of holding panel DIV*/
        margin-top: 5px;
        margin-right: 10px; /*margin around each panel*/
        width: 90px; /*Width of each panel holding each content. If removed, widths should be individually defined on each content DIV then. */
        height: 62px;
        cursor: pointer;
        border: 1px solid #000;
        text-align: center;
        background: #aca7ab;
    }    
    div#main #galleryThumbs a.thumb:hover {
        border: 1px solid #ead2b1;
    }
    div#main #galleryThumbs a.thumb_current {
        border: 1px solid #930000 !important;
    }
    div#main #galleryPager {
        width: 500px; 
        text-align: right;
    }
    div#main #galleryPager a {
        font-weight: bold;
    }
    div#main #galleryPager .currentPage {
        color: #930000;
    }
    
    div#main .wallpaper {
        line-height: 1.6em;
    }
    div#main .wallpaper a:hover {
        text-decoration: underline;
    }
    
    div.homeThumb {
        float: left; /*leave this value alone*/
        margin-right: 15px;
        margin-bottom: 15px;
    }
    div.homeThumb .inner {
        width: 90px; /*Width of each panel holding each content. If removed, widths should be individually defined on each content DIV then. */
        height: 62px;
        text-align: center;
        background: #aca7ab;
    }

    div#staticArticle {
        padding: 20px;
    }
    div.questionList .inner {
        padding-bottom: 0px !important;
    }
    div.questionList .inner #staticArticle {
        padding-bottom: 0px !important;
    }    
    div.questionList p.questions {
        background: url(http://www.heiko-westermann.de/themes/default/images/bullets/default.gif) no-repeat center left;       
        padding-left: 10px;    
        color: #faddba;   
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
        font-weight: bold;
    }
    div.questionList p.answers {    
        padding-left: 10px;  
        margin-top: 0 !important;
        margin-bottom: 20px;     
    }
    div.pager {
        font-size: 1.2em;    
    }
    div.pager a {
        padding-left: 5px;
        padding-right: 5px;
        text-decoration: underline !important;
    }
    div.pager .currentPage {
        color: #8a0000;   
        font-size: 0.8em;    
        font-weight: bold;
        padding-left: 5px;
        padding-right: 5px;        
        text-decoration: underline !important;
    }
    
    /* Sub */
    div#sub {
        padding: 0;
        background-color: #000;
    }
        div#sub div.inner {
        }

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

/* Left/right blocks */
div.block {
    position: relative;
    margin-bottom: 1.5em;
}
    div.block h2 {
        margin: 0 10px 8px;
        border-bottom: 1px solid #09c;
        padding-bottom: 0.4em;
        font-size: 1.1em;
        color: #09c;
    }
    div.block div.content {
        padding: 0.4em 10px;
        font-size: 0.9em;
    }
/* END left/right blocks */

#lightbox{
	position: absolute;
	left: 0;
	width: 100%;
	z-index: 100;
	text-align: center;
	line-height: 0;
	}

#lightbox a img{ border: none; }

#outerImageContainer{
	position: relative;
	background-color: #fff;
	width: 250px;
	height: 250px;
	margin: 0 auto;
	}

#imageContainer{
	padding: 10px;
	}

#loading{
	position: absolute;
	top: 40%;
	left: 0%;
	height: 25%;
	width: 100%;
	text-align: center;
	line-height: 0;
	}
#hoverNav{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 10;
	}
#imageContainer>#hoverNav{ left: 0;}
#hoverNav a{ outline: none;}

#prevLink, #nextLink{
	width: 49%;
	height: 100%;
	background: transparent url(http://www.heiko-westermann.de/themes/default/images/blank.gif) no-repeat; /* Trick IE into showing hover */
	display: block;
	}
#prevLink { left: 0; float: left;}
#nextLink { right: 0; float: right;}
#prevLink:hover, #prevLink:visited:hover { background: url(http://www.heiko-westermann.de/themes/default/images/prev.gif) left 50% no-repeat; }
#nextLink:hover, #nextLink:visited:hover { background: url(http://www.heiko-westermann.de/themes/default/images/next.gif) right 50% no-repeat; }

/*** START : next / previous text links ***/
#nextLinkText, #prevLinkText{
color: #FF9834;
font-weight:bold;
text-decoration: none;
}
#nextLinkText{
padding-left: 20px;
}
#prevLinkText{
padding-right: 20px;
}
#imageDetails {
    font-size: 1.2em;
}
#imageDetails span {
    color: #000;
}

/*** END : next / previous text links ***/
/*** START : added padding when navbar is on top ***/

.ontop #imageData {
    padding-top: 5px;
}

/*** END : added padding when navbar is on top ***/

#imageDataContainer{
	font: 10px Verdana, Helvetica, sans-serif;
	background-color: #fff;
	margin: 0 auto;
	line-height: 1.4em;
	}

#imageData{
	padding:0 10px;
	}
#imageData #imageDetails{ width: 70%; float: left; text-align: left; }	
#imageData #caption{ font-weight: bold;	}
#imageData #numberDisplay{ display: block; clear: left; padding-bottom: 1.0em;	}
#imageData #bottomNavClose{ width: 66px; float: right;  padding-bottom: 0.7em;	}
#imageData #helpDisplay {clear: left; float: left; display: block; }

#overlay{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 90;
	width: 100%;
	height: 500px;
	background-color: #000;
	filter:alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
	display: none;
	}
/**
 * Blocks.
 *
 * @package    themes
 * @subpackage default2
 * @author     Dmitri Lakachauskis <lakiboy83@gmail.com>
 */

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


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


/* Breadcrumbs */
#breadcrumbs {
    margin: 0;
    float: left;
}
    #breadcrumbs a {
        font-weight: bold;
        color: #66A326;
    }
    
#blocksAdminPanel {
    position: relative;
    z-index: 5000; 
    background: #eef7d4;
    color: #fff;
    font-weight: bold;
    border-top: 2px solid #66a326;
    border-bottom: 2px solid #66a326;
    border-right: 2px solid #66a326;   
    margin-bottom: 0.6em;
}

    #blocksAdminPanel .inner {
        padding: 0;
        margin: 0;
    }
    
    #blocksAdminPanel a {
        color: #66a326;
        font-weight: bold;
    }
    
    #blocksAdminPanel a:hover, #blocksAdminPanel li.current > a, #blocksAdminPanel li.current_child > a {
        color: #fff;
        background: #66a326;
        text-decoration: none;
    }
    
    #blocksAdminPanel ul {
        list-style: none;
        list-style-image: none;
        width: 10em;    
        padding: 0;
        margin: 0;
    }
    
    #blocksAdminPanel ul li {
        padding: 0;
        margin: 0;
    }
    
    #blocksAdminPanel ul li a {
        display: block;
        padding: 0.2em;
        padding-left: 0.6em;
        border-left: 2px solid #66a326;
        border-right: 2px solid #66a326;   
    }
    
    #blocksAdminPanel ul li a:hover, #blocksAdminPanel ul li.current > a, #blocksAdminPanel ul li.current_child > a {
        color: #fff;
        background: #66a326;
    }
    
    #blocksAdminPanel ul ul {
        position: absolute;
        display: none;
        width: 11em;
        background: #eef7d4;
        border: 2px solid #66a326;
        border-bottom: none;
        margin: 0;
        padding: 0;
    }
    
    #blocksAdminPanel ul ul a {
        border-left: none;
        border-right: none;  
    }
        
    #blocksAdminPanel ul li:hover ul {
        display: block;
    }
    
    #blocksAdminPanel ul li:hover ul ul {
    		display: none;
    }
    #blocksAdminPanel ul ul {
        border-bottom: 2px solid #66a326;
    }
    #blocksAdminPanel ul ul ul {
        position: absolute;
        display: none;
        z-index: 10;
    		left: 120px;
    		top: 5px;		   
    }
    
    #blocksAdminPanel ul ul li:hover ul {
        display: block;
    }
/**
 * 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;
}
/**
 * - navigation bar at the top
 * - 1 column (main)
 *
 * @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 */
div#nav-main {
    height: 128px;
    background: #000 url(http://www.heiko-westermann.de/themes/default/images/bgNaviTop.jpg) no-repeat top left;    
}
    div#nav-main div.inner {
        padding-top: 12px;
        text-align: center;
    }
    div#nav-main ul {
        margin: 0;
        list-style: none;
        line-height: 1em;
        position: relative;
    }
        div#nav-main ul li {
            margin: 0;
            float: left;
        }
            div#nav-main ul li.level0 a {
                display: block;
                width: 165px;
                height: 57px;
                text-align: left;
                font-size: 1.3em;
                font-weight: normal;               
                color: #fff;
                text-decoration: none;
                background: url(http://www.heiko-westermann.de/themes/default/images/naviTopSeperator.gif) no-repeat top left;    
            }
            div#nav-main ul li.first a {
                background: none;    
            }
            div#nav-main ul li.level0 a:hover, div#nav-main ul li.current a, div#nav-main ul li.current_child a {
                background: url(http://www.heiko-westermann.de/themes/default/images/naviTopBgHover.jpg) repeat-y top left;       
                text-decoration: none;
            }
            div#nav-main ul li.current a, div#nav-main ul li.current_child a, div#nav-main ul li.current a:hover, div#nav-main ul li.current_child a:hover {
                background: url(http://www.heiko-westermann.de/themes/default/images/naviTopBgActive.jpg) repeat-y top left;       
                text-decoration: none;
            }
            div#nav-main ul li.level1 a, div#nav-main ul li.level1 a, div#nav-main ul li.level1 a:hover, div#nav-main ul li.level1 a:hover {
                background: none;
                text-decoration: underline;
            }
            div#nav-main ul li.last a {
                width: 167px;
            }
            div#nav-main ul li.level1 a {
                width: auto;
            }
            div#nav-main ul li.level0 a span { 
                display: block;    
                padding-top: 10px;       
                padding-left: 12px;

            }
            div#nav-main ul li.level0 a span.subtext {
                display: block;    
                margin: 0px;       
                padding-top: 4px;       
                padding-left: 18px;
                padding-right: 8px;
                font-size: 0.6em;
                font-family: Arial;
                background: none;
            }
            div#nav-main ul li.level0 a span.prefix {
                display: inline;
                margin: 0;
                padding: 0;
                padding-left: 0px;
                background: url(http://www.heiko-westermann.de/themes/default/images/naviTopPrefix.gif) no-repeat bottom left;    
            }
            div#nav-main ul li.level0 a span.newText {
                display: inline;
                background: none;
                margin: 0px;       
                padding: 0px;       
            }
            div#nav-main ul li ul {
                position: absolute;
                top: 52px;
                left: 0;
                width: 600px;
                z-index: 999;
            }
            div#nav-main ul li ul.parent20 {
                left: 165px;
                width: 600px;
            }
            div#nav-main ul li ul.parent22 {
                left: 495px;
                width: 400px;
            }            
            div#nav-main ul li ul.parent25 {
                width: 992px;
            }            
            div#nav-main ul li ul.parent25 li {
                float: right;
            }
            
            div#nav-main ul li.level1 {
                padding-right: 10px;
            }
            div#nav-main ul li.level1 a {
                font-size: 0.9em;
                text-decoration: none;
                color: #ead2b1;                
            }
            div#nav-main ul li.level1 a:hover {
                text-decoration: underline;
                color: #fff;
            }
            div#nav-main ul li.level1 a.current {
                color: #fff;
                text-decoration: underline;

            }
            div#nav-main ul li.level1 a span.prefix {
                display: none;
            }
            div#nav-main ul li.level1 a span.subtext {
                display: none;
            }            
/* END main navigation */


/* Toolbar */
div#nav-main div#toolbar {
    margin-bottom: 2px;
    padding: 5px;
    height: 1.1em;
    font-size: 0.8em;
}
/* END toolbar */
div#content {
    position: relative;
    width: 992px;

    /* padding needed for navigation */
    padding-top: 128px;
}
div#main {
    float: left;
    width: 617px;
    display: inline;
    
    margin-right: -371px;
}
    div#main .leftcol {
        float: left;
        width: 205px;
    }
    div#main .leftcol .bottomEffect {
        width: 205px;
        height: 371px;
        background: #000 url(http://www.heiko-westermann.de/themes/default/images/leftColEffect.jpg) no-repeat top left;       
    
    }
div#sub {
    float: right;
    width: 371px;
    display: inline;
}
div#local {
    display: none;
}
div#nav-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 992px;
}/* Caution! Ensure accessibility in print and other media types... */
@media projection, screen { /* Use class for showing/hiding tab content, so that visibility can be better controlled in different media types... */
    .ui-tabs-hide {
        display: none;
    }
}

/* Hide useless elements in print layouts... */
@media print {
    .ui-tabs-nav {
        display: none;
    }
}

/* Skin */
.ui-tabs-nav, .ui-tabs-panel {
    font-family: Verdana, Helvetica, Arial, sans-serif;
    font-size: 13px;
}
.ui-tabs-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}
.ui-tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
.ui-tabs-nav li {
    float: left;
    margin: 0 2px 0 0px;
    min-width: 84px; /* be nice to Opera */
}
.ui-tabs-nav a, .ui-tabs-nav a span {
    display: block;
    padding: 0 1.2em;
    background: url(/navigation2/img/tabs.gif) no-repeat 0 0;
}
.ui-tabs-nav a {
    margin: 1px 0 0; /* position: relative makes opacity fail for disabled tab in IE */
    padding-left: 0;
    color: #3e3e3e;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    white-space: nowrap; /* required in IE 6 */    
    outline: 0; /* prevent dotted border in Firefox */
}
.ui-tabs-nav .ui-tabs-selected a {
    position: relative;
    top: 1px;
    z-index: 2;
    margin-top: 0;
    color: #9e1c00;
}
.ui-tabs-nav a span {
    width: 64px; /* IE 6 treats width as min-width */
    min-width: 64px;
    height: 18px; /* IE 6 treats height as min-height */
    min-height: 18px;
    padding-top: 6px;
    padding-right: 0;
}
*>.ui-tabs-nav a span { /* hide from IE 6 */
    width: auto;
    height: auto;
}
.ui-tabs-nav .ui-tabs-selected a span {
    padding-bottom: 1px;
}
.ui-tabs-nav a:hover {
    background-position: 100% -150px;
    color: #000;
}
.ui-tabs-nav .ui-tabs-selected a:hover {
    color: #9e1c00;
}
.ui-tabs-nav .ui-tabs-selected a, .ui-tabs-nav .ui-tabs-selected a:hover, .ui-tabs-nav a:focus, .ui-tabs-nav a:active {
    background-position: 100% -250px;
}
.ui-tabs-nav a, .ui-tabs-nav .ui-tabs-disabled a:hover, .ui-tabs-nav .ui-tabs-disabled a:focus, .ui-tabs-nav .ui-tabs-disabled a:active {
    background-position: 100% -50px;
}
.ui-tabs-nav a:hover span {
    background-position: 0 -100px;
}
.ui-tabs-nav .ui-tabs-selected a span, .ui-tabs-nav .ui-tabs-selected a:hover span, .ui-tabs-nav a:focus span, .ui-tabs-nav a:active span {
    background-position: 0 -200px;
}
.ui-tabs-nav a span, .ui-tabs-nav .ui-tabs-disabled a:hover span, .ui-tabs-nav .ui-tabs-disabled a:focus span, .ui-tabs-nav .ui-tabs-disabled a:active span {
    background-position: 0 0;
}
.ui-tabs-nav .ui-tabs-selected a:link, .ui-tabs-nav .ui-tabs-selected a:visited, .ui-tabs-nav .ui-tabs-disabled a:link, .ui-tabs-nav .ui-tabs-disabled a:visited { /* @ Opera, use pseudo classes otherwise it confuses cursor... */
}
.ui-tabs-nav a:hover, .ui-tabs-nav a:focus, .ui-tabs-nav a:active,
.ui-tabs-nav .ui-tabs-unselect a:hover, .ui-tabs-nav .ui-tabs-unselect a:focus, .ui-tabs-nav .ui-tabs-unselect a:active { /* @ Opera, we need to be explicit again here now... */
    cursor: pointer;
}
.ui-tabs-disabled {
    opacity: .4;
    filter: alpha(opacity=40);
}
.ui-tabs-panel {
    border-top: 1px solid #2e0000;
    padding: 1.2em 0 0 0 !important;
    /*background: #fff; /* declare background color for container to avoid distorted fonts in IE while fading */
}
.ui-tabs-loading em {
    padding: 0 0 0 20px;
    background: url(/navigation2/img/loading.gif) no-repeat 0 50%;
}

/* Additional IE specific bug fixes... */
* html .ui-tabs-nav { /* auto clear, @ IE 6 & IE 7 Quirks Mode */
    display: inline-block;
}
*:first-child+html .ui-tabs-nav  { /* @ IE 7 Standards Mode - do not group selectors, otherwise IE 6 will ignore complete rule (because of the unknown + combinator)... */
    display: inline-block;
}

button {
    padding: 0;
    margin: 0 2px 0 0;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
    overflow: visible;
    font-size: 13px;
    font-weight: bold;
}
@media all and (min-width: 0px){ button { margin-right: 8px; } }

button div {
    margin: 0;
    padding: 0;
    padding-left: 8px;
}
button div p {
    margin: 0;
    color: #fff;
    white-space: nowrap;
    padding: 4px 12px 5px 3px;
    line-height: 13px;    
}
button div, button div p {
    background: url(/navigation2/img/buttons.gif) no-repeat 0 0;      		
    position: relative;
    display: block !important;
}
button div p {
    right: -2px;
    padding-left: 2px;
    background-position: 100% -31px;
}
button:hover div {
    background-position: 0 -62px;      		
}
button:hover div p {
    background-position: 100% -93px;      		
}
button.grey div, button.cancel div {
    background-position: 0 -124px;  
}
button.grey div p, button.cancel div p {
    background-position: 100% -155px;      		
    color: #fff;    		
}
button.grey:hover div, button.cancel:hover div {
    background-position: 0 -186px;      		
}
button.grey:hover div p, button.cancel:hover div p {
    background-position: 100% -217px;      		
}
button.disabled,button.disabled div {
    opacity: .4;
    filter: alpha(opacity=40);
}.ac_results {
	padding: 0px;
	border: 1px solid black;
	background-color: white;
	overflow: hidden;
	z-index: 99999;
}

.ac_results ul {
	width: 100%;
	list-style-image: none;
	list-style-position: outside;
	list-style: none;
	padding: 0;
	margin: 0;
}

.ac_results li {
	margin: 0px;
	padding: 2px 0.6em;
	cursor: default;
	display: block;
	/* 
	if width will be 100% horizontal scrollbar will apear 
	when scroll mode will be used
	*/
	/*width: 100%;*/
	font-size: 12px;
	/* 
	it is very important, if line-height not setted or setted 
	in relative units scroll will be broken in firefox
	*/
	line-height: 16px;
	overflow: hidden;
}

.ac_loading {
	background: white url('/navigation2/img/loading.gif') right center no-repeat;
}

.ac_odd {
	background-color: #f2f2f2;
}

.ac_over {
  cursor: pointer !important;
	color: #000 !important;
	background: #f6fce5 !important;	
}
form.formUpload {
    position: absolute;
    top: -10000px;
    left: -10000px;
}
div.formUploadStatus {
    width: 280px;
    margin-top: 8px;
    border: 1px solid #66A326;
    background-color: #fff;
}
div.formUploadStatus .percent {
    display: block;
    background-color: #66A326;
    width: 100%;
    height: 5px;
    line-height: 5px;
}
iframe.formUploadTarget {
    position: absolute;
    top: -10000px;
    left: -10000px;
}
span.formUploadIndicator {
    float: left;
    display: block;
    width: 13px;
    height: 13px;
    margin-left: 5px;
    background: url(/navigation2/img/loading.gif) no-repeat 0 50%;
}
span.formUploadNameWrapper {
    line-height: 1.4em;
}
span.formUploadName {
    float: left;
}
a.formUploadRemove {
    float: left;
    display: block;
    width: 15px;
    height: 15px;
    margin-left: 5px;
    background: url(/navigation2/img/icons/delete.gif) no-repeat 0 0;
}
a.formUploadRemove:hover {
    background-position: 0 -16px;
}#editableModalOverlay {
    background-color: #ddd;
    cursor: wait;
}
#editableModalContainer {
    top: 15%;
    left: 50%;
    width: 600px;
    margin-left: -300px;
}
span.editToolbar {
    position: relative;
}
div > span.editToolbar {
    position: absolute;
    top: 18px;
    right: 32px;
}
tr td div span.editToolbar {
    position: absolute;
    z-index: 5000;
    top: 110%;
    right: 0;
}
* html tr td div span.editToolbar { top: 20%; }
*:first-child+html tr td div span.editToolbar { top: 20%; }
@media all and (min-width: 0px){ tr td div span.editToolbar { top: 20%; } }
span.editToolbar ul {
    margin: 0;
    padding: 0;
    padding-right: 20px;
    list-style: none;
    list-style-image: none;
    margin-top: -18px !important;
}
span.editToolbar ul li {
    float: left;
    margin: 0;
    padding: 0;
}
span.editToolbar ul li a {
    display: block;
    width: 32px !important;
    height: 32px !important;
    padding: 0 !important;
    border: none !important;
    margin: 0;
}
span.editToolbar ul li a ul {
    display: none;
    position: absolute;
    width: 116px !important;
}
* html span.editToolbar ul li a ul {
    width: auto;
}
*:first-child+html span.editToolbar ul li a ul {
    width: auto;
}
span.editToolbar ul li a:hover ul {
    display: block;
}
span.editToolbar div {
    position: relative;
    display: inline;
    width: 1px;
    height: 1px;
}
@media all and (min-width: 0px){ span.editToolbar div { position: absolute; } }
span.editToolbar div div {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5001;
    display: block;
}
span.editToolbar .inner1 {
    width: 52px;
    margin-right: -52px;
}
span.editToolbar .inner2 {
    width: 84px;
    margin-right: -84px;
}
span.editToolbar .inner3 {
    width: 116px;
    margin-right: -116px;
}
span.editToolbar .inner4 {
    width: 148px;
    margin-right: -148px;
}
span.editToolbar .inner5 {
    width: 180px;
    margin-right: -180px;
}
span.editToolbar .inner6 {
    width: 212px;
    margin-right: -212px;
}
span.editToolbar .inner7 {
    width: 244px;
    margin-right: -244px;
}
span.editToolbar .inner8 {
    width: 276px;
    margin-right: -276px;
}
span.editToolbar .inner9 {
    width: 308px;
    margin-right: -308px;
}
span.editToolbar ul li a {
    background: url(/navigation2/img/editables.gif) no-repeat 0 0;
}
span.editToolbar ul li a.edit {
    background-position: 0 0;
}
span.editToolbar ul li a.edit:hover {
    background-position: 0 -32px;
}
span.editToolbar ul li a.delete {
    background-position: -32px 0;
}
span.editToolbar ul li a.delete:hover {
    background-position: -32px -32px;
}
span.editToolbar ul li a.moveUp {
    background-position: 0 -96px;
}
span.editToolbar ul li a.moveUp:hover {
    background-position: 0 -64px;
}
span.editToolbar ul li a.moveDown {
    background-position: -32px -64px;
}
span.editToolbar ul li a.moveDown:hover {
    background-position: -32px -96px;
}
span.editToolbar ul li a.moveLeft {
    background-position: -64px -64px;
}
span.editToolbar ul li a.moveLeft:hover {
    background-position: -64px -96px;
}
span.editToolbar ul li a.moveRight {
    background-position: -96px -64px;
}
span.editToolbar ul li a.moveRight:hover {
    background-position: -96px -96px;
}
span.editToolbar ul li a.cut {
    background-position: 0 -128px;
}
span.editToolbar ul li a.cut:hover {
    background-position: 0 -160px;
}
span.editToolbar ul li a.copy {
    background-position: -32px -128px;
}
span.editToolbar ul li a.copy:hover {
    background-position: -32px -160px;
}
span.editToolbar ul li a.insert {
    background-position: -64px -128px;
}
span.editToolbar ul li a.insert:hover {
    background-position: -64px -160px;
}
span.editToolbar ul li a.insertChild {
    background-position: 0 -224px;
}
span.editToolbar ul li a.insertChild:hover {
    background-position: 0 -256px;
}
span.editToolbar ul li a.insertBefore {
    background-position: -32px -224px;
}
span.editToolbar ul li a.insertBefore:hover {
    background-position: -32px -256px;
}
span.editToolbar ul li a.insertAfter {
    background-position: -64px -224px;
}
span.editToolbar ul li a.insertAfter:hover {
    background-position: -64px -256px;
}
span.editToolbar ul li a.new {
    background-position: -96px -128px;
}
span.editToolbar ul li a.new:hover {
    background-position: -96px -160px;
}
span.editToolbar ul li a.newChild {
    background-position: 0 -224px;
}
span.editToolbar ul li a.newChild:hover {
    background-position: 0 -256px;
}
span.editToolbar ul li a.newBefore {
    background-position: -32px -224px;
}
span.editToolbar ul li a.newBefore:hover {
    background-position: -32px -256px;
}
span.editToolbar ul li a.newAfter {
    background-position: -64px -224px;
}
span.editToolbar ul li a.newAfter:hover {
    background-position: -64px -256px;
}
tr.editableTarget td {
    margin: 0 !important;
    padding: 5px !important;
    border-left: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
}
.editDialog {
    position: relative;
    margin: 0.1em 0 0.1em 0;
    padding: 0;
}
.editDialog .headline, .editDialog .headline h2 {
    background: url(/navigation2/img/headlines.gif) no-repeat 0 0;
    min-height: 1px; 
}
.editDialog .headline {
    background-position: 100% -101px;
}
.editDialog .headline h2 {
    position: relative;
    margin: 0 0.7em 0 0;
    padding: 0.4em 0 0.4em 0.7em;
    background-position: 0 0;
    font-size: 1.1em;
    color: #000;
}
.editDialog .headline h2 a.close {
    position: absolute;
    top: 0.5em;
    right: 0;
    display: block;
    width: 15px;
    height: 15px;
    background: url(/navigation2/img/icons/close.gif) no-repeat 0 0;
}
.editDialog .headline h2 a.close:hover {
    background-position: 0 -15px;
}
.editDialog .content {
    background: #000;
    border: 1px solid #f2f2f2;
}
.editDialog .content .inner {
    padding: 1.2em 0.7em 3em 0.7em;
}
.editDialog fieldset {
    border: none !important;
    background: none !important;
    padding: 0;
}
.editDialog label {
    line-height: 1.4em;
    font-weight: bold;
    cursor: pointer;
}
.editDialog .required {
    padding-right: 4px;
    font-weight: bold;
    color: red;
}
.editDialog .error .msg {
    background: url(/navigation2/img/icons/error.gif) no-repeat 0 0;
    padding-top: 1px;
    padding-left: 24px;
    line-height: 1.4em;
    color: red;
}
.editDialog .error label {
    color: red;
}
.editDialog div.buttons {
    position: absolute;
    padding-left: 0.6em;
    bottom: 0;
    left: 0;
}
.editDialog div.buttons button, .editDialog div.buttons .changeTracker {
    float: left;
}
* html .editDialog div.buttons button { margin-right: 0.6em; }
*:first-child+html .editDialog div.buttons button { margin-right: 0.6em; }
.editDialogLight {
    position: relative;
    margin: 0;
    margin-bottom: 0.6em;
    padding: 0;
}
.editDialogLight .inner {
    margin: 0 !important;
    padding: 0 !important;
}
.editDialogLight form, .editDialogLight fieldset {
    margin: 0 !important;
    padding: 0 !important;
    border: none;
}
.editDialogLight label {
    line-height: 1.4em;
    font-weight: bold;
    cursor: pointer;
}
.editDialogLight .required {
    padding-right: 4px;
    font-weight: bold;
    color: red;
}
.editDialogLight .error .msg {
    background: url(/navigation2/img/icons/error.gif) no-repeat 0 0;
    padding-top: 1px;
    padding-left: 24px;
    line-height: 1.4em;
    color: red;
}
.editDialogLight .error label {
    color: red;
}
.editDialogLight span {
    float: left;
    padding-bottom: 5px;
}
.editDialogLight span.buttons {
    position: relative;
    height: 32px;
    top: -10px;
    padding: 0;
}
.editDialogLight input.text, input.textShort, select, textarea {
    margin-right: 10px;
}
button.submitShort, button.cancelShort {
    width: 32px;
    height: 32px;
    background: url(/navigation2/img/editables.gif) no-repeat 0 0;
}
button.submitShort {
    background-position: -64px 0;
}
button.submitShort:hover {
    background-position: -64px -32px;
}
button.cancelShort {
    background-position: -96px 0;
}
button.cancelShort:hover {
    background-position: -96px -32px;
}
