/*
	Plugin:			Superfish v1.6.9 - jQuery menu widget
	Author:			Joel Birch
	Copyright:		© 2013 Joel Birch
	Website:		http://users.tpg.com.au/j_birch/plugins/superfish/#getting-started
	License:		Dual licensed under the MIT and GPL licenses: http://www.opensource.org/licenses/mit-license.php & http://www.gnu.org/licenses/gpl.html
	 
	Modifier: 		Gregory Blain
    Project:		King’s Tile & Wood: (www.kingstile.com), an informative website to demonstrate tile and wood techniques to drive business.
    Client:			Russ King

    Document:		superfish.css
    Updated:		4-12-2013
	Version:		2.1.2
    Purpose:		Cascade Style Sheet used to control Superfish drop-down menus on King's Tile Website.
*/

	/*
	Colors Used:
	rgb(0, 0, 0) 		- Normal Font Text			- Black				Hex: #000000	
	rgb(137, 183, 217)	- Nav Bar Dropdowns			- Light Blue 		Hex: #89B7D9
	rgb(112, 85, 81)	- Hover Nav Bar Dropdowns	- Medium Brown		Hex: #705551
	rgb(247, 231, 186) 	- Main Content Area			- Light Tan			Hex: #F7E7BA 
	rgb(252, 247, 232)	- Social Share Background	- light Cream		Hex: #FCF7E8
	*/


	/* Essential Styles */
.sf-menu, .sf-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
	}

.sf-menu li {
	position: relative;
	}
	
.sf-menu ul {
	position: absolute;
	display: none;
	top: 100%;
	left: 0;
	z-index: 99;
	}

.sf-menu > li {
	float: left;
	}
	
.sf-menu li:hover > ul, .sf-menu li.sfHover > ul {
	display: block;
	}

.sf-menu a {
	display: block;
	position: relative;
	height: 12px;
    line-height: 9px;
	}
	
li.menuWidth {
	width: 155px;			/* Drop-down menu catergory width. */
	}

	/* Demo Skin */
.sf-menu {
	float: left;
	margin-bottom: 0em;
	}
	
.sf-menu ul {
	min-width: 12em; 						/* Allow long menu items to determine submenu width. */
	}
	
.sf-menu a {
	border-style: groove;
	border-width: 4px;
	border-color: rgb(247, 231, 186);
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	padding-left: 1.2em;
	padding-right: 1.2em;
	text-decoration: none;
	}
	
.sf-menu a, .sf-menu a:visited  {
	color: rgb(0, 0, 0);					/* Text color in drop-down meuns. */
	}
	
.sf-menu li {			
	background: rgb(137, 183, 217);			/* Nav Bar color in drop-down menus. */
	white-space: nowrap; 					/* No need for Supersubs plugin. */
	-webkit-transition: background .2s;
	transition: background .2s;
	}
	
.sf-menu ul li {
	background: rgb(137, 183, 217);			/* Nav Bar color in drop-down submenus. */
	}
	
.sf-menu li:hover, .sf-menu li.sfHover, .sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active {
	background: rgb(112, 85, 81);			/* Hover Nav Bar color in drop-down menus. */
	color: rgb(137, 183, 217);				/* Hover text color drop-down menus. */
	outline: 0;
	-webkit-transition: none;				/* Only transition out, not in. */
	transition: none;
}