/*
 *
 * Cascading Style Sheet 
 * Main css for standard oursaviorlutheran.org pages.
 * This file defines the style--fonts, colors, layouts, etc. of the website.
 * For a good reference on CSS see http://www.w3schools.com/css/css_reference.asp
 *
 */

/*-------------------------------------------------------

    Overall Settings

*/
/* BODY: Defines the style for the main body of the browser window */
body { 
  background-color: #1A1822;
  background-image: url(images/gray_back.jpg); /* Surrounding "border" background */
  color: #000000;
  text-align: left;
  font-size: 10pt;
  font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
  padding: 0px;
  margin: 10px 0px;
  overflow: scroll; /* Always have a scroll bar */
  overflow-x: hidden;
  overflow-y: visible;

}

/* Defines the links style */
a:link { color: #0000ff;}
a:visited { color: #660099;}
a:active { color: #cc00ff;}
a:hover { color: #6666ff; }


/* Defines what headings look like */
h1 {
  font-family: "Gill Sans", Arial, Helvetica, sans-serif;
  font-size: 25pt;
  font-weight: normal;
  margin: 0px;
  text-decoration: none;
}
h2 {
  font-size: 16pt;
  font-weight: normal; 
  text-decoration: none;
}
h3 {
  font-size: 12pt;
  font-weight: normal;
  text-decoration: underline;
}
h4 {
  font-size: 11pt;
  font-weight: bold;
  text-decoration: none;
  margin: 0px;
}


/*-------------------------------------------------------
   
   Page Layout Definitions

   A picture of the major page sections:
     +------BODY-------+
     |  +---PAGE----+  |
     |  |  SITENAV  |  |
     |  +---+-------+  |
     |  | M |   C   |  |
     |  | E |   O   |  |
     |  | N |   N   |  |
     |  | U |   T   |  |
     |  | N |   E   |  |
     |  | A |   N   |  |
     |  | V |   T   |  |
     |  +---+-------+  |
     +-----------------+

*/

/* PAGE: Defines the style for the entire page */
.page {
  width: 800px; /* 800 pixels wide no matter how wide the user's screen is */
  margin-left: auto;
  margin-right: auto;
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 0px;
  background-color: #FFFFFF;
  text-align: left;
}

/* SITENAV: Defines the top bar with logo and links */
.sitenav {
  height: 80px;
  margin: 0px;
  position: relative; /* This doesn't change the .sitenav div's position
                         but allows the .links div to position within this. */
  background-color: #CCCCCC;
  background-image: url(images/oslcbar_clouds.jpg);
  background-repeat: no-repeat;
}

/* Defines the sitenav backgrounds for each page */
#main {background-image: url(images/oslcbar_water_sunset.jpg);}
#youth {background-image: url(images/oslcbar_youth.jpg);}
#about {background-image: url(images/oslcbar_sky_trees.jpg);}
#blog {background-image: url(images/oslcbar_aerial_houses.jpg);}
#directions {background-image: url(images/oslcbar_road.jpg);}
#frompastor {background-image: url(images/oslcbar_book_pen.jpg);}
#dycm {background-image: url(images/oslcbar_map.jpg);}
#contact {background-image: url(images/oslcbar_keypad.jpg);}
#search {background-image: url(images/oslcbar_magnify.jpg);}
#gallery {background-image: url(images/oslcbar_camera.jpg);}
#forms {background-image: url(images/oslcbar_files.jpg);}
#worship {background-image: url(images/oslcbar_piano2.jpg);}
#education {background-image: url(images/oslcbar_school_blocks.jpg);}
#fellowship {background-image: url(images/oslcbar_palms.jpg);}
#outreach {background-image: url(images/oslcbar_city_skyline.jpg);}
#calendar {background-image: url(images/oslcbar_calendar1.jpg);}
.sitenav div.links {
  position: absolute; bottom: 0px; right: 0px; /* Put at bottom right of .sitenav */
  padding: 0px 10px 0px 10px;
  background-color: #FFFFFF;
  background-image: url(images/sitenav_back.jpg);
  font-size: 11pt;
}
.sitenav a {text-decoration: none;}
.sitenav a:link { color: #0000ff;}
.sitenav a:visited { color: #0000ff;}
.sitenav a:active { color: #cc00ff;}
.sitenav a:hover { color: #6666ff; text-decoration: underline;}
.homepic {
  float: left;
  height: 70px;
  width: 180px;
  border: 0px;
}

/* MENUNAV: Defines the side column with most of the links */
.menunav {
  float: left;
  width: 110px;
  height: 500px; 
  margin: 0px;
  padding: 5px;
  background-color: #EEEEEE;
  background-image: url(images/menunav_back.png);
  overflow: hidden; /* If menu words don't fit, then too bad */
}
.menunav a {text-decoration: none;}
.menunav a:link { color: #0000ff;}
.menunav a:visited { color: #0000ff;}
.menunav a:active { color: #cc00ff;}
.menunav a:hover { color: #6666ff; text-decoration: underline;}
.menunav ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
.menunav li {
  margin: 10px 0px 0px 0px;
}
.menunav ul ul {
  margin-top: 0px;
  margin-right: 0px;
  margin-left: 20px;
  padding: 0px;
  list-style-type: circle;
}
.menunav ul ul li {
  margin: 3px 0px 3px 0px;
}
.menunav ul ul li a {text-decoration: none;}
.menunav ul ul li a:link { color: #6666ff;}
.menunav ul ul li a:visited { color: #6666ff;}
.menunav ul ul li a:active { color: #cc00cc;}
.menunav ul ul li a:hover { color: #9999ff; text-decoration: underline;}

/* CONTENT: Defines the part of the page that has the real content */
.content {
  float: left;
  width: 660px;
  margin: 0px;
  padding: 10px;
  background-color: #FFFFFF;
/*  position: relative; */
}

/* SIDEBAR: Defines the optional extra content presentation */
.sidebar {
  float: right;
  width: 190px;
  margin: 0px;
  padding: 10px;
  background-color: #F8F8F8;
  border-style: solid;
  border-width: 1px;
}
body.blog .sidebar ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
body.blog .sidebar li {
  margin: 10px 0px 0px 0px;
}
body.blog .sidebar ul ul {
  margin-top: 0px;
  margin-right: 0px;
  margin-left: 20px;
  padding: 0px;
  list-style-type: circle;
}
body.blog .sidebar ul ul li {
  margin: 3px 0px 3px 0px;
}

/*-------------------------------------------------------

   Styles for page extras

*/


/* BREADCRUM: Defines the links showing where a page is in the site tree */
p.breadcrum {
  font-size: 8pt;
  color: #999999;
}
p.breadcrum a{
  font-size: 10pt;
  color: #999999;
}
p.breadcrum a:link { color: #999999;}
p.breadcrum a:visited { color: #999999;}
p.breadcrum a:active { color: #999999;}
p.breadcrum a:hover { color: #999999;}

/* NEW: Defines the What's New section inside the content div */
div.new {
  width: 300px;
  display: block;
  margin-top: 20px;
  padding: 0px;
  background-color: #ECF4FC;
  border-style: solid;
  border-width: 1px;
  border-color: #5858A0;
  color: #5858A0;
}
div.new h2 {
  margin: 0px;
  color: #5858A0;
  font-size: 12pt;
  background-color: #FED19D;
}
div.new div.newdate {
  display: inline;
  margin: 10px;
  font-size: 8pt;
}
div.new ul {
  margin: 0px;
  padding-bottom: 10px;
  padding-left: 30px;
}

/*-------------------------------------------------------
   
   Image Classes
  
*/
img {border: 0px;}

/* RIGHT: To float a picture on the right */
img.right {float: right}

/* PAGEPIC: The main picture for a page */
img.pagepic {
  float: right;
  position: relative; top: -30px;
}

/* EMAIL: for use in displaying email address images */
img.email {
  vertical-align: text-bottom;
}


/*-------------------------------------------------------
   
   Misc. Classes
  
*/
/* CLEAR: Needed for layout purposes. See template.html */
.clear {
  clear: both;
}

blockquote {
  margin-left: 40px;
  margin-right: 40px;
  font-style: italic;
}
blockquote i{font-style: normal;}

p.copyright {
  margin-top: 50px;
  text-align: center;
  font-size: 8pt;
  color: #999999;
}

/* For use of check box options, such as in the facility use form */
ul.options {
  list-style-type: circle;
}

table.table {
  border-style: none;
  border-collapse: collapse;
}
table.table td {
  border-style: solid;
  border-width: 1px;
  border-color: #dddddd;
  padding: 2px;
}

/*-------------------------------------------------------
   
   Blog Classes
  
*/
div.post {
  border-style: solid;
  border-color: #dddddd;
  border-width: 0px;
  border-bottom-width: 1px;
  /*background-color: #f0f0f0;*/
}
div.post div.entry {
  /* background-color: #f0f0f0; */
}



