.title {
	margin-top: 24px;
}

.intro {
	min-height: 180px;
}


/* top menu */

#menu_top ul {
	position: absolute;
	top: 60px; /* 90 - 30 header margin */
	left: -30px; /* this plus the side padding makes the menu extend past the page edges to the window edges */
	width: 100%;
	padding: 0 30px;
	background: #FFFEFD;
	display: none; /* we'll change this to block from the click_menu_button function to show the submenu */
}

#menu_top ul li {
	padding: 0;
	font-weight: 600; /* the desktop version doesn't need this */
}

#menu_top ul li a {
	padding: 24px 0;
	display: block; /* this makes the whole square clickable */
}
/* this is no longer needed because we're using our .hover_supported tag to remove hover styles on touchscreen devices:
#menu_top ul li:hover a {
	/ * don't use the hover styles set by the main template * /
	/ * we can't hover on a touchscreen, but the iPhone treats a click as a hover * /
	background: none;
	color: #041417;
}
*/
#menu_top ul li a.active {
	/* don't use the active styles set by the main template */
	background: none;
	color: #041417;
}


/* top submenus */

#menu_top ul li ul {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	padding: 0;
	color: #041417;
	background: none;
	z-index: 0;
	display: none; /* we'll change this to block from the click_menu_item function to show the submenu */
}
/* this is no longer needed because we're using our .hover_supported tag to remove hover styles on touchscreen devices:
#menu_top ul li:hover ul {
	display: block;
}
*/

#menu_top ul li ul li {
	font-weight: normal; /* the submenu doesn't need this */
	/*border-bottom: 1px solid #041417; */
}

#menu_top ul li ul li a {
	display: block; /* this lets us add padding, so the whole square is clickable */
	padding: 8px 0;
	color: #041417 !important;
}
/* this is no longer needed because we're using our .hover_supported tag to remove hover styles on touchscreen devices:
#menu_top ul li ul li a:hover {
	/ * don't use the hover styles set by the main template * /
	/ * we can't hover on a touchscreen, but the iPhone treats a click as a hover * /
	color: #041417 !important;
}
*/
#menu_top ul li ul li a.active {
	/* don't use the active styles set by the main template */
	color: #041417 !important;
}


.feature_box_full, .feature_box_half {
	height: auto;
	padding: 30px;
}


.phone_hide {
	display: none;
}

.desktop_hide {
	display: block;
}
