div#clock_container.emcom {
	/* on page initially, will have the clock loaded as content */
	margin: 20px 0;
	overflow: hidden;
	color: white;
}

div#clockframe {
	/* part of the clock content */
	float: left;
	border: 5px solid rgb(30,30,30);
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	overflow: auto;
	background-color: rgb(30,30,30);
}

table.clock {

	border-collapse: collapse;
	color: rgb(204,204,204);
	empty-cells: show;
}

table.clock tr {
}
  
table.clock tr.open {
	color: white;
	background-color: rgb(64,64,64);
}
 
table.clock tr.open span.abbrev {
	/* to indicate where expanded info is available on hover */
	border-bottom: 1px dotted white;
}
  
table.clock tr.closed {
	color: rgb(153,153,153);
}

  
table.clock tr.closed span.abbrev {
	border-bottom: 1px dotted rgb(153,153,153);
}
  
table.clock td {
	padding: 0 10px;
	white-space: nowrap;
}
  
table.clock div.analogue {
	width: 288px;
	height: 16px;
	background-image: url(images/dial.gif);
	background-repeat: repeat-x;
	position: relative;
	padding: 6px;
	overflow: hidden;
}

table.clock div.workday {
	height: 16px;
	background-color: rgb(255,255,0);
	opacity: 0.4;
	filter: alpha(opacity=40, style=0); /*older IE */
	-moz-opacity: 0.4; /*older FF */
	z-index: 2;
	position: absolute;
  }

 table.clock div.cursor2 {
	width: 2px;
	background-color: rgb(221,0,0);
	height: 160px;
	position: absolute;
	left:144px;
	top: 0px;
	z-index: 3;
  }

