/*
	 CSS-Tricks Example
	 by Chris Coyier
	 http://css-tricks.com
*/

* { margin: 0; padding: 0; }
body { font: 11px Verdana, serif;
 text-align:center;
 color:#777777;
 }

#page-wrap { width: 768px; margin: -200; align: left}

table { border-collapse: collapse; width: 100%; }
td, th { border: 1px solid #ccc; padding: 5px; }
td:a:hover {

	color:#blank;
}
.slim { width: 88px; }
.hover { background-color: #eee; }
/* Links */

a:hover{

	color:#D90000;
}
a {
	text-decoration: none;
	transition: color 0.2s linear;
	-moz-transition: color 0.2s linear;
	-webkit-transition: color 0.2s linear;
	-o-transition: color 0.2s linear;
	outline:0 none;
	color:#868695;
}
.entry-content a {
	font-weight:bold;
}
.entry-content a:hover {
	color:#D90000;
}
a img {
	border: none;
	outline:0 none;
}
p a, 
p a:visited {
	line-height: inherit;
}
.edit-link-wrap {
	float:right;
	margin:0;
}
.edit-link a {
	padding:3px 6px;
	border: none !important;
	text-transform:uppercase;
	transition: background 0.2s linear;
	-moz-transition: background 0.2s linear;
	-webkit-transition: background 0.2s linear;
	-o-transition: background 0.2s linear;
}
.edit-link a:hover {
	text-decoration:none !important;
	color:#FFFFFF;
}