/*
 *  This is the file where you put your CSS changes. 
 *  You should preferrably use this and override the 
 *  relevant properties you want to change here instead 
 *  of customizing plone.css to survive upgrades. Writing
 *  your own plone.css only makes sense for very heavy 
 *  customizations. Useful variables from Plone are 
 *  documented at the bottom of this file.
 *
 *  -- Alexander Limi, http://www.plonesolutions.com
 */
 
/*  (do not remove this :) */
/*  (not this either :) */

/*
** Structural Elements
*/

body {
    background-color: #f4f4f4;
}

#visual-portal-wrapper {
    width: 780px;
    margin: 10px auto;
    padding: 0px;
    border: 1px solid #829ab2;
    background: #ffffff;
}

#content {
    padding: 0px 5px;
    margin: 0px;
}

#content {
    padding-top: 0px !important;
}

.contentViews {
    margin-top: 0px;
}

/* Padding for the columns */

#portal-column-one .visualPadding {
    padding: 0px 0px 5px 5px;
}
#portal-column-content .visualPadding {
    padding: 0px 10px 0px 10px;
}
#portal-column-two .visualPadding {
    padding: 0px 5px 5px 0px;
}

/* Logo properties */
 
#portal-logo {
    background: url("header.jpg.gif") no-repeat;
    border: 0;
    margin: 0;
    padding: 0;
    padding-top: 118px;
    height: 0px !important;
    height /**/: 118px;
    width: 780px;
}

#portal-personaltools {
    /* Bar with personalized menu (user preferences, favorites etc) */
    background-color: transparent;
    border-top-color: none;
    border-top-style: none;
    border-top-width: none;
    border-bottom-color: none;
    border-bottom-style: none;
    border-bottom-width: none;
    line-height: 13px;
    padding: 0px 5px;

}

/* searchbox style and positioning */
#portal-searchbox {
    position: relative;
    top: -25px;
    left: 624px;
    background-color: transparent;
    margin: 0;
    padding: 0;
    text-align: left;
    text-transform: lowercase;
    width: 150px;
    white-space: ;
    z-index: 2;
}

input.searchButton {
    font-size: 100%;
    margin-bottom: 1px ! important;
    background: #ff6530;
    cursor: pointer;
    border: none;
    color: #ffffff;
    padding: 1px 1px 1px 1px;
    text-transform: uppercase;

}

#portal-footer {
    border-top: 1px solid #eeeeee;
    border-bottom: none;
    float: none;
    margin: 0;
    padding: 5px 5px 15px 5px;
    text-align: right;
}

#portal-colophon {
    float: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

h1, h2, h3, h4, h5, h6 {
    color: #ff6530;
}

#portlet-navigation-tree .portletBody {
    position: relative;
    left: -8px;
    border: none;
    margin: 0px;
    padding: 20px 0px 20px 0px;
    width: 160px;
    border: none;
    border-bottom: 8px solid #ff6530;
    text-transform: lowercase;
}

#portlet-navigation-tree .portletBody .portletContent {
    margin: 0px;
    padding: 0px;
}

.navItem {
    margin: 0px;
    padding: 4px 0px 4px 8px;
    border-bottom: 1px solid #eeeeee;
}

.navItem a {
    color: #829ab2;
}

.navItem a:hover,
.currentNavItem {
    color: #ff6530;
    font-weight: normal;
}


/*  */

/* DOCUMENTATION ON PRE-DEFINED PROPERTIES FROM PLONE */

 /* You can insert colors and other variables from Plone's 
    base_properties by doing:
    
    & dtml-variableName ; (without the spaces, excluded here to not make it render)
    
    Example:
    
    myLink {
        color: & dtml-fontColor ;   (again, without the spaces)
    }
 
   This means you can generate your own elements that use Plone's defaults,
   and respect any customizations people have done. See base_properties for
   the default values.
 
   These are the available properties:
   
   logoName - the file name of the portal logo. 
   
   fontFamily - the font family used for all text that is not headers
   
   fontBaseSize - the base font size that everything is calculated from
   
   fontColor - the main font color
   
   backgroundColor - the background color 
   
   linkColor - the color used on normal links

   linkActiveColor - color used on active links

   linkVisitedColor - color used on visited links
   
   borderWidth - the width of most borders in Plone
   
   borderStyle - the style of the border lines, normally solid
   
   borderStyleAnnotations - style of border lines on comments etc
   
   globalBorderColor - the border color used on the main tabs, the portlets etc
   
   globalBackgroundColor - background color for the selected tabs, portlet headings etc
   
   globalFontColor - the color of the font in the tabs and in portlet headings
   
   headingFontFamily - font family for h1/h2/h3/h4/h5/h6 headlines.
   
   headingFontBaseSize - the base size used when calculating the different headline sizes
   
   contentViewBorderColor - the content view tabs border color
   
   contentViewBackgroundColor - the content view tabs background color
   
   contentViewFontColor - the font color used in the content view tabs
   
   textTransform - whether to lowercase text in portlets, tabs etc.
   
   evenRowBackgroundColor - the background color of even rows in listings
   
   oddRowBackgroundColor - the background color of even rows in listings
   
   notifyBorderColor - border color of notification elements like the status message, the calendar focus
   
   notifyBackgroundColor - background color of notification elements like the status message, the calendar focus
   
   discreetColor:string=#999999
   helpBackgroundColor:string=#ffffe1
 
 */


