/*
===============================================================
CommentPress Plugin Stylesheet
===============================================================
ORIGINAL AUTHOR	: Eddie Tejeda
MODIFIED BY		: Christian Wach <needle@haystack.co.uk>
LAST MODIFIED	: 19/03/2009
---------------------------------------------------------------
NOTES

These styles override any styles in an external theme to conform
to the design of CommentPress

---------------------------------------------------------------
*/






/*
---------------------------------------------------------------
Modifications to the_content
---------------------------------------------------------------
*/

/* text paragraphs */
.textblock {
	position: relative;
}

/* comment icon */
.commenticon 
{
}

.commenticonbox 
{
	float: right;
	margin-right: -35px;	
}

.commenticon:hover 
{
	cursor:pointer;    
} 

/* text highlight */
.selected_text 
{
	border-width: 2px;
	border-style: solid;
	border-color: #000;
	background-color: #FFFC00;
	position: absolute;
	opacity: 0.15;
	filter:alpha(opacity=15);
	z-index: 1000;
	-moz-border-radius: 10px;
	-khtml-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	margin: 0;
	padding: 0;
}

/* text highlighting block - unused for now */
.selected_para {
	position: relative;
	top: -7px;
	left: -7px;
	border: 2px solid #ddd;
	background-color: #FFFFE6;
	-moz-border-radius: 10px;
	-khtml-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}

/* hide theme comment title */
#comments 
{
	display: none;
}







/*
---------------------------------------------------------------
Comment Box
---------------------------------------------------------------
*/

#commentbox 
{
	text-align: left;
	position: fixed !important;
	width: 470px;
	height: 450px;
	z-index: 2000;
}






/*
---------------------------------------------------------------
Modifications to accordion
---------------------------------------------------------------
*/

#accordion div h6
{
	font-size: 14px;
}

#accordion #respond,
#accordion .comment
{
	font-size: 11px;
}

.ui-accordion-content 
{
	padding: 0px !important;
}

.ui-accordion li 
{
	border-top: 2px solid #C8D0C5;
	display: block;
}

/* our replacement for .commentlist */
.subcommentlist 
{
	border: 0px solid green;
	margin: 10px 0 10px 0;
	padding: 0 10px;
}

li.comment
{
	padding: 5px 0 5px 0;
}

.children
{
	margin: 10px 0 0 10px;
	padding: 0;
}

.children li
{
	padding: 5px 0 5px 0;
	margin: 0;
}





/*
---------------------------------------------------------------
Modifications to comment response block
---------------------------------------------------------------
*/

#respond
{
	margin: 0;
	padding: 0;
}

/* comment response title */
#respond h3,
#respond h4 
{
	margin: 10px 0 0 0;
	padding: 0;
}

/* comment meta input */
#commentform p input[type="text"]
{
	width: 200px;
}

/* comment submit input */
#commentform p input[type="submit"]
{
	width: auto;
}

/* comments textarea */
textarea#comment 
{
	width: 99%;
	overflow: none;
}




/*
---------------------------------------------------------------
Modifications to comment display
---------------------------------------------------------------
*/

.even, .alt, .thread-alt
{
	border: 0px solid red;
	background: white;
}

.comment-author, 
.comment-author .photo, 
.comment-author cite,
.comment-author span

{
	margin: 0;
	padding: 0;
	vertical-align: middle;
}

.comment-author .photo
{
	padding: 5px 5px 0 0;
	float: left;
}

div.commentmetadata
{
	font-style: italic;
}




