/**
 * jQuery gComplete v0.1.x - default theme
 *
 * Terms of Use - jQuery gComplete
 * under the MIT (http://www.opensource.org/licenses/mit-license.php) License.
 *
 * Copyright 2010 xlune.com All rights reserved.
 * (http://blog.xlune.com/2010/02/jquerygcomplete.html)
 */

div.gcomplete-default-box {
	border: 1px solid #555555;
	background-color: #FFFFFF;
	font-size: 16px;
	font-family: arial,sans-serif;
	cursor: default;
}
/* Webkit hack. */
@media screen and (-webkit-min-device-pixel-ratio:0) {
	div.gcomplete-default-box {
		margin-left: 2px;
		margin-top: 2px;
	}
}

/**
 * List default Style
 */
div.gcomplete-default-box dl {
	display: table;
	width: 100%;
	margin: 0;
	padding: 0;
	cursor: default;
}
div.gcomplete-default-box dl dt {
	display: table-cell;
	margin: 0;
	padding: 2px;
	line-height: 22px;
}
div.gcomplete-default-box dl dd {
	display: table-cell;
	text-align: right;
	margin: 0;
	padding: 2px 2px 2px 5em;
	font-size: 0.8em;
	line-height: 22px;
	color: green;
}

/**
 * List rollover Style
 */
div.gcomplete-default-box dl.over {
	background-color: #3366CC;
}
div.gcomplete-default-box dl.over dt {
	color: #FFFFFF;
}
div.gcomplete-default-box dl.over dd {
	color: #FFFFFF;
}
