/* The popup box that you write comments and replies in */
#Popup {
	width:            640px;

	position:         absolute;
	margin:           auto;
	
	z-index:          100;
	visibility:       hidden;
	}

/* The top of it. Has a gradient bar as background */
#Popup #Top {
	height:           25px;
	margin:           0px;

	background-image: url('../Images/DefaultTheme/PopupHeader.png');
	}

/* The close button in the top layer's right corner */
#Popup #Top #Close {
	width:            15px;
	height:           15px;
	margin:           5px;
	margin-right:     8px;
	float:            right;

	background-image: url('../Images/DefaultTheme/PopupClose.png');
	}

/* Change the colour when hovering the close button */
#Popup #Top #Close:hover {
	background-image: url('../Images/DefaultTheme/PopupCloseHover.png');
	
	cursor:           pointer;
	}

#Popup #Top #Title {
	font:             18px "Arial";
	
	margin-left:      4px;
	}

/* The body of the popup. Write the content of the popup in here */
#Popup #Body {
	clear:            both;
	padding:          3px;
	background-color: #3D646E;
	}

#Popup #Body .SmallTextField {
	float:            left;
	
	width:            315px;
	}

#Popup #Body #BigTextField {
	width:            634px;
	}

#Popup #Body #Captcha {
	width:            318px;
	
	margin:           auto;
	margin-top:       4px;
	}

#Popup #Body #Remember {
	float:            left;
	
	margin-top:       5px;
	}
	
#Popup #Body #ButtonContainer {
	float:            right;
	}
	


/* The bottom of the popup. Just makes the bottom corners rounded */
#Popup #Bottom {
	height:           10px;
	margin:           0px;

	background-image: url('../Images/DefaultTheme/PopupBottom.png');
	}

/* The "dim" that darkens the rest of the page while the popup is shown */
#Dim {
	width:            100%;
	height:           0px;
	position:         absolute;
	top:              0px;
	left:             0px;
	z-index:          99;
	
	background-color: #000000;
	opacity:          0.5;
	filter:           alpha(opacity = 50);
	visibility:       hidden;
	}