@charset "utf-8";
body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	padding: 0;
	color: #000;
	background-color: #FFFFFF;
	background-image: url(../Bilder/hintergrund_muster.gif);
	background-repeat: repeat;
	background-attachment: fixed;
	margin-top: 3px;
	margin-right: 0px;
	margin-bottom: 3px;
	margin-left: 0px;
	display: inline;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	padding-right: 15px;
	padding-left: 15px;
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */


}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
.content a:link {
	color: #0099FF;
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
	font-weight: normal;
}
.content a:visited {
	color: #0099FF;
	text-decoration: none;
	font-weight: normal;
}
.content a:hover ,.content a:focus  { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: underline;
	font-weight: normal;
}
.sidebar1 .nav a , .sidebar1 .nav a:hover, .sidebar1 .nav a:focus, .sidebar1 .nav a:active{
	text-decoration: none;
}


/* ~~this fixed width container surrounds the other divs~~ */
.container {
	width: 1000px; /* the auto value on the sides, coupled with the width, centers the layout */
	border-right-width: 2px;
	border-left-width: 2px;
	border-top-color: #09F;
	border-right-color: #09F;
	border-bottom-color: #09F;
	border-left-color: #09F;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-width: 2px;
	border-bottom-width: 2px;
	background-color: #FFF;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
	background-color: #FFC;

}

/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.

*/
.sidebar1 {
	float: left;
	width: 180px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #09F;
	border-right-color: #09F;
	border-bottom-color: #09F;
	border-left-color: #09F;
	background-color: #9CF;
	background-image: url(../Bilder/hinterGrSeite.png);
	background-repeat: repeat-x;
	background-position: left bottom;
	padding-bottom: 50px;
}
.content {
	width: 819px;
	float: right;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}
/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul   {
	padding-top: 0;
	padding-right: 15px;
	padding-bottom: 5px;
	padding-left: 40px;
	list-style-type: square;
	font-size: 14px;
	font-weight: bolder;
	color: #333;
}
.content ol
{
	padding-top: 0;
	padding-right: 15px;
	padding-bottom: 5px;
	padding-left: 40px;
	list-style-type: decimal;
	font-size: 14px;
	font-weight: bolder;
	color: #333;
}


/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
	list-style: none; /* this removes the list marker */
	border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
}

/* ~~ The footer ~~ */
.footer {
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	text-align: right;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	text-transform: none;
	padding-top: 3px;
	padding-right: 10px;
	padding-bottom: 3px;
	padding-left: 0;
	background-color: #FFFFCC;
	border-top-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #09F;
	border-right-color: #09F;
	border-bottom-color: #09F;
	border-left-color: #09F;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
#logo {
	width: 174px;
	height: auto;
	border: 0px none #000;
	background-color: #9CF;
	padding-right: 6px;
	padding-top: 6px;
}
img#kalender {
	vertical-align: middle;
	padding: 0px;
	margin-right: 5px;
}
.ordner {
	vertical-align: middle;
	padding: 0px;
	margin-top: 0px;
	margin-right: 5px;
	margin-bottom: 0px;
	margin-left: 0px;
	position: relative;
	top: -3px;
}
#ubuntuLogo {
	text-align: right;
	height: auto;
	width: 150px;
	float: right;
}
#latexLogo
{
	text-align: right;
	height: auto;
	width: 200px;
	float: right;
}

#windowsLogo
{
	text-align: right;
	height: auto;
	width: 150px;
	float: right;
}

#pcLogo
{
	text-align: right;
	height: auto;
	width: 150px;
	float: right;
}

#webLogo
{
	text-align: right;
	height: auto;
	width: 150px;
	float: right;
}

h1#Schreibschrift {
	font-family: 'Calligraffitti', arial, serif;
	color: #FFF;
	font-size: 40px;
	text-align: center;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
	margin-top: 5px;
	margin-right: 15px;
	margin-bottom: 15px;
	margin-left: 15px;
	border: 2px outset #00F;
	background-image: url(../Bilder/hintUeberschr.png);
	background-repeat: repeat;
}
h2.abschnittSchrift {
	font-family: 'Mountains of Christmas', cursive, Arial, Helvetica, sans-serif;
	font-size: 26px;
	color: #333;
}
img#linuxKlein {
	position: relative;
	top: 4px;
}
img#allgemeinKlein {
	position: relative;
	top: 5px;
}

img#windowsKlein {
	position: relative;
	top: 4px;
}
.listenElement {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-weight: bold;
	list-style-type: decimal;
	list-style-position: inside;
}
h2 {
	color: #09F;
	font-size: 24px;
	font-weight: 100;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #09F;
	border-right-color: #09F;
	border-bottom-color: #09F;
	border-left-color: #09F;
	margin-top: 35px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	font-family: 'Mountains of Christmas', cursive, Arial, Helvetica, sans-serif;
}
.bashKode {
	margin-top: 10px;
	margin-right: 15px;
	margin-bottom: 10px;
	margin-left: 15px;
	font-family: "Lucida Console", Monaco, monospace;
	color: #CCC;
	font-weight: bold;
	background-color: #000;
	font-size: 14px;
	padding: 5px;
	white-space: nowrap;
	overflow: auto;
}
.textNormal {
	font-family: Verdana, Geneva, sans-serif;
	padding-top: 0px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 15px;
	font-size: 14px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}
.textDatei {
	font-family: "Lucida Console", Monaco, monospace;
	color: #000;
	background-color: #E0E0E0;
	border: 1px solid #333;
	font-size: 14px;
	padding: 5px;
	width: 777px;
	max-width: 777px;
	min-height: auto;
	max-height: 250px;
	overflow-y: auto;
	margin-top: 5px;
	margin-right: 15px;
	margin-bottom: 5px;
	margin-left: 15px;
}

