/*
/blogs/scripts/XFNHighlighter.css
/blogs/skins/_System/csharp.css
/blogs/skins/_System/commonstyle.css
/blogs/skins/_System/commonlayout.css
/blogs/Skins/NewAge/style.css
*/

/* /blogs/scripts/XFNHighlighter.css */
div.xfnFriendInfoBox
{
	text-align: left;
	z-index: 1000;
	border: solid 1px black;
	background-color: #faf4cf;
	color: #333;
	width: 200px;
	font-size: smaller;
	font-family: Arial, helvetica, Sans-Serif;
	padding-left: 4px;
}

div.xfnFriendInfoBox h3
{
	margin: 0;
	padding: 0;
}

div.xfnFriendInfoBox ul
{
	margin: 0;
}

div.xfnFriendInfoBox ul li
{
	margin: 0;
}

a.xfnRelationship
{
	/*
		padding-right: 13px;
	background: url(../images/friends.png) no-repeat right;
	*/
	white-space: nowrap;
	padding-right: 26px;
	background: url(../../images/xfn-small.png) no-repeat right;
}

a.xfnRelationship[rel~="colleague"],
a.xfnRelationship[rel~="co-worker"]
{
	padding-right: 21px;
	background: url(../images/xfn-colleague.png) no-repeat right;
}

a.xfnRelationship[rel~="colleague"][rel~="met"],
a.xfnRelationship[rel~="co-worker"][rel~="met"]
{
	padding-right: 26px;
	background: url(../../images/xfn-colleague-met.png) no-repeat right;
}

a.xfnRelationship[rel~="friend"]
{
	padding-right: 21px;
	background: url(../images/xfn-friend.png) no-repeat right;
}

a.xfnRelationship[rel~="friend"][rel~="met"]
{
	padding-right: 26px;
	background: url(../../images/xfn-friend-met.png) no-repeat right;
}

a.xfnRelationship[rel~="sweetheart"]
{
	padding-right: 21px;
	background: url(../images/xfn-sweetheart.png) no-repeat right;
}

a.xfnRelationship[rel~="sweetheart"][rel~="met"]
{
	padding-right: 26px;
	background: url(../../images/xfn-sweetheart-met.png) no-repeat right;
}

a.xfnRelationship[rel~="child"]
{
	padding-right: 21px;
	background: url(../../images/xfn-child.png) no-repeat right;
}

a.xfnRelationship[rel~="parent"]
{
	padding-right: 21px;
	background: url(../../images/xfn-parent.png) no-repeat right;
}

a.xfnRelationship[rel~="spouse"]
{
	padding-right: 21px;
	background: url(../../images/xfn-spouse.png) no-repeat right;
}

a.xfnRelationship[rel~="me"]
{
	padding-right: 21px;
	background: url(../../images/xfn-me.png) no-repeat right;
}

/* /blogs/skins/_System/csharp.css */
/*
Stylesheet for C#, VB, HTML/XML/ASPX, T-SQL, MSH

Downloaded from http://www.manoli.net/csharpformat/

This stylesheet is useful if you use the manoli.net code formatter.
*/

.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: Consolas, "Courier New", Courier, Monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}

.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; }
/* /blogs/skins/_System/commonstyle.css */
/********* DropCap **********
Apply to the first letter of a post. 
Makes a nice magazine effect.

Make sure to overide border, font, etc... choices.
*/
.dropcap 
{
	float: left;
	font: 4em georgia, helvetica, verdana, arial, sans-serif;
	border: solid 1px;
	padding: 5px;
	margin-right: 5px;
}


/********* Image Drop Shadow **********
Applies a nice dropshadow to a block element.
Must be combined with .innerbox.

Sample usage:
<div class="dropshadow"><div class="innerbox">Text or image</div></div>

*/
.dropshadow
{
	float:left;
	clear:left;
	background: url(../../images/shadowAlpha.png) no-repeat bottom right !important;
	background: url(../../images/shadow.gif) no-repeat bottom right;
	margin: 10px 0 10px 10px !important;
	margin: 10px 0 10px 5px;
	padding: 0px;
	display: block;
}

