/* crfd.org stylesheet */
/* crfdstyle.css */

body {
	background-repeat: repeat-y;
	background-position: left top;
	background-color: #FFFFFF;
	background-attachment: fixed; 
	background-image: url(images/NavBarGradRedNew.gif); 
	repeat: x;
	/* Get rid of white border around browser window */
	margin: 0;
    padding: 0;
}


#wrapper {
  /* Set your own widths, % for fluid, px for fixed */
  width: 900px;
  /* Left-Align the layout */
  margin: 0;
  margin-left: 0;
  border: solid 1px #F00;
  background-color: none;
} 

/* To make older browser HTML5 aware: Make HTML5 layout elements block elements for older browsers */
header, nav, aside, article, footer, section, figure, figcaption {
  display: block;
}

/* HEADER-SPECIFIC RULES: */

#header {
	margin: 0;
	padding: 0;
	border: 0;
	border-bottom: 1px solid #F00;
	overflow:auto;
}

#header ul {
  whitespace: nowrap;
  margin: 0;
  padding: 0;
  border:0;
}

#header ul, li {
  list-style: none;
  display: inline;
   margin: 0;
  padding: 0;
  border:0;
  float:left;
}

.headerlogo {
	repeat: no-repeat; 
	height: 148px;
	width: 148px;
	background-color: #FFF;
	border: 1px solid blue;
	border-left: 2px solid blue;
	border-right: 2px solid blue;
	padding: 0;
	margin: 0;
	top: 0; left: 0;
	}

/* CRFD horizontal banner (photo images) header: */ 
.headerbanner {
   margin: 0;
   border: 0;
   padding: 0;
   height:150px;
   repeat: no-repeat;
}

 .headergraphic {    
	repeat: no-repeat;
	height:150px;
	border: 0;
	margin: 0 3px;
	padding: 0;
}

.navfontregular {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9pt;
	color: #006666;
	top: auto;
	font-weight: bold;
}

.navfontlinks {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9pt;
	color: #0000FF;
	top: 10px;
	text-decoration: none;
	font-weight: normal;
}



/* MAIN PAGE CONTENT - ARTICLE and ASIDE (SIDEBAR) RULES: */ 

/* Section containing multiple columns */
 .columns {
 display: table;
 border-collapse: collapse;
 width: 100%; 
 /* border is optional, style to taste */
 border: none;
 }
 
 /* Aside columns in columns div - change aside to nav for just 1 side nav bar col; for 1 side col plus side nav add .columns nav selector */
 .columns aside {
 display: table-cell; 
 /* Use any width and padding you like */
 width: 200px;
 padding: 1%;
 }
 
 
/* Pictures in the side columns */
.columns aside img{
 display: block;
 width: 90%;
 margin: 0.5em auto; 
 border: solid 1px gray;
 border-radius: 4px;
 box-shadow: 3px 3px 3px 3px silver; 
}
 
 /* Main article in the columns */
 .columns article {
 padding-left: 15px;
 background-color: #FFF;
 }
 

 /*Optional, style to taste */
 .columns .left {
 background-color: none;
 border-right: solid 1px #F00;
 }
 
 .columns .right {
 background-color: #f9f2ec;
 border-left: solid 1px #F00;
 }


div {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	border:0;
	display: block;
}


/* centering any DIV horizontally */ 
div.center { 
    display: block;
    margin-left: auto;
    margin-right: auto; 
	margin-top: 0px;
	margin-bottom: 0px;
	}

div.left {
	width: 100%;
	margin: 0;
	padding: 0;
	float:left;
}

div.right {
	width: 100%;
	margin: 0;
	padding: 0;
	float:right;
}

.sidecoldiv {
	width: 100%;
	margin: 0;
	padding: 1%;
	border: 0;
}

.sidebardiv-left {
		float: left;
		width: 35%; 
		background-color: #FFF;
		border: 1px solid black;
		padding: 5px;
		margin: 0px 15px 0px 0px;
	}

.sidebardiv-right {
		float: right;
		width: 35%; 
		background-color: #FFF;
		border: 1px solid black;
		padding: 5px;
		margin: 0px 0px 0px 15px;
	}


p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10pt;
	font-weight: normal;
	line-height: 1.4em;
	width: 100%;
}

.headingA {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14pt;
	font-weight: bold;
	color: #006666;
	line-height: 1.5em;
}

.centerinline{
	text-align: center;
	margin: 0 auto;
}


blockquote {
    display: block;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 40px;
    margin-right: 40px;
}