ol.textDatei {
	color: #000;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	clip: rect(0px,0px,0px,0px);
	margin: 0px;
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 0px;
	padding-left: 5px;
	list-style-type: decimal;
}
#tabChown {
	width: auto;
	margin-top: 0px;
	margin-right: 15px;
	margin-bottom: 0px;
	margin-left: 15px;
	border: 1px solid #03F;
	background-color: #CCEBFF;
	font-size: 14px;
}
#tabChown tbody tr td {
	padding-top: 2px;
	padding-right: 5px;
	padding-bottom: 2px;
	padding-left: 5px;
	border-top-width: 0px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #09F;
	border-right-color: #09F;
	border-bottom-color: #09F;
	border-left-color: #09F;
}
#tabChown tbody tr th {
	font-family: Tahoma, Geneva, sans-serif;
	color: #FFF;
	font-size: 17px;
	background-color: #0099FF;
	font-weight: bold;
}
#tabChown .subHeader {
	font-style: normal;
	font-size: 15px;
	font-weight: bold;
	color: #912400;
}
.textAchtung {
	color: #F33;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	background-color: #D7EFFF;
	border: 3px double #000;
	margin: 15px;
}
.textHinweis {
	color: #933;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	background-color: #CEFFCE;
	border: 3px double #000;
	margin: 15px;
}

#tabChown td.kombo   {
	font-weight: bold;
}
.textAchtung h3 {
	padding: 0px;
	margin: 0px;
	font-family: "Times New Roman", Times, serif;
	font-size: 18px;
	font-weight: lighter;
}
.textHinweis h3 {
	padding: 0px;
	margin: 0px;
	font-family: "Times New Roman", Times, serif;
	font-size: 18px;
	font-weight: lighter;
}

h3 img {
	position: relative;
	top: 1px;
}
.textNormal img {
	vertical-align: middle;
	position: relative;
	top: -1px;
}
.screenShot {
	border: 1px solid #09F;
}

.bildInstallation {
	padding-top: 0px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 15px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
ul li.paket {
	color: #333;
	font-weight: bolder;
	font-size: 14px;
	list-style-type: square;
	font-family: Verdana, Geneva, sans-serif;
	margin: 0px;
	padding: 0px;
}
div.hoch {
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 15px;
	text-align: right;
	margin-right: 0px;
}
.hoch a img {
	border-top-width: 2px;
	border-right-width: 0px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #09F;
	border-right-color: #09F;
	border-bottom-color: #09F;
	border-left-color: #09F;
	padding: 3px;
	background-color: #80CCFF;
}
.hoch a img:hover {
	border-top-width: 2px;
	border-right-width: 0px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #09F;
	border-right-color: #09F;
	border-bottom-color: #09F;
	border-left-color: #09F;
	padding: 3px;
	background-color: #DFF2FF;
}
.content ul.inhaltsVz {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-weight: lighter;
	list-style-type: decimal;
}
.inhaltsBegrenzung {
	overflow: auto;
	height: auto;
	max-height: 230px;
	padding-left: 10px;
}

.textNormal .programmName {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	font-weight: bolder;
	color: #333;
}
.taste {
	font-size: 0.8em;
	background-color: #EEE;
	white-space: pre;
	display: inline;
	padding-top: 0.1em;
	padding-right: 0.4em;
	padding-bottom: 0.1em;
	padding-left: 0.4em;
	border-top-width: 0.2em;
	border-right-width: 0.2em;
	border-bottom-width: 0.2em;
	border-left-width: 0.2em;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #DDD;
	border-right-color: #BBB;
	border-bottom-color: #BBB;
	border-left-color: #DDD;
}
.sidebar1 li.active, .sidebar1 li:hover, .sidebar1 li:focus{
	color: #FFF;
	background-color: #03F;
	text-decoration: none;
	line-height: 35px;
}
.sidebar1 li  {
	color: #0000FF;
	background-color: #FF6;
	text-decoration: none;
	line-height: 35px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #000;
	border-right-color: #000;
	border-bottom-color: #000;
	border-left-color: #000;
	padding-top: 0px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 15px;
}
.textDatei pre {
	font-size: 14px;
	color: #000;
	font-family: "Lucida Console", Monaco, monospace;
	margin: 0px;
	padding: 0px;
}
img.fliesstextRand
{
	height: auto;
	max-width: 777px;
	width: 100%;
	margin-left: 15px;
	margin-right: 15px;
	border: 1px solid #333;
}
img.fliesstextRandUnten
{
	height: auto;
	max-width: 777px;
	width: 100%;
	margin-left: 15px;
	margin-right: 15px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
	border-top-style: dotted;
	border-right-style: dotted;
	border-bottom-style: dashed;
	border-left-style: dotted;
	border-top-color: #333;
	border-right-color: #333;
	border-bottom-color: #333;
	border-left-color: #333;
}

img#webKlein
{
	top: 3px;
	position: relative;
}
img#latexKlein
{
	top: 5px;
	position: relative;
}
.content .hervorhebung
{
	color: #33C;
	font-family: "Courier New", Courier, monospace;
	font-weight: lighter;
	font-style: normal;
	font-size: medium;
	list-style-type: none;
}

ul.pfadliste
{
	color: #33C;
	font-family: "Courier New", Courier, monospace;
	font-weight: lighter;
	font-style: normal;
	font-size: medium;
	list-style-type: none;
	background-color: #CCC;
}
.textMitte {
	text-align: center;
}
