@import url("header.css");
@import url("menu.css");
@import url("content.css");
@import url("manual.css");
@import url("footer.css");

/**************************
	TranscriberAG website
	CSS style sheet
	
	10 Mar 2011
	Bastien BUSSON
***************************/

/* always show vertical scrollbar */
html
{
	overflow-y: scroll;
}
/* avoids wrapper vertical scrolling in Firefox */
body #min-width
{
	height: 1px;
	width: 600px;
}

/*** Footer sticks to the bottom ***/
html,
body,
#wrapper
{	
	min-width: 860px;
	height: 99%;
	margin: 0;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
}
body > #wrapper
{
	height: auto;
	min-height: 100%;
	/*background: red;*/
}

/*** Body ***/
body
{	
	/*min-width: 680px;*/
	/*max-width: 1200px;
	problem with IE and centering
	the menu, so applied to other div
	margin-left: auto;
	margin-right: auto;*/
	background: rgb(235,235,235);	
	font-size: medium;
	font-family: Helvetica, Arial, sans-serif;
}

/*** code ***/
.code
{
	display: inline;
	margin-left: 4px;
	margin-right: 4px;
	padding: 2px 10px 2px 10px;
	font-size: 1.2em;
	font-family: monospace;
	font-weight: bold;
	background: #111;
	color: #ddd;
}
/***** End of file *****/