@charset "utf-8";
/* 
--------------------------------------------------------------------------------

	MILLENNIUM MEDIA GROUP - BASE
	Author(s): Music Bay AB, www.musicbay.se / Daniel Domermark
	Created: 2007-05-27
	Version: 1.0

--------------------------------------------------------------------------------
*/

@import url("structure.css");
@import url("typo.css");

/* GENERAL SETTINGS
----------------------------------------------------------------------------- */

/* * { border: 1px solid #f00; } :Debugging */

html, body, form, fieldset, h1, h2, h3, h4, h5, h6, p, pre, blockquote, ul, li, dl, address { 
	margin: 0; padding: 0; 
}

body {
	font: 62.5%/1.6 Arial, Verdana, Helvetica, sans-serif;
	color: #e3e3e3;
	background: #000;
}

ul { list-style: none; }

img { border: 0; }

hr { 
	border: 0;
 	width: 80%;
 	color: #f00;
	background-color: #f00;
	height: 2px;
}

/* LINKS
----------------------------------------------------------------------------- */

a, a:visited { text-decoration: none; color: #ccc; }
a:hover { color: #fff; text-decoration: underline; }

/* FORMS
----------------------------------------------------------------------------- */

form {
	display: inline; /* Remove as block element */
}

	label { cursor: pointer; }
	
	input, select, textarea { 
		font: 1.2em Arial, Verdana, Helvetica, sans-serif;
	}

	input, textarea { background: #333; color: #e3e3e3; border: 1px solid #333; }
	
	input[type="text"]:focus, select:focus, textarea:focus { background: #e3e3e3; color: #333; border: 1px solid #5997cf; }
	input[type="text"]:not([size]) { width: 15em; }

	input.btn { background: none; border: 0; }

/* TABLES
----------------------------------------------------------------------------- */

table {
	border: 0;
	margin: 0 0 18px 0;
	padding: 0;
	border-collapse: collapse; /* Removes cell-spacing */
}

	table tr td { padding: 2px; }

/* GLOBAL CLASSES
----------------------------------------------------------------------------- */

/* Easy clearing method: http://www.positioniseverything.net/easyclearing.html */	
.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

.clearfix { display: inline-block; }

	/* Hides from IE-mac \*/
	* html .clearfix {height: 1%;}
	.clearfix {display: block;}
	/* End hide from IE-mac */

.clear { clear: both; }

.floatLeft { float: left; }
.floatRight { float: right; }

.textLeft { text-align: left !important; }
.textRight { text-align: right !important; }
.textCenter { text-align: center; }

.bold { font-weight: bold; }
.italic { font-style: italic; }
/*.underline { border-bottom: 1px solid; }*/

.imgLeft { float: left; margin: 4px 10px 4px 0; }
.imgRight { float: right; margin: 4px 0 4px 10px; }

