@CHARSET "UTF-8";
/**
 * @category   Eventclou
 * @package    Style
 * @author     Michael Roesler <m.roesler@mediaclou.de>
 * @copyright  Copyright (c) 2007-2014 mediaclou gmbh (http://www.mediaclou.de)
 * @version    $Id$
 */

/*****************
    browsers interpret margin and padding a little differently,
    we'll remove all default padding and margins and set them later on
******************/
*,
html {
    margin: 0;
    padding: 0;
}

/*
    Set initial font styles
*/
body {
    text-align: left;
    font-family: HelveticaNeueLT,Open Sans,Arial,Helvetica,sans-serif;
    font-size: 75%;
    line-height: 1em;
    color: #554f4a;
}

/*
    set font size for all divs,
    this overrides some body rules
*/
div { font-size: 1em; }

/*
    if img is inside "a" it would have
    borders, we don't want that
*/
img,
a img { border: 0; }

/*
    default link styles
*/
a,
a:link,
a:active,
a:visited,
a:hover {
    text-decoration: underline;
    /*
        css validation will give a warning if color is set without background color.
        this will explicitly tell this element to inherit bg colour from parent element
    */
    background-color: inherit;
    color: #554f4a;
}
a:visited {}
a:hover { text-decoration: none; }

/* TEXT */
p {
    font-size: 1em;
    margin: 0 0 1.5em 0;
    line-height:1.4em;
    padding: 0;
}
blockquote {
    border-left: 10px solid #ddd;
    margin-left: 10px;
}
pre {
    font-family: monospace;
    font-size: 1.0em;
}
strong, b {
    font-weight: bold;
}
em, i {
    font-style:italic;
}

/* Wrapping text in <code> tags. Makes CSS not validate */
code, pre {
    white-space: pre-wrap;       /* css-3 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */
    font-family: "Courier New", Courier, monospace;
    font-size: 1em;
}

pre {
    border: 1px solid #000;
    background-color: #ddd;
    margin: 0 1em 1em 1em;
    padding: 0.5em;
    line-height: 1.5em;
    font-size: 90%;
}

/* END TEXT */

/* LISTS */
#main ul,
#main ol,
#main dl {
    font-size: 1.0em;
    line-height:1.4em;
    margin: 0 0 1.5em 0;
}
#main ul li,
#main ol li {
    margin: 0 0 0.25em 3em;
}

#dl dt {
    font-weight: bold;
    margin: 0 0 0.25em 3em;
}
#dl dd {
    margin: 0 0 0 3em;
}
/* END LISTS */

/* clearing */
/*
    clearfix is a hack for divs that hold floated elements. it will force the holding div to span all the way down to last floated item.
    We strongly recommend against using this as it is a hack and might not render correctly but it is included here for convenience.
    Do not edit if you dont know what you are doing
*/
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
* html > body .clearfix {
    display: inline-block;
    width: 100%;
}

* html .clearfix {
    /* Hides from IE-mac \*/
    height: 1%;
    /* End hide from IE-mac */
}
/* end clearing */

/*
    accessibility divs are hidden by default
    text, screenreaders and such will show these
*/
.accessibility, hr {
    position: absolute;
    top: -999em;
    left: -999em;
}

#pagewrapper {
    border: 2px solid #e46450;
    margin: 0 auto;
    background-color: #fff;
    min-height: 800px;
}

#content {
    margin: 1.5em auto 2em 0; /* some air above and under menu and content */
}

#main {
    /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
    margin-left: 0;
    padding: 0px 40px 20px 40px;
}

.global-site-notice {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background: none repeat scroll 0 0 #ffff90;
    border-color: #cfcfcf;
    border-image: none;
    border-style: solid;
    border-width: 0 0 1px;
    color: #2f2f2f;
    font-size: 12px;
    line-height: 1.25;
    text-align: center;
}
.global-site-notice .notice-inner {
    background: url("/public/images/icons/32x32/status/dialog-warning.png") no-repeat scroll 20px 25px rgba(0, 0, 0, 0);
    margin: 0 auto;
    padding: 12px 0 12px 80px;
    text-align: left;
    width: 700px;
}
.global-site-notice .notice-inner p {
    border: 1px dotted #cccc73;
    margin: 0;
    padding: 10px;
}
.global-site-notice .notice-inner .actions {
    padding-top: 10px;
}