.image-left {
		float: left;
		repeat: no; 
		background-color: #FFF;
		border: 1px solid black;
		padding: 0px;
		margin: 0px 15px 0px 0px;
	}

.image-right {
		float: right;
		repeat: no; 
		background-color: #FFF;
		border: 1px solid black;
		padding: 0px;
		margin: 0px 0px 0px 15px;
	}


/* Style rules for formal, captioned figures */
 figure {
 width: 50%;
 max-width: 400px;
 clear: both;
 margin: 1em auto;
 border: solid 1px gray;
 border-radius: 4px;
 box-shadow: 3px 3px 3px 3px silver;
 }

 figure img {
 width: 100%;
 display: block;
 border-top-left-radius: 4px;
 border-top-right-radius: 4px;
 }
 figcaption {
 font: 10pt/10pt Verdana, Tahoma, Sans-serif;
 padding: 2px 4px;
 }

/* Left-floating pictures */
figure.floatleft {
 float: left;
 width: 35%;
 max-width: 400px;
 margin: 0 10px 0 5px;
}

/* Right-floating pictures */
figure.floatright {
 float: right;
 width: 35%;
 max-width: 400px;
 margin: 0 15px 15px 0;
}

/* Pictures with no caption */
figure.nocaption figcaption {
 display: none;
} 


/* Frame for picture that looks like a photo snapshot */
 figure.snapshot {
 padding: 4%;
 background: white;
 border-radius: 0;
 margin: 10px auto;
 width: 60%;
 border: solid 1px gray;
 box-shadow: 3px 3px 3px 3px silver;
 }
 
 /* Picture inside photo snapshot */
 figure.snapshot img {
 width: 100%;
 display: block;
 border-radius: 0;
 }
 
 /* Caption for photo snapshot */
 figure.snapshot figcaption {
 padding: none;
 font: 12pt/14pt Lucida Handwriting, Lucida Calligraphy, Comic Sans MS, Cursive;
 }

/* Left-tilted photo */ 
/* Put style descriptors with vendor prefixes before the "official" descriptor without the vendor prefix */
figure.tiltleft {
 -moz-transform: rotate(-8deg);
 -ms-transform: rotate(-8deg);
 -o-transform: rotate(-8deg);
 -webkit-transform: rotate(-8deg);
 transform: rotate(-8deg);
} 

/* Right-tilted photo */ 
/* Put style descriptors with vendor prefixes before the "official" descriptor without the vendor prefix */
figure.tiltright {
 -moz-transform: rotate(6deg);
 -ms-transform: rotate(6deg);
 -o-transform: rotate(6deg);
 -webkit-transform: rotate(6deg);
 transform: rotate(6deg);
}

hr {
  display: block;
  margin: 5px auto; 
  width: 80%;
  height: 1px;
  color: #066;
  background-color: #066;
  border: 1;
  text-align: center;
}

/* all lists */
ul, ol, dl{
	line-height: 1.5em;
	list-style-type: square;
	list-style-position: outside;
	display: block;
	padding-left: 16px;
}

/* all unordered content div lists */
#content ul{
  width: 250px;
  margin: 15px auto;
  padding:10px 10px 10px 40px;
  background-color:#FFF;
  border: solid 1px #366;
  -moz-border-radius: 15px;
  border-radius: 15px;
}

/* all ordered lists in the content division */
#content ol{
  width: 125px;
  margin: 15px auto;
  padding: 15px 10px 15px 40px;
  border: solid 1px #FC6;
  background: #FFC;
  -moz-border-radius: 25px 20px 25px 20px / 20px 25px 20px 25px;
  border-radius: 25px 20px 25px 20px / 20px 25px 20px 25px;
}


#redthinbox {
  width: 100%;
  margin: 15px auto;
  padding: 10px 25px;
  background-color: #FFF;
  border: solid 1px #F00;
   -moz-border-radius: 15px;
  border-radius: 15px;
}


/* light-grey background with thin blue border with drop shadow divs */
.ltgreybg{
  width: 100%;
  margin: 15px auto;
  padding: 10px 25px;
  background-color: hsl(5, 0%, 99%);
  border: solid 1px #00F;
  -moz-border-radius: 15px;
  border-radius: 15px;
  /* box-shadow: 1st 2 declarations are horizontalOffset then verticalOffset; 
  followed by [blur] and [spread] (both optional, spread not used here); 
  then shadow color (light-grey, just a shade darker than bg); 
  lastly, [inset] (if not declared, then shows outside the div */ 
  box-shadow: 3px 3px 7px #e6e6e6 inset;
}

