/* InspectAPedia.com MainStyle.css                                                                                       */

body,td,a,p,.h{
	font-family:Arial, Helvetica, sans-serif;
	font-weight: normal;
} .h{font-size: 20px;} .q{color:#0000cc;}

/* LINK FORMATTING                                     */

/* Set CURRENT PAGE LINK text to bold green DJ Friedman InspectAPedia.com  08/21/11                                        */
/* NICLESCU method for detecting the current URL, set a css-detectable variable .current  - see Current_Link_Handling.txt  */
/* Requires Java Script   highlight.js                                                                                     */ 
/* Requires <SCRIPT LANGUAGE="javascript" SRC="/Scripts/highlight.js"></SCRIPT>            in individual page HEAD section */
/* Requires <!-- START NAVBAR DIV CLASS --><DIV ID="nav">                                      at start of page links menu */
/* Requires <SCRIPT LANGUAGE="javascript">setPage()</SCRIPT><!-- END NAVBAR DIV CLASS --></DIV>  at end of page links menu */
/* put the A. prefix on .current to refer JUST to <A HREF fields and not other text following the address field             */

/* FIRST TRY A.current {color:#339900; font-weight: bold; } */
/* SECOND green background  A.current {color:#006600; font-weight: bold; background-color: #66FF66;  } */
/* THIRD 8/29/11 green active link chg frm 006600 and now on light gray background E0 */

A.current {color:#008000; font-weight: bold; background-color:#E0E0E0;  } 

/* a:active    alternative handling of active link  - A link becomes active when you click on it. - DOES NOT SEE TO WORK 
               so using A.current
    :hover     mouse-over
	:link      un-visited pages
	:visited   visited pages                                                                      
a:active { background-color:yellow; }
    */ 

/* Standard LINK Colors                                                 */
/* turn off undelrine 08/29/11   text-decoration: underline;            */
A:link { text-decoration:none; color: blue;}

A:hover {
	text-decoration: underline;
	font-weight: bold;
	color: RED;
	font-family: Arial, Helvetica, sans-serif;
	}
	
/* NOT IN USE .CurrentPage 
.CurrentPage { font-weight: bold; color: GREEN;    }
 */

/* IMAGE FORMATTING                                     */

.Image_Standard {
	float: left;
	margin-top: 5px;
	margin-right: 20px;
	margin-bottom: 5px;
	border-top-width: 3px;
	border-right-width: 3px;
	border-bottom-width: 3px;
	border-left-width: 3px;
}

.Image_NoBorder {
	float: left;
	margin-top: 5px;
	margin-right: 20px;
	margin-bottom: 5px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}
.Image_Close {
	float: left;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
	border-top-width: 3px;
	border-right-width: 3px;
	border-bottom-width: 3px;
	border-left-width: 3px;
}

.Image_WideSpace {
	float: left;
	margin-top: 5px;
	margin-right: 25px;
	margin-bottom: 5px;
	border-top-width: 3px;
	border-right-width: 3px;
	border-bottom-width: 3px;
	border-left-width: 3px;
}

/* LIST FORMATTING                                     */
	
.LI_Spaced {
	margin-top: 10px;
	margin-bottom: 5px;
}
     
/* TEXT FORMATTING                                                       */

/* Green Text, Bold, Gray background - use in notices about using links  */
/* Set Indication of "current" text in body                              */
/* change this to match current link indicator color and backgrounbd     */

.GreenText {
	font-weight: bold;
	color: #008000;
	background-color:#E0E0E0; 
}
   
/* Green Body Text  - use in body text for illustrations                  */   
.GreenBody {
	color: #008000;
}   

/* Other formatting of text in body       */

.Excerpt {
	text-align: justify;
	margin-right: 0.5in;
	margin-left: 0.5in;
}

.Size-1 {
	font-size: -1;
}

<!-- CSS Tabs - Thanks to web designer: Joshua Kaufman http://unraveled.com/ - is licensed under Creative Commons Attribution 3.0 - http://creativecommons.org/licenses/by/3.0/ -->
<!-- InspectApedia.com Tab Style Sheet 02/28/2011 -->
/* begin css tabs */

/* Standard formatting for body of HTML page  */

body {
font: 100% arial, verdana, sans-serif;
/* color:#000000;
background-color: #CCFFFF; */
margin: 50px;
}

/* Standard formatting for horizontal tabs at page top and bottom */
/* HTML: <UL ID="tabnav">                                         */

ul#tabnav { /* general settings */
/* width: 1200px; can prevent line wrapping - not recommended     */
text-align: left; /* set tabs to left, right or center            */
margin-top: 2px;  /* Space outside borders - set top bottom margins */
margin-left: 0px;
margin-right: 0px;
margin-bottom: 2px;
font: bold 10px arial, verdana, sans-serif; /* set font as desired */
border-bottom: 1px solid #46C7C7;           /* set bottom border COLOR as desired #6c6; #736F6E;   */
list-style-type: none;
/*   padding: 4px 3px 5px 5px;    Padding inside borders - THIRD number must change with respect to padding-top (X) below top bottom right left */
padding-top:4px;
padding-bottom:5px;
padding-right:3px;
padding-left:5px;
background-color: #CCFFFF;   /* tab area surrounding background */
line-height:210%;            /* Force big line height to accomodate tab line wrapping */
}

ul#tabnav li { /* do not change - causes tabs to display horizontally rather than vertically stacked */
display: inline;
}

