@charset "UTF-8";

/* 
   CSS file forAARF newsletter
   
   February 15 2010 mb 
*/

/* ID selectors should be used for sections that occus only once per page. These specify styles for a certain section. They start with a pound sign. */


/* 
-------------------------------------------------------------------------------------------------------
Header div specifics 
--------------------------------------------------------------------------------------------------------
*/

div#header {
	font-family: Verdana, Arial, Helvetica, sans-serif;  /* background shading; note that the headers' h1,h2,h3 can override this if desired */
	color: #000;      									 /* font text color; note that the headers' h1,h2,h3 override this */
	background-color: #99CCFF; /* was 99CCFF */
}

div#header h1 {
	height: 2em;
	font-size: 2em;
	margin:0;
	padding-left:10px;
	vertical-align: top;
	text-align: left;
	font-size: 2em;
}

div#header h2 {
	height: 1.5em;
	font-size: 1.5em;
	margin:0;
	padding-left:10px;
	vertical-align: top;
	text-align: left;
	font-size: 1.5em;
}

div#header h3 {
	height: 1.25em;
	font-size: 1.25em;
	margin:0;
	padding-left:10px;
	vertical-align: top;
	text-align: left;
}

div#header blockquote {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-style: italic;
	background-color: #EEEEEE; /* override the header's bg color so the blockquote box has a different bg shading */
	text-align: left;
	text-indent: 12pt;
	max-width: 800px;
	margin-right: auto;
	margin-left: 24px;
	padding: 12px 24px;
	border: solid 1px #060606;
}

div#header p {
	margin: 0;
	text-indent:1.5em;
}


/* 
-------------------------------------------------------------------------------------------------------
Contentwrapper div specifics 
--------------------------------------------------------------------------------------------------------
*/

div#contentwrapper {
	float:right;
	width:100%;
	margin-right:-33%
}


/* 
-------------------------------------------------------------------------------------------------------
Content div specifics 
--------------------------------------------------------------------------------------------------------
*/

div#content {
	margin-right:33%
}

div#content body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:100%;
	line-height:1.125em; /* for a nice line height, assume the default text size is consistently 16px when no styles are applied. to get to 18px, we can use a multiplier of 1.125; i.e. 16 × 1.125 = 18 */
}


div#content p {
    font-size:0.875em;  /* after line height, we want the paragraph text size. We would like a 14 pt font, so use this multiplier: 0.875; i.e. 16 x 0.875 = 14 */
	padding-left: 10px;
}


div#content h1 {
	font-size: 1.25em;	/* for a 20 pt font, 20/16 = 1.25 */
	padding-left:10px;
	background: #FFF;
	color: #000000;
	background-color: #FFFFFF;
	vertical-align: top;
	text-align: left;
	border-top-color: #00FF00;
}

div#content h2 {
	font-size: 1.125em; /* for an 18 pt font, 18/16 = 1.125 */
	padding-left:10px;
	background: #FFF;
	color: #000000;
	background-color: #FFFFFF;
	vertical-align: top;
	text-align: left;
}

div#content h3 {
	font-size: 1em;
	padding-left:10px;
	background: #FFF;
	color: #333333;
	background-color: #FFFFFF;
	vertical-align: top;
	text-align: left;
}

div#content blockquote {
	font-style: italic;
	background-color: #EEEEEE; /* override the header's bg color so the blockquote box has a different bg shading */
	text-align: left;
	max-width: 600px;
	margin-right: auto;
	margin-left: 20px;
	padding: 12px 20px;
	border: solid 1px #060606;
}


/* 
-------------------------------------------------------------------------------------------------------
Navigation div specifics 
--------------------------------------------------------------------------------------------------------
*/
div#navigation {
	float:left;
	width:32.9%;
	color: #000000;
	background-color: #CCCCCC;
	border-color: #66CCFF;
}


/* 
-------------------------------------------------------------------------------------------------------
Footer div specifics 
--------------------------------------------------------------------------------------------------------
*/

div#footer {
	clear:both;
	width:100%;
	background: #333;
	color: #FFF
}

div#footer p {
	margin:0;
	padding:5px 10px;
	color: #FFFFFF;
	background-color: #99CCFF;
}


/* 
-------------------------------------------------------------------------------------------------------
figure classes
--------------------------------------------------------------------------------------------------------
*/

.figurefloatedleft200 {
	float: left;
	width: 204px;  			/*the width of the box that the image sits inside of */
	margin-top: 10px;  		/* margin from the text to the top of this box */
	margin-right: 10px; 	/* margin from the right of this box until the start of the text */
	margin-bottom: 10px;
	margin-left: 10px; 		/* left margin to the beginning of this box. should be at least whatever the p or body left margin is */
	border: 4px solid #666; /*the border around the box holding the image. the frame of the picture if you will */
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}