.innerbox
{
	position:relative;
	bottom: 6px;
	right: 6px;
	border: 1px solid #999999;
	padding: 4px;
	margin: 0px 0px 0px 0px;
	display: block;
}

.innerbox
{
	/* IE5 hack */
	\margin: 0px 0px -3px 0px;
	ma\rgin:  0px 0px 0px 0px;
}

/* This applies to debug information when compiled as a #DEBUG release. */
div.debug
{
	font-size: x-small;
	width: 200px;
	position: absolute;
}

/********* PrintIcon **********
Applies a print icon to a print link.

Sample usage:
<a class="printIcon"...></a>

*/
a.printIcon
{
	background: url('../../images/printer.png') no-repeat top left;
	padding-bottom: 4px;
}

a.printIcon span
{
	background: url('../../images/printer.png') no-repeat top left;
	padding-left: 17px;
}

/********* ShareIcon **********
Applies a share-icon to an element with the shareIcon class.
http://shareicons.com/

Sample usage:
<a class="shareIcon"...></a>

*/
.shareIcon
{
	background: url('../../images/share-icon-16x16.png') no-repeat center left;
}

/********* Gravatar **********
This is an avatar thumbnail displayed next to a blog post.

Sample usage within comments.ascx:
<asp:Image runat="server" id="GravatarImg" visible="False" class="gravatar"></asp:Image>
*/
img.avatar
{
	float: left;	
	width: 50px;
	padding: 5px;
	border: 0;
	display: block;
}

.commentInfo
{
	clear: left;
}

.accessKey
{
	text-decoration: underline;
}

/********* Pullout **********
A magazine layout box that floats right. Good for emphasizing 
a point in a blog post.

USE THIS IN THE CONTENT OF A BLOG POST

Sample usage.
<span class="pullout">It is indeed a fact</span>
*/
.pullout
{
	display: block;
	width: 30%;
	padding: 10px;
	background-color: #ddd;
	float: right;
	font: bold 1em arial, helvetica, sans-serif;
	text-align: left;
	letter-spacing: 0.05em;
	margin: 5px;
	clear: both;
	border: solid 1px;
}

.pullout.alt
{
	float: left;
}

/* blockquote styling */
blockquote.withline   
{
	text-align: justify; 
	padding: 5px;
	border-left: 1px solid #9ACD32;
}


/********* form **********
Styling for a Form. Assumes use of dl for the form.

<dl class="form">
*/
dl.form dt
{
	height: 18px;
	margin-top: 5px;
}

dl.form dd
{
	margin-left: 0;
}

dl.form input
{
	width: 300px;
}

dl.form textarea
{
	width: 400px;
	height: 200px;
}

label.required
{
	font-weight: bold;
}

/******** horizontal list ************
Used to make an ordered or unordered list horizontal.
*/
ul.horizontal
{
	list-style: none;
}

ul.horizontal li
{
	display: inline;
}

.postTitle, .postTitleDate
{
	clear: both;
}

.clear { clear: both; }
.left { float:left; }
.right { float: right; }
.block { display: block; }
.inline { display: inline; }

/*--------{tags}-------------*/
#tag-cloud
{
	font-size: 1em;
	margin: 0;
	padding: 0;
}

#tag-cloud li
{
	display: inline;
	list-style-type: none;
}

#tag-cloud li, #tag-cloud li a
{
	display: inline;
}

#tag-cloud li
{
	padding: 2px 3px;
}

.tag-style-1
{
	font-size: .8em;
	font-weight: normal;
}
.tag-style-2
{
	font-size: 1em;
	font-weight: normal;
}
.tag-style-3
{
	font-size: 1.2em;
	font-weight: bold;
}
.tag-style-4
{
	font-size: 1.4em;
	font-weight: normal;
}
.tag-style-5
{
	font-size: 1.6em;
	font-weight: bold;
}
.tag-style-6
{
	font-size: 1.8em;
	font-weight: bold;
}
.tag-style-7
{
	font-size: 2em;
	font-weight: bold;
}

