/*---- Main CSS ----*/
html {
	background-image: url(/images/background.gif);
	background-repeat: repeat-y;
	background-position: left top;
	background-color: black;
}

body 
	{
	margin-top: 0px;
	margin-left:0px;
	margin-right:0px;
	margin-bottom:0px;
	font-weight: regular;
	text-align:	left;
	color: #cccccc;
	font-family: "Lucida Grande",Tahoma,Arial,sans-serif;
	font-size: 11px;
	}

h2 {
	font-size:14px;
}
	
p
	{
	font-family: "Lucida Grande",Tahoma,Arial,sans-serif;
	font-size: 11px;
	font-weight: regular;
	text-align:	left;
	color: #cccccc;	
	margin:0px;
	margin-bottom:10px;
	}
	
p.title
	{
	margin:0px;
	margin-top:10px;
	font-size: 12px;
	text-align:	center;
	font-weight: bold;
	color: #336699;	
	}

strong
	{
	font-size: 13px;
	font-weight: bold;
	color: white;	
	}
	
.ruler
	{
	border-bottom:1px dotted #222222;
	width: 95%;
	}


/*---- Link Related CSS ----*/

a 
	{
	text-decoration: none;
	}

p a:link, p a:visited,
h2 a:link, h2 a:visited
	{
	text-decoration: none;
	color: #336699;
	font-weight: bold;
	border-color: #336699;
	border-width: 0 0 1px 0;
	border-style: none none solid none;
	background-color: inherit;
	}

p a:hover,
h2 a:hover
	{
	text-decoration: none;
	color: #cccccc;
	font-weight: bold;
	background-color: #336699;
	}



/*---- DIV Related CSS ----*/

div#main
	{
	background-image: url(/images/rokkon_div_top.gif);
	background-repeat: no-repeat;
	background-position: left top;
	float: left;
	width: 425px;
	border: 0px solid black;
	padding-top: 25px;
	padding-left: 10px;
	padding-right: 10px;
	}

div#sidebar
	{
	float: left;
	width: 186px;
	}

div#header
	{
	
	}

.entry
	{
	margin-top: 25px;
	}

.alert
	{
	background-color: #ffff67;
	text-align: center;
	font-weight: bold;	
	color: #336699;	
	margin-top: 10px;
	margin-left: 5px;
	margin-right: 20px;
	margin-bottom: 10px;
	padding: 5px;
	border-width: 0px;
	border-left: 1px dotted #ccc;
	border-right: 1px dotted #ccc;
	border-top: 1px dotted #ccc;
	border-bottom: 1px dotted #ccc;
 	}

.highlight
	{
	background: #ffffcc;
	}

div.float 
	{
	margin-left: 15px;
	float: left;
	}

div.float p
	{
	text-align: center;
	}

/*---- Image Related CSS ----*/

a.img img
	{
	font-size: 11px;
	text-decoration: none;
	font-weight: bold;
	color: none;
	}
	
img.border
	{
	padding: 3px;
	margin: 1em;
	border-color: gray;
	border-width: 1px 1px 1px 1px;
	border-style: solid solid solid solid;
	}

a.img:link
	{
	text-decoration: none;
	color: none;
	border:  none;
	border-color: none;
	border-width: 0 0 0 0;
	border-style: none none none none;
	padding: 0 0 0 0;
	background-color: none;
	}
	
a.img:hover
	{
	text-decoration: none;
	color: none;
	border:  none;
	border-color: none;
	border-width: 0 0 0 0;
	background-color: black;
	}
	
a.img:visited
	{
	text-decoration: none;
	color: none;
	border:  none;
	border-color: none;
	border-width: 0 0 0 0;
	border-style: none none none none;
	padding: 0 0 0 0;
	background-color: inherit;
	}
	
/*---- Navigation CSS ----*/
#navigation ul 
{
	width: 92px;
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	text-align: right;
	text-decoration: none;
}

#navigation a 
{
	display: block;
	background-color: none;
	color: #e9e9e9;
	width: 100%;
	font-family: "Gill Sans", sans-serif;
	font-size: 10px;
	font-weight: lighter;
	padding-top: 4px;
	padding-right: 0px;
	padding-bottom: 4px;
	padding-left: 0px;
	border-color: none;
	border-width: 0 0 0 0;
	border-style: none none none none;
	text-decoration: none;
}

#navigation a:hover {
	background-color: #666666;
	color: #e9e9e9;
	text-decoration: none;
}


/*---- Image Gallery CSS ----*/
.gallery
	{
	margin:0;
	margin-left:25px;
	padding:0;
	overflow:hidden; /* Clears the floats */
	width:380px; /* IE and older Opera fix for clearing, they need a dimension */
	list-style:none;
	text-align: center;
	border: 0px 0px 0px 0px;
	border-color: black;
	border-style:  solid;
	}

.gallery li
	{
	float:left;
	display:inline; /* For IE so it doesn't double the 1% left margin */
	width:30%;
	margin:0 0 10px 1%;
	padding:10px 0;
	height:83px; /* Height of img (75) + 2 times 3px padding + 2 times 1px border = 83px */
	position:relative; /* This is the key */
	}

.gallery a,
.gallery img
	{
	display:block;
	width:100%;
	border:0px solid white;
	}


.gallery a:link,
.gallery a:visited,
.gallery a:focus,
.gallery a:hover,
.gallery a:active
	{
	padding:3px;
	background: none;
	width:75px; height:75px;
	border:1px solid #eeefef;
	position:absolute; top:50%; left:50%; /* position it so that image's top left corner is in the center of the list item */
	margin:-41px 0 0 -41px; /* Pull the image into position with negative margins (margins value is half of the width of the image) */
	}

.gallery a:hover
	{
	border-color: #336699;
	}
	
	
	
	
/* Begin Typography & Colors */
small {
	font-size: 0.9em;
	}

code {
	font: 1.1em 'Courier New', Courier, Fixed;
	}

acronym, abbr, span.caps
	{
	font-size: 0.9em;
	letter-spacing: .07em;
	}

acronym, abbr, span.caps {
	cursor: help;
	}

acronym, abbr {
	border-bottom: 1px dashed #999;
	}

blockquote {
	margin: 15px 25px 15px 15px;
	padding-left: 15px;
	border-left: 1px solid #ddd;
	}

/* End Typography & Colors */



/* Begin Wordpress Calendar */
#wp-calendar #prev a {
	font-size: 9pt;
	}

#wp-calendar a {
	text-decoration: none;
	}

#wp-calendar caption {
	font: bold 1.3em 'Lucida Grande', Verdana, Arial, Sans-Serif;
	text-align: center;
	}

#wp-calendar th {
	font-style: normal;
	text-transform: capitalize;
	}
	
#wp-calendar {
	empty-cells: show;
	margin: 10px auto 0;
	width: 155px;
	}

#wp-calendar #next a {
	padding-right: 10px;
	text-align: right;
	}

#wp-calendar #prev a {
	padding-left: 10px;
	text-align: left;
	}

#wp-calendar a {
	display: block;
	}

#wp-calendar caption {
	text-align: center;
	width: 100%;
	}

#wp-calendar td {
	padding: 3px 0;
	text-align: center;
	}

#wp-calendar td.pad:hover { /* Doesn't work in IE */
	background-color: #fff; }
/* End Calendar */