.figurefloatedright200 {
	float: right;
	width: 204px;  			/*the width of the box that the image sits inside of */
	margin-top: 10px;  		/* margin from the text to the top of this box */
	margin-right: 10px; 	/* margin from the right of this box until the start of the text */
	margin-bottom: 10px;
	margin-left: 10px; 		/* left margin to the beginning of this box. should be at least whatever the p or body left margin is */
	border: 4px solid #666; /*the border around the box holding the image. the frame of the picture if you will */
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	clear: right;
}

.figurefloatedleft100 {
	float: left;
	width: 104px;  			/*the width of the box that the image sits inside of */
	margin-top: 10px;  		/* margin from the text to the top of this box */
	margin-right: 10px; 	/* margin from the right of this box until the start of the text */
	margin-bottom: 10px;
	margin-left: 10px; 		/* left margin to the beginning of this box. should be at least whatever the p or body left margin is */
	border: 4px solid #666; /*the border around the box holding the image. the frame of the picture if you will */
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}

.figurefloatedright100 {
	float: right;
	width: 104px;  			/*the width of the box that the image sits inside of */
	margin-top: 10px;  		/* margin from the text to the top of this box */
	margin-right: 10px; 	/* margin from the right of this box until the start of the text */
	margin-bottom: 10px;
	margin-left: 10px; 		/* left margin to the beginning of this box. should be at least whatever the p or body left margin is */
	border: 4px solid #666; /*the border around the box holding the image. the frame of the picture if you will */
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	clear: right;
}

/* 
any img tag (an image) that is inside a tag having class "photo", gets this treatment
*/
.photo img {
	border: 2px solid #ccc; /*the border, the border type and the color of the border around the image */
	padding-top: 0px; 		/*the padding on all 4 sides around around the image; may flow outside the figurefloatedleft and right boxes! must add this padding to the width of figurefloated left */
	padding-right: 0px;     /* the padding is the space from the picture to the border around the picture*/
	padding-bottom: 0px;
	padding-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}

.caption {
	font-size: 0.75em; /* for an 14 pt font, 14/16 = 0.875, for a 12pt font, 0.75 */
	color: #444444; /* try 444444 or 666666 */
	text-align: left;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}


/* 
-------------------------------------------------------------------------------------------------------
Global to everything 
--------------------------------------------------------------------------------------------------------
*/


/* bullets in list items get a cute pawprint instead of a corky dot */
.bullet {
	list-style-image: url(images/logosandgraphics/pawprintyellow.png);
    font-size:0.875em; 
}

.logo {
	float: right;
	border-style: solid;
	border-width: 1px;
	width: 160px;
	height: 129px;
	border-color: #0066FF;
	margin-top: 10px;
	margin-right: 10px;
}


/* 
any img tag in a tag having class "fullsize", (i.e. the image you get when you click on a thumbnail) has these properties
*/
body#fullsize {
	background-color: #cccccc;
}
img.fullsize {
	float: left;
	color: #333;
	text-align: center;
	background-color: #FFFFFF;
	border: 5px solid #666;
	margin: 10px 40px 10px 10px; /* Top Left Bottom Right */
	padding: 15px;
}

h1.fullsize {
	font-size: 1.5em;	/* for a 20 pt font, 20/16 = 1.25; for a 24 pt font, use 1.5 */
	padding-left:10px;
	color: #333333;
	vertical-align: top;
	text-align: left;
}


/* 
any paragraph that is in a tag having class "quip", gets this treatment
*/
p.quipauthor {
	color: #666666;
	font-style: italic;
	font-size: 80%; /* inherited or subset Size will be 80% of whatever the font size was coming in*/
	margin-top: 10px;
	margin-right: 10px;
	/*margin-bottom: 10px;*/
	margin-left: 10px;
	padding-left: 10px;
	padding-bottom: 10px;
}


br.clear {
	clear: both;
}

/* what is this?
a {
	display:block;
	color: #981793;
	padding:10px
}
 */

a:link {
	color:#0000FF
}     /* this rule shosw a hypertext link that has NOT YET been clicked on */

a:visited {
	color:#0099FF
}  /* this of a the link after it's been clicked on */

a:hover {
	color:#33CCFF
}  /* this shows the link during the time that the user does a mouse over */

a:active {
	color:#FFFF00
}  /* active is the color that the link becomes right at the moment that someone clicks on it */








