/* CSS Document */

/*Control DIV for expand all and collapse all links*/

#p7TMctrl {
	margin: 3px 0 12px 6px;
	font-size: 11px;
	display: block;
	background-color: #FFFFFF;
	/*/*/display: block; /* Hide from NN4*/
	}
#p7TMctrl a:link {
	color: #003366;
	}
#p7TMctrl a:visited {
	color: #003366;
	}
#p7TMctrl a:hover {
	color: #003366;
	}
/*Sets top and bottom margins and width of menu area*/
div#p7TMnav {
	font-family: Arial, Helvetica, sans-serif;
	margin-top: 0px;
	/*margin-bottom: 1.65em;*/
	margin-bottom: 20px;
	}
/*Sets line-height of all menuitems*/
#p7TMnav {
	line-height: 1.00;
	}
/*Sets background color and border around the menu DIV*/
#p7TMnav {
	border-bottom: 1px solid #CCCCCC;
	}
#p7TMnav div {
	background-color: #FFFFFF;
	border-top: 1px solid #CCCCCC;
	border-bottom: none;
	/*padding: .15em .25em .15em 0;*/
	padding: 3px 5px 3px 0;	
	}

/*second level menuitem divs*/
/*Sets left margin for sub-menus establishing a cascading indent*/
/*Sets border and bg color to establish the pastel BOXES*/
#p7TMnav div div {
	border-top: none;
	padding-left: 8px; 
	}
/*The Link style for top-level menuitems and is read by all browsers*/
#p7TMnav div a {
	color: #434a44;
	font-size: 90%;
	font-weight: bold;
	}
*html #p7TMnav div a {font-size: 85%;}
/*The Link style for top-level menuitems hidden from Netscape 4*/
#p7TMnav div a {
	border: 0px solid #CCCCCC;
	text-decoration: none;
	background-color: #FFFFFF;
	display: block;
	color: #434a44;
	}
#p7TMnav div a:link, #p7TMnav div a:visited {
	color: #434a44;
	}
#p7TMnav div a:hover {
	color: #990000;
	}
/*The Link styles for second-level menuitems*/
#p7TMnav div div a {
	font-size: 90%;
	font-weight: normal;
	}
*html #p7TMnav div div a {font-size: 85%;}



/*The Link style for third-level menuitems and lower*/
/*To set a specific style for the fourth level, add a div to the selector*/
/*Fourth-level example syntax: p7TMnav div div div div a {declaration}*/
#p7TMnav div div div a {font-size: 90%;}
*html #p7TMnav div div div a {font-size: 85%;}

/*rules programatically assigned to parent links when image-based 
plus and minus option is selected. The padding on the 4 following 
rules supercedes (via !important) the padding on the p7TMnav div a 
selector when you've chosen the option to use images for the plus 
and minus signs*/

.p7plusmark {
	background-repeat: no-repeat;
	background-image:    url("http://www.stanfordtickets.org/tickets/uiparts/p7t_plus_gray.gif");
	background-position: 5px 50%;
	padding: 3px 1px 3px 17px !important;
	}
.p7minusmark {
	background-repeat: no-repeat;
	background-image:    url("http://www.stanfordtickets.org/tickets/uiparts/p7t_minus_gray.gif");
	background-position: 5px 50%;
	padding: 3px 1px 3px 17px !important;
	}
/*rule programatically assigned to child links when image-based plus and minus option is selected*/
.p7defmark {
	/*background-image:  none;*/
	padding: 3px 1px 3px 17px !important;
	}
/*rules programatically assigned to page link corresponding to current page (You are Here)*/
.p7currentmark {
	color: #990000 !important;
	background-repeat: no-repeat;
	background-image:  url("http://www.stanfordtickets.org/tickets/uiparts/here.gif");
	background-position: 5px 50%;
	padding: 3px 1px 3px 17px;
	}