/*Script by Dan Pearce 1/20/2010                                                     */
/* - using popup menu concept to provide an extended viewing area                    */
/*                                                                                   */
/* concept of using a scalable breadcrumb arrow comes from Veerle Pieters blog       */
/* http://veerle.duoh.com/blog/comments/simple_scalable_css_based_breadcrumbs/       */
/*                                                                                   */
/* for the print version I'm rearranging the navbar info   */
/* into a right column below the main content              */

#navbar {  /* in print this just forms a nice index heading at the top of the page */
position:fixed;
top:0.0in;        /*Risky: attempting to find a fixed position on the page for this content*/
height:0.25in;
width: 6.98in;      /*set to full width of printable area*/
font-size : 90%;
border:1px solid #777;  /*this border is for navbar*/
}

#navbarnc {      /* in print this section will start below the gallery in a two collumns */
position:fixed;
top:4.3125in;        /*Risky: attempting to find a fixed position on the page for this content*/
height:3.5in;
width:6.855in;
border:1px solid #777;  /*this border is for navbarnc*/
padding:0.0625in;
z-index:5;
}

#navbar ul, navbarnc ul {    
float:left;
}

#navbar li a, #navbar li.current, 
#navbarnc li a  { /*top level navbar items*/
  line-height:0.25in;/*height of navigation bar elements*/
  color:#777;       /*gray*/
	padding: 0 .75em 0 .75em; /*have to set padding etc directly to the <a> item*/
 /*so that selectable area of link will be full width and height of navbar   */
	text-decoration:none;  /*need to reset this from default so links aren't underlined*/
	}

#navbarnc li a  {
border:1px solid #777;  /*this print border is for navbarnc items*/
}	
#navbarnc li ul a  {
border:none;  /*no print borders for sub elements of navbarnc*/
padding:none;
line-height:1.0em;
}	

	
#navbar li.crumb {  /*veerle's approach but only used for id=crumb */
	float:left;
	background:url(crumbs.gif) no-repeat right center;  /*note: background won't print.  Grrr. */
	}		

#navbar li.current{  /* the "current" item just gets a right border */
	float:left;
  border-right : 1px solid #777; /* border on right instead of bread crumb icon */
color: #000;   /*black text*/
text-transform: uppercase; /*all upper case*/
	}	
		
/*now links and headings at main level*/
#navbar li a {
display: block;    /*set these to "block" so we can float them*/
margin: 0;
}

#navbarnc li.nocrumb {  /* options with id=nocrumb just get a right border */
width:49%;
	margin-right:1%;
	margin-top: 0.0em;
float:left;
	}	


#navbarnc img{      /*reducing size of images inside the navbarnc items like bio*/
width:0.75in;
height:auto;
    float: left; 
    margin-right: 0.0625in; 
}

#navbarnc .printfooter{
position:fixed;
top:8.0in;        /*Risky: attempting to find a fixed position on the page for this content*/
left:0;
width:6.855in;
height:1.25in;
padding:.0625in;
border:1px solid #777;  /*this border is for the address bar*/
z-index:5;
}
#navbarnc #contact.vcard .printcolumn2 {
position:absolute;
top:0.0625in;        /*Risky: attempting to find a fixed position on the page for this content*/
left:3.5in;
width:3in;
z-index:5;
}
