/*
Copyright &copy; 2008 Pippa http://www.spacegirlpippa.co.uk
Contact: sthlm.pippa@gmail.com

This file is part of wTag mini chat - shoutbox.

wTag is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

wTag is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with wTag.  If not, see <http://www.gnu.org/licenses/>.
*/


/* main-style.css is the main stylesheet for wTag.
Several display bugs in IE are fixed in ie-style.css,
and a few display bugs in Opera are fixed at the end of this file
*/

/* #box is the main div of the shoutbox layout.
You can find the css code creating rounded corners for Mozilla
inside the minichat.php file.
You can remove the #box div completely from the shoutbox html code
if you wish to redesign the layout.
*/

/* #chat div is nested inside the #box div and
containing all other divs of the shoutbox layout */
#chat {
	position: relative;
	top: 6px;
	width: 97%;
	height: 200px;
	left: 4px;
	height: 172px; /* 226px; */
	border: 1px solid #ccc;
	background-color: transparent;
	z-index:95;
}

/* Messages area div */
#container {
	position: absolute;
	top: 1px;
	right: 0px;
	margin-right: 0px;
	width: 100%;
	height: 172px;
	background-color: transparent;
	overflow: hidden;
	border-bottom: 1px solid #ccc;
}

/* Scroll bar */
#scrollArea {
	position: absolute;
	right:3px;
	top: 3px;
	height: 167px;
	width: 8px;
	overflow: hidden;
	background-color: #ffffff;
	z-index:96;
}

/* Scroller */
#scroller {
	position: absolute;
	top: -1px;
	width: 8px;
	background-color: #89A5DC;
	right:0px;
}

/* Content div */
#content {
	position: relative;
	padding-top:0px;
	width: 97%;
	height:770x;
	left: 0px;
	background-color: transparent;
}

/* Every message */
#content .user {
	width: 100%;
	padding-bottom: 1px;
	padding-left: 5px;
	line-height:14px;
}

/* Name (without link) */
#content .name {
	color: #3B6AC5;
	font-size: 11px;
	padding-right: 0px;
	text-decoration: none;
	font-weight: bold;
}

/* Name (with link) */
#content .link, #content .link a, #content .link a:link, #content .link a:visited {
	font-size: 11px;
	padding-right: 0px;
	color: #3B6AC5;
	text-decoration: none;
	font-weight: bold;
}

/* Name (with link) on mouse over */
#content .link a:hover {
	font-size: 11px;
	padding-right: 0px;
	
	text-decoration: none;
	
	color: #E39000;
	font-weight: bold;
}

/* Date */
#content .date {
	font-size: 11px;
	letter-spacing: 1px;
	color: #666;
	margin-right: 6px;
	text-decoration: none;
	cursor:pointer;
}

/* Message text */
#content .text {
	font-size: 11px;
	color: #000;
	margin-left:10px;
}

/* Links catched in a message */
#content .text a, #content .text a:link, #content .text a:visited {
	color: #3B6AC5;
	background-color: #fff;
	text-decoration: none;
}

/* Links catched in a message on mouse over */
#content .text a:hover {
	color: #E39000;
	text-decoration: none;
}

/* Curly brackets around the links */
.blue {
	color:#3B6AC5;
}

/* Form div */
#form {
	position: relative;
	top: 172px;
	left: -1px;
	width: 100%;
	height: 18px;
	background-color: #fff;
	border: 1px solid #ccc;
}

/* Div containing the form fields */
#field_set {
	position: absolute;
	width: 65%;
	height: 19px; /* 38 */
	background-color: inherit;
}

#field_set input {
	position:absolute;
	width: 95%;
	height:15px;
	left: 0px;
	top:1px;
	color: #999;
	font-size: 11px;
	letter-spacing: 1px;
	border: none;
	margin-top:0px;
}

#chat_menu {
	position: absolute;
	top:206px;
	left: 0px;
	margin-top: 0px;
	height: 20px;
	width: 280px;
	font-size: 11px;
	color: #ccc;
	background-color: #eee;
}

/* Smileys panel */
#emo {
	position: absolute;
	top:0px;
	left: 136px;
	height:20px;
	width: 74px;
	font-size: 11px;
	background-color:transparent;
	border-right: 1px dotted #ccc;
	text-align:center;
	cursor:pointer;
	padding:0px;
}

#emo ul {
	list-style-type:none;
	margin-top:4px;
	color: #666;
	text-decoration:none;
	background-color: transparent;
	margin-left:0px;
	padding:0px;
}

#emo li:hover,  #emo li.over {
	color: #00BFFF;
	background-color: transparent;
	cursor:pointer;
	padding-bottom:10px;
}

#emo li ul {
	display: none;
	cursor:default;
	list-style-type:none;
}

#emo li:hover ul {
	position:absolute;
	right:-1px;
	display:block;
	top:18px;
	width:202px;
	height:60px;
	background-color: #eee;
	border: 1px solid #ccc;
	cursor:default;
	list-style-type:none;
	padding-left:8px;
	z-index:97;
}
 
#emo li:hover ul li, #emo li.over ul li{
	display: inline;
	cursor:default;
	margin-right:9px;
}

/* Position smiley images */
.smileys {margin-top:8px;}

/* Refresh button */
.buttondiv {
	float: right;
	height:18px;
	width: 15%;
	font-size: 8px;
	background-color: #eee;
	border-left:1px dotted #ccc;
	border-right: 0px;
	text-align:center;
	cursor:pointer;
}

.buttondiv p {
	margin-top:1px;
	color: #3B6AC5;
	text-decoration:none;
	background-color: #eee;
}

.buttondiv p:hover {
	color: #E39000;
	background-color: #eee;
	cursor:pointer;
}

 #subtext {
 	position: absolute;
	top:200; 
	left: 0px;
 }

