
/*********************************** The entire menu  *******************************************/

#menu {
	margin:0px auto;
	margin-top:8px;
	padding:0px;
	text-align:center;
	list-style:none;
	width:550px;
	height:30px;
	z-index:+1;
	position:relative;

	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
	
	-webkit-box-shadow:0px -4px 4px rgba(113, 113, 113, .3);
	-moz-box-shadow:0px -4px 4px rgba(113, 113, 113, .3);
	box-shadow:0px -4px 4px rgba(113, 113, 113, .3);

	background:url(../images/tricks_menu_background.png) repeat-x;
	border:1px solid;
	border-color:#0274bd
}

/*********************************** The menu tab-items *******************************************/

#tab-list {
	display:inline-block;
	border:none;
	list-style:none;
	margin-top:4px;
	padding:3px 20px 8px 20px;
}

#tab-list:hover {
	display:inline-block;
	border:1px solid #9caebf;
	list-style:none;
	margin-top:4px;
	padding:2px 19px 7px 19px;  /* Each pixel padding must be 1 less pixel than the above state because the 1 pixel border pushes the other tabs over during hover. */
	background:#f6f7fb;  /* Background color of menu tab on hover. */
	
	/* Rounded corners */
	-moz-border-radius: 5px 5px 0px 0px;
	-webkit-border-radius: 5px 5px 0px 0px;
	border-radius: 5px 5px 0px 0px;
}

/****************************** The text inside the menu tab-items ***********************************/

#tab-list a {
	font-size:13px; 
	color:#000000; /* Sets font color of menu item. */
	font-weight:bold;
	text-decoration:none;  /* Get rid of underlined link. */
	text-shadow:1px 1px 1px #FFFFFF;
	list-style:none;
	text-align:center;
}

#tab-list:hover > a {  /* when tab is hovered, change text color instead of when text is hover */
	font-size:13px; 
	color:#c30d0d; /* Sets font color of menu item. */
	font-weight:bold;
	text-decoration:none;  /* Get rid of underlined link. */
	text-shadow:1px 1px 1px #FFFFFF;
	list-style:none;
	text-align:center;
}

/****************************** Drop-down menus are styled as one ID ***********************************/

#dropdown {
	margin:0px auto;
	width:inherit;
	float:left;
	position:absolute;
	left:-999em; /* Hides the drop down */
	padding:5px 5px 5px 5px;
	border-width:1px 1px 1px 1px;
	border-color:#9caebf;
	border-style:solid;
	line-height:124%;
	
	background: -moz-linear-gradient(top,  rgba(235,237,243,1) 0%, rgba(245,246,249,0.85) 50%, rgba(255,255,255,0.85) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(235,237,243,1)), color-stop(50%,rgba(245,246,249,0.85)), color-stop(100%,rgba(255,255,255,0.85))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(235,237,243,1) 0%,rgba(245,246,249,0.85) 50%,rgba(255,255,255,0.85) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(235,237,243,1) 0%,rgba(245,246,249,0.85) 50%,rgba(255,255,255,0.85) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(235,237,243,1) 0%,rgba(245,246,249,0.85) 50%,rgba(255,255,255,0.85) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(235,237,243,1) 0%,rgba(245,246,249,0.85) 50%,rgba(255,255,255,0.85) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebedf3', endColorstr='#d9ffffff',GradientType=0 ); /* IE6-9 */


	-moz-border-radius: 0px 0px 5px 5px;
	-webkit-border-radius: 0px 0px 5px 5px;
	border-radius: 0px 0px 5px 5px;
	-o-border-radius: 0px 0px 5px 5px;
	
}

/********* On tab-item hover, change the properties of each individual dropdown menu  **********************/

#menu li:hover .beginner {
	left:61px;
	top:30px;
	width:inherit;
	margin-top:0px;
	position:absolute;
	list-style:none;
}

#menu li:hover .intermediary {
	left:-85px;
	top:30px;
	width:inherit;
	margin-top:0px;
	position:absolute;
	list-style:none;
}

#menu li:hover .professional {
	left:-120px;
	top:30px;
	width:inherit;
	margin-top:0px;
	position:absolute;
	list-style:none;
}

#menu li:hover .master {
	left:-72px;
	top:30px;
	width:inherit;
	margin-top:0px;
	position:absolute;
	list-style:none;
}

/*---------------------------- The column that holds the list-item tricks --------------------*/

.col_1 {
	margin-left:5px;
	margin-right:5px;
	padding-bottom:10px;
	width:140px;
	display:inline-block; 
	list-style:none;
	float:left;
}

/*---------------------------- The container inside .col_1 that holds the list-item tricks --*/

#menu li ul {
	width:100%;
	list-style:none;
}

/*-------------------------------------------------------------------------------------------*/

#menu ul li {
	font-size:12px;
	text-shadow: 1px 1px 1px #FFFFFF;
	float:left;
}

/*---------------------The container for each text link on dropdown menu---------------------*/

#menu li ul li {
	margin:0px;
	padding:4px 6px 4px 6px;
	width:140px;
	font-size:12px;	
	float:left;
	text-shadow: 1px 1px 1px #ffffff;
}

#menu li ul li:hover {
	margin:0px;
	padding:4px 6px 4px 6px;
	width:140px;
	font-size:12px;
	float:left;
	text-shadow: 1px 1px 1px #ffffff;
}

/*---------------------The text for each text link on dropdown menu---------------------------*/

#menu li ul li a {
	color:#1b1b1b; /* gray text */
	font-size:12px;
	float:left;
}

#menu li ul li a:hover {
	color:#c30d0d; /* red text */
	font-size:12px;
	float:left;
}

/*--------------------------------------------------------------------------------------------*/