/*---------{search}--------------*/
#search-progress
{
	background: url(../../images/loaders/subtext-loader.gif) no-repeat;
	width: 32px;
	height: 32px;
	margin: 4px auto;
}

#searchResults
{
	z-index: 100;
}

#searchWrapper
{
	position: relative;
	width: 100%;
}

a.closeSearch
{
	position: absolute;
	top:0;
	right: 4px;
	display: block;
}
/* /blogs/skins/_System/commonlayout.css */
/********* 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;
}
/* /blogs/Skins/NewAge/style.css */
/*

	Nonzero1.0 by nodethirtythree design
	http://www.nodethirtythree.com
	missing in a maze

*/

/* This controls the width of the fluid width layouts */

div.fluid
{
width: 95% !important;
}

/* This controls the width of the fixed width layouts */

div.fixed
{
width: 950px !important;
}

/* Basic Stuff */

*
{
margin: 0em;
padding: 0em;
}

body
{
background-color: black;
color: #585858;
font-size: 10pt;
font-family: "trebuchet ms", helvetica, sans-serif;
}

h1,h2,h3,h4,h5,h6
{
font-weight: normal;
letter-spacing: -1px;
/*text-transform: lowercase;*/
}

h3,h4,h5,h6
{
color: #184366;
}

h3 a
{
text-decoration:none;
color: #B6FF00;
}

h1 span
{
font-weight: bold;
}

h3 span
{
font-weight: bold;
}

h4 span
{
font-weight: bold;
}

br.clear
{
clear: both;
}

img
{
padding: 3px;
/*border: solid 1px #e1e1e1;*/
}

img.floatTL
{
float: left;
margin-right: 1.5em;
margin-bottom: 1.5em;
margin-top: 0.5em;
}

a
{
text-decoration: underline;
color: #F16C00;
}

a:hover
{
text-decoration: none;
}

ul.links
{
list-style: none;
}

ul.links li
{
line-height: 2em;
}

ul.links li.first
{
}

p
{
/*line-height: 1.8em;*/
}

/* Header */

#header
{
width:100%;
height:122px;
background: #440000 url('images/n1.gif') repeat-x;
}

#header_inner
{
position: relative;
width: 950px;
height:122px;
margin: 0 auto;
}

/* Logo */

#logo
{
position: absolute;
bottom: 0.6em;
}

#logo h1 a
{
text-decoration:none;
display: inline;
color: #fff;
font-size: 2.6em;
}

#logo h2
{
display: inline;
padding-left: 0.5em;
color: #D2DCE5;
font-size: 1.0em;
}

/* Menu */

#menu
{
position: absolute;
right: 0em;
bottom: 0em;
font-size: 0.7em;

}

#menu ul
{
list-style: none;
}

#menu li
{
float: left;
}

#menu li a
{
margin-left: 0.5em;
display: block;
padding: 1.1em 1.4em 1.0em 1.4em;
background: #fff url('images/n4.gif') repeat-x;
border: solid 1px #fff;
color: #616161;
font-weight: bold;
font-size: 1.0em;
text-transform: lowercase;
text-decoration: none;
}

#menu li a.active
{
background: #FF790B url('images/n3.gif') repeat-x;
color: #fff;
border: solid 1px #DB7623;
}

/* Main */
.kategori ul
{
list-style-type:none;
}
#main
{
background: url('images/n2.gif') 0px 1px repeat-x;
}

.day .date {
display:none;
}

#main_inner p
{
text-align: justify;
margin-bottom: 2.0em;
}

#main_inner ul
{
margin-bottom: 2.0em;
}

#main_inner ul li
{
margin-left:2.0em;
}
#main_inner ol li
{
margin-left:2.0em;
}
#main_inner
{
position: relative;
/*width: 950px;*/
margin: 0 auto;
padding-top: 3.5em;
}