/* 08/21/11 Following section is NOT IN USE - Using .current CSS and javascript highlight.js to automatically set active URL to color green when tab URL = current URL */
/*
body#tab1 li.tab1, body#tab2 li.tab2, body#tab3 li.tab3, body#tab4 li.tab4 { /* settings for selected tab */
      /* color:#339900;                 /* set CURRENT PAGE LINK color to GREEN */
      /* font-weight: bold;             /* set CURRENT PAGE LINK font to BOLD */  
/*
border-bottom: 1px solid #fff; /* set border color to page background color #fff #736F6E */
/*
background-color: #fff;        /* set background color to match above border color #fff  #736F6E; */
/*}   */

/* tabnav settings for selected tab link */
body#tab1 li.tab1 a, body#tab2 li.tab2 a, body#tab3 li.tab3 a, body#tab4 li.tab4 a { 
background-color: #736F6E; /* set selected tab background color as desired */
color: #00FF00;            /* set selected tab link color as desired orig #FFF*/
position: relative;
top: 1px;
padding-top: 4px;          /* must change with respect to padding (X) above and below */
}

/* tabnav settings for all tab links */
ul#tabnav li a {           
/* padding: 3px 4px;       /* set padding around content as desired; FIRST number must change with respect to padding-top (X) above */
padding-top:4px;
padding-bottom:5px;
padding-right:3px;
padding-left:5px;
border: 1px solid #46C7C7; /* set border COLOR as desired; usually matches border color specified in #tabnav   #6c6;  */
border-bottom: none;       /* none;   */
/* background-color: #CCFFFF; OFF for use with .current set active url page to green - orig: set unselected tab background color as desired */
/* color: BLUE;               OFF for use with .current set active url page to green - orig: set unselected tab link color as desired  #2554C7; */
font: bold 10px arial, verdana, sans-serif; /* ADDED 08/21/11 to force bold - set font as desired */
margin-top: 2px; 
margin-right: 2px;         /* set additional spacing between tabs as desired */
margin-left: 0px;
margin-bottom; 2px;
text-decoration: none;     /* none;  underline;   */
}

/* tabnav settings for hover effect */
ul#tabnav a:hover { /* settings for hover effect */
background: #fff; /* set desired tab link text hover background color */ 
text-decoration: underline;  /*hover decoration */
color: #FF0000 /* set selected tab link hover color */
}

/* END css tabnav definitions of page top and page bottom tabs */

/* END of MainStyle.css                          */
