/* Overall width */
#container {
    width: 900px;
}

#header {
   background-color: #fff;
}
/* Height of photo bar */
#title {
    height: 428px;
}

/* Title bar with the photo */
#title {
    background-image:url('http://blogs.msdn.com/photos/netcfteam2/images/9810675/original.aspx');
    color: #fff;
    background-position: bottom;
    background-position: 
    background-repeat: none;
}

/* Color of links */
a:visited,
a:active,
a:link,
post h2 a:hover { 
    color: #AF9C83;
}

/* Main back color items */
body,
#contentwrapper,
post h2,
#sidebar-a h3 {
    background-color: #332F30;
}

/* Nav bar underneath title should be same as links */
#nav {
   background-color: #AF9C83;
}

/* This is the background color of the actual post */
#content,
#sidebar-a {
    background-color: #ffffff;
    margin-top: 0px;
}

/* Color of links when hovering */

a:hover,
#header a:hover {
    color: #332F30;
}

/* Sames as the post backcolor for main color */
#header a:visited,
#header a:active,
#header a:link,
post h2 a:visited,
post h2 a:active,
post h2 a:link { 
    color: #fff;
}


/* Inverted colors for post header and sidebar header */
post h2,
#sidebar-a h3 {
    color: #ffffff;
    font-size: 1.2em;
    padding: 10px;
}

/* Remove the underline from links */
#search a:active,
#search a:visited,
#search a:link,
#search a:hover,
#sidebar-a a:active,
#sidebar-a a:visited,
#sidebar-a a:link,
#sidebar-a a:hover {
    text-decoration : none;	
}

/* Since the post title is inverted, I don't want a border at the bottom */
postfoot {
    border-bottom-style: none;
    padding: 0px;
}

/* News Box */
#news {
    margin: 0px;
    padding: 0px;
    border: none;
}

/* New News div id for me to ensure that news is padded correctly */
#newsitem {
   padding: 10px;
}

/* make sure them isn't showing any corner images, etc */
#nav {
    background-image:url();
}

#contentwrapper {
    background-image:url();
}

#contentfooter {
    background-image:url();
}

td
{
    font-size: 0.8em;
}

/* This formats the code snippets inline in blogs, modified since taking it from http://www.manoli.net/csharpformat/format.aspx */
.csharpcode, .code
{
	font-size: 13px; /* this causes rendering problem in IE */
	color: black;
	font-family: Courier New , Courier, Monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
	overflow: auto; /* prevent code going out of bounds */
	padding: 5px; /* >= 1px prevents unneeded scroll bars */
	max-height: 400px; /* prevent long code segments from taking too much screen */
	_width: 100%; /* IE width hack */
	_padding: 20px;
}

.csharpcode pre { margin: 0em; }

.csharpcode .rem { color: #008000; }

.csharpcode .kwrd { color: #0000ff; }

.csharpcode .str { color: #006080; }

.csharpcode .op { color: #0000c0; }

.csharpcode .preproc { color: #cc6633; }

.csharpcode .asp { background-color: #ffff00; }

.csharpcode .html { color: #800000; }

.csharpcode .attr { color: #ff0000; }

.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}

.csharpcode .lnum { color: #606060; }

/* a nice PRE style for command-line references */
.command {
	overflow: auto; /* prevent code going out of bounds */
	background-color: black;
	color: #D3D3D3;
	font-size: 13px;
	padding: 5px; /* >= 1px prevents unneeded scroll bars */
	max-height: 400px; /* prevent long code segments from taking too much screen */
	_width: 600px; /* IE hack */
	_padding: 20px;
}