#main_inner h3,h4
{
border-bottom: dotted 1px #E1E1E1;
position: relative;
}

#main_inner h3
{
font-size: 2.1em;
padding-bottom: 0.1em;
margin-bottom: 0.8em;
}

#main_inner h4
{
font-size: 1.2em;
padding-bottom: 0.175em;
margin-bottom: 1.4em;
margin-top: 0.95em;
}

#main_inner .post
{
position: relative;
padding: 10;
}

#main_inner .post .title h3
{
text-decoration:none;

position: relative;
font-size: 1.7em;
padding-bottom: 1.2em;
margin-top:1.2em;
background-color: #404040;
}

#main_inner .post ul.post_info
{
list-style: none;
position: absolute;
top: 3em;
font-size: 0.8em;
}

#main_inner .post ul.post_info li
{
background-position: 0em 0.2em;
background-repeat: no-repeat;
display: inline;
padding-left: 18px;
}

#main_inner .post ul.post_info li.date
{
background-image: url('images/n5.gif');
}

#main_inner .post ul.post_info li.comments
{
background-image: url('images/n6.gif');
margin-left: 1.1em;
}
#main_inner .post ul.post_info li.tags
{
background-image: url('images/tag.png');
margin-left: 1.1em;
}
#main_inner .post ul.post_info li.print
{
background-image: url('images/printer.png');
margin-left: 1.1em;
}
/* Footer */

#footer
{
margin: 0 auto;
clear: both;
border-top: dotted 1px #E1E1E1;
margin-top: 1.0em;
margin-bottom: 1.0em;
padding-top: 1.0em;
}

#footer .copyright
{
clear:both;
}

#footer .recentpost
{
float:left;
padding-left: 1.5em;
border-left: dotted 1px #E1E1E1;
}

#footer .recentcomment
{
margin-left: 1.5em;

}


#footer .top10module
{

}

#footer .yasal
{

}

#footer .gizli
{

}

/* Search */

.button
{
background: #FF790B url('images/n3.gif') repeat-x;
color: #fff;
border: solid 1px #DB7623;
font-weight: bold;
text-transform: lowercase;
font-size: 0.8em;
height: 2.0em;
}

.text
{
border: solid 1px #F1F1F1;
font-size: 1.0em;
padding: 0.25em 0.25em 0.25em 0.25em;
}

#search
{
position: relative;
width: 100%;
margin-bottom: 2.0em;
}

#inputbox .text 
{
position: absolute;
top: 0em;
left: 0em;
width: 9.5em;
}

#inputbox .button
{
position: absolute;
top: 0em;
right: 0em;
min-width: 2.0em;
max-width: 2.5em;
}

#search-results
{
	margin-top: 2em;
	position: fixed;
	background-color: #B9B5FF;
	z-index: 10;
	text-align: left;
	padding: 3px;
	border: solid 1px #000;
}
#search-results ul
{
	padding: 0;
	margin: 0 0 0 8px;
	width: 100%;
}

#search-results ul li
{
	padding: 0;
	margin: 0; 
	list-style-type: none;
}
#search-results div.innerbox
{
	background-color: #B9B5FF;
	padding: 3px;
}
/* LAYOUT - 3 COLUMNS */

	/* Primary content */
	
	#primaryContent_3columns
	{
	
	position: relative;
	margin-right: 33em;
	}
	
	#columnA_3columns
	{

	position: relative;
	float: left;
	width: 100%;
	margin-right: -33em;
	padding-right: 1em;
	}
	
	/* Secondary Content */
	
	#secondaryContent_3columns
	{
	float: right;
	}
	
	#columnB_3columns
	{

	width: 14.0em;
	float: left;
	padding: 0em 1em 0.5em 1em;
	border-left: dotted 1px #E1E1E1;

	}
	
	#columnC_3columns
	{

	width: 14.0em;
	float: left;
	padding: 0em 0em 0.5em 1em;
	border-left: dotted 1px #E1E1E1;
	}