ilch Forum » Ilch Clan 1.1 » Module und Modifikationen » Startseite nur ab User sichtbar

Geschlossen
  1. #1
    User Pic
    JanRockt Mitglied
    Registriert seit
    12.06.2010
    Beiträge
    97
    Beitragswertungen
    0 Beitragspunkte
    hallo habe seit gestern ein Porblem mir der Startseite habe das modul installiert und alles war gut ich wollte das die startseite erst ab User gesehen wird und als als gast die Loginbox aber irgendwie geht das seit gestern abend nicht mehr? ich krieg die Kriese. Watt macht mann denn da?
    0 Mitglieder finden den Beitrag gut.
  2. #2
    User Pic
    Lord|Schirmer Administrator
    Registriert seit
    21.03.2007
    Beiträge
    7.638
    Beitragswertungen
    1193 Beitragspunkte
    Link WebSite?
    Was für ein Modul?
    rules :: doku :: faq :: linkus
    0 Mitglieder finden den Beitrag gut.
  3. #3
    User Pic
    JanRockt Mitglied
    Registriert seit
    12.06.2010
    Beiträge
    97
    Beitragswertungen
    0 Beitragspunkte
    externer Link modul externer Link ich versteh das nicht habe nix verändert die login box wurde bis gestern noch antelle der startseite angezeigt
    0 Mitglieder finden den Beitrag gut.
  4. #4
    User Pic
    Lord|Schirmer Administrator
    Registriert seit
    21.03.2007
    Beiträge
    7.638
    Beitragswertungen
    1193 Beitragspunkte
    Ich habe mir das Modul mal angeschaut!

    Das prüft eigentlich nur ob es eine Selfpage namens startseite gibt und zeigt diese an wenn vorhanden, ansonsten erscheint wohl ein Infotext!

    Du müsste somit noch in der Konfiguration im Adminbereich unter Start Modul der Seite: willkommen auswählen!
    rules :: doku :: faq :: linkus
    0 Mitglieder finden den Beitrag gut.
  5. #5
    User Pic
    JanRockt Mitglied
    Registriert seit
    12.06.2010
    Beiträge
    97
    Beitragswertungen
    0 Beitragspunkte
    das ist ja das kuriose es ist ja alles so wie beschrieben in der Konfiguration Willkommen gewählt und eine selfpage startseite (kleingeschrieben) erstellt da funktionerte ja auch alles super bis gestern abend. habe weder in der php etwas verändert noch sonst wo. Der Content meiner Page soll nicht sichtbar sein für gäste lediglich das video als box und im Newsbereich sollte stehen (keine Berechtigug darunter halt der login + regist) so muss ich nun zwei boxen für gäste frei geben und die startseite ist auch für gäste sichtbar. das ist mist! muss ich vielleicht die attribute irgendwie ändern? ich kann ja nochnichtmal auswählen ab welchem rang die startseite angezeigt werden soll!


    Zuletzt modifiziert von JanRockt am 12.06.2010 - 11:24:10
    0 Mitglieder finden den Beitrag gut.
  6. #6
    User Pic
    JanRockt Mitglied
    Registriert seit
    12.06.2010
    Beiträge
    97
    Beitragswertungen
    0 Beitragspunkte
    hat denn keener ne lösung?
    0 Mitglieder finden den Beitrag gut.
  7. #7
    User Pic
    Lord|Schirmer Administrator
    Registriert seit
    21.03.2007
    Beiträge
    7.638
    Beitragswertungen
    1193 Beitragspunkte
    Ich würde in die index.php eine Abfrage einbauen, ala

    
    if (!loggedin() AND $menu->get(0) != 'user' AND ($menu->get(1) != 'regist' OR $menu->get(1) != 'confirm'))
    { require_once ('include/contents/user/login.php'); }



    Zuletzt modifiziert von Lord|Schirmer am 12.06.2010 - 14:06:21
    rules :: doku :: faq :: linkus
    0 Mitglieder finden den Beitrag gut.
  8. #8
    User Pic
    JanRockt Mitglied
    Registriert seit
    12.06.2010
    Beiträge
    97
    Beitragswertungen
    0 Beitragspunkte
    soweit so gut aber in welche index php und in welche zeile? soviel plan hab ich dann auch wieder nicht trotzdem danke
    0 Mitglieder finden den Beitrag gut.
  9. #9
    User Pic
    Lord|Schirmer Administrator
    Registriert seit
    21.03.2007
    Beiträge
    7.638
    Beitragswertungen
    1193 Beitragspunkte
    Eigentlich gibt es nur eine index.php, nämlich die welche sich im Hauptordner befindet!

    Dort den genannten Code am besten noch vor der Admin Abfrage reinsetzen!

    Im Notfall Code posten!
    rules :: doku :: faq :: linkus
    0 Mitglieder finden den Beitrag gut.
  10. #10
    User Pic
    JanRockt Mitglied
    Registriert seit
    12.06.2010
    Beiträge
    97
    Beitragswertungen
    0 Beitragspunkte
    also ich habe siese Index.php vom CMS die meinste ja wohl nicht
    <?php
    #   Copyright by: Manuel
    #   Support: www.ilch.de
    
    define ( 'main' , TRUE );
    
    //Konfiguration zur Anzeige von Fehlern
    //Auf http://www.php.net/manual/de/function.error-reporting.php sind die verfügbaren Modi aufgelistet
    
    //Seit php-5.3 ist eine Angabe der TimeZone Pflicht
    if (version_compare(phpversion(), '5.3') != -1) {
    	if (E_ALL > E_DEPRECATED) {
    		@error_reporting(E_ALL ^ E_NOTICE ^ E_DEPRECATED);
    	} else {
    		@error_reporting(E_ALL ^ E_NOTICE);
    	}
    	date_default_timezone_set('Europe/Berlin');
    } else {
    	@error_reporting(E_ALL ^ E_NOTICE);
    }
    @ini_set('display_errors','On');
    
    session_name  ('sid');
    session_start ();
    
    require_once ('include/includes/config.php');
    require_once ('include/includes/loader.php');
    
    db_connect();
    $allgAr = getAllgAr ();
    $menu = new menu();
    user_identification();
    site_statistic();
    
    require_once ('include/contents/'.$menu->get_url());
    
    db_close();
    if (false) { //debugging aktivieren
    	debug('anzahl sql querys: '.$count_query_xyzXYZ);
    	debug('',1,true);
    }
    ?>




    oder diese vom Design

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="de" xml:lang="de">
    <head>
        <!--
        Created by Artisteer v2.2.0.17376
        Base template (without user's data) checked by http://validator.w3.org : "This page is valid XHTML 1.0 Transitional"
        //////////////////////////////////
        Aligned by sonicdesigns.de for ilch CMS
        The remove of each copyright of this design template is forbidden.
        -->
        <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
        <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
        <title>{TITLE}</title>
    
        <script type="text/javascript" src="include/designs/natural/script.js"></script>
    
        <link rel="stylesheet" href="include/designs/natural/style.css" type="text/css" media="screen" />
        <!--[if IE 6]><link rel="stylesheet" href="include/designs/natural/style.ie6.css" type="text/css" media="screen" /><![endif]-->
        <!--[if IE 7]><link rel="stylesheet" href="include/designs/natural/style.ie7.css" type="text/css" media="screen" /><![endif]-->
    </head>
    <body>
        <div id="art-page-background-gradient"></div>
        <div id="art-page-background-glare">
            <div id="art-page-background-glare-image"></div>
        </div>
        
    <div id="art-main"> 
      <div class="art-Sheet"> 
        <div class="art-Sheet-tl"></div>
        <div class="art-Sheet-tr"></div>
        <div class="art-Sheet-bl"></div>
        <div class="art-Sheet-br"></div>
        <div class="art-Sheet-tc"></div>
        <div class="art-Sheet-bc"></div>
        <div class="art-Sheet-cl"></div>
        <div class="art-Sheet-cr"></div>
        <div class="art-Sheet-cc"></div>
        <div class="art-Sheet-body"> 
          <div class="art-nav"> 
            <div class="l"></div>
            <div class="r"></div>
            <ul class="art-menu">
              {_list_menunr1@
    		  <li><a href="#"><span class="l"></span><span class="r"></span><span class="t">%1</span></a>
    		  	<ul>	
    			%2
    			</ul>
    		  </li>
    		 	}
            </ul>
          </div>
          <div class="art-Header"> 
            <div class="art-Header-jpeg"></div>
            <div class="art-Logo"> 
              <h1 id="name-text" class="art-Logo-name"><a href="#"></a></h1>
              <div id="slogan-text" class="art-Logo-text"></div>
            </div>
          </div></table>
      </tr><td colspan="3" bgcolor="#373632"><marquee scrollamount=4  class="copy"  scrolldelay=0>
    
    >>> Die Fanpage von Se7en Cent ist fast Fertig, und kann schon bald publiziert werden <<< >>> Ladet eure eigenen Partybilder von den Se7en Cent Konzerten auf unsere Fanseite unter "Bilder Upload" einfach eine Kategorie erstellen, anschließend Bilder makieren und Uploaden!Nach einer kurzen Püfung durch einen Admin, werden die bilder auf der Homepage veröffentlicht! <<< >>> Unter Videos & Bilder Ansehen findet Ihr reichhaltiges Video und Bildmaterial von Konzerten beachtet bitte dabei dass das Aktuellste Video immer ganz unten Steht! <<< >>> Unter "Nächstes Event" Findet ihr alle Termine mit Ortsangabe via googlemap, ihr könnt euch zu den Terminen Anmelden oder Absagen! <<< >>> Sonntag wird Gerockt aber nur kurz, in der Europahalle ab 19.00 Uhr! <<<
          				</marquee></td>
        </tr>
          <div class="art-contentLayout"> 
            <div class="art-sidebar1"> 
              <div class="art-Block"> 
                <div class="art-Block-tl"></div>
                <div class="art-Block-tr"></div>
                <div class="art-Block-bl"></div>
                <div class="art-Block-br"></div>
                <div class="art-Block-tc"></div>
                <div class="art-Block-bc"></div>
                <div class="art-Block-cl"></div>
                <div class="art-Block-cr"></div>
                <div class="art-Block-cc"></div>
    				{_list_menunr2@
    				<div class="art-Block-body">
    					<div class="art-BlockHeader">
    						<div class="l"></div>
    							<div class="r"></div>
    							<div class="art-header-tag-icon">
    								<div class="t">%1</div>
    							</div>
    					</div>
    					<div class="art-BlockContent">
    						<div class="art-BlockContent-cc"></div>
    						<div class="art-BlockContent-body">
    							<div>
    								%2
    							</div>
    						</div>
    					</div>
    				</div>				
    			</div>
    			
    			<div class="art-Block"> 
                <div class="art-Block-tl"></div>
                <div class="art-Block-tr"></div>
                <div class="art-Block-bl"></div>
                <div class="art-Block-br"></div>
                <div class="art-Block-tc"></div>
                <div class="art-Block-bc"></div>
                <div class="art-Block-cl"></div>
                <div class="art-Block-cr"></div>
                <div class="art-Block-cc"></div>
    			}
    			</div></div>
    			<div class="art-content">
    				<div class="art-Post">
    					<div class="art-Post-body">
    						<div class="art-Post-inner">
    							<h2 class="art-PostHeaderIcon-wrapper">
    								<span class="art-PostHeader">{HMENU}</span>
    							</h2>
    							<div class="art-PostContent">
    								{EXPLODE}
    							</div>
    							<div class="cleared"></div>
    							</div>						
    						</div>
    					</div>
    				</div>
    			</div>
                <div class="cleared"></div>
    				<div class="art-Footer">
                        <div class="art-Footer-inner">
                            <a href="index.php?news-rss" class="art-rss-tag-icon" target="_blank" title="RSS"></a>
                            <div class="art-Footer-text">
                                <p><a href="http://www.sevencentfan.de/index.php?contact">Kontakt</a>  |  <a href="http://www.sevencentfan.de/index.php?impressum">Impressum</a>  |  <a href="http://www.sevencentfan.de/index.php?statistik">Besucher Statistik</a> | <a href="http://www.sevencentfan.de/index.php?jobs">Jobs</a><br />
    							Copyright &copy; 2010. </p>
                            </div>
                        </div>
                        <div class="art-Footer-background"></div>
                    </div>
                </div>
            </div>
            <div class="cleared"></div>
            <p class="art-page-footer">Designed by <a href="sevencent.de">JanRockt</a>. Aligned by <a href="http://sevencent.de" target="_blank">SE7EN CENT</a>.</p>
        </div>
        
    </body>
    </html>
    
    {_list_hmenupoint@<li><a target="%1" href="%2">%3</a></li>}



    Danke danke
    0 Mitglieder finden den Beitrag gut.
  11. #11
    User Pic
    Lord|Schirmer Administrator
    Registriert seit
    21.03.2007
    Beiträge
    7.638
    Beitragswertungen
    1193 Beitragspunkte
    Lieber JanRockt, ich habe immer von einer index.php gesprochen, nie von einer htm!

    Ich habe es Dir eingefügt! Sollte funzen...

    <?php
    #   Copyright by: Manuel
    #   Support: www.ilch.de
     
    define ( 'main' , TRUE );
     
    //Konfiguration zur Anzeige von Fehlern
    //Auf http://www.php.net/manual/de/function.error-reporting.php sind die verfügbaren Modi aufgelistet
     
    //Seit php-5.3 ist eine Angabe der TimeZone Pflicht
    if (version_compare(phpversion(), '5.3') != -1) {
        if (E_ALL > E_DEPRECATED) {
            @error_reporting(E_ALL ^ E_NOTICE ^ E_DEPRECATED);
        } else {
            @error_reporting(E_ALL ^ E_NOTICE);
        }
        date_default_timezone_set('Europe/Berlin');
    } else {
        @error_reporting(E_ALL ^ E_NOTICE);
    }
    @ini_set('display_errors','On');
     
    session_name  ('sid');
    session_start ();
     
    require_once ('include/includes/config.php');
    require_once ('include/includes/loader.php');
     
    db_connect();
    $allgAr = getAllgAr ();
    $menu = new menu();
    user_identification();
    site_statistic();
    
    if (!loggedin() AND $menu->get(0) != 'user' AND ($menu->get(1) != 'regist' OR $menu->get(1) != 'confirm'))
    { require_once ('include/contents/user/login.php'); }
    else
    { require_once ('include/contents/'.$menu->get_url()); }
     
    db_close();
    if (false) { //debugging aktivieren
        debug('anzahl sql querys: '.$count_query_xyzXYZ);
        debug('',1,true);
    }
    ?>
    rules :: doku :: faq :: linkus
    0 Mitglieder finden den Beitrag gut.
  12. #12
    User Pic
    JanRockt Mitglied
    Registriert seit
    12.06.2010
    Beiträge
    97
    Beitragswertungen
    0 Beitragspunkte
    Supi vielen dank für deine Mühen hat geklappt!

    Vielleicht hast du ja gerade noch bock mir bei zwei anderen sachen zu helfen?

    und zwar habe ich das problem das ich in meiner navigation vor den menüpunkten aufzählungszeichen habe die nicht in der Box sind das sieht Sch++ße aus und die sollen weg finde die entsprechende Zeile aber nicht in der Index.htm sofern ich da richtig suche schau hier

    gesperrtes Bild


    und dann habe ich noch wie kann ich die texte hier bearbeiten?


    gesperrtes Bild

    bei login sollte "Zugang zum Fanportal" + ein Kleiner Text stehen und bei einloggen "Anmelden"

    vielen dank im vorraus
    0 Mitglieder finden den Beitrag gut.
  13. #13
    User Pic
    Lord|Schirmer Administrator
    Registriert seit
    21.03.2007
    Beiträge
    7.638
    Beitragswertungen
    1193 Beitragspunkte
    Menü

    Prüfe mal die in der style.css deines Designs die Formatierung der Menüpunkte!
    #menu
    #menu ul


    Login

    ...include/templates/user/login.htm
    hier befindet sich das Template für das Login

    {_lang_LOGIN} für E I N L O G G E N in der include/includes/lang/de.php
    rules :: doku :: faq :: linkus
    0 Mitglieder finden den Beitrag gut.
  14. #14
    User Pic
    JanRockt Mitglied
    Registriert seit
    12.06.2010
    Beiträge
    97
    Beitragswertungen
    0 Beitragspunkte
    Das login hab ich hinbekommen! Danke

    aber desing hat 3 .css datein schau mal

    Styl.css

    /* begin Page */
    
    /* Generated with Artisteer version 2.2.0.17376, file checksum is A13DE074. */
    
    body
    {
    	margin: 0 auto;
    	padding: 0;
    	background-color: #454545;
    	background-image: url('images/Page-BgTexture.jpg');
    	background-repeat: repeat;
    	background-attachment: scroll;
    	background-position: top left;
    }
    
    #art-main
    {
    	position: relative;
    	width: 100%;
    	left: 0;
    	top: 0;
    }
    
    #art-page-background-glare
    {
    	position: absolute;
    	width: 100%;
    	height: 422px;
    	left: 0;
    	top: 0;
    }
    
    #art-page-background-glare-image
    {
    	background-image: url('images/Page-BgGlare.png');
    	background-repeat: no-repeat;
    	height: 422px;
    	width: 973px;
    	margin: 0;
    }
    
    html:first-child #art-page-background-glare
    {
    	border: 1px solid transparent; /* Opera fix */
    }
    
    
    #art-page-background-gradient
    {
    	position: absolute;
    	background-image: url('images/Page-BgGradient.jpg');
    	background-repeat: repeat-x;
    	top:0;
    	width:100%;
    	height: 900px;
    	
    }
    
    #art-page-background-gradient
    {
    	background-position: top left;
    }
    
    
    .cleared
    {
    	float: none;
    	clear: both;
    	margin: 0;
    	padding: 0;
    	border: none;
    	font-size:1px;
    }
    
    
    form
    {
    	padding:0 !important;
    	margin:0 !important;
    }
    
    table.position
    {
    	position: relative;
    	width: 100%;
    	table-layout: fixed;
    }
    /* end Page */
    
    /* begin Box, Sheet */
    .art-Sheet
    {
    	position:relative;
    	z-index:0;
    	margin:0 auto;
    	width: 1000px;
    	min-width:29px;
    	min-height:29px;
    }
    
    .art-Sheet-body
    {
    	position: relative;
    	z-index:1;
    	padding: 7px;
    }
    
    .art-Sheet-tr, .art-Sheet-tl, .art-Sheet-br, .art-Sheet-bl, .art-Sheet-tc, .art-Sheet-bc,.art-Sheet-cr, .art-Sheet-cl
    {
    	position:absolute;
    	z-index:-1;
    }
    
    .art-Sheet-tr, .art-Sheet-tl, .art-Sheet-br, .art-Sheet-bl
    {
    	width: 48px;
    	height: 48px;
    	background-image: url('images/Sheet-s.png');
    }
    
    .art-Sheet-tl
    {
    	top:0;
    	left:0;
    	clip: rect(auto, 24px, 24px, auto);
    }
    
    .art-Sheet-tr
    {
    	top: 0;
    	right: 0;
    	clip: rect(auto, auto, 24px, 24px);
    }
    
    .art-Sheet-bl
    {
    	bottom: 0;
    	left: 0;
    	clip: rect(24px, 24px, auto, auto);
    }
    
    .art-Sheet-br
    {
    	bottom: 0;
    	right: 0;
    	clip: rect(24px, auto, auto, 24px);
    }
    
    .art-Sheet-tc, .art-Sheet-bc
    {
    	left: 24px;
    	right: 24px;
    	height: 48px;
    	background-image: url('images/Sheet-h.png');
    }
    
    .art-Sheet-tc
    {
    	top: 0;
    	clip: rect(auto, auto, 24px, auto);
    }
    
    .art-Sheet-bc
    {
    	bottom: 0;
    	clip: rect(24px, auto, auto, auto);
    }
    
    .art-Sheet-cr, .art-Sheet-cl
    {
    	top: 24px;
    	bottom: 24px;
    	width: 48px;
    	background-image: url('images/Sheet-v.png');
    }
    
    .art-Sheet-cr
    {
    	right:0;
    	clip: rect(auto, auto, auto, 24px);
    }
    
    .art-Sheet-cl
    {
    	left:0;
    	clip: rect(auto, 24px, auto, auto);
    }
    
    .art-Sheet-cc
    {
    	position:absolute;
    	z-index:-1;
    	top: 24px;
    	left: 24px;
    	right: 24px;
    	bottom: 24px;
    	background-color: #FFFFFF;
    }
    
    
    .art-Sheet
    {
    	margin-top: -7px !important;
    }
    
    #art-page-background-simple-gradient, #art-page-background-gradient, #art-page-background-glare
    {
    	min-width:1000px;
    }
    
    /* end Box, Sheet */
    
    /* begin Menu */
    /* menu structure */
    
    .art-menu a, .art-menu a:link, .art-menu a:visited, .art-menu a:hover
    {
    	text-align:left;
    	text-decoration:none;
    	outline:none;
    	letter-spacing:normal;
    	word-spacing:normal;
    }
    
    .art-menu, .art-menu ul
    {
    	margin: 0;
    	padding: 0;
    	border: 0;
    	list-style-type: none;
    	display: block;
    }
    
    .art-menu li
    {
    	margin: 0;
    	padding: 0;
    	border: 0;
    	display: block;
    	float: left;
    	position: relative;
    	z-index: 5;
    	background:none;
    }
    
    .art-menu li:hover
    {
    	z-index: 10000;
    	white-space: normal;
    }
    
    .art-menu li li
    {
    	float: none;
    }
    
    .art-menu ul
    {
    	visibility: hidden;
    	position: absolute;
    	z-index: 10;
    	left: 0;
    	top: 0;
    	background:none;
    }
    
    .art-menu li:hover>ul
    {
    	visibility: visible;
    	top: 100%;
    }
    
    .art-menu li li:hover>ul
    {
    	top: 0;
    	left: 100%;
    }
    
    .art-menu:after, .art-menu ul:after
    {
    	content: ".";
    	height: 0;
    	display: block;
    	visibility: hidden;
    	overflow: hidden;
    	clear: both;
    }
    .art-menu, .art-menu ul
    {
    	min-height: 0;
    }
    
    .art-menu ul
    {
    	background-image: url(images/spacer.gif);
    	padding: 10px 30px 30px 30px;
    	margin: -10px 0 0 -30px;
    }
    
    .art-menu ul ul
    {
    	padding: 30px 30px 30px 10px;
    	margin: -30px 0 0 -10px;
    }
    
    
    
    
    
    /* menu structure */
    
    .art-menu
    {
    	padding: 3px 3px 3px 3px;
    }
    
    .art-nav
    {
    	position: relative;
    	height: 29px;
    	z-index: 100;
    }
    
    .art-nav .l, .art-nav .r
    {
    	position: absolute;
    	z-index: -1;
    	top: 0;
    	height: 29px;
    	background-image: url('images/nav.png');
    }
    
    .art-nav .l
    {
    	left: 0;
    	right:0px;
    }
    
    .art-nav .r
    {
    	right: 0;
    	width: 986px;
    	clip: rect(auto, auto, auto, 986px);
    }
    
    
    /* end Menu */
    
    /* begin MenuItem */
    .art-menu ul li
    {
    	clear: both;
    }
    
    .art-menu a
    {
    	position:relative;
    	display: block;
    	overflow:hidden;
    	height: 23px;
    	cursor: pointer;
    	text-decoration: none;
    	margin-right: 4px;
    	margin-left: 4px;
    }
    
    
    .art-menu a .r, .art-menu a .l
    {
    	position:absolute;
    	display: block;
    	top:0;
    	z-index:-1;
    	height: 69px;
    	background-image: url('images/MenuItem.png');
    }
    
    .art-menu a .l
    {
    	left:0;
    	right:1px;
    }
    
    .art-menu a .r
    {
    	width:402px;
    	right:0;
    	clip: rect(auto, auto, auto, 401px);
    }
    
    .art-menu a .t 
    {
    	font-family: Segoe Print;
    	font-size: 11px;
    	font-style: normal;
    	font-weight: normal;
    	color: #FFFFFF;
    	padding: 0 12px;
    	margin: 0 1px;
    	line-height: 23px;
    	text-align: center;
    }
    
    .art-menu a:hover .l, .art-menu a:hover .r
    {
    	top:-23px;
    }
    
    .art-menu li:hover>a .l, .art-menu li:hover>a .r
    {
    	top:-23px;
    }
    
    .art-menu li:hover a .l, .art-menu li:hover a .r
    {
    	top:-23px;
    }
    .art-menu a:hover .t
    {
    	color: #FFFFFF;
    }
    
    .art-menu li:hover a .t
    {
    	color: #FFFFFF;
    }
    
    .art-menu li:hover>a .t
    {
    	color: #FFFFFF;
    }
    
    
    .art-menu a.active .l, .art-menu a.active .r
    {
    	top: -46px;
    }
    
    .art-menu a.active .t
    {
    	color: #FFFFFF;
    }
    
    
    /* end MenuItem */
    
    /* begin MenuSeparator */
    .art-nav .art-menu-separator
    {
    	display: block;
    	width: 1px;
    	height: 23px;
    	background-image: url('images/MenuSeparator.png');
    }
    
    /* end MenuSeparator */
    
    /* begin MenuSubItem */
    .art-menu ul a
    {
    	display:block;
    	text-align: center;
    	white-space: nowrap;
    	height: 20px;
    	width: 180px;
    	overflow:hidden;
    	line-height: 20px;
    	margin-right: auto;
    
    
    	background-image: url('images/subitem-bg.png');
    	background-position: left top;
    	background-repeat: repeat-x;
    	border-width: 0px;
    	border-style: solid;
    }
    
    .art-nav ul.art-menu ul span, .art-nav ul.art-menu ul span span
    {
    	display: inline;
    	float: none;
    	margin: inherit;
    	padding: inherit;
    	background-image: none;
    	text-align: inherit;
    	text-decoration: inherit;
    }
    
    .art-menu ul a, .art-menu ul a:link, .art-menu ul a:visited, .art-menu ul a:hover, .art-menu ul a:active, .art-nav ul.art-menu ul span, .art-nav ul.art-menu ul span span
    {
    	text-align: left;
    	text-indent: 12px;
    	text-decoration: none;
    	line-height: 20px;
    	color: #E0E0E0;
    	font-family: Segoe Print;
    	font-size: 11px;
    	font-style: normal;
    	font-weight: normal;
    }
    
    .art-menu ul ul a
    {
    	margin-left: auto;
    }
    
    .art-menu ul li a:hover
    {
    	color: #FFFFFF;
    	background-position: 0 -20px;
    }
    
    .art-menu ul li:hover>a
    {
    	color: #FFFFFF;
    	background-position: 0 -20px;
    }
    
    .art-nav .art-menu ul li a:hover span, .art-nav .art-menu ul li a:hover span span
    {
    	color: #FFFFFF;
    }
    
    .art-nav .art-menu ul li:hover>a span, .art-nav .art-menu ul li:hover>a span span
    {
    	color: #FFFFFF;
    }
    
    
    /* end MenuSubItem */
    
    /* begin Header */
    div.art-Header
    {
    	margin: 0 auto;
    	position: relative;
    	z-index:0;
    	width: 986px;
    	height: 150px;
    }
    
    
    div.art-Header-jpeg
    {
    	position: absolute;
    	z-index:-1;
    	top: 0;
    	left: 0;
    	width: 986px;
    	height: 150px;
    	background-image: url('images/Header.jpg');
    	background-repeat: no-repeat;
    	background-position: center center;
    }
    /* end Header */
    
    /* begin Logo */
    .art-Logo
    {
    	display : block;
    	position: absolute;
    	left: 10px;
    	top: 93px;
    	width: 966px;
    }
    
    h1.art-Logo-name
    {
    	display: block;
    	text-align: right;
    }
    
    h1.art-Logo-name, h1.art-Logo-name a, h1.art-Logo-name a:link, h1.art-Logo-name a:visited, h1.art-Logo-name a:hover
    {
    	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
    	font-size: 23px;
    	font-style: normal;
    	font-weight: bold;
    	text-decoration: none;
    	padding:0;
    	margin:0;
    	color: #EDEDED !important;
    }
    
    .art-Logo-text
    {
    	display: block;
    	text-align: right;
    }
    
    .art-Logo-text, .art-Logo-text a
    {
    	font-family: Tahoma, Arial, Helvetica, Sans-Serif;
    	font-size: 16px;
    	font-style: normal;
    	font-weight: normal;
    	padding:0;
    	margin:0;
    	color: #FAFAFA !important;
    }
    /* end Logo */
    
    /* begin ContentLayout */
    .art-contentLayout
    {
    	position: relative;
    	margin-bottom: 0px;
    	width: 986px;
    }
    /* end ContentLayout */
    
    /* begin Box, Block */
    .art-Block
    {
    	position:relative;
    	z-index:0;
    	margin:0 auto;
    	min-width:3px;
    	min-height:3px;
    }
    
    .art-Block-body
    {
    	position: relative;
    	z-index:1;
    	padding: 1px;
    }
    
    .art-Block-tr, .art-Block-tl, .art-Block-br, .art-Block-bl, .art-Block-tc, .art-Block-bc,.art-Block-cr, .art-Block-cl
    {
    	position:absolute;
    	z-index:-1;
    }
    
    .art-Block-tr, .art-Block-tl, .art-Block-br, .art-Block-bl
    {
    	width: 2px;
    	height: 2px;
    	background-image: url('images/Block-s.png');
    }
    
    .art-Block-tl
    {
    	top:0;
    	left:0;
    	clip: rect(auto, 1px, 1px, auto);
    }
    
    .art-Block-tr
    {
    	top: 0;
    	right: 0;
    	clip: rect(auto, auto, 1px, 1px);
    }
    
    .art-Block-bl
    {
    	bottom: 0;
    	left: 0;
    	clip: rect(1px, 1px, auto, auto);
    }
    
    .art-Block-br
    {
    	bottom: 0;
    	right: 0;
    	clip: rect(1px, auto, auto, 1px);
    }
    
    .art-Block-tc, .art-Block-bc
    {
    	left: 1px;
    	right: 1px;
    	height: 2px;
    	background-image: url('images/Block-h.png');
    }
    
    .art-Block-tc
    {
    	top: 0;
    	clip: rect(auto, auto, 1px, auto);
    }
    
    .art-Block-bc
    {
    	bottom: 0;
    	clip: rect(1px, auto, auto, auto);
    }
    
    .art-Block-cr, .art-Block-cl
    {
    	top: 1px;
    	bottom: 1px;
    	width: 2px;
    	background-image: url('images/Block-v.png');
    }
    
    .art-Block-cr
    {
    	right:0;
    	clip: rect(auto, auto, auto, 1px);
    }
    
    .art-Block-cl
    {
    	left:0;
    	clip: rect(auto, 1px, auto, auto);
    }
    
    .art-Block-cc
    {
    	position:absolute;
    	z-index:-1;
    	top: 1px;
    	left: 1px;
    	right: 1px;
    	bottom: 1px;
    	background-color: #FFFFFF;
    }
    
    
    .art-Block
    {
    	margin: 7px;
    }
    
    /* end Box, Block */
    
    /* begin BlockHeader */
    .art-BlockHeader
    {
    	position:relative;
    	z-index:0;
    	height: 30px;
    	padding: 0 7px;
    	margin-bottom: 2px;
    }
    
    .art-BlockHeader .t
    {
    	height: 30px;
    	color: #FFFFFF;
    	font-family: Segoe Print;
    	font-size: 11px;
    	font-style: normal;
    	font-weight: bold;
    	white-space : nowrap;
    	padding: 0 7px;
    	line-height: 30px;
    }
    
    .art-BlockHeader .l, .art-BlockHeader .r
    {
    	display:block;
    	position:absolute;
    	z-index:-1;
    	height: 30px;
    	background-image: url('images/BlockHeader.png');
    }
    
    .art-BlockHeader .l
    {
    	left:0;
    	right:0px;
    }
    
    .art-BlockHeader .r
    { 
    	width:990px;
    	right:0;
    	clip: rect(auto, auto, auto, 990px);
    }
    
    
    
    
    
    .art-header-tag-icon
    {
    	display:inline-block;
    	background-position:left top;
    	background-image: url('images/BlockHeaderIcon.png');
    	padding:0 0 0 11px;
    	background-repeat: no-repeat;
    	min-height: 11px;
    	margin: 0 0 0 5px;
    }
    
    
    /* end BlockHeader */
    
    /* begin Box, BlockContent */
    .art-BlockContent
    {
    	position:relative;
    	z-index:0;
    	margin:0 auto;
    	min-width:1px;
    	min-height:1px;
    }
    
    .art-BlockContent-body
    {
    	position: relative;
    	z-index:1;
    	padding: 7px;
    }
    
    .art-BlockContent-cc
    {
    	position:absolute;
    	z-index:-1;
    	top: 0px;
    	left: 0px;
    	right: 0px;
    	bottom: 0px;
    	background-color: #FAFAFA;
    }
    
    
    .art-BlockContent-body
    {
    	color:#666666;
    	font-family: Segoe Print;
    	font-size: 11px;
    	font-style: normal;
    	font-weight: normal;
    }
    
    .art-BlockContent-body a:link
    {
    	color: #575757;
    	font-family: Segoe Print;
    	text-decoration: none;
    }
    
    .art-BlockContent-body a:visited, .art-BlockContent-body a.visited
    {
    	color: #919191;
    	font-family: Segoe Print;
    	text-decoration: none;
    }
    
    .art-BlockContent-body a:hover, .art-BlockContent-body a.hover
    {
    	color: #737373;
    	font-family: Segoe Print;
    	text-decoration: none;
    }
    
    .art-BlockContent-body ul
    {
    	list-style-type: none;
    	color: #292929;
    	margin:0;
    	padding:0;
    }
    
    .art-BlockContent-body li
    {
    	font-family: Segoe Print;
    	font-size: 11px;
    	text-decoration: none;
    }
    
    .art-BlockContent-body ul li
    {
    	padding:0px 0 0px 15px;
    	background-image: url('images/BlockContentBullets.png');
    	background-repeat:no-repeat;
    	margin:0.5em 0 0.5em 0;
    	line-height:1.2em;
    }
    
    /* end Box, BlockContent */
    
    /* begin Box, Post */
    .art-Post
    {
    	position:relative;
    	z-index:0;
    	margin:0 auto;
    	min-width:1px;
    	min-height:1px;
    }
    
    .art-Post-body
    {
    	position: relative;
    	z-index:1;
    	padding: 5px;
    }
    
    
    
    .art-Post
    {
    	margin: 7px;
    }
    
    /* Start images */
    a img
    {
    	border: 0;
    }
    
    .art-article img, img.art-article
    {
    	border: solid 2px #FAFAFA;
    	margin: 1em;
    }
    
    .art-metadata-icons img
    {
    	border: none;
    	vertical-align: middle;
    	margin:2px;
    }
    /* Finish images */
    
    /* Start tables */
    
    .art-article table, table.art-article
    {
    	border-collapse: collapse;
    	margin: 1px;
    	width:auto;
    }
    
    .art-article table, table.art-article .art-article tr, .art-article th, .art-article td
    {
    	background-color:Transparent;
    }
    
    .art-article th, .art-article td
    {
    	padding: 2px;
    	border: solid 1px #DBDBDB;
    	vertical-align: top;
    	text-align:left;
    }
    
    .art-article th
    {
    	text-align:center;
    	vertical-align:middle;
    	padding: 7px;
    }
    
    /* Finish tables */
    /* end Box, Post */
    
    /* begin PostHeaderIcon */
    .art-PostHeaderIcon-wrapper
    {
    	text-decoration:none;
    	margin: 0.2em 0;
    	padding: 0;
    	font-weight:normal;
    	font-style:normal;
    	letter-spacing:normal;
    	word-spacing:normal;
    	font-variant:normal;
    	text-decoration:none;
    	font-variant:normal;
    	text-transform:none;
    	text-align:left;
    	text-indent:0;
    	line-height:inherit;
    	font-family: Segoe Print;
    	font-size: 20px;
    	font-style: normal;
    	font-weight: bold;
    	text-align: left;
    	color: #404040;
    }
    
    .art-PostHeaderIcon-wrapper, .art-PostHeaderIcon-wrapper a, .art-PostHeaderIcon-wrapper a:link, .art-PostHeaderIcon-wrapper a:visited, .art-PostHeaderIcon-wrapper a:hover
    {
    	font-family: Segoe Print;
    	font-size: 20px;
    	font-style: normal;
    	font-weight: bold;
    	text-align: left;
    	color: #404040;
    }
    
    /* end PostHeaderIcon */
    
    /* begin PostHeader */
    .art-PostHeader a:link
    {
      font-family: Segoe Print;
      text-decoration: none;
      text-align: left;
      color: #4D4D4D;
    }
    
    .art-PostHeader a:visited, .art-PostHeader a.visited
    {
      font-family: Segoe Print;
      text-decoration: none;
      text-align: left;
      color: #666666;
    }
    
    .art-PostHeader a:hover, .art-PostHeader a.hovered
    {
      font-family: Segoe Print;
      text-decoration: none;
      text-align: left;
      color: #595959;
    }
    /* end PostHeader */
    
    /* begin PostContent */
    /* Content Text Font & Color (Default) */
    body
    {
      font-family: Segoe Print;
      font-size: 11px;
      font-style: normal;
      font-weight: normal;
      color: #545454;
    }
    
    .art-PostContent
    {
      font-family: Segoe Print;
      font-size: 11px;
      font-style: normal;
      font-weight: normal;
      text-align: justify;
      color: #545454;
    }
    
    
    /* Start Content link style */
    /*
    The right order of link pseudo-classes: Link-Visited-Hover-Focus-Active.
    http://www.w3schools.com/CSS/css_pseudo_classes.asp
    http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states/
    */
    a
    {
      font-family: Segoe Print;
      text-decoration: none;
      color: #595959;
    }
    
    /* Adds special style to an unvisited link. */
    a:link
    {
      font-family: Segoe Print;
      text-decoration: none;
      color: #595959;
    }
    
    /* Adds special style to a visited link. */
    a:visited, a.visited
    {
      font-family: Segoe Print;
      text-decoration: none;
      color: #3B3B3B;
    }
    
    /* :hover - adds special style to an element when you mouse over it. */
    a:hover, a.hover
    {
      font-family: Segoe Print;
      text-decoration: none;
      color: #595959;
    }
    
    /* Finish Content link style */
    
    /* Resert some headings default style & links default style for links in headings*/
    h1, h2, h3, h4, h5, h6,
    h1 a, h2 a, h3 a, h4 a, h5 a, h6 a
    h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover
    h1 a:visited, h2 a:visited, h3 a:visited, h4 a:visited, h5 a:visited, h6 a:visited
    {
      font-weight: normal;
      font-style: normal;
      text-decoration: none;
    }
    
    
    /* Start Content headings Fonts & Colors  */
    h1, h1 a, h1 a:link, h1 a:visited, h1 a:hover
    {
      font-family: Segoe Print;
      font-size: 25px;
      font-style: normal;
      font-weight: bold;
      text-align: left;
      color: #595959;
    }
    
    h2, h2 a, h2 a:link, h2 a:visited, h2 a:hover
    {
      font-family: Segoe Print;
      font-size: 20px;
      font-style: normal;
      font-weight: bold;
      text-align: left;
      color: #757575;
    }
    
    h3, h3 a, h3 a:link, h3 a:visited, h3 a:hover
    {
      font-family: Segoe Print;
      font-size: 16px;
      font-style: normal;
      font-weight: bold;
      text-align: left;
      color: #949494;
    }
    
    h4, h4 a, h4 a:link, h4 a:visited, h4 a:hover
    {
      font-family: Segoe Print;
      font-size: 14px;
      font-style: normal;
      font-weight: bold;
      text-align: left;
      color: #696969;
    }
    
    h5, h5 a, h5 a:link, h5 a:visited, h5 a:hover
    {
      font-family: Segoe Print;
      font-size: 13px;
      font-style: normal;
      font-weight: bold;
      text-align: left;
      color: #696969;
    }
    
    h6, h6 a, h6 a:link, h6 a:visited, h6 a:hover
    {
      font-family: Segoe Print;
      font-size: 13px;
      font-style: normal;
      font-weight: bold;
      text-align: left;
      color: #696969;
    }
    /* Finish Content headings Fonts & Colors  */
    /* end PostContent */
    
    /* begin PostBullets */
    /* Start Content list */
    ol, ul
    {
    	color: #404040;
    	margin:1em 0 1em 2em;
    	padding:0;
    	font-family: Segoe Print;
    	font-size: 11px;
    }
    
    li ol, li ul
    {
    	margin:0.5em 0 0.5em 2em;
    	padding:0;
    }
    
    li 
    {
    	margin:0.2em 0;
    	padding:0;
    }
    
    ul
    {
    	list-style-type: none;
    }
    
    ol
    {
    	list-style-position:inside;
    	
    }
    
    
    
    .art-Post li
    {
    	padding:0px 0 0px 12px;
    	line-height:1.2em;
    }
    
    .art-Post ol li, .art-Post ul ol li
    {
    	background: none;
    	padding-left:0;
    }
    
    .art-Post ul li, .art-Post ol ul li 
    {
    	background-image: url('images/PostBullets.png');
    	background-repeat:no-repeat;
    	padding-left:12px;
    }
    
    
    /* Finish Content list */
    /* end PostBullets */
    
    /* begin PostQuote */
    /* Start blockquote */
    blockquote p
    {
    	color:#121212;
    	font-family: Segoe Print;
    	font-style: italic;
    	font-weight: normal;
    	text-align: left;
    }
    
    blockquote
    {
    		margin:10px 10px 10px 50px;
    	padding:5px 5px 5px 28px;
    	background-color:#F0F0F0;
    	background-image:url('images/PostQuote.png');
    	background-position:left top;
    	background-repeat:no-repeat;
    }
    
    
    /* Finish blockuote */
    /* end PostQuote */
    
    /* begin Button */
    .art-button-wrapper .art-button
    {
    	display:inline-block;
    	width: auto;
    	outline:none;
    	border:none;
    	background:none;
    	line-height:21px;
    	margin:0 !important;
    	padding:0 !important;
    	overflow: visible;
    	cursor: default;
    	text-decoration: none !important;
    	z-index:0;
    }
    
    .art-button-wrapper
    {
    	display:inline-block;
    	position:relative;
    	height: 21px;
    	overflow:hidden;
    	white-space: nowrap;
    	width: auto;
    	z-index:0;
    }
    
    .art-button-wrapper .art-button
    {
    	display:block;
    	height: 21px;
    	font-family: Segoe Print;
    	font-size: 11px;
    	font-style: normal;
    	font-weight: normal;
    	white-space: nowrap;
    	text-align: left;
    	padding: 0 5px !important;
    	line-height: 21px;
    	text-decoration: none !important;
    	color: #FFFFFF !important;
    }
    
    .art-button-wrapper.hover .art-button, .art-button:hover
    {
    	color: #F0F0F0 !important;
    	text-decoration: none !important;
    }
    
    .art-button-wrapper.active .art-button
    {
    	color: #F5F5F5 !important;
    }
    
    .art-button-wrapper .l, .art-button-wrapper .r
    {
    	display:block;
    	position:absolute;
    	z-index:-1;
    	height: 63px;
    	background-image: url('images/Button.png');
    }
    
    .art-button-wrapper .l
    {
    	left:0;
    	right:1px;
    }
    
    .art-button-wrapper .r
    {
    	width:403px;
    	right:0;
    	clip: rect(auto, auto, auto, 402px);
    }
    
    .art-button-wrapper.hover .l, .art-button-wrapper.hover .r
    {
    	top: -21px;
    }
    
    .art-button-wrapper.active .l, .art-button-wrapper.active .r
    {
    	top: -42px;
    }
    
    
    /* end Button */
    
    /* begin Footer */
    .art-Footer
    {
    	position:relative;
    	z-index:0;
    	overflow:hidden;
    	width: 986px;
    	margin: 5px auto 0px auto;
    }
    
    .art-Footer .art-Footer-inner
    {
    	height:1%;
    	position: relative;
    	z-index: 0;
    	padding: 5px;
    	text-align: center;
    }
    
    .art-Footer .art-Footer-background
    {
    	position:absolute;
    	z-index:-1;
    	background-repeat:no-repeat;
    	background-image: url('images/Footer.png');
    	width: 986px;
    	height: 150px;
    	bottom:0;
    	left:0;
    }
    
    
    .art-rss-tag-icon
    {
    	position: relative;
    	display:block;
    	float:left;
    	background-image: url('images/rssIcon.png');
    	background-position: center right;
    	background-repeat: no-repeat;
    	margin: 0 5px 0 0;
    	height: 32px;
    	width: 32px;
    }
    
    
    
    
    .art-Footer .art-Footer-text p
    {
    	margin: 0;
    }
    
    .art-Footer .art-Footer-text
    {
    	display:inline-block;
    	color:#262626;
    	font-family: Segoe Print;
    	font-size: 10px;
    }
    
    .art-Footer .art-Footer-text a:link
    {
    	text-decoration: none;
    	color: #525252;
    	font-family: Segoe Print;
    	text-decoration: underline;
    }
    
    .art-Footer .art-Footer-text a:visited
    {
    	text-decoration: none;
    	color: #1A1A1A;
    	font-family: Segoe Print;
    	text-decoration: underline;
    }
    
    .art-Footer .art-Footer-text a:hover
    {
    	text-decoration: none;
    	color: #525252;
    	font-family: Segoe Print;
    	text-decoration: none;
    }
    /* end Footer */
    
    /* begin PageFooter */
    .art-page-footer, .art-page-footer a, .art-page-footer a:link, .art-page-footer a:visited, .art-page-footer a:hover
    {
    	font-family:Arial;
    	font-size:10px;
    	letter-spacing:normal;
    	word-spacing:normal;
    	font-style:normal;
    	font-weight:normal;
    	text-decoration:underline;
    	color:#919191;
    }
    
    .art-page-footer
    {
    	margin:1em;
    	text-align:center;
    	text-decoration:none;
    	color:#919191;
    }
    /* end PageFooter */
    
    /* begin LayoutCell */
    .art-contentLayout .art-sidebar1
    {
    	position: relative;
    	margin: 0;
    	padding: 0;
    	border: 0;
    	float: left;
    	overflow: hidden;
    	width: 295px;
    }
    /* end LayoutCell */
    
    /* begin LayoutCell */
    .art-contentLayout .art-content
    {
    	position: relative;
    	margin: 0;
    	padding: 0;
    	border: 0;
    	float: left;
    	overflow: hidden;
    	width: 690px;
    }
    .art-contentLayout .art-content-wide
    {
    	position: relative;
    	margin: 0;
    	padding: 0;
    	border: 0;
    	float: left;
    	overflow: hidden;
    	width: 985px;
    }
    /* end LayoutCell */
    
    
    /* section by sonicdesigns.de */
    .Chead, .Chead th, .Chead a { background: #333333; color: #ffffff; font-size: 14px; }
    .Cdark, .Cdark td, .Cdark a { background: #666666; color: #f2f2f2; }
    .Cmite { background: #f2f2f2; }
    .Cnorm { background: #f8f8f8; }
    .border { border: 1px #f0f0f0 solid; }
    .smalfont { font: 10px Tahoma; }
    
    fieldset { border: 1px #999999 solid; }
    legend { font: 13px Arial; color: #333333; font-weight: bold; }
    input[type="text"], input[type="password"], input[type="submit"], select, input { font: 11px Tahoma; color: #000000; background: #f2f2f2; border: 1px #c3c3c3 solid; min-height: 17px; width: 200px; margin-bottom: 2px; } 
    input:focus, select:focus, textarea:focus { background: #F9F6E4; border: 1px #333333 solid; }
    textarea { font: 11px Tahoma; color: #000000; background: #f2f2f2; border: 1px #c3c3c3 solid; width: 403px; }
    input[type="submit"], input[type="reset"] { font-weight: bold; padding-top: 0px; padding-bottom: 0px; height: 25px; }
    input[type="radio"], input[type="checkbox"] { border: 0px; min-height: 0px; width: 0px; margin-bottom: 0px; }


    style.ie6.css

    /* begin Page */
    
    /* Generated with Artisteer version 2.2.0.17376, file checksum is 3B4C2C65. */
    
    #art-page-background-glare-image
    {
    	background: none;
    	behavior: expression(this.runtimeStyle.filter?'':this.runtimeStyle.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+GetStyleUrl()+"images/Page-BgGlare.png',sizingMethod='crop')");
    }
    img
    {
    	filter:expression(fixPNG(this));
    }
    /* end Page */
    
    /* begin Box, Sheet */
    .art-Sheet, .art-Sheet-body
    {
    	zoom:1;
    }
    
    .art-Sheet-body
    {
    	position:static;
    }
    
    .art-Sheet-tr, .art-Sheet-tl, .art-Sheet-br, .art-Sheet-bl, .art-Sheet-tc, .art-Sheet-bc,.art-Sheet-cr, .art-Sheet-cl
    {
    	font-size: 1px;
    	background: none;
    }
    
    .art-Sheet-tr, .art-Sheet-tl, .art-Sheet-br, .art-Sheet-bl
    {
    	behavior: expression(this.runtimeStyle.filter?'':this.runtimeStyle.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + GetStyleUrl()+"images/Sheet-s.png',sizingMethod='scale')");
    }
    
    .art-Sheet-tl
    {
    	clip: rect(auto 24px 24px auto);
    }
    
    .art-Sheet-tr
    {
    	left: expression(this.parentNode.offsetWidth-48+'px');
    	clip: rect(auto auto 24px 24px);
    }
    
    .art-Sheet-bl
    {
    	top: expression(this.parentNode.offsetHeight-48+'px');
    	clip: rect(24px 24px auto auto);
    }
    
    .art-Sheet-br
    {
    	top: expression(this.parentNode.offsetHeight-48+'px');
    	left: expression(this.parentNode.offsetWidth-48+'px');
    	clip: rect(24px auto auto 24px);
    }
    
    .art-Sheet-tc, .art-Sheet-bc
    {
    	width: expression(this.parentNode.offsetWidth-48+'px');
    	behavior: expression(this.runtimeStyle.filter?'':this.runtimeStyle.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + GetStyleUrl()+"images/Sheet-h.png',sizingMethod='scale')");
    }
    
    .art-Sheet-tc
    {
    	clip: rect(auto auto 24px auto);
    }
    
    .art-Sheet-bc
    {
    	top: expression(this.parentNode.offsetHeight-48+'px');
    	clip: rect(24px auto auto auto);
    }
    
    .art-Sheet-cr, .art-Sheet-cl
    {
    	height: expression(this.parentNode.offsetHeight-48+'px');
    	behavior: expression(this.runtimeStyle.filter?'':this.runtimeStyle.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + GetStyleUrl()+"images/Sheet-v.png',sizingMethod='scale')");
    }
    
    .art-Sheet-cr
    {
    	left: expression(this.parentNode.offsetWidth-48+'px');
    	clip: rect(auto auto auto 24px);
    }
    
    .art-Sheet-cl
    {
    	clip: rect(auto 24px auto auto);
    }
    
    .art-Sheet-cc
    {
    	font-size: 1px;
    	width: expression(this.parentNode.offsetWidth-48+'px');
    	height: expression(this.parentNode.offsetHeight-48+'px');
    	background-color: #FFFFFF;
    }
    #art-page-background-simple-gradient, #art-page-background-gradient, #art-page-background-glare
    {
    	width:expression(document.body.clientWidth > 1000 ? "100%" : "1000px");
    }
    /* end Box, Sheet */
    
    /* begin Menu */
    
    .art-menu ul
    {
    	height: 1%;
    	width:1px;
    }
    
    .art-menu, .art-menu ul
    {
    	height: 1%;
    }
    
    .art-menu li.art-menuhover
    {
    	z-index: 10000;
    }
    
    .art-menu .art-menuhoverUL
    {
    	visibility: visible;
    }
    
    .art-menu .art-menuhoverUL
    {
    	top: 100%;
    	left: 0;
    }
    
    .art-menu .art-menuhoverUL .art-menuhoverUL
    {
    	top: 0;
    	left: 100%;
    }
    
    .art-menu ul a
    {
    	height: 1%;
    }
    
    .art-menu li li
    {
    	float: left;
    	width: 100%;
    }
    
    .art-menu .art-menuhoverUL .art-menuhoverUL
    {
    	top: 5px;
    	left: 100%;
    }
    
    .art-menu, .art-menu ul
    {
    	height: 1%;
    }
    
    .art-menu li.art-menuhover
    {
    	z-index: 10000;
    }
    
    .art-menu .art-menuhoverUL
    {
    	visibility: visible;
    }
    
    .art-menu .art-menuhoverUL
    {
    	top: 100%;
    	left: 0;
    }
    
    .art-menu .art-menuhoverUL .art-menuhoverUL
    {
    	top: 0;
    	left: 100%;
    }
    
    .art-menu ul a
    {
    	height: 1%;
    }
    
    .art-menu li li
    {
    	float: left;
    	width: 100%;
    }
    
    .art-nav
    {
    	zoom: 1;
    }
    
    .art-nav .l, .art-nav .r
    {
    	font-size: 1px;
    	background: none;
    	behavior: expression(this.runtimeStyle.filter?'':this.runtimeStyle.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + GetStyleUrl()+"images/nav.png',sizingMethod='crop')");
    }
    
    .art-nav .l
    {
    	width: expression(this.parentNode.offsetWidth-0+'px');
    }
    
    .art-nav .r
    {
    	left: expression(this.parentNode.offsetWidth-986+'px');
    	clip: rect(auto auto auto 986px);
    }
    /* end Menu */
    
    /* begin MenuItem */
    .art-menu a
    {
    	float:left;
    }
    
    .art-menu a:hover
    {
    	visibility:visible;
    }
    
    .art-menu a .r, .art-menu a .l
    {
    	font-size:1px;
    	background: none;
    	behavior: expression(this.runtimeStyle.filter?'':this.runtimeStyle.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + GetStyleUrl()+"images/MenuItem.png',sizingMethod='crop')");
    }
    
    .art-menu a .r
    {
    	left: expression(this.parentNode.offsetWidth-402+'px');
    	clip: rect(auto auto auto 401px);
    }
    
    .art-menu a .l
    {
    	width: expression(this.parentNode.offsetWidth-1+'px');
    }
    
    .art-menuhover .art-menuhoverA .t
    {
    	color: #FFFFFF;
    }
    
    .art-menuhover .art-menuhoverA .l, .art-menuhover .art-menuhoverA .r
    {
    	top: -23px;
    }
    /* end MenuItem */
    
    /* begin MenuSeparator */
    .art-nav .art-menu-separator
    {
    	font-size: 1px;
    	zoom:1;
    	background: none;
    	behavior: expression(this.runtimeStyle.filter?'':this.runtimeStyle.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + GetStyleUrl()+"images/MenuSeparator.png',sizingMethod='crop')");
    }
    /* end MenuSeparator */
    
    /* begin MenuSubItem */
    
    .art-menu ul a
    {
    	color: #E0E0E0 !important;
    }
    
    .art-menu ul a:hover {
    	color: #FFFFFF !important;
    }	
    
    .art-menu ul .art-menuhover .art-menuhoverA
    {
    	color: #FFFFFF !important;
    	background-position: 0 -20px;
    }
    
    .art-nav .art-menu ul a:hover span, .art-nav .art-menu ul a:hover span span
    {
    	color: #FFFFFF !important;
    }	
    
    .art-nav .art-menu ul .art-menuhover .art-menuhoverA span, .art-nav .art-menu ul .art-menuhover .art-menuhoverA span span
    {
    	color: #FFFFFF !important;
    }
    
    /* end MenuSubItem */
    
    /* begin Box, Block */
    .art-Block, .art-Block-body
    {
    	zoom:1;
    }
    
    .art-Block-body
    {
    	position:static;
    }
    
    .art-Block-tr, .art-Block-tl, .art-Block-br, .art-Block-bl, .art-Block-tc, .art-Block-bc,.art-Block-cr, .art-Block-cl
    {
    	font-size: 1px;
    	background: none;
    }
    
    .art-Block-tr, .art-Block-tl, .art-Block-br, .art-Block-bl
    {
    	behavior: expression(this.runtimeStyle.filter?'':this.runtimeStyle.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + GetStyleUrl()+"images/Block-s.png',sizingMethod='scale')");
    }
    
    .art-Block-tl
    {
    	clip: rect(auto 1px 1px auto);
    }
    
    .art-Block-tr
    {
    	left: expression(this.parentNode.offsetWidth-2+'px');
    	clip: rect(auto auto 1px 1px);
    }
    
    .art-Block-bl
    {
    	top: expression(this.parentNode.offsetHeight-2+'px');
    	clip: rect(1px 1px auto auto);
    }
    
    .art-Block-br
    {
    	top: expression(this.parentNode.offsetHeight-2+'px');
    	left: expression(this.parentNode.offsetWidth-2+'px');
    	clip: rect(1px auto auto 1px);
    }
    
    .art-Block-tc, .art-Block-bc
    {
    	width: expression(this.parentNode.offsetWidth-2+'px');
    	behavior: expression(this.runtimeStyle.filter?'':this.runtimeStyle.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + GetStyleUrl()+"images/Block-h.png',sizingMethod='scale')");
    }
    
    .art-Block-tc
    {
    	clip: rect(auto auto 1px auto);
    }
    
    .art-Block-bc
    {
    	top: expression(this.parentNode.offsetHeight-2+'px');
    	clip: rect(1px auto auto auto);
    }
    
    .art-Block-cr, .art-Block-cl
    {
    	height: expression(this.parentNode.offsetHeight-2+'px');
    	behavior: expression(this.runtimeStyle.filter?'':this.runtimeStyle.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + GetStyleUrl()+"images/Block-v.png',sizingMethod='scale')");
    }
    
    .art-Block-cr
    {
    	left: expression(this.parentNode.offsetWidth-2+'px');
    	clip: rect(auto auto auto 1px);
    }
    
    .art-Block-cl
    {
    	clip: rect(auto 1px auto auto);
    }
    
    .art-Block-cc
    {
    	font-size: 1px;
    	width: expression(this.parentNode.offsetWidth-2+'px');
    	height: expression(this.parentNode.offsetHeight-2+'px');
    	background-color: #FFFFFF;
    }
    /* end Box, Block */
    
    /* begin BlockHeader */
    .art-BlockHeader, .art-BlockHeader
    {
    	font-size: 1px;
    }
    .art-BlockHeader .l, .art-BlockHeader .r
    {
    	background: none;
    	behavior: expression(this.runtimeStyle.filter?'':this.runtimeStyle.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + GetStyleUrl()+"images/BlockHeader.png',sizingMethod='crop')");
    }
    
    .art-BlockHeader .r
    {
    	left: expression(this.parentNode.offsetWidth-990+'px');
    	clip: rect(auto auto auto 990px);
    }
    
    .art-BlockHeader .l
    {
    	width: expression(this.parentNode.offsetWidth-0+'px');
    }
    
    .art-header-tag-icon
    {
    	background: none;
    	behavior: expression(this.runtimeStyle.filter?'':this.runtimeStyle.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + GetStyleUrl()+"images/BlockHeaderIcon.png',sizingMethod='crop')");
    }
    
    /* end BlockHeader */
    
    /* begin Box, BlockContent */
    .art-BlockContent, .art-BlockContent-body
    {
    	zoom:1;
    }
    
    .art-BlockContent-body
    {
    	position:static;
    }
    .art-BlockContent-cc
    {
    	font-size: 1px;
    	width: expression(this.parentNode.offsetWidth+'px');
    	height: expression(this.parentNode.offsetHeight+'px');
    	background-color: #FAFAFA;
    }
    
    .art-BlockContent-body ul li
    {
    	height:1%;
    	background:none;
    	behavior: expression(this.runtimeStyle.filter?'':this.runtimeStyle.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + GetStyleUrl()+"images/BlockContentBullets.png',sizingMethod='crop')");
    }
    
    /* end Box, BlockContent */
    
    /* begin Box, Post */
    .art-Post, .art-Post-body
    {
    	zoom:1;
    }
    
    .art-Post-body
    {
    	position:static;
    }
    /* end Box, Post */
    
    /* begin PostContent */
    h1
    {
      margin: 0.67em 0;
    }
    
    h2
    {
      margin: 0.8em 0;
    }
    
    h3
    {
      margin: 1em 0;
    }
    
    h4
    {
      margin: 1.25em 0;
    }
    
    h5
    {
      margin: 1.67em 0;
    }
    
    h6
    {
      margin: 2.33em 0;
    }
    /* end PostContent */
    
    /* begin PostBullets */
    .art-Post ul li, .art-Post ol ul li
    {
    	height:1%;
    	background:none;
    	behavior: expression(this.runtimeStyle.filter?'':this.runtimeStyle.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + GetStyleUrl()+"images/PostBullets.png',sizingMethod='crop')");
    }
    
    .art-Post ul ol li
    {
    	background:none;
    	behavior: expression(this.runtimeStyle.filter?'':this.runtimeStyle.filter="");
    }
    /* end PostBullets */
    
    /* begin PostQuote */
    blockquote
    {
    	height:1%;
    	background-image: none;
    	behavior: expression(this.runtimeStyle.filter?'':this.runtimeStyle.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + GetStyleUrl()+"images/PostQuote.png',sizingMethod='crop')");
    }
    /* end PostQuote */
    
    /* begin Button */
    .art-button-wrapper .art-button
    {
    	display:list-item;
    	list-style-type:none;
    	float:left;
    }
    
    .art-button-wrapper, .art-button-wrapper .l, .art-button-wrapper .r
    {
    	font-size: 1px;
    }
    
    .art-button-wrapper .art-button
    {
    	float:left;
    }
    
    .art-button-wrapper .l, .art-button-wrapper .r
    {
    	background: none;
    	behavior: expression(this.runtimeStyle.filter?'':this.runtimeStyle.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + GetStyleUrl()+"images/Button.png',sizingMethod='crop')");
    }
    
    .art-button-wrapper .r
    {
    	left: expression(this.parentNode.offsetWidth-403+'px');
    	clip: rect(auto auto auto 402px);
    }
    
    .art-button-wrapper .l
    {
    	width: expression(this.parentNode.offsetWidth-1+'px');
    }
    
    /* end Button */
    
    /* begin Footer */
    .art-Footer .art-Footer-background
    {
    	top: expression(this.parentNode.offsetHeight-150+'px');
    	background: none;
    	behavior: expression(this.runtimeStyle.filter?'':this.runtimeStyle.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + GetStyleUrl()+"images/Footer.png',sizingMethod='crop')");
    	zoom: 1;
    	font-size:1px;
    }
    
    .art-rss-tag-icon
    {
    	zoom:1;
    	font-size:1px;
    	background:none;
    	behavior: expression(this.runtimeStyle.filter?'':this.runtimeStyle.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + GetStyleUrl()+"images/rssIcon.png',sizingMethod='crop')");
    }
    
    /* end Footer */



    Style.ie7.css

    /* begin Box, Sheet */
    .art-Sheet-tl
    {
    	clip: rect(auto 24px 24px auto);
    }
    
    .art-Sheet-tr
    {
    	clip: rect(auto auto 24px 24px);
    }
    
    .art-Sheet-bl
    {
    	clip: rect(24px 24px auto auto);
    }
    
    .art-Sheet-br
    {
    	clip: rect(24px auto auto 24px);
    }
    
    .art-Sheet-tc
    {
    	clip: rect(auto auto 24px auto);
    }
    
    .art-Sheet-bc
    {
    	clip: rect(24px auto auto auto);
    }
    
    .art-Sheet-cr
    {
    	clip: rect(auto auto auto 24px);
    }
    
    .art-Sheet-cl
    {
    	clip: rect(auto 24px auto auto);
    }
    /* end Box, Sheet */
    
    /* begin Menu */
    .art-nav .r
    {	clip: rect(auto auto auto 986px);
    }
    /* end Menu */
    
    /* begin MenuItem */
    .art-menu a .r
    {
    	clip: rect(auto auto auto 401px);
    }
    /* end MenuItem */
    
    /* begin Box, Block */
    .art-Block-tl
    {
    	clip: rect(auto 1px 1px auto);
    }
    
    .art-Block-tr
    {
    	clip: rect(auto auto 1px 1px);
    }
    
    .art-Block-bl
    {
    	clip: rect(1px 1px auto auto);
    }
    
    .art-Block-br
    {
    	clip: rect(1px auto auto 1px);
    }
    
    .art-Block-tc
    {
    	clip: rect(auto auto 1px auto);
    }
    
    .art-Block-bc
    {
    	clip: rect(1px auto auto auto);
    }
    
    .art-Block-cr
    {
    	clip: rect(auto auto auto 1px);
    }
    
    .art-Block-cl
    {
    	clip: rect(auto 1px auto auto);
    }
    /* end Box, Block */
    
    /* begin BlockHeader */
    .art-BlockHeader .r
    {
    	clip: rect(auto auto auto 990px);
    }
    /* end BlockHeader */
    
    /* begin PostContent */
    .art-PostContent
    {
    	height:1%;
    }
    /* end PostContent */
    
    /* begin Button */
    .art-button-wrapper .r
    {
    	clip: rect(auto auto auto 402px);
    }
    /* end Button */



    Habe die gesuchte zeile nixht gefunden! Und bei der Login.htm konnte ich nur EINLOGGEN, NICKNAME UND PASSWORT ÄNDERN! für den login schriftzug habe ich nicht gefunden!
    0 Mitglieder finden den Beitrag gut.
  15. #15
    User Pic
    Lord|Schirmer Administrator
    Registriert seit
    21.03.2007
    Beiträge
    7.638
    Beitragswertungen
    1193 Beitragspunkte
    Probiere mal in .art-menu ul folgendes list-style-type: none; einzufügen! Sehr schwer durch die stylesheets durchzusehen! Wäre eine sache zum testen!
    rules :: doku :: faq :: linkus
    0 Mitglieder finden den Beitrag gut.
  16. #16
    User Pic
    JanRockt Mitglied
    Registriert seit
    12.06.2010
    Beiträge
    97
    Beitragswertungen
    0 Beitragspunkte
    leider keinen erfolg :-(

    gibt es noch ne möglichkeit?
    0 Mitglieder finden den Beitrag gut.
  17. #17
    User Pic
    Lord|Schirmer Administrator
    Registriert seit
    21.03.2007
    Beiträge
    7.638
    Beitragswertungen
    1193 Beitragspunkte
    Naja list-style-type: none; muss nur an die richtige Position, die Frage ist nur wo! Ich persönlich finde die css von dir zu verwirrend, da sollte ein Profi ran!
    rules :: doku :: faq :: linkus
    0 Mitglieder finden den Beitrag gut.
  18. #18
    User Pic
    JanRockt Mitglied
    Registriert seit
    12.06.2010
    Beiträge
    97
    Beitragswertungen
    0 Beitragspunkte
    okay danke für deine Mühe hast mir heute sehr geholfen :-)
    0 Mitglieder finden den Beitrag gut.
  19. #19
    User Pic
    Lord|Schirmer Administrator
    Registriert seit
    21.03.2007
    Beiträge
    7.638
    Beitragswertungen
    1193 Beitragspunkte
    Gern geschehen!
    rules :: doku :: faq :: linkus
    0 Mitglieder finden den Beitrag gut.
Geschlossen

Zurück zu Module und Modifikationen

Optionen: Bei einer Antwort zu diesem Thema eine eMail erhalten