/* thin purple border with orange drop shadow with lt yellow bg divs */
.orangeboxyellowbg{
  width: 90%;
  margin: 15px auto;
  padding: 10px 20px;
  background-color: hsl(60, 100%, 98%);
  border: solid 1px hsl(39, 100%, 50%);
  -moz-border-radius: 15px;
  border-radius: 15px;
  /* box-shadow: 1st 2 declarations are horizontalOffset then verticalOffset; 
  followed by [blur] and [spread] (both optional, spread not used here); 
  then shadow color (mid-orange, just a shade darker than light yellow bg); 
  lastly, [inset] (if not declared, then shows outside the div */ 
  box-shadow: 3px 3px 7px hsl(39, 100%, 87%) inset;
}

a:link {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #0000FF;
	text-decoration: none;
}

a:visited {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #996633;
	text-decoration: none;
}

a:active {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #FF0000;
	text-decoration: underline;
}

a:hover {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #FF0000;
	text-decoration: underline;
}

.headingB {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12pt;
	line-height: 1.5em;
	font-weight: bold;
	color: #996633;
}


h1, h2, h3, h4, h5, h6{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	line-height: normal;
	font-weight: normal;
	color: #006666;	
	border: 0.5 1;
}

h1 {
	font-size: 18pt;
}

h2 {
	font-size: 16pt;
}

h3 {
	font-size: 14pt;
}

h4 {
	font-size: 12pt;
}

h5 {
	font-size: 11pt;
}

h6 {
	font-size: 10pt;
}

.BulletinWhiteHeader {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10pt;
	font-weight: bold;
	color: #FFFFFF;
	line-height: 20pt;
}

.HeadingC {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13pt;
	line-height: 1.5em;
	color: #006666;
	font-weight: bold;
}

.par11ptVerdana {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11pt;
	line-height: 1.5em;
}

.Italics11Point {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11pt;
	font-style: italic;
	line-height: 1.5em;
}

.Underline {
	text-decoration: underline;
}

.HeadingOrangeLarge {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12pt;
	font-weight: bold;
	color: #FF6600;
	line-height: 2em;
}

.HeadingLargeBlue {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12pt;
	font-weight: bold;
	color: #0000FF;
	line-height: 2em;
}

.HeadingRedLarge {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12pt;
	color: #FF0000;
	font-weight: bold;
	line-height: 2em;
}

.p-HiLiteYellow {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10pt;
	font-style: normal;
	font-weight: bold;
	background-color: #FFFF00;
}

.bulletinlogo {
   display:block;
   width:180px; 
   border:2px solid; 
   margin:0 20 0 0;
}

#bulletinheaderdiv {
   width: 100%;
   display: block;
   margin-right: auto;
   margin-left: auto;
   margin-top: 0;
   margin-bottom: 0;
   border: 2px;
   padding: 0;
}

.bulletinheaderimage {
   display: block;
   margin: 0 auto;
   border: 0px;
   padding: 0px;
   height: 47px;
   width: 568px;
}

.photocaption7pt {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 7pt;
	font-weight: bold;
}


.Left-Indent {
	margin-left: 40px;
}
.BlueItalHeader {
	font-family: Calibri;
	font-size: 18pt;
	font-style: italic;
	color: #0000FF;
	line-height: normal;
	font-weight: normal;

}
.italic {
	font-style: italic;
}
.par7pt {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 7pt;
	line-height: normal;
	font-weight: normal;
}

  
     /* ----- KIOSK PICTURE GALLERY ----- */ 
/* Entire gallery for Kiosk Poster Contest page */ 
  .kioskgallery { 
  position: relative; 
  } 
  
  /* Smaller divs with 2 img tags each */ 
  .kioskgallery div { 
  padding: 1px;
  /* Align thumbnails on left of containing div */ 
  left: 20px;
  } 
  
  /* First image (sets width as thumbnail) in each smaller div */ 
  .kioskgallery div img:nth-child(1) { 
  width: 80px; 
  left: 25px;
  } 
  
  /* Second image (larger actual size) in each smaller div */ 
  .kioskgallery div img:nth-child(2) { 
  position: absolute; 
  /* Place larger images to right of thumbs: */ 
  top: 75px;
  left: 135px; 
  z-index: 10; 
  visibility: hidden; 
  } 
  
  /* Hover on any smaller div */ 
  .kioskgallery div:hover img:nth-child(2) { 
  visibility: visible; 
  }
 
  
  #footer {
	margin: 0 auto;
	padding: 0;
	border: 0;
	border-top: 1px solid #F00;
	overflow:auto;
}
