 /*Main Navigation Menus*/
/*#navigation {
	background:#67bfb5;
	height:39px;
	clear:both;

}
#nav {
   	font: 12px Arial, Helvetica, Sans-serif;
    overflow: hidden;
	width:960px;
	margin:0px auto;
}

#nav ul {
	margin:0;
	padding:0;
	list-style:none;
}

#nav ul li {
	float:left;
}

#nav ul li .heading{
	background:#CCCCCC;
	margin-top:8px;
	text-align:left;
	height:30px;
	width:230px;
	color:#000000;
	line-height:30px;
	padding-left:10px;
	font-weight:bold;
	color:#666666;
}
#nav ul li a {
   	float: left;
	color:#fff;
    padding: 12px 20px;
	text-decoration:none;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset, 0 0 5px rgba(0, 0, 0, 0.1) inset;
	border-left: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(0,0,0,0.2);
}
#nav ul li.current_nav a{
	text-decoration:none;
	background:#FFFFFF;
	color:#252525;
}
#nav ul li.current_nav:hover{
}
#nav ul li.current_nav,
#nav ul li:hover > a {
    	color: #252525;
    	background:#fff;
	background: -webkit-gradient( linear, left bottom, left top, color-stop(0.09, rgb(77,79,79)), color-stop(0.55, rgb(67,70,71)), color-stop(0.78, rgb(69,70,71)) );
	background: -moz-linear-gradient( center bottom, rgb(77,79,79) 9%, rgb(67,70,71) 55%, rgb(69,70,71) 78% );
	background: -o-linear-gradient( center bottom, rgb(77,79,79) 9%, rgb(67,70,71) 55%, rgb(69,70,71) 78% );
    	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2), 0 -1px #000;

}

#nav li ul a:hover, 
#nav ul li li:hover > a  {
    color: #fff;
  	background: #2ea085;
    text-shadow: 0 1px rgba(255, 255, 255, 0.3);
}



#nav li ul {
    	background:#fff;
    	border-radius: 0 0 10px 10px;
    	-moz-border-radius: 0 0 10px 10px;
    	-webkit-border-radius: 0 0 10px 10px;
    	left: -999em;
    	margin: 35px 0 0;
    	position: absolute;
    	width: 240px;
    	z-index: 9999;
    	box-shadow: 0 0 15px rgba(0, 0, 0, 0.4) inset; 
    	-moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.4) inset; 
    	-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.4) inset; 
    	border: 1px solid rgba(0, 0, 0, 0.5);
}

#nav li:hover ul {
    	left: auto;
		clear:both;
		z-index:9999;
		
}

#nav li ul a {
    	background: none;
    	border: 0 none;
    	margin-right: 0;
    	width: 218px;
    	box-shadow: none;
    	-moz-box-shadow: none;
    	-webkit-box-shadow: none;
    	border-bottom: 1px solid transparent;
    	border-top: 1px solid transparent;
		color:#000000;
		border-bottom:1px dotted #333333;
		padding: 8px 12px 8px 10px;


}

#nav li li ul {
    	margin: -1px 0 0 160px;
    	-webkit-border-radius: 0 10px 10px 10px;
    	-moz-border-radius: 0 10px 10px 10px;
    	border-radius: 0 10px 10px 10px;
    	visibility:hidden;
}

#nav li li:hover ul {
    	visibility:visible;
}

#nav ul ul li:last-child > a {
	-moz-border-radius:0 0 10px 10px;
	-webkit-border-radius:0 0 10px 10px;
	border-radius:0 0 10px 10px;
}

#nav ul ul ul li:first-child > a {
	-moz-border-radius:0 10px 0 0;
	-webkit-border-radius:0 10px 0 0;
	border-radius:0 10px 0 0;
}

Ending Navigation menus

top Dropdown Myaccount Menus

.wrapper-demo:after {
    clear: both;
    content: "";
    display: table;
}

.wrapper-dropdown-5 {
    position: relative;
    width: 100px;
    margin: 0 auto;
    padding: -2px 15px;
    background: #01c6ad;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
	color:#fff;
	padding-left:8px;
	border:1px solid #06d1b7;
}

.wrapper-dropdown-5:after { Little arrow
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -3px;
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: #00b49d transparent;
}

.wrapper-dropdown-5 .dropdown {
    Size & position
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    Styles
    background: #fff;
    border-radius: 0 0 5px 5px;
    border: 1px solid rgba(0,0,0,0.2);
    border-top: none;
    border-bottom: none;
    list-style: none;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;

    Hiding
    max-height: 0;
    overflow: hidden;
	width:180px;
	z-index:9999;
}

.wrapper-dropdown-5 .dropdown li {
    padding: 0 10px ;
}

.wrapper-dropdown-5 .dropdown li a {
    display: block;
    text-decoration: none;
    color: #333;
    padding: 4px 10px;
    transition: all 0.3s ease-out;
    border-bottom: 1px solid #e6e8ea;
}
.dropdown_current{
	color: #fff;
	background:#1fd0b2;
  
}

.wrapper-dropdown-5 .dropdown li:last-of-type a {
    border: none;
}

.wrapper-dropdown-5 .dropdown li i {
    margin-right: 5px;
    color: inherit;
    vertical-align: middle;
}

Hover state

.wrapper-dropdown-5 .dropdown li:hover a {
    color: #fff;
	background:#1fd0b2;

}

Active state

.wrapper-dropdown-5.active {
    border-radius: 5px 5px 0 0;
    background: #14a490;
    box-shadow: none;
    border-bottom: none;
    color: white;
}

.wrapper-dropdown-5.active:after {
    border-color: #04bfa5 transparent;
}

.wrapper-dropdown-5.active .dropdown {
    border-bottom: 1px solid rgba(0,0,0,0.2);
    max-height: 400px;
}

Ending top Dropdown Myaccount Menus
-----------------breadcrumbs------------------------
.breadcrumb{
	width:930px;
	height:35px;
	background:#e8e8e3;
	margin:3px auto 3px auto;
}

.breadcrumb {
  padding: 7px 14px;
  margin: 0 0 18px;
  list-style: none;
  background-color: #fbfbfb;
  background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
  background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f5f5f5));
  background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
  background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
  background-image: linear-gradient(top, #ffffff, #f5f5f5);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);
  border: 1px solid #ddd;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 1px 0 #ffffff;
  -moz-box-shadow: inset 0 1px 0 #ffffff;
  box-shadow: inset 0 1px 0 #ffffff;
  width:930px;
  margin:3px auto 3px auto;
  }
.breadcrumb li {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  text-shadow: 0 1px 0 #ffffff;
  }
  
.breadcrumb li a{
	color:#029584;
  font-size:12px;
  }

.breadcrumb .divider {
  padding: 0 5px;
  color: #999999;
  }

.breadcrumb .active a {
  color: #ababa5;
  text-decoration:none;
  }
.breadcrumb span{
	float:left;
	margin-right:8px;
	margin-top:-2px;
}
.breadcrumb .rounded {
    width: 20px;
    height:20px;
    background-color:#fff;
    color: #fff;
	float:left;
	margin-right:8px;
	margin-top:-7px;
	border:1px solid #CCCCCC;
	border-radius: 60px;
	-moz-border-radius: 60px;
	padding:3px;
}
 
 */