/*
<div class="SgiCommentApp">
	<div class="commentList">
		<div class="item">
			<div class="bigAvatar">
				<img src="" />
			</div>
			<div class="commentContainer">
				<div class="commentText">
					<span class="userName">Nome do usu&aacute;rio</span> Esse coment&aacute;rio est&aacute; fixo no html.
				</div>
				<div class="social">
					<span class="reply">Responder</span>
				</div>
				<div class="replies">
					<span>2 Respostas</span>
				</div>
			</div>
		</div>
	</div>
	<div class="commentInterface">
		<div class="bigAvatar">
			<img src="" />
		</div>
		<div class="commentControls">
			<textarea class="commentField"></textarea>
			<div class="commentSend">Enviar</div>
		</div>
	</div>
</div>
*/

.SgiCommentApp
{
	width: 100%;
	float: left;
}

.SgiCommentApp *
{
	vertical-align: middle;
}

.SgiCommentApp .avatar
{
	float: left;
	margin-right: 5px;
	position: relative;
}

.SgiCommentApp .avatar .img24
{
	max-width:24px;
	min-width:24px;
	width:24px;
	max-height:24px;
	min-height:24px;
	height:24px;
}

.SgiCommentApp .avatar .img32
{
	max-width:32px;
	min-width:32px;
	width:32px;
	max-height:32px;
	min-height:32px;
	height:32px;
}

.SgiCommentApp .avatar .config
{
	background-color: #fff;
	position: absolute;
	border: 1px solid #999;
	border-radius: 3px;
	padding: 5px;
	top: 0;
	left: -48px;
	display: none;
}

