/**
  Theme Name: Inproma Nackedei
  Theme URI: http://inproma.de
  Version: 1.0
  Author: Matthias Wehrlein, Inproma GmbH
  Author URI: http://inproma.de
  Tags: blank-slate, naked, blank, valid XHTML, valid CSS, one column, 1 column, sidebar

  Description: A theme created with developers in mind which should enable rapid WP reskinning. The CSS is minimal but consistent cross-browser, there are a couple of SEO tweaks and the page navigation works sensibly but can modified easily.

  The CSS that follows is what I feel is the bare minimum of styling for a two column, fixed width and centred layout that should be
  consistent in 'modern browsers'
*/

* { border: none; margin: 0; padding: 0; }

html
{

}

.clearfix:after
{
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}
* html .clearfix             { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */


body
{
    font: 12px/1.7 Heltica, Arial, sans-serif;
}

#page
{
    background: #F3EEDC;
    margin: 90px auto 0 auto;
    position: relative;
    width: 960px;
}

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

#page-home #header
{
    height: 195px;
}

#home-link
{
    background: url(img/logo-small-almuthorn.png) no-repeat;
    display: block;
    height: 62px;
    left: 48px;
    position: absolute;
    text-indent: -999em;
    top: 35px;
    width: 383px;
}

#page-home #home-link
{
    background: url(img/logo-big-almuthorn.png) no-repeat;
    top: 50px;
}



#navigation
{
    background: #FFF;
    bottom: 0;
    height: 40px;
    font-size: 12px;
    left: 45px;
    list-style: none;
    padding: 0 0 0 17px;
    position: absolute;
    width: 643px;
    z-index: 20;
}

#navigation li.level-1
{
    float: left;
    height: 40px;
    line-height: 41px;
    margin: 0 50px 0 0;
    text-transform: lowercase;
    zoom: 1;
}

#navigation li.level-1.last
{
    margin-left: 0;
}

#navigation li.level-1 a
{
    color: #897C78;
    display: block;
    text-decoration: none;
}

#navigation li.level-1.current a,
#navigation li.level-1 a:hover
{
    color: #814155;
}

#navigation li.level-1 ul.level-2 /* second-level lists */
{
    background: #B38D9A;
    color: #FFF;
    left: -999em;
    list-style: disc;
    padding: 7px 0 7px 17px;
	position: absolute;
	width: 170px;
}

#navigation li.level-1:hover ul.level-2,
#navigation li.level-1.sfhover ul.level-2 /* lists nested under hovered list items */
{
	left: auto;
}

#navigation li.level-2
{
    line-height: 1.5;
    text-transform: none;
    zoom: 1;
}

#navigation li.level-2 a
{
    color: #FFF !important;
	line-height: 1.2;
}

#navigation li.level-2.current a,
#navigation li.level-2 a:hover
{
    color: #814155 !important;
}

#navigation li.level-1 ul.level-3
{
	margin-left: 17px;
}




#sidebar
{
    background: url(img/sidebar-bg-test.jpg) left bottom;
    border-bottom: 1px solid #FFF;
    border-left: 1px solid #FFF;
    border-top: 1px solid #FFF;
    height: 383px;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 115px;
    width:254px;
}

.sidebar-image
{
    left: 0;
    position: absolute;
    top: 0;
    z-index: 100;
}

#sidebar-content
{
    height: 353px;
    left: 20px;
    position: absolute;
    top: 15px;
    width: 214px;
    z-index: 200;
}

#page-home #sidebar
{
    background: url(img/home-sidebar-bg-test.jpg) left bottom;
    height: 498px;
    top: 0;
}

#sidebar-appointment-list
{
    font-size: 12px;
    list-style: none;
}

#sidebar-appointment-list li
{
    border-bottom: 1px solid #DDD;
    margin: 0 0 10px 0;
    padding: 0 15px 8px 0;
}

#sidebar-appointment-list li.closed
{
    background: url(img/disc-arrow-left.png) no-repeat right top;
}

#sidebar-appointment-list li.open
{
    background: url(img/disc-arrow-down.png) no-repeat right top;
}

#sidebar-appointment-list li h2
{
    color: #814155;
    display: block;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.2;
    padding: 3px 15px 0 0;
    text-decoration: none;
}

#sidebar-appointment-list li a.title:hover
{
    color: #000;
}

#sidebar-appointment-list li a.more-link
{
    color: #814155;
    text-decoration: none;
}

#sidebar-appointment-list li a.title span.post-meta
{
    color: #AAA;
    display: block;
    font-size: 11px;
    font-weight: normal;
}

#sidebar-appointment-list li a.title:hover span.post-meta
{
    color: #000;
}

#sidebar-appointment-list li .excerpt
{
    line-height: 1.3;
    padding: 5px 0 0 0;
}

#scroll-up-arrow,
#scroll-down-arrow
{
    background-repeat: no-repeat;
    cursor: pointer;
    display: block;
    height: 20px;
    position: absolute;
    width: 21px;
}

#scroll-up-arrow
{
    background-image: url(img/scroll-up-arrow.png);
}

#scroll-down-arrow
{
    background-image: url(img/scroll-down-arrow.png);
}

#content
{
    background: #FAF7EE;
    border-left: 1px solid #FFF;
    color: #707173;
    font-size: 12px;
    overflow: auto;
    margin-left: 45px;
    padding: 35px 80px 17px 80px;
    width: 499px;

    /* Props to http://www.dustindiaz.com/min-height-fast-hack/ */
    min-height: 293px;
    height: auto !important;
    height: 293px;
}

#page-home #content
{
    /* Props to http://www.dustindiaz.com/min-height-fast-hack/ */
    min-height: 253px;
    height: auto !important;
    height: 253px;
}

#footer
{
    /*background: #814155 url(img/stoerer.png) no-repeat 225px 0;*/
    background: #814155;
    clear: both;
    color: #FFF;
    height: 40px;
    padding: 30px 20px;
    text-align: center;
    width: 920px;
}

#footer p
{
    margin: 0 0 5px 0;
    line-height: 1.3;
}

#footer a
{
    color: #FFF;
}


#content h1
{
    color: #814155;
    font-size: 13px;
    line-height: 1;
    margin-bottom: 20px;
}

#content h1#post-title
{
    margin-bottom: 0;
}

#content #post-meta
{
    color: #AAA;
    font-size: 10px;
    margin-bottom: 20px;
}

#content h2
{
    color: #814155;
    font-size: 12px;
    line-height: 1;
    margin-bottom: 5px;
}

#content h3
{
    color: #707173;
    font-size: 12px;
    line-height: 1;
    font-weight: bold;
    margin-bottom: 5px;
}

#content p
{
    margin: 0 0 20px 0;
}

#content strong
{
    color: #814155;
    font-weight: normal;
}

#content a
{
    color: #814155;
}

#content table
{
    margin: 0 0 20px 0;
}

#content ul
{
    margin: 0 0 20px 15px;
}

#content ol
{
    margin: 0 0 20px 20px;
}


/** normally hidden but will appear when css disabled */
.skip,
.noCss
{
  position: absolute;
  left: -9999px;
}

/**
  Minimum theme requirements as per http://codex.wordpress.org/CSS
*/
.aligncenter,
div.aligncenter
{
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignleft
{
    float: left;
}

.alignright
{
    float: right;
}

.wp-caption
{
    border: 1px solid #ddd;
    text-align: center;
    background-color: #f3f3f3;
    padding-top: 4px;
    margin: 10px;
    /* optional rounded corners for browsers that support it */
    -moz-border-radius: 3px;
    -khtml-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.wp-caption img
{
    margin: 0;
    padding: 0;
    border: 0 none;
}

.wp-caption p.wp-caption-text
{
    font-size: 11px;
    line-height: 17px;
    padding: 0 4px 5px;
    margin: 0;
}

