/*  This is the Style sheet for the Neve Shalom 
    web page created September 2004 by Stuart Mantel
*/

/*  The body code specifies how the body should be displayed.
*/
body {
    background-image: url(images/blue_background.jpg);
    background-repeat: repeat;
    margin:6px;
    padding:0;
    background-color: #00FFFFF;
    font-family: Verdana, sans-serif;
    font-weight: normal;
    font-size: 10pt;
    text-align: justify;
    }

/*  The header section describes how the text in the header will \
    be displayed.
*/
div#header {
    margin:0;
    padding:3px;
    font-weight: bold;
    font-size: 14pt;
    text-align: center;
    }

/*  The outer section is for when colums are used.  This helps to delinate the
    inner and outer margins and the text formating for the section.
*/
div#outer {
    background-repeat: repeat;
    text-align: justify;
    margin: 5 20;
    padding: 0%;
    bottom: auto;
    }

/*  colleft defines the left hand column for the page inside the outter section
    This must be specified before the colright division.
*/
div#colleft {
    position:absolute;
    margin-left: 5;
    float: left;
    bottom: auto;
    width:  45%; 
    height:100%;
   }

/* colright is for the right column in the outer section.  It must be specified
   after the colleft division.  The bottom of the colright division will define
   the top of where the bottom division will start.
   This is an error.  If the colleft is longer than the colright division, then
   the colright must be padded with <br>'s or the bottom will overlap the
   colleft copy.
*/
div#colright {
    position: relative; 
    margin-right: 5;
    left: 50%;
    width: 50%; 
    }

/*  This is the bottom of the page.
*/
div#bottom {
    margin:10 0;
    padding:3px;
    clear: both;
    text-align: center;
    font-size: 10pt;
    background-repeat: repeat;
    position: relative; 
    margin-left: 0%; 
    border-top: 2px dotted blue;
    }

/*  These are the default definitions for the different text styles used in
    the pages.
*/

H1 {
    font-family: Verdana, sans-serif;
    font-weight: bolder;
    font-size: 200%;
    font-color: blue;
   }

H2 {    
    font-family: Verdana, sans-serif;
    font-weight: bold;
    font-size: 200%;
    text-align: center
   }


H3 {    
    font-family: Verdana, sans-serif;
    font-weight: bolder;
    font-size: 150%
   }

H4 {    
    font-family: Verdana, sans-serif;
    font-weight: bold;
    font-size: 150%;
    text-align: center
   }

H5 {    
    font-family: Verdana, sans-serif;
    font-weight: bolder;
    font-size: 100%
   }

H6 {    
    font-family: Verdana, sans-serif;
    font-weight: bold;
    font-size: 100%;
    text-align: center
   }

SMALL {
    font-family: Verdana, sans-serif;
    font-weight: lighter;
    font-size: 80%;
   }

P   {line-height=100%;
    font-size=10pt;
    }
P1 { line-height: 150% }
P2 { line-height: 200% }
UL LI { font-size: 80% }
UL OL { font-size: 80% }
UL1 LI { font-size: 100% }
UL1 OL { font-size: 100% }

HR  {
    border-style: dotted;
    border-color: blue;
    border-bottom-width: 2px;
    width:50%;
    border-align:center;
    }


/*  
Class settings
    use the class= tag
    <h1 class=center> This heading will be center-aligned</h1>
*/
.INDENT {
        margin-left: 20px;
        margin-right: 20px;
        }
.INDENT_2 {
          margin-left: 50px;
          margin-right: 50px;
          }

.RED { color: red }
.GREEN { color: green }
.BLUE { color: blue }
.BIG { font-size: 120% }
.SMALL {font-size: 70% }
.UPPER { text-transform: uppercase }
.OVER { text-decoration: overline }
.THRU { text-decoration: line-through }
.UNDER { text-decoration: underline }
.SQUARE { list-style-type: square }
.DISC { list-style-type: disc }
.CIRCLE { list-style-type: circle }
.NONE { list-style-type: none }
.SQUARE { list-style-type: square }
.SMALL {font-size: 80% }