.SgiCommentApp .avatar .config .configButton
{
	width:32px;
	height: 32px;
	background-image: url(../../imgweb/site/config.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	cursor: pointer;
}

.SgiCommentApp .avatar .config .configButton:hover
{
	background-position: 0 -32px;
}

.SgiCommentApp .avatar .config .tail
{
	position: absolute;
	right: -8px;
}

.SgiCommentApp .clear
{
	clear: both;
}

.SgiCommentApp .errorDisplay
{
	border: 1px solid #c1b372;
	background-color: #fffad7;
	padding: 3px;
	text-align: center;
	color: #514b28;
	border-radius: 2px;
	margin-bottom: 5px;
	display: none;
}
.SgiCommentApp .errorDisplay img
{
	margin-right: 5px;
}
.SgiCommentApp .errorDisplay a:link
{
	color: #81AAC4;
}
.SgiCommentApp .errorDisplay a:hover
{
	color: #81AAC4;
	text-decoration: underline;
}
.SgiCommentApp .errorDisplay a:active
{
	color: #81AAC4;
	text-decoration: underline;
}
.SgiCommentApp .errorDisplay a:visited	
{
	color: #81AAC4;
	text-decoration: underline;
}

.SgiCommentApp .commentList
{
	
}

.SgiCommentApp .paggingButton
{
	margin-bottom: 2px;
	padding: 5px;
	background-color: #e9f1f7;
	cursor: pointer;
	font-size: 8pt;
	text-align: center;
}
.SgiCommentApp .paggingButton:hover
{
	background-color: #e1ebf2;
}
.SgiCommentApp .paggingButton .text
{
	font-weight: bold;
	color: #424242; /*#3b5998*/
}
.SgiCommentApp .paggingButton:hover .text
{
	text-decoration: underline;
}
.SgiCommentApp .paggingButton .loader
{
	display: none;
	/*margin: 3px 0;*/
}

.SgiCommentApp .commentList .item
{
	border-bottom: 1px solid #DFDFDF;
    margin-bottom: 2px;
    padding: 10px 5px;
}

.SgiCommentApp .commentList .item .bigAvatar
{
	float: left;
	margin-right: 5px;
}
.SgiCommentApp .commentList .item .commentContainer
{
	float: left;
    font-size: 8pt;
    position: relative;
    text-align: left;
    width: 772px;
}

.SgiCommentApp .commentList .item .commentContainer .removeComment
{
	position: absolute;
	top: 0;
	right: 0;
	width: 12px;
	height: 12px;
	background-image: url(../../imgweb/site/removeComment.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	cursor: pointer;
	display: none;
}
.SgiCommentApp .commentList .item .commentContainer .removeComment:hover
{
	background-position: 0 -12px;
}
.SgiCommentApp .commentList .item .commentContainer:hover .removeComment
{
	display: inline;
}
.SgiCommentApp .commentList .item .commentContainer .commentText
{
	width: 750px;
	overflow: auto;
}
.SgiCommentApp .commentList .item .commentContainer .commentText .userName
{
	font-weight: bold;
	color: #424242; /*#3b5998*/
	cursor: pointer;
}
.SgiCommentApp .commentList .item .commentContainer .commentText .userName:hover
{
	text-decoration: underline;
}
.SgiCommentApp .commentList .item .commentContainer .social
{
	position: relative;
}
.SgiCommentApp .commentList .item .commentContainer .social .dateTime
{
	float: right;
    font-size: 7pt;
    font-color: #999;
    right: 0;
    bottom: 0;
}
.SgiCommentApp .commentList .item .commentContainer .social .reply
{
	color: #424242; /*#3b5998*/
}
.SgiCommentApp .commentList .item .commentContainer .social .reply:hover
{
	text-decoration: underline;
	cursor: pointer;
}

.SgiCommentApp .commentInterface
{
	padding: 5px;
	/*background-color: #e9f1f7;*/
}
.SgiCommentApp .commentInterface .errorDisplay
{
	border: 1px solid #c1b372;
	background-color: #fffad7;
	padding: 3px;
	text-align: center;
	color: #514b28;
	border-radius: 2px;
	margin-bottom: 5px;
	display: none;
}
.SgiCommentApp .commentInterface .errorDisplay img
{
	margin-right: 5px;
}

.SgiCommentApp .commentInterface .bigAvatar
{
	float: left;
	margin-right: 5px;
}
.SgiCommentApp .commentInterface .commentControls
{
	position: relative;
}
.SgiCommentApp .commentInterface .commentControls .commentField
{
	border: 1px solid #D1D8DE;
    border-radius: 1px 1px 1px 1px;
    float: left;
    height: 40px;
    margin-right: 0;
    padding: 3px;
    resize: none;
    width: 705px;
    background-color: #fff;
    font-size: 8pt;
    font-family: Arial
}

.SgiCommentApp .commentInterface .commentControls .commentField:hover
{
	border-color: #b4c5d4;
	box-shadow: 0 1px 1px rgba( 0, 0, 0, .2 ) inset;
}
.SgiCommentApp .commentInterface .commentControls .commentField:focus
{
	border-color: #b4c5d4;
	box-shadow: 0 1px 1px rgba( 0, 0, 0, .2 ) inset;
}

.SgiCommentApp .commentInterface .commentControls .commentField:disabled
{
	background-color: #EDEDE4;
	border-color: #CCC;
	box-shadow: none;
}

.SgiCommentApp .commentInterface .commentControls .buttonContainer
{
	float:right;
	position:relative;
}
.SgiCommentApp .commentInterface .commentControls .buttonContainer .commentSend
{
	background-color: #5C75A9;
    border: 1px solid #29447E;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset;
    float: left;
    text-align: center;
    width: 52px;
	cursor: pointer;
	height: 45px;
       
    background: #698ca5;
}

.SgiCommentApp .commentInterface .commentControls .buttonContainer .commentSend .text
{
    color: #FFFFFF;
    font-size: 8pt;
    font-weight: bold;
    line-height: 45px;
	cursor: pointer;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
}

.SgiCommentApp .commentInterface .commentControls .buttonContainer .commentSend .loader
{
    display: none;
    /*margin-top: 3px;
    background-image: url('../../imgweb/site/commentLoader.gif');*/
}

.SgiCommentApp .commentInterface .commentControls .buttonContainer .commentSend:active
{
	box-shadow: 0 1px 1px rgba( 0, 0, 0, 0.3 ) inset;
}

.SgiCommentApp .commentInterface .commentControls .buttonContainer .dropDownBox
{
	border:1px solid #698CA5;
	min-width:164px;
	border-radius:1px;
	padding:5px 0;
	background-color:#fff;
	font-size:8pt;
	position:absolute;
	right:0;
	z-index:30;
	display:none;
}
.SgiCommentApp .commentInterface .commentControls .buttonContainer .dropDownBox .item
{
	border: 1px solid #fff;
	border-left: none;
	border-right: none;
	color: #333;
	padding: 0 5px;
	cursor: pointer;
}
.SgiCommentApp .commentInterface .commentControls .buttonContainer .dropDownBox .item:hover
{
	border: 1px solid #29447E;
	border-left: none;
	border-right: none;
	background-color:#698ca5;
	color:#fff;
}
.SgiCommentApp .commentInterface .commentControls .buttonContainer .dropDownBox .item img
{
	margin-top: -2px;
}
.SgiCommentApp .commentInterface .commentControls .buttonContainer .dropDownBox .separator
{
	border-top: 1px solid #cecece;
	margin: 5px 0;
}
/*
Inicio aplicacao respostas
*/
.SgiCommentApp .commentList .item .commentContainer .replies
{
	/*border-bottom: 1px solid #d1d8de;*/
    /*border-top: 1px solid #d1d8de;*/
	
    border: 1px solid #DFDFDF;
    
    background-color: #FAFAFA;
    /*background-color: #e4eef5;*/
}
.SgiCommentApp .commentList .item .commentContainer .replies:hover
{
    /*background-color: #e1ebf2;*/
}

.SgiCommentApp .commentList .item .commentContainer .replies .showReplies
{
	background-image: url(../../imgweb/site/speechBubble.png);
	background-repeat: no-repeat;
	padding: 1px 0 1px 20px;
	color: #424242; /*#3b5998*/
	margin-left: 5px;
}
.SgiCommentApp .commentList .item .commentContainer .replies .showReplies:hover
{
	text-decoration: underline;
	cursor: pointer;
}
.SgiCommentApp .commentList .item .commentContainer .replies .showReplies img
{
	display: none;
}
.SgiCommentApp .commentList .item .commentContainer .replies .interfaceReply
{
	display: none;
}
.SgiCommentApp .commentList .item .commentContainer .replies .interfaceReply .formContainer
{
	/*background-color: #e9f1f7;*/
	padding: 5px;
	/*border: 1px solid #d5dde3;*/
	border-top: 1px solid #DFDFDF;
	/*border-bottom: none;*/
	box-shadow: inset 0 0 0 1px rgba( 255,255,255,.5);
	/*margin: 5px 0;*/
}
.SgiCommentApp .commentList .item .commentContainer .replies .interfaceReply .formContainer .errorDisplay
{
	border: 1px solid #c1b372;
	background-color: #fffad7;
	padding: 3px;
	text-align: center;
	color: #514b28;
	border-radius: 2px;
	margin-bottom: 5px;
	display: none;
}
.SgiCommentApp .commentList .item .commentContainer .replies .interfaceReply .formContainer .errorDisplay img
{
	margin-right: 5px;
}

.SgiCommentApp .commentList .item .commentContainer .replies .interfaceReply .formContainer .replyControls .replyField
{
	border: 1px solid #D1D8DE;
    border-radius: 1px 1px 1px 1px;
    float: left;
    height: 24px;
    margin-right: 5px;
    padding: 3px;
    resize: none;
    width: 644px;
}

.SgiCommentApp .commentList .item .commentContainer .replies .interfaceReply .formContainer .replyControls .replyField:hover
{
	border-color: #b4c5d4;
	box-shadow: 0 1px 1px rgba( 0, 0, 0, .2 ) inset;
}

.SgiCommentApp .commentList .item .commentContainer .replies .interfaceReply .formContainer .replyControls .replyField:focus
{
	border-color: #b4c5d4;
	box-shadow: 0 1px 1px rgba( 0, 0, 0, .2 ) inset;
}

.SgiCommentApp .commentList .item .commentContainer .replies .interfaceReply .formContainer .replyControls .replySend
{
	background: none repeat scroll 0 0 #698CA5;
    border: 1px solid #29447E;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset;
    cursor: pointer;
    display: inline-block;
    height: 30px;
    text-align: center;
    width: 69px;
}

.SgiCommentApp .commentList .item .commentContainer .replies .interfaceReply .formContainer .replyControls .replySend .text
{
    color: #FFFFFF;
    font-size: 8pt;
    font-weight: bold;
    line-height: 30px;
	cursor: pointer;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
}

.SgiCommentApp .commentList .item .commentContainer .replies .interfaceReply .formContainer .replyControls .replySend .loader
{
    display: none;
    /*margin-top: 3px;
    background-image: url('../../imgweb/site/commentLoader.gif');*/
}

.SgiCommentApp .commentList .item .commentContainer .replies .interfaceReply .formContainer .replyControls .replySend:active
{
	box-shadow: 0 1px 1px rgba( 0, 0, 0, 0.3 ) inset;
}

.SgiCommentApp .commentList .item .commentContainer .replies .interfaceReply .repliesContainer .reply
{
	/*background-color: #f0f6fa;*/
	padding: 5px;
	border-top: 1px dotted #d6d6d6;
}

.SgiCommentApp .commentList .item .commentContainer .replies .interfaceReply .repliesContainer .reply:first-child 
{
	border-bottom: none;
}

.SgiCommentApp .commentList .item .commentContainer .replies .interfaceReply .repliesContainer .reply .stringData span
{
	float: right;
	font-size: 7pt;
}

.SgiCommentApp .commentList .item .commentContainer .replies .repliesContainer .reply .replyContainer
{
	float: left;
	width: 731px;
	text-align: left;
	font-size: 8pt;
	position: relative;
}

.SgiCommentApp .commentList .item .commentContainer .replies .repliesContainer .reply .replyContainer .replyText
{
	width: 720px;
	overflow: auto;
}

.SgiCommentApp .commentList .item .commentContainer .replies .repliesContainer .reply .replyContainer .removeReply
{
	position: absolute;
	top: 0;
	right: 0;
	width: 12px;
	height: 12px;
	background-image: url(../../imgweb/site/removeComment.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	cursor: pointer;
	display: none;
}

.SgiCommentApp .commentList .item .commentContainer .replies .repliesContainer .reply .replyContainer .removeReply:hover
{
	background-position: 0 -12px;
}
.SgiCommentApp .commentList .item .commentContainer .replies .repliesContainer .reply .replyContainer:hover .removeReply
{
	display: inline;
}

.SgiCommentApp .commentList .item .commentContainer .replies .repliesContainer .reply .replyContainer .userName
{
	font-weight: bold;
	color: #424242; /*#3b5998*/
	cursor: pointer;
}
.SgiCommentApp .commentList .item .commentContainer .replies .repliesContainer .reply .replyContainer .userName:hover
{
	text-decoration: underline;
}

.commentTextContainer
{
	position: relative;
}
.commentTextContainer .mainCommentCharContainer
{
	bottom: 100%;
    padding-bottom: 8px;
    position: absolute;
    right: 5px;
    display: none;
}
.commentTextContainer .mainCommentCharContainer .commentCharCount
{
	border: 1px solid #aaa;
	border-radius: 1px;
	background-color: #fff;
	padding: 5px;
	color: #3F5872;
	font-size: 12px;
	position: relative;
}
.commentTextContainer .mainCommentCharContainer .commentCharCount .tail
{
	background-image: url(../../imgweb/site/bottomTail.png);
	width: 16px;
	height: 8px;
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -8px;
}