@charset "UTF-8";
/* CSS Document */

body
{
	/* Fix for :hover behavior for IE6.0. Path from HTML file contains css*/
	behavior: url("/css/csshover.htc");
}

/* Main list ul block */
#popupList *
{
	margin: 0px;
	padding: 0px;
}

#popupList
{
	list-style: none;
	width: 105px;
	float: left;
	padding-left: 0px; /* fix for Mozilla ul box */
	margin-left: 0px; /*fix for IE ul box */
	
}

#popupList li
{
	border-bottom: 1px solid white;
	border-left: 1px solid white;
	float: left; /* for IE gap bug*/
	position: relative; /* for position popup relative */
	margin: 0px;
	padding: 0px;
}

#popupList a
{
	display: block;
	width: 105px;
	padding: 10px;
	text-decoration: none;
	background-color: #CCCCCC;
	color: #000000;
	margin: 0px;
}

#popupList a:hover
{
	background-color: #f88856;
}

#popupList li ul
{
	list-style: none;
	display: none;
	position: absolute;
	left: 125px;
	top: 0px;
	margin: 0px;
}

#popupList li ul a
{
	width: 200px;
}

/* Δεύτερο επίπεδο popup */
.subMenu li ul
{
	list-style: none;
	display: none !important;
	position: absolute;
	left: 125px;
	top: 0px;
	margin: 0px;
}

#popupList li:hover ul
{
	display: block;
}

/* Δεύτερο επίπεδο popup */
.subMenu li:hover ul
{
	display: block !important;
}

