@charset "utf-8";
/* CSS Document */



.Cart {
    background: url(../images/cart.png) no-repeat !important;
    background-color: none !important;
    cursor: pointer !important;
    border: none !important;
    width: 145px !important;
    height: 30px !important;
    font-size: 14px;
    font-weight: bold;
}


a {text-decoration:none;}



.profile-wrapper {
	width:230px;
	position:relative;
	margin:50px auto;
	list-style:none;
}
.profile-wrapper::after {
	content: '';
	position: absolute;
	top: 20px;
	right: 10px;
	border-color: #333 transparent transparent;
	border-width: 6px;
	border-style: solid;
}
.profile-wrapper::before {
	content: '';
	position: absolute;
	top: 20px;
	right: 10px;
	border-color: #eee transparent transparent;
	border-width: 6px;
	border-style: solid;
}
.profile-wrapper:hover::after {
	border-color: #111 transparent transparent;	
}

.profile {	
	border:1px solid #000;
	border-radius:3px;
	box-shadow:0 1px 0 #555 inset, 0 1px 7px #111;
	background:-webkit-linear-gradient(#222, #111);
}
.profile:hover {
	cursor:pointer;
	background:-webkit-linear-gradient(#1f1f1f, #0a0a0a);
}
.profile .name {
	 padding: 10px 5px;
    font-size: 12px;
    color: #fff;
	display:inline-block;
	width: 100%;
  
}
.profile:hover .name {
	color:#0088cc;
}
.profile img {
	width:25px;
	display:inline;
	float:left;
	border:1px solid #111;
	border-radius:3px;
	box-shadow:0 0 3px rgba(0, 0, 0, 0.5) inset;
}

/* hide menu */
.usermenu {
	display:none;
	clear:both;
	margin:20px 0 0 0;
}
.usermenu li {
	list-style:none;
	font-size:12px;
	margin:10px 0 0;
}

.usermenu li a {
	color:rgba(240,245,250,.7);
}
.usermenu li:hover a {
	color:#eee;
}

/* hover profile show menu */
.profile:hover .usermenu {
	display:block;
}