/**
 * $RCSfile: Layout.css,v $ $Revision: 1.2 $ $Date: 2007/03/26 02:29:47 $
 *
 * Copyright 2007 Olaf Havnes. All Rights Reserved.
 * http://www.havnes.com
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 */

/**
 * Basic layout for www.havnes.com.
 *
 * Scale the design by changing the body font size (there will be lots of ems
 * in the other css-files).
 *
 * @author      Olaf Havnes
 * @version     $Revision: 1.2 $ $Date: 2007/03/26 02:29:47 $
 */


/* Set a default color/font scheme for the whole document */
body
{
    margin: 0;
    padding: 0;

    font-family: Verdana, sans-serif;
    font-size: 0.9em;

    background-color: #e8e5cc;
    color: #000000;
}

h1, h2, h3
{
    background-color: #e8e5cc;
    color: #005540;
    font-weight: bold;
}

a
{
    color: #551010;
    background-color: #e8e5cc;
    text-decoration: none;
}

a:hover
{
    text-decoration: underline;
}



/* Stacks the columns side by side on a normal font/screen setup */
div.stackBox
{
    min-width: 1024px;
}


/* A three column pattern */
div.stackBox, #leftColumn, #centerColumn, #rightColumn
{
    margin: 0;
    padding: 0;
    float: left;
    font-size: 1.0em;
}

#leftColumn, #rightColumn
{
    width: 12.0em;
}

#centerColumn
{
    width: 628px;
    border-width: 0 1px;
    border-style: dotted;
    border-color: #b0958a;
}