﻿/********* Search **********
A standard layout for the search box
Assumes the following structure:

#search
	label
		input.searchterm
			.searchButton
	#searchResults {visible only when search button is clicked}

----------------------------*/
#search
{
	float: right;
	width: 280px;
}

#search #searchResults
{
	z-index: 100;
	position: relative;
	padding: 5px;
	margin: 0;
	border: solid 1px;
}

#searchResults ul
{
	padding: 0;
	margin: 5px;
}

#searchResults ul li
{
	list-style-position: inside;
}

/********* Previous / Next Links **********
A standard layout for the previous entry and 
next entry links.
Assumes the following structure:

.previousNext
	a
	span " | "
    a
	span " | "
	a
----------------------------*/
div.previousNext
{
	width: 100%;
	text-align: center;
	font-size: .9em;
	padding: 4px;
}


/********* Blog Stats **********
Renders blog stats in a horizontal fashion.

Sample usage:
<dl title="Blog Statistics" id="blogStats">
	<dt>posts</dt>
	<dd><asp:Literal ID="PostCount" Runat="server" /></dd>
	<dt>comments</dt>
	<dd><asp:Literal ID="CommentCount" Runat="server" /></dd>
	<dt>trackbacks</dt>
	<dd><asp:Literal ID="PingTrackCount" Runat="server" /></dd>
</dl>

*/
#blogStats
{
	float: right;
	text-align: right;
	font-size: .7em;
}

#blogStats dt, #blogStats dd
{
	float: left;
	margin: 0;	
}

#blogStats dt
{
	padding-right: 2px;
	margin-right: 2px;
	text-transform: lowercase;
}

#blogStats dd
{
	margin-right: 7px;
}

/********* Captcha **********/
div.captcha
{
	margin: 2px 0 8px 6px;
}

div.captcha img
{
	width: 180px;
	height: 50px;
	border: solid 1px #999;
	display: block;
}

div.captcha label
{
	display: inline;
	float: left;
}

div.captcha input
{
	margin-left: 4px;
	display: inline;
}

/*Colorizzatore Codice C#*/

pre { margin: 0em; }

.rem  { color: #669900; }

.kwrd { color: #0030ff; }

.str { color: #FF0000; }

.op { color: #330000; }

.preproc { color: #006666; }

.asp { background-color: #ffff00; }

.html { color: #6600CC; }

.attr { color: #FF0000; }

.alt  
{
	background-color: #A4A4FF;
	width: 100%;
	margin: 0em;
}

.lnum{ color: #606060; }


/* C# */
.CSharpFormat, .CSharpFormat pre
{
	font-size: 8pt;
	color: black;
	font-family:"Courier New", Courier, Monospace;
	background-color: #C0FFC0;
	/*white-space: pre;*/
}


/* VB */
.VisualBasicFormat, .VisualBasicFormat pre
{
	font-size: 8pt;
	color: black;
	font-family:"Courier New", Courier, Monospace;
	background-color: #C0C0FF;
	/*white-space: pre;*/
}


/* HTML XML ASP */
.HtmlFormat, .HtmlFormat pre
{
	font-size: 8pt;
	color: black;
	font-family:"Courier New", Courier, Monospace;
	background-color: #FFE0C0;
	/*white-space: pre;*/
}

/* TSql */
.TsqlFormat, .TsqlFormat pre
{
	font-size: 8pt;
	color: black;
	font-family:"Courier New", Courier, Monospace;
	background-color: #FFFFC0;
	/*white-space: pre;*/
}


/* Msh */
.MshFormat, .MshFormat pre
{
	font-size: 8pt;
	color: black;
	font-family:"Courier New", Courier, Monospace;
	background-color: #C0FFFF;
	/*white-space: pre;*/
}


/*Colorizzatore Codice C#*/
