diff --git a/README.md b/README.md index bcd30ba..3b8fed6 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,3 @@ -# stattbuchung_php_open +# FE-StattBuchung +Frontend PHP-Anwendung zur Anbindung von Stattbuchung an eine eigene Webseite \ No newline at end of file diff --git a/ajax.php b/ajax.php new file mode 100644 index 0000000..a6ec65b --- /dev/null +++ b/ajax.php @@ -0,0 +1,136 @@ + $postdata['de_stattbuchung_event_Modul'], + "anrede"=>$postdata['anrede'], + "vorname"=>$postdata['vorname'], + "nachname"=>$postdata['nachname'], + "strasse"=>$postdata['strasse'], + "plz"=>$postdata['plz'], + "ort"=>$postdata['ort'], + "email"=>$postdata['email'], + "telefon"=>$postdata['telefon'], + "institution"=>$postdata['institution'], + "geburtsdatum"=>$gebdate->format(DateTime::ATOM), + "de_bidat_av_Profiltyp_geburtsort"=>$postdata['geburtsort'], + "kommentar"=>$postdata['kommentar'], + "de_stattbuchung_event_Modul"=>$postdata['de_stattbuchung_event_Modul'], + "de_stattbuchung_Kanal"=>$apikey, + "de_stattbuchung_Verkaufsstelle"=>$verkaufstelle, + "systems_sdw_fi_Zahlungsart"=>$zahlungsart, + "systems_sdw_hr_Angestellter"=>$oidang + ); + + foreach ($postdata as $key => $value) { + if(strpos($key, "de_stattbuchung_Teilnehmerart_") === 0) { + $params[$key] = $value; + } + } + + $resp=post($sessionInfo, opcPaymentStepOne, $params, "{}", $debug) ; + + + return $resp; +} + + +/** + * Main. + * + */ + +try { + $sessionInfo=login($ini['host'], $ini['user'], $ini['psw'], $debug); + + date_default_timezone_set('Europe/Berlin'); + + //$resp=get($sessionInfo, opcObjectlistProdukt, $params, $debug) ; + + $treffpunktid = $_GET['treffpunkt']; + $registerid = $_GET['register']; + $modulid = $_GET['modul']; + $modultermine = $_GET['modultermine']; + + $formid = $_GET['form']; + $stichwortkey = $_GET['stichwort']; + + $monat = $_GET['monat']; + $jahr = $_GET['jahr']; + $maxResult = $_GET['maxResultLength']; + $teaser = $_GET['teaser']; + $viewStyle = $_GET['style']; + + $verkaufstelle = $ini['de_stattbuchung_Verkaufsstelle']; + $zahlungsart = $ini['systems_sdw_fi_Zahlungsart']; + + + + if($registerid == 872) { + + $resp = sendAnmeldung($registerid, $sessionInfo, $ini['apikey'], $ini['oid_ang'], $verkaufstelle, $zahlungsart, $_POST); + + if($ini['paypal'] == true) { + header('Content-type: application/json'); + echo json_encode($resp); + } + + //renderAnmeldeformular($resp, $sessionInfo, $ini['paypal'], 2); + + + + } + // Ausloggen nicht vergessen! + logoff($sessionInfo, $debug); + +} catch (Exception $e) { + echo 'Exception: '.$e->getMessage()." code: ".$e->getCode()."
"; +} + + +?> diff --git a/app.php b/app.php new file mode 100644 index 0000000..b2c8ff4 --- /dev/null +++ b/app.php @@ -0,0 +1,462 @@ + + + + + StattBuchung-PHP + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
"; + echo " "; + echo "
"; +} +?> +
+
+ +"; + echo "

Die Suche nach ".$query." ergab ".$resp["items"][0]["resultSetCount"]." Teffer

"; + $queryresult = $resp["items"]; + + foreach ($resp[items][0][items] as $produkt) { + echo ""; + } + echo "
"; + echo "
"; + +} + + +function renderAnmeldeformular($resp, $sessionInfo) { + echo "
"; + echo "
"; + + echo ""; + + + echo "
"; + echo ""; + echo ""; + echo "" ; + echo "
"; + + + + $feldliste = array ("Vorname", "Nachname", "Strasse", "PLZ", "Ort", "Email"); + foreach ($feldliste as $feld) { + echo "
"; + echo ""; + echo ""; + echo "
"; + } + + + echo "
"; + echo " "; + echo " "; + #echo "

Wollen Sie uns noch etwas mitteilen?

"; + + + echo "
"; + echo " "; + echo " "; + echo "
"; + + + + + echo "
"; + echo "
"; + echo "
"; + + + + echo ""; + + + + +} + + +function renderTerminliste($resp, $sessionInfo, $query) { + echo ""; + echo ""; + + echo ""; + date_default_timezone_set('Europe/Berlin'); + + foreach ($resp[items][0][items] as $termin) { + $von = new DateTime($termin["von"]); + + echo ""; + echo ""; + + echo ""; + + echo ""; + + echo ""; + + echo ""; + + + echo ""; + + + echo ""; + } + echo ""; + echo "
TerminDatum, Uhrzeitmax. Teilnehmeraktuelle Teilnehmerverfügbare PlätzeAnmelden
"; + echo"".$termin["produkt_titel"].""; + echo ""; + //echo $termin["von"]; + echo $von->format('j.m.Y \a\b H:i'); + echo ""; + echo $termin["maxtn"]; + echo ""; + echo $termin["tn"]; + echo ""; + echo $termin["maxtn"] - $termin["tn"]; + echo ""; + + renderAnmeldeButton($termin["maxtn"], $termin["tn"], $termin["oid"]); + echo "
"; + +} + +function renderAnmeldeButton($maxtn, $tn, $oid) { + if($maxtn <= $tn) { + echo "Keine Anmeldung möglich"; + } else { + echo "
"; + } +} + + +function fetchTermindetail($id, $sessionInfo, $apikey) { + + $params=array( + "oid" => $id, + "de_stattbuchung_event_Modul"=>$id, + "de_stattbuchung_Kanal"=>$apikey + ); + $resp=post($sessionInfo, opcFetchTermindetail, $params, "{}", $debug) ; + + + return $resp; +} + +function sendAnmeldung($id, $sessionInfo, $apikey, $oidang, $postdata) { + + $params=array( + "oid" => $postdata['de_stattbuchung_event_Modul'], + "anrede"=>$postdata['anrede'], + "vorname"=>$postdata['vorname'], + "nachname"=>$postdata['nachname'], + "strasse"=>$postdata['strasse'], + "plz"=>$postdata['plz'], + "ort"=>$postdata['ort'], + "email"=>$postdata['email'], + "kommentar"=>$postdata['kommentar'], + "de_stattbuchung_event_Modul"=>$postdata['de_stattbuchung_event_Modul'], + "de_stattbuchung_Kanal"=>$apikey, + "systems_sdw_hr_Angestellter"=>$oidang + ); + $resp=post($sessionInfo, opcAddAnmeldung, $params, "{}", $debug) ; + + # echo var_dump($resp); + +if($resp['beschreibung'] == 'OK') { + echo "

Herzlichen Dank für Ihre Anmeldung

"; + echo "
Sie sollten in Kürze eine Nachricht über die Adresse ".$postdata['email']." erhalten.
"; +} else { + echo "

Ups

"; + echo "
Bei der Anmeldung ist etwas schief gelaufen, bitte versuchen Sie es erneut
"; + + echo "
".$resp['beschreibung'].""; + +} + return $resp; +} + +function fetchTreffpunkt($id, $sessionInfo) { + $params=array("oid" => $id); + $treffpunkt=post($sessionInfo, opcFetchTreffpunkt, $params, "{}", $debug) ; + + return $treffpunkt; +} + +function renderTerminDetail($resp, $sessionInfo, $showmap, $cssid) { + $ep = $resp; + + + date_default_timezone_set('Europe/Berlin'); + $von = new DateTime($ep["von"]); + $bis = new DateTime($ep["bis"]); + + echo "
"; + + + echo "
"; + echo "

".$ep["produkt_titel"]."

"; + echo "
"; + echo "
"; + + echo "
".$ep["produkt_beschreibung"]."
"; + + echo ""; + + echo ""; + echo ""; + echo ""; + echo ""; + echo ""; + if ($ep["preis"] >0 )echo ""; + + echo ""; + + echo "
Beginn".$von->format('j.m.Y - H:i')."
Ende".$bis->format('j.m.Y - H:i')."
max. Teilnehmer".$ep["maxtn"]."
aktuelle Teilnehmer".$ep["tn"]."
verfügbare Plätze".($ep["maxtn"]-$ep["tn"])."
Preis".$ep["preis"]."
Ort".$ep["treffpunkt_name"]."
"; + + renderAnmeldeButton($ep["maxtn"], $ep["tn"], $ep["oid"]); + + echo "
"; + echo "
"; + + if($showmap) echo ""; +} + +function renderTerminDetailListenansicht($resp, $sessioninfo) { + echo "
"; + + foreach ($resp[items][0][items] as $termin) { + renderTerminDetail($termin, $sessionInfo, false, 'bidat_list'); + } + echo "
"; + + +} + +function renderProduktDetail($resp, $sessionInfo) { + $pc = $resp[items][0]; + echo "
"; + + echo "
"; + echo "

".$pc["name"]."

"; + echo "

".$pc["untertitel"]."

"; + $beschreibung = trim($pc["beschreibung"]); + if(strlen($beschreibung)<3) $beschreibung = lorem; + + echo "
".$beschreibung."
"; + + echo "
"; + + echo "

Verfügbare Sprachen

    "; + + foreach($pc["_sprachen_"]["items"] as $sprache) { + echo "
  • ".$sprache["label"]."
  • "; + } + + echo "
"; + + echo "

Treffpunkt

"; + $treffpunkt = fetchTreffpunkt($pc["treffpunkt"]["oid"], $sessionInfo); + echo "
".$treffpunkt["name"]."
"; + echo "
Hinweis zur Erreichbarkeit
"; + echo "
".$treffpunkt["oepnv"]."
"; + echo "
"; + + echo "

Weitere Infos

"; + echo "
"; + echo "
Dauer
"; + echo "
".$pc["dauer"]." h
"; + echo "
"; + + echo "
"; + echo "
min TN
"; + echo "
".$pc["minTN"]."
"; + echo "
"; + + echo "
"; + echo "
max TN
"; + echo "
".$pc["maxTN"]."
"; + echo "
"; + + + echo "
"; + echo "
"; + echo "
"; + echo "
"; +} + +/** + * Main. + * + */ + +try { + $sessionInfo=login($ini['host'], 'nfbg', 'bobby', $debug); + + + //$resp=get($sessionInfo, opcObjectlistProdukt, $params, $debug) ; + + $produktid = $_GET['produkt']; + $treffpunktid = $_GET['treffpunkt']; + $registerid = $_GET['register']; + $modulid = $_GET['modul']; + $formid = $_GET['form']; + $stichwortkey = $_GET['stichwort']; + + if($produktid >100) { + + $params=array( + "systems_sdw_org_Organisation"=>$ini["oid_org"], + "systems_sdw_hr_Angestellter"=>$ini['oid_ang'], + "de_stattbuchung_Produkt"=>$produktid, + "de_stattbuchung_Kanal"=>$ini["apikey"] + ); + $resp=post($sessionInfo, opcLoadProduktContainer, $params, "{}", $debug) ; + + renderProduktDetail($resp, $sessionInfo); + + } else if($treffpunktid > 100) { + + fetchTreffpunkt($treffpunktid, $sessionInfo); + + } else if($registerid == 872) { + + sendAnmeldung($registerid, $sessionInfo, $ini['apikey'], $ini['oid_ang'], $_POST); + + } else if ($modulid > 100) { + + renderTerminDetail(fetchTermindetail($modulid, $sessionInfo, $ini['apikey'], 'eb-event-page'), $sessionInfo); + + } else if ($formid > 100) { + + renderAnmeldeformular(fetchTermindetail($formid, $sessionInfo, $ini['apikey']), $sessionInfo); + + } else if($treffpunktid > 100) { + + renderAnmeldeformular($registerid, $sessionInfo); + + } else { + $query =$_GET['query']; + $query=htmlspecialchars($query); + + $params=array("oid" => "0", + "de_stattbuchung_Kanal"=>$ini["apikey"], + "maxResultLength"=>100 ); + if($query !== '') {$params['muster']=$query;} + + if($stichwortkey != 'NULL') { + $params['de_stattbuchung_Stichwort_key'] = $stichwortkey; + } + + + $jsonString ="{oid:0}"; + $resp=post($sessionInfo, opcCalendarByChannel, $params, $jsonString, $debug) ; + + if(is_null($stichwortkey)) renderTerminliste($resp, $sessionInfo, $query); + else renderTerminDetailListenansicht($resp, $sessioninfo); + + } + + // nicht vergessen! + logoff($sessionInfo, $debug); + +} catch (Exception $e) { + echo 'Exception: '.$e->getMessage()." code: ".$e->getCode()."
"; +} + +?>

+
+ + + + + \ No newline at end of file diff --git a/client.php b/client.php new file mode 100644 index 0000000..a76dc1e --- /dev/null +++ b/client.php @@ -0,0 +1,304 @@ + 1, + CURLOPT_RETURNTRANSFER => 1, + CURLOPT_URL => $url.frontcontroller.'?opc='.opcLogon, + CURLOPT_USERAGENT => 'PHP Request '.$sessionId + )); + // Save SdessionCookie JSESSIONID returned by server + curl_setopt($curl, CURLOPT_COOKIEJAR, $cookie); + curl_exec($curl); + + if (curl_errno($curl)) { + throw new Exception(curl_error($curl), curl_errno($curl)); + } + $http_code = curl_getinfo($curl, CURLINFO_HTTP_CODE); + if ($http_code!=httpOK) { + throw new Exception('HTTP-Response STATUS<>200', $http_code); + } + curl_close($curl); + + // stage 2 : send credentials using sessioncookie + $curl = curl_init(); + + curl_setopt_array($curl, array( + CURLOPT_RETURNTRANSFER => 1, + CURLOPT_URL => $url.loginform, + CURLOPT_USERAGENT => 'PHP Request '.$sessionId, + CURLOPT_POST => 1, + CURLOPT_HTTPHEADER => array( + 'Content-Type: application/x-www-form-urlencoded; charset=UTF-8', + 'Connection: Keep-Alive' + ) + )); + // Put credentail into postbody invisible in logs + curl_setopt($curl, CURLOPT_POSTFIELDS,'j_username='.urlencode($user).'&j_password='.urlencode($pass)); + // Send SdessionCookie JSESSIONID + curl_setopt($curl, CURLOPT_COOKIEFILE, $cookie); + curl_exec($curl); + + if (curl_errno($curl)) { + throw new Exception(curl_error($curl), curl_errno($curl)); + } + $http_code = curl_getinfo($curl, CURLINFO_HTTP_CODE); + if ($http_code!=httpMovedTemp && $http_code!=httpMovedTempNew) { + throw new Exception('HTTP-Response STATUS<>302 || 303', $http_code); + } + curl_close($curl); + + // stage 3: call protected ressource again which is now accessible due to 302:moved temporarily + $curl = curl_init(); + curl_setopt_array($curl, array( + CURLOPT_RETURNTRANSFER => 1, + CURLOPT_URL => $url.frontcontroller.'?opc='.opcLogon, + CURLOPT_USERAGENT => 'PHP Request '.$sessionId + )); + + // Send SdessionCookie JSESSIONID + curl_setopt($curl, CURLOPT_COOKIEFILE, $cookie); + // Session has changed after logon due to security issue so save new cookie + curl_setopt($curl, CURLOPT_COOKIEJAR, $cookie); + + $longonInfo=curl_exec($curl); + + if (curl_errno($curl)) { + throw new Exception(curl_error($curl), curl_errno($curl)); + } + $http_code = curl_getinfo($curl, CURLINFO_HTTP_CODE); + if ($http_code!=httpOK) { + throw new Exception('HTTP-Response STATUS<>200', $http_code); + } + curl_close($curl); + + // convert result from JSON to assoc array and add session infos + $sessionInfo=json_decode($longonInfo, true); + $sessionInfo ['sessionId'] = $sessionId; + $sessionInfo ['cookie'] = $cookie; + $sessionInfo ['url'] = $url; + $sessionInfo ['user'] = $user; + $sessionInfo ['pass'] = ""; + + if ($debug) showResponse($sessionInfo); + + return $sessionInfo; +} + +/** + * LogOff. Abmelden vom System und dadurch kill der Session. + * Ruft nur Get mit dem richtigen Opcode auf + * @param {Object} $sessionInfo Assoc Array, wird nach dem erfolgreichen Anmelden erzeugt, siehe login + * @param {Boolean} $debug Debug-Flag für Bildschirmausgaben + * @returns {Object} Das Ergebnis des requests, ein JOSN-Objekt das als Assoc Array zurückgegeben wird + */ +function logoff($sessionInfo, $debug) { + return get($sessionInfo, opcLogoff, null, $debug); +} + +/** + * Get-Methode im Rahmen der geöffneten Session. + * + * Wirft Exceptions falls der request schiefläuft. Falls die Session nicht authentifiziert ist wird + * der Aufurf vom Tomcat stillschweigend an die Login-Seite verwiesen. Das sollte also nicht passieren. + * + * @param {Object} $sessionInfo Assoc Array, wird nach dem erfolgreichen Anmelden erzeugt, siehe login + * @paeam {OPCODE} $opcode Long. Der Opcode für den request + * @param {Object} $params Assoc Array mit Parametern fpr die URL analog zum get-Aufruf + * @param {String} $data JSON-Objekt als String, die Payload für den Postbody + * @param {Boolean} $debug Debug-Flag für Bildschirmausgaben + * @returns {Object} Das Ergebnis des requests, ein JOSN-Objekt das als Assoc Array zurückgegeben wird + */ +function get($sessionInfo, $opcode, $params, $debug) { + + $url=$sessionInfo ['url'].frontcontroller.'?opc='.$opcode; + if ($params) { + foreach ($params as $name => $value) { + $url .= "&".urlencode($name)."=".urlencode($value); + } + } + + $curl = curl_init(); + curl_setopt_array($curl, array( + CURLOPT_RETURNTRANSFER => 1, + CURLOPT_URL => $url, + CURLOPT_USERAGENT => 'PHP Request '.$sessionInfo ['sessionId'] + )); + + // Send SdessionCookie JSESSIONID + curl_setopt($curl, CURLOPT_COOKIEFILE, $sessionInfo ['cookie']); + // Session has changed et least after logon due to security issue so better save new cookie always + curl_setopt($curl, CURLOPT_COOKIEJAR, $cookie); + + $jsonString=curl_exec($curl); + + if (curl_errno($curl)) { + throw new Exception(curl_error($curl), curl_errno($curl)); + } + $http_code = curl_getinfo($curl, CURLINFO_HTTP_CODE); + if ($http_code!=httpOK) { + throw new Exception('HTTP-Response STATUS<>200', $http_code); + } + curl_close($curl); + + if ($debug) showResponse(json_decode($jsonString, true)); + + return json_decode($jsonString, true); +} + +/** + * Post-Methode im Rahmen der geöffneten Session. + * + * Wirft Exceptions falls der request schiefläuft. Falls die Session nicht authentifiziert ist wird + * der Aufurf vom Tomcat stillschweigend an die Login-Seite verwiesen. Das sollte also nicht passieren. + * + * @param {Object} $sessionInfo Assoc Array, wird nach dem erfolgriechen Anmelden erzeugt, siehe login + * @paeam {OPCODE} $opcode Long. Der Opcode für den request + * @param {Object} $params Assoc Array mit Parametern fpr die URL analog zum get-Aufruf + * @param {String} $data JSON-Objekt als String, die Payload für den Postbody + * @param {Boolean} $debug Debug-Flag für Bildschirmausgaben + * @returns {Object} Das Ergebnis des requests, ein JOSN-Objekt das als Assoc Array zurückgegeben wird + */ +function post($sessionInfo, $opcode, $params, $data, $debug) { + + $url=$sessionInfo ['url'].frontcontroller.'?opc='.$opcode; + if ($params) { + foreach ($params as $name => $value) { + $url .= "&".urlencode($name)."=".urlencode($value); + } + } + + $curl = curl_init(); + curl_setopt_array($curl, array( + CURLOPT_RETURNTRANSFER => 1, + CURLOPT_URL => $url, + CURLOPT_USERAGENT => 'PHP Request '.$sessionInfo ['sessionId'], + CURLOPT_POST => 1, + CURLOPT_HTTPHEADER => array( + 'Content-Type: application/x-www-form-urlencoded; charset=UTF-8', + 'Connection: Keep-Alive' + ) + )); + + // Send SdessionCookie JSESSIONID + curl_setopt($curl, CURLOPT_COOKIEFILE, $sessionInfo ['cookie']); + // Session has changed et least after logon due to security issue so better save new cookie always + curl_setopt($curl, CURLOPT_COOKIEJAR, $cookie); + // Put credentail into postbody invisible in logs + curl_setopt($curl, CURLOPT_POSTFIELDS,'data='.urlencode($data)); + // Send SdessionCookie JSESSIONID + $jsonString=curl_exec($curl); + + if (curl_errno($curl)) { + throw new Exception(curl_error($curl), curl_errno($curl)); + } + $http_code = curl_getinfo($curl, CURLINFO_HTTP_CODE); + if ($http_code!=httpOK) { + throw new Exception('HTTP-Response STATUS<>200', $http_code); + } + curl_close($curl); + + if ($debug) showResponse(json_decode($jsonString, true)); + + return json_decode($jsonString, true); +} + +/** + * Doemload-Methode im Rahmen der geöffneten Session um ein File herunterzuladen. + * + * Wirft Exceptions falls der request schiefläuft. Falls die Session nicht authentifiziert ist wird + * der Aufurf vom Tomcat stillschweigend an die Login-Seite verwiesen. Das sollte also nicht passieren. + * + * @param {Object} $sessionInfo Assoc Array, wird nach dem erfolgriechen Anmelden erzeugt, siehe login + * @paeam {OPCODE} $opcode Long. Der Opcode für den request + * @param {Object} $params Assoc Array mit Parametern fpr die URL analog zum get-Aufruf + * @param {File} $file Geöffneter und zum Schreiben bereiter Filhandle im lokalen Dateisystem + * @param {Boolean} $debug Debug-Flag für Bildschirmausgaben + * @returns {File} Den Filehandel + */ +function download($sessionInfo, $opcode, $params, $file, $debug) { + + $url=$sessionInfo ['url'].frontcontroller.'?opc='.$opcode; + if ($params) { + foreach ($params as $name => $value) { + $url .= "&".urlencode($name)."=".urlencode($value); + } + } + + $curl = curl_init(); + curl_setopt_array($curl, array( + CURLOPT_FILE => $file, + CURLOPT_TIMEOUT => 20, + CURLOPT_URL => $url, + CURLOPT_USERAGENT => 'PHP Request '.$sessionInfo ['sessionId'] + )); + + // Send SdessionCookie JSESSIONID + curl_setopt($curl, CURLOPT_COOKIEFILE, $sessionInfo ['cookie']); + // Session has changed et least after logon due to security issue so better save new cookie always + curl_setopt($curl, CURLOPT_COOKIEJAR, $cookie); + + curl_exec($curl); + + if (curl_errno($curl)) { + throw new Exception(curl_error($curl), curl_errno($curl)); + } + $http_code = curl_getinfo($curl, CURLINFO_HTTP_CODE); + if ($http_code!=httpOK) { + throw new Exception('HTTP-Response STATUS<>200', $http_code); + } + curl_close($curl); + + return $file; +} + +/** + * Helper-Methode für Debugzwecke + * + */ +function showResponse($response) { + foreach ($response as $name => $value) { + echo "$name = $value"."
"; + } +} + +?> \ No newline at end of file diff --git a/config.ini.example.ini b/config.ini.example.ini new file mode 100644 index 0000000..2fe2152 --- /dev/null +++ b/config.ini.example.ini @@ -0,0 +1,13 @@ +[userdata] +host = https://ej.works/SDW +user = loginname +psw = somethingSecret +templatePath = templates +apikey = auslesen aus dem Frontend Stattbuchung +oid_org = +oid_ang = +de_stattbuchung_Verkaufsstelle = 00 +systems_sdw_fi_Zahlungsart = 00 +show_searchbox = false +show_stichwort_selector = true +seitentitel = Termine ... diff --git a/fonts/FontAwesome.otf b/fonts/FontAwesome.otf new file mode 100644 index 0000000..401ec0f Binary files /dev/null and b/fonts/FontAwesome.otf differ diff --git a/fonts/fontawesome-webfont.eot b/fonts/fontawesome-webfont.eot new file mode 100644 index 0000000..e9f60ca Binary files /dev/null and b/fonts/fontawesome-webfont.eot differ diff --git a/fonts/fontawesome-webfont.svg b/fonts/fontawesome-webfont.svg new file mode 100644 index 0000000..855c845 --- /dev/null +++ b/fonts/fontawesome-webfont.svg @@ -0,0 +1,2671 @@ + + + + +Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016 + By ,,, +Copyright Dave Gandy 2016. All rights reserved. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/fonts/fontawesome-webfont.ttf b/fonts/fontawesome-webfont.ttf new file mode 100644 index 0000000..35acda2 Binary files /dev/null and b/fonts/fontawesome-webfont.ttf differ diff --git a/fonts/fontawesome-webfont.woff b/fonts/fontawesome-webfont.woff new file mode 100644 index 0000000..400014a Binary files /dev/null and b/fonts/fontawesome-webfont.woff differ diff --git a/fonts/fontawesome-webfont.woff2 b/fonts/fontawesome-webfont.woff2 new file mode 100644 index 0000000..4d13fc6 Binary files /dev/null and b/fonts/fontawesome-webfont.woff2 differ diff --git a/iframeTest.html b/iframeTest.html new file mode 100644 index 0000000..7db08be --- /dev/null +++ b/iframeTest.html @@ -0,0 +1,45 @@ + + + + + <?=$this->title?> + + + + + + + + + + + + + + + + + + + + + Text außerhalb des iFrames + + + + + + + + + + + + diff --git a/index.php b/index.php new file mode 100644 index 0000000..ea1e10b --- /dev/null +++ b/index.php @@ -0,0 +1,473 @@ +"; + echo "

Die Suche nach ".$query." ergab ".$resp["items"][0]["resultSetCount"]." Teffer

"; + $queryresult = $resp["items"]; + + foreach ($resp[items][0][items] as $produkt) { + echo "
"; + echo ""; + echo $produkt["label"]; + echo ""; + echo "
"; + } + echo "
"; + echo ""; + +} + +/** + * Beispiel für eine Navigation, die Termine jeweils eines Monats anbietet. + * StattBuchung benötigt immer einen Zeitraum von, bis im ISO-FORMAT + * Mit dieser Methode wird eine Abstraktion auf Ebenen von Monaten erreicht. + * + * Die Methode nutzt das HTML-Template 'nav_liste.inc' + * Für die Darstellung des Dezember 2018 werden folgende Parameter übergeben: + * - "monat_name" => 'Dezember' (Abhähngig von der Server-Locale), + * - "monat_down" => 11, + * - "jahr_down" => 2018, + * - "monat_up" => 1, + * - "jahr_up" => 2019 +*/ +function renderMonatNavigation($start) { + date_default_timezone_set('Europe/Berlin'); + $akt = $start->getTimestamp(); + $start->sub(new DateInterval('P1M')); + $ts =$start->getTimestamp(); + $start->add(new DateInterval('P2M')); + $tsUp =$start->getTimestamp(); + $params=array( + "monat_name" => strftime('%B',$akt), + "monat_down" => strftime('%m',$ts), + "jahr_down" => strftime('%G',$ts), + "monat_up" => strftime('%m',$tsUp), + "jahr_up" => strftime('%G',$tsUp) + ); + $viewRow = new Template($params, templatePath); + echo $viewRow->render('nav_liste.inc'); + +} + + +/** + * Darstellung einer einfach Suchbox im oberen Seitenbereich. + * Die Darstellung wird im Template searchbox.inc erzeugt. + * Die Parametrisierung erfolgt in der HTML-Datei. + * Im einfachsten Fall wird nur ein Query-String übergeben. + * Es können zudem die Optionen von, bis, schlagwort, eventtyp gesetzt werden. + * + */ + +function renderSearchBox() { + $params=array(); + date_default_timezone_set('Europe/Berlin'); + $viewRow = new Template($params, templatePath); + echo $viewRow->render('searchbox.inc'); + +} + + +function renderSuccess() { + $params=array(); + date_default_timezone_set('Europe/Berlin'); + $viewRow = new Template($params, templatePath); + echo $viewRow->render('success.inc'); + +} + + +/** + * Darstellung des Anmeldeformulars für eine Veranstaltung. + * Die Validierung der Felder ist in der Template-Datei zu realisieren. + * Falls eine online-Zahlung angeboten werden soll muss diese selbst implementiert werden. + * Erst nach erfolgter Zahlung dürfen die Daten an StattBuchung übermittelt werden. + * + */ + +function renderAnmeldeformular($resp, $sessionInfo, $paypal, $step) { + $ep = $resp; + + date_default_timezone_set('Europe/Berlin'); + + $viewRow = new Template($ep, templatePath); + $viewRow->properties['freitn'] =$ep["maxtn"]-$ep["tn"]; + $viewRow->properties['von'] = new DateTime($ep["von"]); + $viewRow->properties['bis'] = new DateTime($ep["bis"]); + $viewRow->properties['paypal'] = $paypal; + $viewRow->properties['step'] = $step; + + + echo $viewRow->render('anmeldeformular.inc'); + +} + + +function renderTerminliste($resp, $sessionInfo, $query, $templatePrefix, $swlist) { + + date_default_timezone_set('Europe/Berlin'); + $view = new Template($swlist, templatePath); + + echo $view->render($templatePrefix.'_head.inc'); + + foreach ($resp[items][0][items] as $ep) { + + if($odd == true) { + $ep['odd_even'] = 'odd'; + $odd = false; + } else { + $ep['odd_even'] = 'even'; + $odd = true; + } + + $viewRow = new Template($ep, templatePath); + if(is_int($ep["maxtn"])) { + $viewRow->properties["freitn"]=$ep["maxtn"]-$ep["tn"]; + } else { + $viewRow->properties["freitn"]=99-$ep["tn"]; + $viewRow->properties["maxtn"]=99; + } + + $viewRow->properties['von'] = new DateTime($ep["von"]); + $viewRow->properties['bis'] = new DateTime($ep["bis"]); + + echo $viewRow->render($templatePrefix.'_row.inc'); + + } + echo $view->render($templatePrefix.'_foot.inc'); + +} + + + +function sendAnmeldung($id, $sessionInfo, $apikey, $oidang, $verkaufstelle, $zahlungsart, $postdata) { + date_default_timezone_set('Europe/Berlin'); + + $gebdate = new DateTime( $postdata['geburtsdatum']); + $params=array( + "oid" => $postdata['de_stattbuchung_event_Modul'], + "anrede"=>$postdata['anrede'], + "vorname"=>$postdata['vorname'], + "nachname"=>$postdata['nachname'], + "strasse"=>$postdata['strasse'], + "plz"=>$postdata['plz'], + "ort"=>$postdata['ort'], + "email"=>$postdata['email'], + "telefon"=>$postdata['telefon'], +// "institution"=>$postdata['institution'], + "geburtsdatum"=>$gebdate->format(DateTime::ATOM), + "de_bidat_av_Profiltyp_geburtsort"=>$postdata['geburtsort'], + "kommentar"=>$postdata['kommentar'], + "de_stattbuchung_event_Modul"=>$postdata['de_stattbuchung_event_Modul'], + "de_stattbuchung_Kanal"=>$apikey, + "de_stattbuchung_Verkaufsstelle"=>$verkaufstelle, + "systems_sdw_fi_Zahlungsart"=>$zahlungsart, + "systems_sdw_hr_Angestellter"=>$oidang + ); + + foreach ($postdata as $key => $value) { + if(strpos($key, "de_stattbuchung_Teilnehmerart_") === 0) { + $params[$key] = $value; + } + } + + $resp=post($sessionInfo, opcAddAnmeldung, $params, "{}", $debug) ; + + if($resp['beschreibung'] == 'OK') { + echo "

Herzlichen Dank für Ihre Anmeldung

"; + echo "
Sie sollten in Kürze eine Nachricht über die Adresse ".$postdata['email']." erhalten.
"; + } else { + echo "

Ups

"; + echo "
Bei der Anmeldung ist etwas schief gelaufen, bitte versuchen Sie es erneut
"; + + echo "
".$resp['beschreibung'].""; + + } + return $resp; +} + +function renderTerminDetail($resp, $sessionInfo, $showmap, $cssid) { + $ep = $resp; + //var_dump($resp); + date_default_timezone_set('Europe/Berlin'); + + $view = new Template($ep, templatePath); + + $view->properties['cssid'] = $cssid; + if(is_int($ep["maxtn"])) { + $view->properties['freitn'] =$ep["maxtn"]-$ep["tn"]; + } else { + $view->properties['freitn'] =99-$ep["tn"]; + $view->properties['maxtn'] =99; + + } + $view->properties['von'] = new DateTime($ep["von"]); + $view->properties['bis'] = new DateTime($ep["bis"]); + $view->properties['validFrom'] = new DateTime($ep["validFrom"]); + + $view->properties['showmap'] = $showmap; + + echo $view->render('termindetail.inc'); + +} + +function renderTerminDetailListenansicht($resp, $sessioninfo) { + echo "
"; + + if($resp[items][0][itemCount]==0) { + echo "
Ihre Anfrage hat keine Termine ergeben.
"; + } else { + $odd = true; + foreach ($resp[items][0][items] as $termin) { + if($odd == true) { + $termin['odd_even'] = 'odd'; + $odd = false; + } else { + $termin['odd_even'] = 'even'; + $odd = true; + } + renderTerminDetail($termin, $sessionInfo, false, 'bidat_list'); + } + } + echo "
"; + +} + + + +function fetchTreffpunkt($id, $sessionInfo) { + $params=array("oid" => $id); + $treffpunkt=post($sessionInfo, opcFetchTreffpunkt, $params, "{}", $debug) ; + + return $treffpunkt; +} + +/** + * Lädt die Informationen zu einem Termin von StattBuchung + * + */ + +function fetchTermindetail($id, $sessionInfo, $apikey, $verkaufstelle) { + $params=array( + "oid" => $id, + "de_stattbuchung_event_Modul"=>$id, + "de_stattbuchung_Verkaufsstelle"=>$verkaufstelle, + "de_stattbuchung_Kanal"=>$apikey + ); + $resp=post($sessionInfo, opcFetchTermindetail, $params, "{}", $debug) ; + + return $resp; +} + + + +/** + * Main. + * + */ + +try { + $sessionInfo=login($ini['host'], $ini['user'], $ini['psw'], $debug); + + date_default_timezone_set('Europe/Berlin'); + + //$resp=get($sessionInfo, opcObjectlistProdukt, $params, $debug) ; + + $treffpunktid = $_GET['treffpunkt']; + $registerid = $_GET['register']; + $modulid = $_GET['modul']; + $modultermine = $_GET['modultermine']; + + $formid = $_GET['form']; + $stichwortkey = $_GET['stichwort']; + + $monat = $_GET['monat']; + $jahr = $_GET['jahr']; + $maxResult = $_GET['maxResultLength']; + $teaser = $_GET['teaser']; + $viewStyle = $_GET['style']; + + $verkaufstelle = $ini['de_stattbuchung_Verkaufsstelle']; + $zahlungsart = $ini['systems_sdw_fi_Zahlungsart']; + + + $view = new Template(array(), templatePath); + if($teaser > 0) { + $view->properties['bodyid']="_teaser"; + } + + + $view->title=$ini["seitentitel"]; + if(is_null($ini["css"])) $view->properties['css'] = 'bidat.css'; + else $view->properties['css'] = $ini["css"]; + + echo $view->render('header.inc'); + + + + + if ($ini['show_stichwort_selector'] == true) { + $params=array("oid" => "0", + "de_stattbuchung_Kanal"=>$ini["apikey"], + "de_stattbuchung_event_Typ"=>$ini["de_stattbuchung_event_Typ"]); + + if($jsonString == NULL) $jsonString = "{}"; + $swlist=post($sessionInfo, opcStichwortlistByKanal, $params, $jsonString, $debug) ; + } else { + $swlist = NULL; + } + + + if($treffpunktid > 100) { + + fetchTreffpunkt($treffpunktid, $sessionInfo); + + } else if( $_GET['success']==true) { + renderSuccess(); + } + + else if($registerid == 872) { + + $resp = sendAnmeldung($registerid, $sessionInfo, $ini['apikey'], $ini['oid_ang'], $verkaufstelle, $zahlungsart, $_POST); + + if($ini['paypal'] == true) { + header('Content-type: application/json'); + echo json_encode($resp); + } else { + renderSuccess(); + } + + } else if ($modulid > 100) { + + renderTerminDetail(fetchTermindetail($modulid, $sessionInfo, $ini['apikey'], $verkaufstelle), $sessionInfo, TRUE, 'eb-event-page'); + + } else if ($formid > 100) { + $paypal = false; + if($ini['paypal']== true) $paypal = true; + + renderAnmeldeformular(fetchTermindetail($formid, $sessionInfo, $ini['apikey'], $verkaufstelle), $sessionInfo, $paypal, 1); + + } else if($treffpunktid > 100) { + $paypal = false; + if($ini["paypal"]=='true') $paypal = true; + + renderAnmeldeformular($registerid, $sessionInfo, $paypal); + + } else if($teaser > 0) { + $params=array("oid" => "0", + "de_stattbuchung_Kanal"=>$ini["apikey"], + "de_stattbuchung_event_Typ"=>$ini["de_stattbuchung_event_Typ"], + "maxResultLength"=>$teaser); + $resp=post($sessionInfo, opcCalendarByChannel, $params, $jsonString, $debug) ; + renderTerminliste($resp, $sessionInfo, '','teaser', NULL); + + + } else { + + if ($ini['show_searchbox']==true) { + renderSearchBox(); + } + + $query =$_GET['query']; + $query=htmlspecialchars($query); + + $params=array("oid" => "0", + "de_stattbuchung_Kanal"=>$ini["apikey"], + "de_stattbuchung_event_Typ"=>$ini["de_stattbuchung_event_Typ"]); + if($query !== '') {$params['muster']=$query;} + if($modultermine >0) {$params['de_stattbuchung_Produkt']=$modultermine;} + if($maxResult > 0) { + $params['maxResultLength'] = $maxResult; + } else { + $params['maxResultLength'] = 100; + } + + if($stichwortkey != 'NULL') { + $params['de_stattbuchung_Stichwort_key'] = $stichwortkey; + } + + + if(!is_null($monat)) { + if(is_null($jahr)) { + $jahr = date ('Y', time()); + } + if ($monat >12) { + $jahr++; + $monat = $monat-12; + } else if ($monat ==0) { + $jahr--; + $monat = 12; + } + + $start = new DateTime( '1.'.$monat.'.'.$jahr); + $ende = new DateTime( '1.'.$monat.'.'.$jahr); + $ende->add(new DateInterval('P1M')); + $ende->sub(new DateInterval('P1D')); + + $params['von'] = $start->format(DateTime::ATOM); + $params['bis'] = $ende->format(DateTime::ATOM); + + + } + $jsonString ="{oid:0}"; + $resp=post($sessionInfo, opcCalendarByChannel, $params, $jsonString, $debug) ; + if($monat > 0) renderMonatNavigation($start); + if(is_null($stichwortkey) || $viewStyle == 'table') renderTerminliste($resp, $sessionInfo, $query, 'table', $swlist); + else renderTerminDetailListenansicht($resp, $sessioninfo); + + } + + // Ausloggen nicht vergessen! + logoff($sessionInfo, $debug); + +} catch (Exception $e) { + echo 'Exception: '.$e->getMessage()." code: ".$e->getCode()."
"; +} + +echo $view->render('footer.inc'); + +?> diff --git a/mockupAnmeldung.html b/mockupAnmeldung.html new file mode 100644 index 0000000..418bf2f --- /dev/null +++ b/mockupAnmeldung.html @@ -0,0 +1,152 @@ + + + + + + +Anwesenheit - ##Mandant## + + + + + + + + + + + + + + +
+ +
+ + +
+ +
+
+ Teilnehmer*in +
+
+ Aktion +
+
+ +
+
+

Aktion auf alle nicht bearbeiteten anwenden

+
+
+ + + + + + +
+
+ +
+
+ Max Mustermann +
+
+ + + + + + +
+
+
+
+ Max Mustermann +
+
+ + + + + + +
+
+
+
+ Max Mustermann +
+
+ + + + + + + +
+
+ +
+ +
+ +
+ + + + +Warteliste +Krank (mit Entschuldigung) +Krank (ohne Entschuldigung) +Abwesend (mit Entschuldidung) +Abwesend (ohne Entschuldigung) +Anwesend +Einladung + + +
+
+ + + + + \ No newline at end of file diff --git a/style/bidat.css b/style/bidat.css new file mode 100644 index 0000000..966b06b --- /dev/null +++ b/style/bidat.css @@ -0,0 +1,3 @@ +body#bidat{margin:0% 5%}#bidat tbody tr:nth-child(odd){background-color:rgba(211,111,22,0.1)}#monatname{min-width:200px;display:inline}nav#bidat-monatbar{font-size:2rem;width:100%;text-align:center;padding:2px 0px}nav#bidat-monatbar a{padding:10px;color:white;text-decoration:none}nav#bidat-monatbar a:hover{padding:10px;margin:5 px;color:blue}#bidat article{grid-area:content;background-color:white;border:1px solid #d36f16}#bidat input{line-height:1.5rem;padding:4px 10px;width:300px}#bidat input[type=checkbox]{width:8px;margin-top:0.5em}#bidat .form-check-label{padding-left:2.5rem;margin-bottom:0;cursor:pointer}#bidat .was-validated input:valid{border-color:green}#bidat .was-validated input:invalid{border-color:red}#bidat form .formrow{margin-bottom:1em}#bidat form label{line-height:1.5rem;padding-top:2px;display:inline-block;min-width:200px;text-align:right;font-weight:bold;margin-right:2rem}#bidat form .invalid-feedback{display:none;padding-left:250px;color:red;font-size:0.8em}#bidat form input:invalid ~ .invalid-feedback{display:block}#bidat .form-control{margin-top:20px;width:300px;display:inline-block}h1,h2,h3,h4,h5,h6{color:#d36f16}article header{text-align:center}header{background-color:#d36f16;color:white;min-height:3rem}header h1,header h2,header h3,header h4,header h5,header h6{color:white}header nav div.active{border-bottom:2px solid white}header nav div.inactive{color:rgba(255,255,255,0.2)}header nav div.col-md-auto{padding-left:1rem;padding-right:1rem}select#sw_nav{min-width:200px;line-height:1.5rem;height:2rem;padding:4px 10px}body>footer{position:fixed;border-top:1px solid #5a90be;left:0px;bottom:0px;height:3rem;width:100%;background-color:#d36f16;color:white}footer .container .row,header .container .row{height:3rem}.capitalize{text-transform:uppercase}main{padding-top:2em}main #bidat_content{border-right:1px dotted gray}.bidat_table{border-color:#d36f16;font-size:0.85rem;color:#4e555c}.bidat_table .brd-bottom{border-bottom:1px solid #d36f16}.bidat_table .brd-left{border-left:1px solid #d36f16}.bidat_table .brd-right{border-right:1px solid #d36f16}.bidat_table details{display:none}.bidat_table a{color:#d36f16}.bidat_table .th{background-color:#d36f16;border-radius:7px 7px 0 0;color:white;min-height:3rem;margin-top:2rem}.bidat_table .tf{background-color:#d36f16;border-radius:0 0 7px 7px;color:white;min-height:3rem;margin-top:0rem}.bidat_table .tr{min-height:3.5em}.bidat_table .tr:nth-child(odd){background-color:rgba(211,111,22,0.1)}.var_hidden{display:none}.btn-primary{background-color:#d36f16;border-color:#d36f16;color:white !important}.btn-primary:hover{background-color:rgba(211,111,22,0.8);border-color:#d36f16;color:white !important}#bidat-event-single{display:grid;grid-template-columns:100%;margin-top:2rem;border-radius:7px}#bidat-event-single header{border-radius:7px 7px 0 0;padding-top:0.5rem;grid-row:1}#bidat-event-single a{color:#d36f16;font-weight:bold}#bidat-event-single footer{grid-row:4;text-align:center;border-top:2px dotted #d36f16;padding-top:0.5rem;padding-bottom:0.5rem;background-color:rgba(211,111,22,0.1)}#bidat-event-single .underline{margin-top:1rem;color:#d36f16;font-weight:bold;border-bottom:1px solid #d36f16}#bidat-event-single .ch{color:#d36f16;font-weight:bold}#bidat-event-description{grid-row:2;padding:2rem}#bidat-event-details{grid-row:3;background-color:rgba(211,111,22,0.3);padding:2rem}#bidat-event-registration{border-radius:7px 7px 7px 7px;margin:2rem 0}#bidat-event-registration .infoblock{background-color:rgba(211,111,22,0.3);padding:1rem 4rem;margin:0px 0px 18px 0px}#bidat-event-registration .submitrow{margin-left:4rem}#bidat-nav{display:grid;grid-template-columns:50% 25% 25%}#bidat-monatbar{grid-column:1;grid-row:1}#bidat-monatbar #th_name{background-color:rgba(211,111,22,0.2);height:2rem;padding-top:0.3rem;margin-left:-15px;margin-right:-15px}#bidat-monatbar #th_back{text-align:right;margin-right:0px}#bidat-monatbar #th_fwd{text-align:left;margin-left:0px}#bidat-kategorie{grid-column:2;grid-row:1}#bidat-suche{grid-column:3;grid-row:1}#bidat-suche input{border-radius:7px 0px 0px 7px;margin-right:0px;width:150px;padding:0px;height:2rem}#bidat-suche button{border-radius:0px 7px 7px 0px;margin-left:0px;height:2rem}#bidat-suche button span{display:none}#bidat-suche .form-control{margin-top:0px;width:150px;display:inline-block}#termin-selector{margin-top:5px}#termin-selector section{background-color:#d36f16;min-height:5rem;border-radius:7px;padding:5px}#termin-selector section.inactive{background-color:rgba(211,111,22,0.3)}#termin-selector section h3{font-size:1.2rem;font-weight:bold}.th2{background-color:rgba(211,111,22,0.3);padding:0px 5px;margin-bottom:5px}.th2 h3{font-size:1.0rem;font-weight:bold}.alertbox{background-color:rgba(255,0,0,0.3);margin-left:4rem;padding:10px;border-radius:7px;max-width:600px}input.inaktiv{background-color:grey}.warenkorb{background-color:rgba(211,111,22,0.3);padding:20px}.warenkorb .sumrow{border-top:1px solid #d36f16;font-weight:bold}.warenkorb .row{min-height:2rem}.warenkorb .headrow{border-bottom:1px solid #d36f16;font-weight:bold}@media (min-width: 768px){#bidat-event-single{grid-template-columns:60% 40%}#bidat-event-single header{grid-row:1;grid-column:1 / span 2}#bidat-event-description{grid-column:1}#bidat-event-details{grid-column:2;grid-row:2 /span 2}footer{grid-column:1 / span 2}.var_hidden{display:block}#bidat-event-registration{display:grid;grid-template-columns:50% 50%}#bidat-event-registration header{grid-column:1 / span 2}#bidat-event-registration .infoblock{grid-column:1 / span 2}#bidat-event-registration section{grid-row:3;grid-column:1}#bidat-event-registration aside{grid-row:3;grid-column:2;align-self:end}}@media (min-width: 1024px){.var_hidden{display:block}}@-webkit-keyframes animatetop{from{top:-300px;opacity:0}to{top:0;opacity:1}}@keyframes animatetop{from{top:-300px;opacity:0}to{top:0;opacity:1}}.bold{font-weight:bold} + +/*# sourceMappingURL=bidat.map */ \ No newline at end of file diff --git a/style/bidat.less b/style/bidat.less new file mode 100644 index 0000000..dc3ba31 --- /dev/null +++ b/style/bidat.less @@ -0,0 +1,230 @@ +/* + * + * Default CSS für Kalender-App + * bitte erstellen Sie selbst eine Kopie und binden Sie diese in Ihr templates/header.inc ein + * dann können Sie jederzeit auf eine korrekte Version zurückkeheren + * + */ + +body#bidat { + margin: 0% 5%; +} + +#bidat tbody tr:nth-child(odd) { + background-color: rgba(50, 92, 128, 0.2); +} + +#monatname { + min-width: 200px; + display: inline; +} + +nav.monatbar { + font-size: 2rem; + width: 100%; + text-align: center; + border-bottom: 2px dotted grey; + border-top: 2px dotted grey; + padding: 2px 0px; +} + +nav.monatbar a { + padding: 10px; + margin: 15px; + color: white; + text-decoration: none; +} + +nav.monatbar a:hover { + padding: 10px; + margin: 5 px; + color: blue; +} + +#bidat article { + grid-area: content; + background-color: white; + border: 1px solid #d36f16; + border-image: linear-gradient(to top, #d36f16, rgba(211, 111, 22, 0)) 1 100%; +} + +#bidat input { + line-height: 1.5rem; + padding: 4px 10px; + width: 300px; +} + +#bidat input[type=checkbox] { + width: 8px; + margin-top: 0.5em; +} + +#bidat .form-check-label { + padding-left: 2.5rem; + margin-bottom: 0; + cursor: pointer; +} + +#bidat .was-validated input:valid { + border-color: green; +} + +#bidat .was-validated input:invalid { + border-color: red; +} + +#bidat form .formrow { + margin-bottom: 1em; +} + +#bidat form label { + line-height: 1.5rem; + padding-top: 2px; + display: inline-block; + min-width: 200px; + text-align: right; + font-weight: bold; + margin-right: 2rem; +} + +#bidat form .invalid-feedback { + display: none; + padding-left: 250px; + color: red; + font-size: 0.8em; +} + +#bidat form input:invalid ~ .invalid-feedback { + display: block; +} + +#bidat .form-control { + margin-top: 20px; + width: 300px; + display: inline-block; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + color: #325c80; +} + +header { + background-color: #325c80; + color: white; + min-height: 3rem; +} +header h1,h2,h3,h4,h5,h6 { + color: white; +} + +header nav div.active { + border-bottom: 2px solid white; +} + +header nav div.inactive { + color: rgba(255, 255, 255, 0.2); +} + +header nav div.col-md-auto { + padding-left: 1rem; + padding-right: 1rem; +} + +select#sw_nav { + min-width: 200px; + line-height: 1.5rem; + height:2.5rem; + padding: 4px 10px; +} + +body > footer { + position: fixed; + border-top: 1px solid #5a90be; + left: 0px; + bottom: 0px; + height: 3rem; + width: 100%; + background-color: #24425b; + color: white; +} + +footer .container .row, +header .container .row { + height: 3rem; +} + +.capitalize { + text-transform: uppercase; +} + +main { + padding-top: 2em; +} + +main #bidat_content { + border-right: 1px dotted gray; +} + +.bidat_table .th { + background-color: #325c80; + color: white; + min-height: 3rem; +} + +.bidat_table .tr { + min-height: 2.5em; +} + +.bidat_table .tr:nth-child(odd) { + background-color: rgba(50, 92, 128, 0.7); +} + +.var_hidden { + display: none; +} + +@media (min-width: 576px) {} + +@media (min-width: 768px) { + .var_hidden { + display: block; + } +} + +@media (min-width: 1024px) { + .var_hidden { + display: block; + } +} +/* Add Animation */ + +@-webkit-keyframes animatetop { + from { + top: -300px; + opacity: 0; + } + to { + top: 0; + opacity: 1; + } +} + +@keyframes animatetop { + from { + top: -300px; + opacity: 0; + } + to { + top: 0; + opacity: 1; + } +} + +.bold { + font-weight: bold; +} \ No newline at end of file diff --git a/style/bidat.map b/style/bidat.map new file mode 100644 index 0000000..ae27572 --- /dev/null +++ b/style/bidat.map @@ -0,0 +1,10 @@ +{ + "version": 3, + "file": "bidat.css", + "sources": [ + "bidat.scss" + ], + "sourcesContent": [], + "mappings": "AAwBI,IAAI,AAAA,MAAM,AAAH,CACV,MAAM,CAAE,KAAM,CADH,AAIiB,MAAM,CAAC,KAAK,CAAC,EAAE,AAAA,WAAW,AAAX,GAAW,CAAxB,CAC9B,gBAAgB,CAAE,oBAAQ,CADK,AAIhC,UAAU,AAAC,CACV,SAAS,CAAE,KAAM,CACjB,OAAO,CAAE,MAAO,CAFL,AAMT,GAAG,AAAA,eAAe,AAAF,CAClB,SAAS,CAAE,IAAK,CAChB,KAAK,CAAE,IAAK,CACZ,UAAU,CAAE,MAAO,CACnB,OAAO,CAAE,GAAG,CAAC,GAAG,CAJG,AAOD,GAAG,AAAA,eAAe,CAAC,CAAC,AAAlB,CACpB,OAAO,CAAE,IAAK,CACd,KAAK,CAAE,KAAM,CACb,eAAe,CAAE,IAAK,CAHD,AAMF,GAAG,AAAA,eAAe,CAAC,CAAC,AAAA,MAAM,AAAnB,CAC1B,OAAO,CAAE,IAAK,CACd,MAAM,CAAE,IAAK,CACb,KAAK,CAAE,IAAK,CAHe,AAMrB,MAAM,CAAC,OAAO,AAAN,CACd,SAAS,CAAE,OAAQ,CACnB,gBAAgB,CAAE,KAAM,CACxB,MAAM,CAAE,GAAG,CAAC,KAAK,CApDN,OAAO,CAiDH,AAOT,MAAM,CAAC,KAAK,AAAN,CACZ,WAAW,CAAE,MAAO,CACpB,OAAO,CAAE,GAAG,CAAC,IAAI,CACjB,KAAK,CAAE,KAAM,CAHA,AAMY,MAAM,CAAC,KAAK,CAAA,AAAA,IAAC,CAAD,QAAC,AAAA,CAAX,CAC3B,KAAK,CAAE,GAAI,CACX,UAAU,CAAE,KAAM,CAFU,AAKtB,MAAM,CAAC,iBAAiB,AAAN,CACxB,YAAY,CAAE,MAAO,CACrB,aAAa,CAAE,CAAE,CACjB,MAAM,CAAE,OAAQ,CAHS,AAMC,MAAM,CAAC,cAAc,CAAC,KAAK,AAAA,MAAM,AAA1B,CACjC,YAAY,CAAE,KAAM,CADc,AAIR,MAAM,CAAC,cAAc,CAAC,KAAK,AAAA,QAAQ,AAA1B,CACnC,YAAY,CAAE,GAAI,CADkB,AAIzB,MAAM,CAAC,IAAI,CAAC,QAAQ,AAAX,CACpB,aAAa,CAAE,GAAI,CADE,AAIV,MAAM,CAAC,IAAI,CAAC,KAAK,AAAX,CACjB,WAAW,CAAE,MAAO,CACpB,WAAW,CAAE,GAAI,CACjB,OAAO,CAAE,YAAa,CACtB,SAAS,CAAE,KAAM,CACjB,UAAU,CAAE,KAAM,CAClB,WAAW,CAAE,IAAK,CAClB,YAAY,CAAE,IAAK,CAPD,AAUP,MAAM,CAAC,IAAI,CAAC,iBAAiB,AAAX,CAC7B,OAAO,CAAE,IAAK,CACd,YAAY,CAAE,KAAM,CACpB,KAAK,CAAE,GAAI,CACX,SAAS,CAAE,KAAM,CAJa,AAOH,MAAM,CAAC,IAAI,CAAC,KAAK,AAAA,QAAQ,GAAG,iBAAiB,AAA3B,CAC7C,OAAO,CAAE,KAAM,CAD+B,AAIxC,MAAM,CAAC,aAAa,AAAN,CACpB,UAAU,CAAE,IAAK,CACjB,KAAK,CAAE,KAAM,CACb,OAAO,CAAE,YAAa,CAHD,AAWtB,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,AAAd,CACF,KAAK,CAtHM,OAAO,CAqHf,AAKH,OAAO,CAAC,MAAM,AAAP,CACN,UAAU,CAAE,MAAO,CADZ,AAKT,MAAM,AAAC,CACN,gBAAgB,CAhIL,OAAO,CAiIlB,KAAK,CAAE,KAAM,CACb,UAAU,CAAE,IAAK,CAHV,AAMU,MAAM,CAAC,EAAE,CAAC,MAAM,CAAC,EAAE,CAAC,MAAM,CAAC,EAAE,CAAC,MAAM,CAAC,EAAE,CAAC,MAAM,CAAC,EAAE,CAAC,MAAM,CAAC,EAAE,AAAxD,CACpB,KAAK,CAAE,KAAM,CADQ,AAKR,MAAM,CAAC,GAAG,CAAC,GAAG,AAAA,OAAO,AAAb,CACrB,aAAa,CAAE,eAAgB,CADT,AAIT,MAAM,CAAC,GAAG,CAAC,GAAG,AAAA,SAAS,AAAb,CACvB,KAAK,CAAE,qBAAI,CADa,AAIX,MAAM,CAAC,GAAG,CAAC,GAAG,AAAA,YAAY,AAAb,CAC1B,YAAY,CAAE,IAAK,CACnB,aAAa,CAAE,IAAK,CAFO,AAKtB,MAAM,AAAA,OAAO,AAAL,CACb,SAAS,CAAE,KAAM,CACjB,WAAW,CAAE,MAAO,CACpB,MAAM,CAAC,IAAK,CACZ,OAAO,CAAE,GAAG,CAAC,IAAI,CAJH,AAOR,IAAI,CAAC,MAAM,AAAJ,CACb,QAAQ,CAAE,KAAM,CAChB,UAAU,CAAE,iBAAkB,CAC9B,IAAI,CAAE,GAAI,CACV,MAAM,CAAE,GAAI,CACZ,MAAM,CAAE,IAAK,CACb,KAAK,CAAE,IAAK,CACZ,gBAAgB,CArKL,OAAO,CAsKlB,KAAK,CAAE,KAAM,CARC,AAYG,MAAM,CAAC,UAAU,CAAC,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC,IAAI,AAAxC,CACtB,MAAM,CAAE,IAAK,CADU,AAIxB,WAAW,AAAC,CACX,cAAc,CAAE,SAAU,CADd,AAIb,IAAI,AAAC,CACJ,WAAW,CAAE,GAAI,CADZ,AAID,IAAI,CAAC,cAAc,AAAJ,CACnB,YAAY,CAAE,eAAgB,CADV,AAIrB,YAAY,AAAC,CACZ,YAAY,CA3LD,OAAO,CA4LlB,SAAS,CAAE,OAAQ,CAgBnB,KAAK,CAvMW,OAAG,CAqLN,AAGb,YAAY,CAAC,WAAW,AAAZ,CACX,aAAa,CAAE,GAAG,CAAC,KAAK,CA9Ld,OAAO,CA6LL,AAGb,YAAY,CAAC,SAAS,AAAZ,CACT,WAAW,CAAE,GAAG,CAAC,KAAK,CAjMZ,OAAO,CAgMP,AAGX,YAAY,CAAC,UAAU,AAAZ,CACV,YAAY,CAAE,GAAG,CAAC,KAAK,CApMb,OAAO,CAmMN,AAGZ,YAAY,CAAC,OAAO,AAAZ,CACP,OAAO,CAAC,IAAK,CADL,AAGT,YAAY,CAAC,CAAC,AAAZ,CACD,KAAK,CA1MK,OAAO,CAyMf,AAMS,YAAY,CAAC,GAAG,AAAZ,CAChB,gBAAgB,CAhNL,OAAO,CAiNlB,aAAa,CAAE,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAC1B,KAAK,CAAE,KAAM,CACb,UAAU,CAAE,IAAK,CACjB,UAAU,CAAE,IAAK,CALA,AAQL,YAAY,CAAC,GAAG,AAAZ,CAChB,gBAAgB,CAxNL,OAAO,CAyNlB,aAAa,CAAE,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAC1B,KAAK,CAAE,KAAM,CACb,UAAU,CAAE,IAAK,CACjB,UAAU,CAAE,IAAK,CALA,AAQL,YAAY,CAAC,GAAG,AAAZ,CAChB,UAAU,CAAE,KAAM,CADD,AAIY,YAAY,CAAC,GAAG,AAAA,WAAW,AAAX,GAAW,CAAzB,CAC/B,gBAAgB,CAAE,oBAAQ,CADM,AAIjC,WAAW,AAAC,CACX,OAAO,CAAE,IAAK,CADF,AAIb,YAAY,AAAC,CACZ,gBAAgB,CA5OL,OAAO,CA6OlB,YAAY,CAAC,OAAM,CACnB,KAAK,CAAE,gBAAiB,CAHX,AAMF,YAAY,AAAA,MAAM,AAAX,CAClB,gBAAgB,CAAE,oBAAQ,CAC1B,YAAY,CAAC,OAAM,CACnB,KAAK,CAAE,gBAAiB,CAHL,AAMpB,mBAAmB,AAAC,CACnB,OAAO,CAAE,IAAK,CACd,qBAAqB,CAAE,IAAK,CAC5B,UAAU,CAAE,IAAK,CACjB,aAAa,CAAE,GAAI,CAJC,AAMpB,mBAAmB,CAAC,MAAM,AAAnB,CACN,aAAa,CAAE,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAC1B,WAAW,CAAC,MAAO,CACnB,QAAQ,CAAE,CAAE,CAHL,AAOR,mBAAmB,CAAC,CAAC,AAAnB,CACD,KAAK,CArQK,OAAO,CAsQjB,WAAW,CAAE,IAAK,CAFhB,AAKH,mBAAmB,CAAC,MAAM,AAAnB,CACN,QAAQ,CAAE,CAAE,CACZ,UAAU,CAAE,MAAO,CACnB,UAAU,CAAE,GAAG,CAAC,MAAM,CA5QZ,OAAO,CA6QjB,WAAW,CAAC,MAAO,CACnB,cAAc,CAAC,MAAO,CACtB,gBAAgB,CAAE,oBAAQ,CANnB,AAUR,mBAAmB,CAAC,UAAU,AAAnB,CACV,UAAU,CAAC,IAAK,CAChB,KAAK,CArRK,OAAO,CAsRjB,WAAW,CAAE,IAAK,CAClB,aAAa,CAAE,GAAG,CAAC,KAAK,CAvRd,OAAO,CAmRN,AAOZ,mBAAmB,CAAC,GAAG,AAAnB,CACH,KAAK,CA3RK,OAAO,CA4RjB,WAAW,CAAE,IAAK,CAFd,AAON,wBAAwB,AAAC,CACxB,QAAQ,CAAE,CAAE,CACZ,OAAO,CAAC,IAAK,CAFY,AAK1B,oBAAoB,AAAC,CACpB,QAAQ,CAAE,CAAE,CACZ,gBAAgB,CAAE,oBAAQ,CAC1B,OAAO,CAAC,IAAK,CAHQ,AAOtB,yBAAyB,AAAC,CACxB,aAAa,CAAE,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAC9B,MAAM,CAAE,MAAO,CAFU,AAGzB,yBAAyB,CAAC,UAAU,AAAzB,CACT,gBAAgB,CAAE,oBAAQ,CAC1B,OAAO,CAAE,IAAI,CAAC,IAAI,CAClB,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,CAHb,AAKZ,yBAAyB,CAAC,UAAU,AAAzB,CACV,WAAW,CAAE,IAAK,CADP,AAOd,UAAU,AAAC,CACV,OAAO,CAAE,IAAK,CACd,qBAAqB,CAAE,WAAY,CAFxB,AAKZ,eAAe,AAAC,CACf,WAAW,CAAC,CAAE,CACd,QAAQ,CAAC,CAAE,CAFK,AAGhB,eAAe,CAAC,QAAQ,AAAf,CACR,gBAAgB,CAAE,oBAAQ,CAC1B,MAAM,CAAC,IAAK,CACZ,WAAW,CAAE,MAAO,CACjB,WAAW,CAAE,KAAM,CACtB,YAAY,CAAE,KAAM,CALX,AAQV,eAAe,CAAC,QAAQ,AAAf,CACR,UAAU,CAAE,KAAM,CAClB,YAAY,CAAE,GAAI,CAFT,AAIV,eAAe,CAAC,OAAO,AAAf,CACP,UAAU,CAAE,IAAK,CACjB,WAAW,CAAC,GAAI,CAFR,AAMV,gBAAgB,AAAC,CAChB,WAAW,CAAC,CAAE,CACd,QAAQ,CAAC,CAAE,CAFM,AAIlB,YAAY,AAAC,CACZ,WAAW,CAAC,CAAE,CACd,QAAQ,CAAC,CAAE,CAFE,AAKb,YAAY,CAAC,KAAK,AAAZ,CACL,aAAa,CAAE,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAC9B,YAAY,CAAE,GAAI,CAClB,KAAK,CAAE,KAAM,CACb,OAAO,CAAC,GAAI,CACZ,MAAM,CAAC,IAAK,CALN,AAOP,YAAY,CAAC,MAAM,AAAZ,CACN,aAAa,CAAE,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAC9B,WAAW,CAAE,GAAI,CACjB,MAAM,CAAC,IAAK,CAHL,AAIP,YAAY,CAAC,MAAM,CAAC,IAAI,AAAnB,CACJ,OAAO,CAAC,IAAK,CADR,AAIP,YAAY,CAAC,aAAa,AAAZ,CACb,UAAU,CAAE,GAAI,CAChB,KAAK,CAAE,KAAM,CACb,OAAO,CAAE,YAAa,CAHR,AAQhB,gBAAgB,AAAC,CAChB,UAAU,CAAC,GAAI,CADE,AAEjB,gBAAgB,CAAC,OAAO,AAAhB,CASP,gBAAgB,CAjYN,OAAO,CAkYjB,UAAU,CAAE,IAAK,CACjB,aAAa,CAAE,GAAI,CACnB,OAAO,CAAE,GAAI,CAZL,AACP,gBAAgB,CAAC,OAAO,AAAA,SAAS,AAAxB,CACT,gBAAgB,CAAE,oBAAQ,CADhB,AAGX,gBAAgB,CAAC,OAAO,CAAC,EAAE,AAAxB,CACF,SAAS,CAAE,MAAO,CAClB,WAAW,CAAE,IAAK,CAFf,AAYN,IAAI,AAAC,CAKJ,gBAAgB,CAAE,oBAAQ,CAC1B,OAAO,CAAC,GAAG,CAAC,GAAG,CACf,aAAa,CAAE,GAAI,CAPd,AACL,IAAI,CAAC,EAAE,AAAJ,CACF,SAAS,CAAE,MAAO,CAClB,WAAW,CAAE,IAAK,CAFf,AAUL,SAAS,AAAC,CACR,gBAAgB,CAAE,iBAAQ,CAC1B,WAAW,CAAC,IAAK,CACjB,OAAO,CAAC,IAAK,CACb,aAAa,CAAE,GAAI,CACnB,SAAS,CAAE,KAAM,CALR,AAQN,KAAK,AAAA,QAAQ,AAAL,CACZ,gBAAgB,CAAE,IAAK,CADV,AAId,UAAU,AAAC,CACV,gBAAgB,CAAE,oBAAQ,CAC1B,OAAO,CAAC,IAAK,CAFF,AAGX,UAAU,CAAC,OAAO,AAAV,CACP,UAAU,CAAE,GAAG,CAAC,KAAK,CAnaX,OAAO,CAoajB,WAAW,CAAE,IAAK,CAFV,AAIT,UAAU,CAAC,IAAI,AAAV,CACJ,UAAU,CAAC,IAAK,CADX,AAGN,UAAU,CAAC,QAAQ,AAAV,CACR,aAAa,CAAE,GAAG,CAAC,KAAK,CA1ad,OAAO,CA2ajB,WAAW,CAAE,IAAK,CAFT,AAWX,MAAM,EAAL,SAAS,EAAE,KAAK,EAEhB,mBAAmB,AAAC,CACnB,qBAAqB,CAAE,OAAQ,CADX,AAEpB,mBAAmB,CAAC,MAAM,AAAnB,CACN,QAAQ,CAAE,CAAE,CACZ,WAAW,CAAE,UAAW,CAFjB,AAOT,wBAAwB,AAAC,CACxB,WAAW,CAAE,CAAE,CADU,AAI1B,oBAAoB,AAAC,CACpB,WAAW,CAAE,CAAE,CACf,QAAQ,CAAE,SAAU,CAFC,AAItB,MAAM,AAAC,CACN,WAAW,CAAE,UAAW,CADjB,AAKR,WAAW,AAAC,CACX,OAAO,CAAE,KAAM,CADH,AAIb,yBAAyB,AAAC,CACzB,OAAO,CAAC,IAAK,CACb,qBAAqB,CAAE,OAAQ,CAFL,AAG1B,yBAAyB,CAAC,MAAM,AAAzB,CACN,WAAW,CAAE,UAAW,CADjB,AAIR,yBAAyB,CAAC,UAAU,AAAzB,CACV,WAAW,CAAE,UAAW,CADb,AAIZ,yBAAyB,CAAC,OAAO,AAAzB,CACP,QAAQ,CAAC,CAAE,CACX,WAAW,CAAC,CAAE,CAFN,AAKT,yBAAyB,CAAC,KAAK,AAAzB,CACL,QAAQ,CAAC,CAAE,CACX,WAAW,CAAC,CAAE,CACd,UAAU,CAAC,GAAI,CAHT,CAUT,MAAM,EAAL,SAAS,EAAE,MAAM,EACjB,WAAW,AAAC,CACX,OAAO,CAAE,KAAM,CADH,CAMd,kBAAkB,CAAC,UAAU,CAC5B,IAAI,CACH,GAAG,CAAE,MAAO,CACZ,OAAO,CAAE,CAAE,CAEZ,EAAE,CACD,GAAG,CAAE,CAAE,CACP,OAAO,CAAE,CAAE,EAIb,UAAU,CAAC,UAAU,CACpB,IAAI,CACH,GAAG,CAAE,MAAO,CACZ,OAAO,CAAE,CAAE,CAEZ,EAAE,CACD,GAAG,CAAE,CAAE,CACP,OAAO,CAAE,CAAE,EAIb,KAAK,AAAC,CACL,WAAW,CAAE,IAAK,CADZ", + "names": [] +} \ No newline at end of file diff --git a/style/bidat.scss b/style/bidat.scss new file mode 100644 index 0000000..8b6ee92 --- /dev/null +++ b/style/bidat.scss @@ -0,0 +1,530 @@ +/* + * + * Default CSS für Kalender-App + * bitte erstellen Sie selbst eine Kopie und binden Sie diese in Ihr templates/header.inc ein + * dann können Sie jederzeit auf eine korrekte Version zurückkeheren + * + */ + +$baseColor: #d36f16; +//$baseColor: #d36f16; +$fontColorTable: rgb(78, 85, 92 ); + + +$fontColorTable: rgb(78, 85, 92 ); +$fontColorLink: #325c80; +$fontColorAuszeichnung: #d36f16; + +$buttonColorPrimary:rgb(207, 207, 207); + +$backgroundColorHeader: #d36f16; +$borderColor: #d36f16; + + + +body#bidat { + margin: 0% 5%; +} + +#bidat tbody tr:nth-child(odd) { + background-color: fade-out($baseColor, 0.9); +} + +#monatname { + min-width: 200px; + display: inline; +} + + +nav#bidat-monatbar { + font-size: 2rem; + width: 100%; + text-align: center; + padding: 2px 0px; +} + +nav#bidat-monatbar a { + padding: 10px; + color: white; + text-decoration: none; +} + +nav#bidat-monatbar a:hover { + padding: 10px; + margin: 5 px; + color: blue; +} + +#bidat article { + grid-area: content; + background-color: white; + border: 1px solid $baseColor; + //border-image: linear-gradient(to top, #d36f16, rgba(211, 111, 22, 0)) 1 100%; +} + +#bidat input { + line-height: 1.5rem; + padding: 4px 10px; + width: 300px; +} + +#bidat input[type=checkbox] { + width: 8px; + margin-top: 0.5em; +} + +#bidat .form-check-label { + padding-left: 2.5rem; + margin-bottom: 0; + cursor: pointer; +} + +#bidat .was-validated input:valid { + border-color: green; +} + +#bidat .was-validated input:invalid { + border-color: red; +} + +#bidat form .formrow { + margin-bottom: 1em; +} + +#bidat form label { + line-height: 1.5rem; + padding-top: 2px; + display: inline-block; + min-width: 200px; + text-align: right; + font-weight: bold; + margin-right: 2rem; +} + +#bidat form .invalid-feedback { + display: none; + padding-left: 250px; + color: red; + font-size: 0.8em; +} + +#bidat form input:invalid ~ .invalid-feedback { + display: block; +} + +#bidat .form-control { + margin-top: 20px; + width: 300px; + display: inline-block; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + color: $baseColor; +} + +article { + header { + text-align: center; + } +} + +header { + background-color: $baseColor; + color: white; + min-height: 3rem; +} +header { + & h1,h2,h3,h4,h5,h6 { + color: white; + } +} + +header nav div.active { + border-bottom: 2px solid white; +} + +header nav div.inactive { + color: rgba(255, 255, 255, 0.2); +} + +header nav div.col-md-auto { + padding-left: 1rem; + padding-right: 1rem; +} + +select#sw_nav { + min-width: 200px; + line-height: 1.5rem; + height:2rem; + padding: 4px 10px; +} + +body > footer { + position: fixed; + border-top: 1px solid #5a90be; + left: 0px; + bottom: 0px; + height: 3rem; + width: 100%; + background-color: $baseColor; + color: white; +} + +footer .container .row, +header .container .row { + height: 3rem; +} + +.capitalize { + text-transform: uppercase; +} + +main { + padding-top: 2em; +} + +main #bidat_content { + border-right: 1px dotted gray; +} + +.bidat_table { + border-color: $baseColor; + font-size: 0.85rem; + .brd-bottom { + border-bottom: 1px solid $baseColor; + } + .brd-left { + border-left: 1px solid $baseColor; + } + .brd-right { + border-right: 1px solid $baseColor; + } + details { + display:none; + } + a { + color: $baseColor; + } + color: $fontColorTable; +} + +.bidat_table .th { + background-color: $baseColor; + border-radius: 7px 7px 0 0; + color: white; + min-height: 3rem; + margin-top: 2rem; +} + +.bidat_table .tf { + background-color: $baseColor; + border-radius: 0 0 7px 7px; + color: white; + min-height: 3rem; + margin-top: 0rem; +} + +.bidat_table .tr { + min-height: 3.5em; +} + +.bidat_table .tr:nth-child(odd) { + background-color: fade-out($baseColor, 0.9); +} + +.var_hidden { + display: none; +} + +.btn-primary { + background-color: $baseColor; + border-color:darken($baseColor, 0.1); + color: white !important; +} + +.btn-primary:hover { + background-color: fade-out($baseColor, 0.2); + border-color:darken($baseColor, 0.1); + color: white !important; +} + +#bidat-event-single { + display: grid; + grid-template-columns: 100%; + margin-top: 2rem; + border-radius: 7px; + + header { + border-radius: 7px 7px 0 0; + padding-top:0.5rem; + grid-row: 1; + } + + + a { + color: $baseColor; + font-weight: bold; + } + + footer { + grid-row: 4; + text-align: center; + border-top: 2px dotted $baseColor; + padding-top:0.5rem; + padding-bottom:0.5rem; + background-color: fade-out($baseColor, 0.9); + + + } + .underline { + margin-top:1rem; + color:$baseColor; + font-weight: bold; + border-bottom: 1px solid $baseColor; + } + + .ch { + color:$baseColor; + font-weight: bold; + } + +} + +#bidat-event-description { + grid-row: 2; + padding:2rem; +} + +#bidat-event-details { + grid-row: 3; + background-color: fade-out($baseColor, 0.7); + padding:2rem; +} + + +#bidat-event-registration { + border-radius: 7px 7px 7px 7px; + margin: 2rem 0; + .infoblock { + background-color: fade-out($baseColor, 0.7); + padding: 1rem 4rem; + margin:0px 0px 18px 0px; + } + .submitrow { + margin-left: 4rem; + } + +} + + +#bidat-nav { + display: grid; + grid-template-columns: 50% 25% 25%; + +} +#bidat-monatbar { + grid-column:1; + grid-row:1; + #th_name { + background-color: fade-out($baseColor, 0.8); + height:2rem; + padding-top: 0.3rem; + margin-left: -15px; + margin-right: -15px; + + } + #th_back { + text-align: right; + margin-right: 0px; + } + #th_fwd { + text-align: left; + margin-left:0px; + } + +} +#bidat-kategorie { + grid-column:2; + grid-row:1; +} +#bidat-suche { + grid-column:3; + grid-row:1; +} +#bidat-suche { + input { + border-radius: 7px 0px 0px 7px; + margin-right: 0px; + width: 150px; + padding:0px; + height:2rem; + } + button { + border-radius: 0px 7px 7px 0px; + margin-left: 0px; + height:2rem; + span { + display:none; + } + } + .form-control { + margin-top: 0px; + width: 150px; + display: inline-block; + } + +} + +#termin-selector { + margin-top:5px; + section { + &.inactive{ + background-color: fade-out($baseColor, 0.7); + } + h3 { + font-size: 1.2rem; + font-weight: bold; + } + + background-color: $baseColor; + min-height: 5rem; + border-radius: 7px; + padding: 5px; + } +} + +.th2 { + h3 { + font-size: 1.0rem; + font-weight: bold; + } + background-color: fade-out($baseColor, 0.7); + padding:0px 5px; + margin-bottom: 5px; + +} + +.alertbox { + background-color: fade-out(red, 0.7); + margin-left:4rem; + padding:10px; + border-radius: 7px; + max-width: 600px; + +} +input.inaktiv{ + background-color: grey; +} + +.warenkorb { + background-color: fade-out($baseColor, 0.7); + padding:20px; + .sumrow { + border-top: 1px solid $baseColor; + font-weight: bold; + } + .row { + min-height:2rem; + } + .headrow { + border-bottom: 1px solid $baseColor; + font-weight: bold; + + } +} + + + +@media (min-width: 576px) {} + +@media (min-width: 768px) { + + #bidat-event-single { + grid-template-columns: 60% 40%; + header { + grid-row: 1; + grid-column: 1 / span 2; + } + + } + + #bidat-event-description { + grid-column: 1; + } + + #bidat-event-details { + grid-column: 2; + grid-row: 2 /span 2; + } + footer { + grid-column: 1 / span 2; + + } + + .var_hidden { + display: block; + } + + #bidat-event-registration { + display:grid; + grid-template-columns: 50% 50%; + header { + grid-column: 1 / span 2; + + } + .infoblock { + grid-column: 1 / span 2; + } + + section { + grid-row:3; + grid-column:1; + + } + aside { + grid-row:3; + grid-column:2; + align-self:end; + } + } + + +} + +@media (min-width: 1024px) { + .var_hidden { + display: block; + } +} +/* Add Animation */ + +@-webkit-keyframes animatetop { + from { + top: -300px; + opacity: 0; + } + to { + top: 0; + opacity: 1; + } +} + +@keyframes animatetop { + from { + top: -300px; + opacity: 0; + } + to { + top: 0; + opacity: 1; + } +} + +.bold { + font-weight: bold; +} \ No newline at end of file diff --git a/style/bootstrap.css b/style/bootstrap.css new file mode 100644 index 0000000..844f886 --- /dev/null +++ b/style/bootstrap.css @@ -0,0 +1,2112 @@ +/*! + * Bootstrap v2.1.1 + * + * Copyright 2012 Twitter, Inc + * Licensed under the Apache License v2.0 + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Designed and built with all the love in the world @twitter by @mdo and @fat. + */ +.clearfix { + *zoom: 1; +} +.clearfix:before, +.clearfix:after { + display: table; + content: ""; + line-height: 0; +} +.clearfix:after { + clear: both; +} +.hide-text { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; +} +.input-block-level { + display: block; + width: 100%; + min-height: 30px; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +.row-fluid { + width: 100%; + *zoom: 1; +} +.row-fluid:before, +.row-fluid:after { + display: table; + content: ""; + line-height: 0; +} +.row-fluid:after { + clear: both; +} +.row-fluid [class*="span"] { + display: block; + width: 100%; + min-height: 30px; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + float: left; + margin-left: 2.127659574468085%; + *margin-left: 2.074468085106383%; +} +.row-fluid [class*="span"]:first-child { + margin-left: 0; +} +.row-fluid .span12 { + width: 100%; + *width: 99.94680851063829%; +} +.row-fluid .span11 { + width: 91.48936170212765%; + *width: 91.43617021276594%; +} +.row-fluid .span10 { + width: 82.97872340425532%; + *width: 82.92553191489361%; +} +.row-fluid .span9 { + width: 74.46808510638297%; + *width: 74.41489361702126%; +} +.row-fluid .span8 { + width: 65.95744680851064%; + *width: 65.90425531914893%; +} +.row-fluid .span7 { + width: 57.44680851063829%; + *width: 57.39361702127659%; +} +.row-fluid .span6 { + width: 48.93617021276595%; + *width: 48.88297872340425%; +} +.row-fluid .span5 { + width: 40.42553191489362%; + *width: 40.37234042553192%; +} +.row-fluid .span4 { + width: 31.914893617021278%; + *width: 31.861702127659576%; +} +.row-fluid .span3 { + width: 23.404255319148934%; + *width: 23.351063829787233%; +} +.row-fluid .span2 { + width: 14.893617021276595%; + *width: 14.840425531914894%; +} +.row-fluid .span1 { + width: 6.382978723404255%; + *width: 6.329787234042553%; +} +.row-fluid .offset12 { + margin-left: 104.25531914893617%; + *margin-left: 104.14893617021275%; +} +.row-fluid .offset12:first-child { + margin-left: 102.12765957446808%; + *margin-left: 102.02127659574467%; +} +.row-fluid .offset11 { + margin-left: 95.74468085106382%; + *margin-left: 95.6382978723404%; +} +.row-fluid .offset11:first-child { + margin-left: 93.61702127659574%; + *margin-left: 93.51063829787232%; +} +.row-fluid .offset10 { + margin-left: 87.23404255319149%; + *margin-left: 87.12765957446807%; +} +.row-fluid .offset10:first-child { + margin-left: 85.1063829787234%; + *margin-left: 84.99999999999999%; +} +.row-fluid .offset9 { + margin-left: 78.72340425531914%; + *margin-left: 78.61702127659572%; +} +.row-fluid .offset9:first-child { + margin-left: 76.59574468085106%; + *margin-left: 76.48936170212764%; +} +.row-fluid .offset8 { + margin-left: 70.2127659574468%; + *margin-left: 70.10638297872339%; +} +.row-fluid .offset8:first-child { + margin-left: 68.08510638297872%; + *margin-left: 67.9787234042553%; +} +.row-fluid .offset7 { + margin-left: 61.70212765957446%; + *margin-left: 61.59574468085106%; +} +.row-fluid .offset7:first-child { + margin-left: 59.574468085106375%; + *margin-left: 59.46808510638297%; +} +.row-fluid .offset6 { + margin-left: 53.191489361702125%; + *margin-left: 53.085106382978715%; +} +.row-fluid .offset6:first-child { + margin-left: 51.063829787234035%; + *margin-left: 50.95744680851063%; +} +.row-fluid .offset5 { + margin-left: 44.68085106382979%; + *margin-left: 44.57446808510638%; +} +.row-fluid .offset5:first-child { + margin-left: 42.5531914893617%; + *margin-left: 42.4468085106383%; +} +.row-fluid .offset4 { + margin-left: 36.170212765957444%; + *margin-left: 36.06382978723405%; +} +.row-fluid .offset4:first-child { + margin-left: 34.04255319148936%; + *margin-left: 33.93617021276596%; +} +.row-fluid .offset3 { + margin-left: 27.659574468085104%; + *margin-left: 27.5531914893617%; +} +.row-fluid .offset3:first-child { + margin-left: 25.53191489361702%; + *margin-left: 25.425531914893618%; +} +.row-fluid .offset2 { + margin-left: 19.148936170212764%; + *margin-left: 19.04255319148936%; +} +.row-fluid .offset2:first-child { + margin-left: 17.02127659574468%; + *margin-left: 16.914893617021278%; +} +.row-fluid .offset1 { + margin-left: 10.638297872340425%; + *margin-left: 10.53191489361702%; +} +.row-fluid .offset1:first-child { + margin-left: 8.51063829787234%; + *margin-left: 8.404255319148938%; +} +[class*="span"].hide, +.row-fluid [class*="span"].hide { + display: none; +} +[class*="span"].pull-right, +.row-fluid [class*="span"].pull-right { + float: right; +} +table { + max-width: 100%; + background-color: transparent; + border-collapse: collapse; + border-spacing: 0; +} +.table { + width: 100%; + margin-bottom: 20px; +} +.table th, +.table td { + padding: 8px; + line-height: 20px; + text-align: left; + vertical-align: top; + border-top: 1px solid #dddddd; +} +.table th { + font-weight: bold; +} +.table thead th { + vertical-align: bottom; +} +.table caption + thead tr:first-child th, +.table caption + thead tr:first-child td, +.table colgroup + thead tr:first-child th, +.table colgroup + thead tr:first-child td, +.table thead:first-child tr:first-child th, +.table thead:first-child tr:first-child td { + border-top: 0; +} +.table tbody + tbody { + border-top: 2px solid #dddddd; +} +.table-condensed th, +.table-condensed td { + padding: 4px 5px; +} +.table-bordered { + border: 1px solid #dddddd; + border-collapse: separate; + *border-collapse: collapse; + border-left: 0; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} +.table-bordered th, +.table-bordered td { + border-left: 1px solid #dddddd; +} +.table-bordered caption + thead tr:first-child th, +.table-bordered caption + tbody tr:first-child th, +.table-bordered caption + tbody tr:first-child td, +.table-bordered colgroup + thead tr:first-child th, +.table-bordered colgroup + tbody tr:first-child th, +.table-bordered colgroup + tbody tr:first-child td, +.table-bordered thead:first-child tr:first-child th, +.table-bordered tbody:first-child tr:first-child th, +.table-bordered tbody:first-child tr:first-child td { + border-top: 0; +} +.table-bordered thead:first-child tr:first-child th:first-child, +.table-bordered tbody:first-child tr:first-child td:first-child { + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topleft: 4px; +} +.table-bordered thead:first-child tr:first-child th:last-child, +.table-bordered tbody:first-child tr:first-child td:last-child { + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-topright: 4px; +} +.table-bordered thead:last-child tr:last-child th:first-child, +.table-bordered tbody:last-child tr:last-child td:first-child, +.table-bordered tfoot:last-child tr:last-child td:first-child { + -webkit-border-radius: 0 0 0 4px; + -moz-border-radius: 0 0 0 4px; + border-radius: 0 0 0 4px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + -moz-border-radius-bottomleft: 4px; +} +.table-bordered thead:last-child tr:last-child th:last-child, +.table-bordered tbody:last-child tr:last-child td:last-child, +.table-bordered tfoot:last-child tr:last-child td:last-child { + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-bottomright: 4px; +} +.table-bordered caption + thead tr:first-child th:first-child, +.table-bordered caption + tbody tr:first-child td:first-child, +.table-bordered colgroup + thead tr:first-child th:first-child, +.table-bordered colgroup + tbody tr:first-child td:first-child { + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topleft: 4px; +} +.table-bordered caption + thead tr:first-child th:last-child, +.table-bordered caption + tbody tr:first-child td:last-child, +.table-bordered colgroup + thead tr:first-child th:last-child, +.table-bordered colgroup + tbody tr:first-child td:last-child { + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-topleft: 4px; +} +.table-striped tbody tr:nth-child(odd) td, +.table-striped tbody tr:nth-child(odd) th { + background-color: #f9f9f9; +} +.table-hover tbody tr:hover td, +.table-hover tbody tr:hover th { + background-color: #f5f5f5; +} +.table tbody tr.success td { + background-color: #dff0d8; +} +.table tbody tr.error td { + background-color: #f2dede; +} +.table tbody tr.warning td { + background-color: #fcf8e3; +} +.table tbody tr.info td { + background-color: #d9edf7; +} +.table-hover tbody tr.success:hover td { + background-color: #d0e9c6; +} +.table-hover tbody tr.error:hover td { + background-color: #ebcccc; +} +.table-hover tbody tr.warning:hover td { + background-color: #faf2cc; +} +.table-hover tbody tr.info:hover td { + background-color: #c4e3f3; +} +form { + margin: 0 0 20px; +} +label, +input, +button, +select, +textarea { + font-size: 14px; + font-weight: normal; + line-height: 20px; +} +input, +button, +select, +textarea { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; +} +select, +textarea, +input[type="text"], +input[type="password"], +input[type="datetime"], +input[type="datetime-local"], +input[type="date"], +input[type="month"], +input[type="time"], +input[type="week"], +input[type="number"], +input[type="email"], +input[type="url"], +input[type="search"], +input[type="tel"], +input[type="color"], +.uneditable-input { + display: inline-block; + height: 20px; + padding: 4px 6px; + margin-bottom: 9px; + font-size: 14px; + line-height: 20px; + color: #555555; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; +} +input, +textarea, +.uneditable-input { + width: 206px; +} +textarea { + height: auto; +} +textarea, +input[type="text"], +input[type="password"], +input[type="datetime"], +input[type="datetime-local"], +input[type="date"], +input[type="month"], +input[type="time"], +input[type="week"], +input[type="number"], +input[type="email"], +input[type="url"], +input[type="search"], +input[type="tel"], +input[type="color"], +.uneditable-input { + background-color: #ffffff; + border: 1px solid #cccccc; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -webkit-transition: border linear .2s, box-shadow linear .2s; + -moz-transition: border linear .2s, box-shadow linear .2s; + -o-transition: border linear .2s, box-shadow linear .2s; + transition: border linear .2s, box-shadow linear .2s; +} +textarea:focus, +input[type="text"]:focus, +input[type="password"]:focus, +input[type="datetime"]:focus, +input[type="datetime-local"]:focus, +input[type="date"]:focus, +input[type="month"]:focus, +input[type="time"]:focus, +input[type="week"]:focus, +input[type="number"]:focus, +input[type="email"]:focus, +input[type="url"]:focus, +input[type="search"]:focus, +input[type="tel"]:focus, +input[type="color"]:focus, +.uneditable-input:focus { + border-color: rgba(82, 168, 236, 0.8); + outline: 0; + outline: thin dotted \9; + /* IE6-9 */ + + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); +} +input[type="radio"], +input[type="checkbox"] { + margin: 4px 0 0; + *margin-top: 0; + /* IE7 */ + + margin-top: 1px \9; + /* IE8-9 */ + + line-height: normal; + cursor: pointer; +} +input[type="file"], +input[type="image"], +input[type="submit"], +input[type="reset"], +input[type="button"], +input[type="radio"], +input[type="checkbox"] { + width: auto; +} +select, +input[type="file"] { + height: 30px; + /* In IE7, the height of the select element cannot be changed by height, only font-size */ + + *margin-top: 4px; + /* For IE7, add top margin to align select with labels */ + + line-height: 30px; +} +select { + border: 1px solid #cccccc; + background-color: #ffffff; +} +select[multiple], +select[size] { + height: auto; +} +select:focus, +input[type="file"]:focus, +input[type="radio"]:focus, +input[type="checkbox"]:focus { + outline: thin dotted #333; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} +.uneditable-input, +.uneditable-textarea { + color: #999999; + background-color: #fcfcfc; + border-color: #cccccc; + -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025); + -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025); + box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025); + cursor: not-allowed; +} +.uneditable-input { + overflow: hidden; + white-space: nowrap; +} +.uneditable-textarea { + width: auto; + height: auto; +} +input:-moz-placeholder, +textarea:-moz-placeholder { + color: #999999; +} +input:-ms-input-placeholder, +textarea:-ms-input-placeholder { + color: #999999; +} +input::-webkit-input-placeholder, +textarea::-webkit-input-placeholder { + color: #999999; +} +.radio, +.checkbox { + min-height: 18px; + padding-left: 18px; +} +.radio input[type="radio"], +.checkbox input[type="checkbox"] { + float: left; + margin-left: -18px; +} +.controls > .radio:first-child, +.controls > .checkbox:first-child { + padding-top: 5px; +} +.radio.inline, +.checkbox.inline { + display: inline-block; + padding-top: 5px; + margin-bottom: 0; + vertical-align: middle; +} +.radio.inline + .radio.inline, +.checkbox.inline + .checkbox.inline { + margin-left: 10px; +} +.input-mini { + width: 60px; +} +.input-small { + width: 90px; +} +.input-medium { + width: 150px; +} +.input-large { + width: 210px; +} +.input-xlarge { + width: 270px; +} +.input-xxlarge { + width: 530px; +} +input[class*="span"], +select[class*="span"], +textarea[class*="span"], +.uneditable-input[class*="span"], +.row-fluid input[class*="span"], +.row-fluid select[class*="span"], +.row-fluid textarea[class*="span"], +.row-fluid .uneditable-input[class*="span"] { + float: none; + margin-left: 0; +} +.input-append input[class*="span"], +.input-append .uneditable-input[class*="span"], +.input-prepend input[class*="span"], +.input-prepend .uneditable-input[class*="span"], +.row-fluid input[class*="span"], +.row-fluid select[class*="span"], +.row-fluid textarea[class*="span"], +.row-fluid .uneditable-input[class*="span"], +.row-fluid .input-prepend [class*="span"], +.row-fluid .input-append [class*="span"] { + display: inline-block; +} +input, +textarea, +.uneditable-input { + margin-left: 0; +} +.controls-row [class*="span"] + [class*="span"] { + margin-left: 20px; +} +input.span12, textarea.span12, .uneditable-input.span12 { + width: 926px; +} +input.span11, textarea.span11, .uneditable-input.span11 { + width: 846px; +} +input.span10, textarea.span10, .uneditable-input.span10 { + width: 766px; +} +input.span9, textarea.span9, .uneditable-input.span9 { + width: 686px; +} +input.span8, textarea.span8, .uneditable-input.span8 { + width: 606px; +} +input.span7, textarea.span7, .uneditable-input.span7 { + width: 526px; +} +input.span6, textarea.span6, .uneditable-input.span6 { + width: 446px; +} +input.span5, textarea.span5, .uneditable-input.span5 { + width: 366px; +} +input.span4, textarea.span4, .uneditable-input.span4 { + width: 286px; +} +input.span3, textarea.span3, .uneditable-input.span3 { + width: 206px; +} +input.span2, textarea.span2, .uneditable-input.span2 { + width: 126px; +} +input.span1, textarea.span1, .uneditable-input.span1 { + width: 46px; +} +.controls-row { + *zoom: 1; +} +.controls-row:before, +.controls-row:after { + display: table; + content: ""; + line-height: 0; +} +.controls-row:after { + clear: both; +} +.controls-row [class*="span"] { + float: left; +} +input[disabled], +select[disabled], +textarea[disabled], +input[readonly], +select[readonly], +textarea[readonly] { + cursor: not-allowed; + background-color: #eeeeee; +} +input[type="radio"][disabled], +input[type="checkbox"][disabled], +input[type="radio"][readonly], +input[type="checkbox"][readonly] { + background-color: transparent; +} +.control-group.warning > label, +.control-group.warning .help-block, +.control-group.warning .help-inline { + color: #c09853; +} +.control-group.warning .checkbox, +.control-group.warning .radio, +.control-group.warning input, +.control-group.warning select, +.control-group.warning textarea { + color: #c09853; +} +.control-group.warning input, +.control-group.warning select, +.control-group.warning textarea { + border-color: #c09853; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} +.control-group.warning input:focus, +.control-group.warning select:focus, +.control-group.warning textarea:focus { + border-color: #a47e3c; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e; + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e; +} +.control-group.warning .input-prepend .add-on, +.control-group.warning .input-append .add-on { + color: #c09853; + background-color: #fcf8e3; + border-color: #c09853; +} +.control-group.error > label, +.control-group.error .help-block, +.control-group.error .help-inline { + color: #b94a48; +} +.control-group.error .checkbox, +.control-group.error .radio, +.control-group.error input, +.control-group.error select, +.control-group.error textarea { + color: #b94a48; +} +.control-group.error input, +.control-group.error select, +.control-group.error textarea { + border-color: #b94a48; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} +.control-group.error input:focus, +.control-group.error select:focus, +.control-group.error textarea:focus { + border-color: #953b39; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392; + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392; +} +.control-group.error .input-prepend .add-on, +.control-group.error .input-append .add-on { + color: #b94a48; + background-color: #f2dede; + border-color: #b94a48; +} +.control-group.success > label, +.control-group.success .help-block, +.control-group.success .help-inline { + color: #468847; +} +.control-group.success .checkbox, +.control-group.success .radio, +.control-group.success input, +.control-group.success select, +.control-group.success textarea { + color: #468847; +} +.control-group.success input, +.control-group.success select, +.control-group.success textarea { + border-color: #468847; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} +.control-group.success input:focus, +.control-group.success select:focus, +.control-group.success textarea:focus { + border-color: #356635; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b; + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b; +} +.control-group.success .input-prepend .add-on, +.control-group.success .input-append .add-on { + color: #468847; + background-color: #dff0d8; + border-color: #468847; +} +.control-group.info > label, +.control-group.info .help-block, +.control-group.info .help-inline { + color: #3a87ad; +} +.control-group.info .checkbox, +.control-group.info .radio, +.control-group.info input, +.control-group.info select, +.control-group.info textarea { + color: #3a87ad; +} +.control-group.info input, +.control-group.info select, +.control-group.info textarea { + border-color: #3a87ad; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} +.control-group.info input:focus, +.control-group.info select:focus, +.control-group.info textarea:focus { + border-color: #2d6987; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3; + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3; +} +.control-group.info .input-prepend .add-on, +.control-group.info .input-append .add-on { + color: #3a87ad; + background-color: #d9edf7; + border-color: #3a87ad; +} +input:focus:required:invalid, +textarea:focus:required:invalid, +select:focus:required:invalid { + color: #b94a48; + border-color: #ee5f5b; +} +input:focus:required:invalid:focus, +textarea:focus:required:invalid:focus, +select:focus:required:invalid:focus { + border-color: #e9322d; + -webkit-box-shadow: 0 0 6px #f8b9b7; + -moz-box-shadow: 0 0 6px #f8b9b7; + box-shadow: 0 0 6px #f8b9b7; +} +.form-actions { + padding: 19px 20px 20px; + margin-top: 20px; + margin-bottom: 20px; + background-color: #f5f5f5; + border-top: 1px solid #e5e5e5; + *zoom: 1; +} +.form-actions:before, +.form-actions:after { + display: table; + content: ""; + line-height: 0; +} +.form-actions:after { + clear: both; +} +.help-block, +.help-inline { + color: #595959; +} +.help-block { + display: block; + margin-bottom: 10px; +} +.help-inline { + display: inline-block; + *display: inline; + /* IE7 inline-block hack */ + + *zoom: 1; + vertical-align: middle; + padding-left: 5px; +} +.input-append, +.input-prepend { + margin-bottom: 5px; + font-size: 0; + white-space: nowrap; +} +.input-append input, +.input-prepend input, +.input-append select, +.input-prepend select, +.input-append .uneditable-input, +.input-prepend .uneditable-input { + position: relative; + margin-bottom: 0; + *margin-left: 0; + font-size: 14px; + vertical-align: top; + -webkit-border-radius: 0 3px 3px 0; + -moz-border-radius: 0 3px 3px 0; + border-radius: 0 3px 3px 0; +} +.input-append input:focus, +.input-prepend input:focus, +.input-append select:focus, +.input-prepend select:focus, +.input-append .uneditable-input:focus, +.input-prepend .uneditable-input:focus { + z-index: 2; +} +.input-append .add-on, +.input-prepend .add-on { + display: inline-block; + width: auto; + height: 20px; + min-width: 16px; + padding: 4px 5px; + font-size: 14px; + font-weight: normal; + line-height: 20px; + text-align: center; + text-shadow: 0 1px 0 #ffffff; + background-color: #eeeeee; + border: 1px solid #ccc; +} +.input-append .add-on, +.input-prepend .add-on, +.input-append .btn, +.input-prepend .btn { + vertical-align: top; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.input-append .active, +.input-prepend .active { + background-color: #a9dba9; + border-color: #46a546; +} +.input-prepend .add-on, +.input-prepend .btn { + margin-right: -1px; +} +.input-prepend .add-on:first-child, +.input-prepend .btn:first-child { + -webkit-border-radius: 3px 0 0 3px; + -moz-border-radius: 3px 0 0 3px; + border-radius: 3px 0 0 3px; +} +.input-append input, +.input-append select, +.input-append .uneditable-input { + -webkit-border-radius: 3px 0 0 3px; + -moz-border-radius: 3px 0 0 3px; + border-radius: 3px 0 0 3px; +} +.input-append .add-on, +.input-append .btn { + margin-left: -1px; +} +.input-append .add-on:last-child, +.input-append .btn:last-child { + -webkit-border-radius: 0 3px 3px 0; + -moz-border-radius: 0 3px 3px 0; + border-radius: 0 3px 3px 0; +} +.input-prepend.input-append input, +.input-prepend.input-append select, +.input-prepend.input-append .uneditable-input { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.input-prepend.input-append .add-on:first-child, +.input-prepend.input-append .btn:first-child { + margin-right: -1px; + -webkit-border-radius: 3px 0 0 3px; + -moz-border-radius: 3px 0 0 3px; + border-radius: 3px 0 0 3px; +} +.input-prepend.input-append .add-on:last-child, +.input-prepend.input-append .btn:last-child { + margin-left: -1px; + -webkit-border-radius: 0 3px 3px 0; + -moz-border-radius: 0 3px 3px 0; + border-radius: 0 3px 3px 0; +} +input.search-query { + padding-right: 14px; + padding-right: 4px \9; + padding-left: 14px; + padding-left: 4px \9; + /* IE7-8 doesn't have border-radius, so don't indent the padding */ + + margin-bottom: 0; + -webkit-border-radius: 15px; + -moz-border-radius: 15px; + border-radius: 15px; +} +/* Allow for input prepend/append in search forms */ +.form-search .input-append .search-query, +.form-search .input-prepend .search-query { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.form-search .input-append .search-query { + -webkit-border-radius: 14px 0 0 14px; + -moz-border-radius: 14px 0 0 14px; + border-radius: 14px 0 0 14px; +} +.form-search .input-append .btn { + -webkit-border-radius: 0 14px 14px 0; + -moz-border-radius: 0 14px 14px 0; + border-radius: 0 14px 14px 0; +} +.form-search .input-prepend .search-query { + -webkit-border-radius: 0 14px 14px 0; + -moz-border-radius: 0 14px 14px 0; + border-radius: 0 14px 14px 0; +} +.form-search .input-prepend .btn { + -webkit-border-radius: 14px 0 0 14px; + -moz-border-radius: 14px 0 0 14px; + border-radius: 14px 0 0 14px; +} +.form-search input, +.form-inline input, +.form-horizontal input, +.form-search textarea, +.form-inline textarea, +.form-horizontal textarea, +.form-search select, +.form-inline select, +.form-horizontal select, +.form-search .help-inline, +.form-inline .help-inline, +.form-horizontal .help-inline, +.form-search .uneditable-input, +.form-inline .uneditable-input, +.form-horizontal .uneditable-input, +.form-search .input-prepend, +.form-inline .input-prepend, +.form-horizontal .input-prepend, +.form-search .input-append, +.form-inline .input-append, +.form-horizontal .input-append { + display: inline-block; + *display: inline; + /* IE7 inline-block hack */ + + *zoom: 1; + margin-bottom: 0; + vertical-align: middle; +} +.form-search .hide, +.form-inline .hide, +.form-horizontal .hide { + display: none; +} +.form-search label, +.form-inline label, +.form-search .btn-group, +.form-inline .btn-group { + display: inline-block; +} +.form-search .input-append, +.form-inline .input-append, +.form-search .input-prepend, +.form-inline .input-prepend { + margin-bottom: 0; +} +.form-search .radio, +.form-search .checkbox, +.form-inline .radio, +.form-inline .checkbox { + padding-left: 0; + margin-bottom: 0; + vertical-align: middle; +} +.form-search .radio input[type="radio"], +.form-search .checkbox input[type="checkbox"], +.form-inline .radio input[type="radio"], +.form-inline .checkbox input[type="checkbox"] { + float: left; + margin-right: 3px; + margin-left: 0; +} +.control-group { + margin-bottom: 10px; +} +legend + .control-group { + margin-top: 20px; + -webkit-margin-top-collapse: separate; +} +.form-horizontal .control-group { + margin-bottom: 20px; + *zoom: 1; +} +.form-horizontal .control-group:before, +.form-horizontal .control-group:after { + display: table; + content: ""; + line-height: 0; +} +.form-horizontal .control-group:after { + clear: both; +} +.form-horizontal .control-label { + float: left; + width: 160px; + padding-top: 5px; + text-align: right; +} +.form-horizontal .controls { + *display: inline-block; + *padding-left: 20px; + margin-left: 180px; + *margin-left: 0; +} +.form-horizontal .controls:first-child { + *padding-left: 180px; +} +.form-horizontal .help-block { + margin-bottom: 0; +} +.form-horizontal input + .help-block, +.form-horizontal select + .help-block, +.form-horizontal textarea + .help-block { + margin-top: 10px; +} +.form-horizontal .form-actions { + padding-left: 180px; +} +.btn { + display: inline-block; + *display: inline; + /* IE7 inline-block hack */ + + *zoom: 1; + padding: 4px 14px; + margin-bottom: 0; + font-size: 14px; + line-height: 20px; + *line-height: 20px; + text-align: center; + vertical-align: middle; + cursor: pointer; + color: #333333; + text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75); + background-color: #f5f5f5; + background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6)); + background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6); + background-image: -o-linear-gradient(top, #ffffff, #e6e6e6); + background-image: linear-gradient(to bottom, #ffffff, #e6e6e6); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0); + border-color: #e6e6e6 #e6e6e6 #bfbfbf; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + *background-color: #e6e6e6; + /* Darken IE7 buttons by default so they stand out more given they won't have borders */ + + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); + border: 1px solid #bbbbbb; + *border: 0; + border-bottom-color: #a2a2a2; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + *margin-left: .3em; + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); + -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); +} +.btn:hover, +.btn:active, +.btn.active, +.btn.disabled, +.btn[disabled] { + color: #333333; + background-color: #e6e6e6; + *background-color: #d9d9d9; +} +.btn:active, +.btn.active { + background-color: #cccccc \9; +} +.btn:first-child { + *margin-left: 0; +} +.btn:hover { + color: #333333; + text-decoration: none; + background-color: #e6e6e6; + *background-color: #d9d9d9; + /* Buttons in IE7 don't get borders, so darken on hover */ + + background-position: 0 -15px; + -webkit-transition: background-position 0.1s linear; + -moz-transition: background-position 0.1s linear; + -o-transition: background-position 0.1s linear; + transition: background-position 0.1s linear; +} +.btn:focus { + outline: thin dotted #333; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} +.btn.active, +.btn:active { + background-color: #e6e6e6; + background-color: #d9d9d9 \9; + background-image: none; + outline: 0; + -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); + -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); +} +.btn.disabled, +.btn[disabled] { + cursor: default; + background-color: #e6e6e6; + background-image: none; + opacity: 0.65; + filter: alpha(opacity=65); + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; +} +.btn-large { + padding: 9px 14px; + font-size: 16px; + line-height: normal; + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + border-radius: 5px; +} +.btn-large [class^="icon-"] { + margin-top: 2px; +} +.btn-small { + padding: 3px 9px; + font-size: 12px; + line-height: 18px; +} +.btn-small [class^="icon-"] { + margin-top: 0; +} +.btn-mini { + padding: 2px 6px; + font-size: 11px; + line-height: 17px; +} +.btn-block { + display: block; + width: 100%; + padding-left: 0; + padding-right: 0; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +.btn-block + .btn-block { + margin-top: 5px; +} +input[type="submit"].btn-block, +input[type="reset"].btn-block, +input[type="button"].btn-block { + width: 100%; +} +.btn-primary.active, +.btn-warning.active, +.btn-danger.active, +.btn-success.active, +.btn-info.active, +.btn-inverse.active { + color: rgba(255, 255, 255, 0.75); +} +.btn { + border-color: #c5c5c5; + border-color: rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.25); +} +.btn-primary { + color: #ffffff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + background-color: #006dcc; + background-image: -moz-linear-gradient(top, #0088cc, #0044cc); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc)); + background-image: -webkit-linear-gradient(top, #0088cc, #0044cc); + background-image: -o-linear-gradient(top, #0088cc, #0044cc); + background-image: linear-gradient(to bottom, #0088cc, #0044cc); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0); + border-color: #0044cc #0044cc #002a80; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + *background-color: #0044cc; + /* Darken IE7 buttons by default so they stand out more given they won't have borders */ + + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); +} +.btn-primary:hover, +.btn-primary:active, +.btn-primary.active, +.btn-primary.disabled, +.btn-primary[disabled] { + color: #ffffff; + background-color: #0044cc; + *background-color: #003bb3; +} +.btn-primary:active, +.btn-primary.active { + background-color: #003399 \9; +} +.btn-warning { + color: #ffffff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + background-color: #faa732; + background-image: -moz-linear-gradient(top, #fbb450, #f89406); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406)); + background-image: -webkit-linear-gradient(top, #fbb450, #f89406); + background-image: -o-linear-gradient(top, #fbb450, #f89406); + background-image: linear-gradient(to bottom, #fbb450, #f89406); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0); + border-color: #f89406 #f89406 #ad6704; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + *background-color: #f89406; + /* Darken IE7 buttons by default so they stand out more given they won't have borders */ + + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); +} +.btn-warning:hover, +.btn-warning:active, +.btn-warning.active, +.btn-warning.disabled, +.btn-warning[disabled] { + color: #ffffff; + background-color: #f89406; + *background-color: #df8505; +} +.btn-warning:active, +.btn-warning.active { + background-color: #c67605 \9; +} +.btn-danger { + color: #ffffff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + background-color: #da4f49; + background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f)); + background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f); + background-image: -o-linear-gradient(top, #ee5f5b, #bd362f); + background-image: linear-gradient(to bottom, #ee5f5b, #bd362f); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0); + border-color: #bd362f #bd362f #802420; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + *background-color: #bd362f; + /* Darken IE7 buttons by default so they stand out more given they won't have borders */ + + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); +} +.btn-danger:hover, +.btn-danger:active, +.btn-danger.active, +.btn-danger.disabled, +.btn-danger[disabled] { + color: #ffffff; + background-color: #bd362f; + *background-color: #a9302a; +} +.btn-danger:active, +.btn-danger.active { + background-color: #942a25 \9; +} +.btn-success { + color: #ffffff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + background-color: #5bb75b; + background-image: -moz-linear-gradient(top, #62c462, #51a351); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351)); + background-image: -webkit-linear-gradient(top, #62c462, #51a351); + background-image: -o-linear-gradient(top, #62c462, #51a351); + background-image: linear-gradient(to bottom, #62c462, #51a351); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0); + border-color: #51a351 #51a351 #387038; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + *background-color: #51a351; + /* Darken IE7 buttons by default so they stand out more given they won't have borders */ + + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); +} +.btn-success:hover, +.btn-success:active, +.btn-success.active, +.btn-success.disabled, +.btn-success[disabled] { + color: #ffffff; + background-color: #51a351; + *background-color: #499249; +} +.btn-success:active, +.btn-success.active { + background-color: #408140 \9; +} +.btn-info { + color: #ffffff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + background-color: #49afcd; + background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4)); + background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4); + background-image: -o-linear-gradient(top, #5bc0de, #2f96b4); + background-image: linear-gradient(to bottom, #5bc0de, #2f96b4); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0); + border-color: #2f96b4 #2f96b4 #1f6377; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + *background-color: #2f96b4; + /* Darken IE7 buttons by default so they stand out more given they won't have borders */ + + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); +} +.btn-info:hover, +.btn-info:active, +.btn-info.active, +.btn-info.disabled, +.btn-info[disabled] { + color: #ffffff; + background-color: #2f96b4; + *background-color: #2a85a0; +} +.btn-info:active, +.btn-info.active { + background-color: #24748c \9; +} +.btn-inverse { + color: #ffffff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + background-color: #363636; + background-image: -moz-linear-gradient(top, #444444, #222222); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222)); + background-image: -webkit-linear-gradient(top, #444444, #222222); + background-image: -o-linear-gradient(top, #444444, #222222); + background-image: linear-gradient(to bottom, #444444, #222222); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0); + border-color: #222222 #222222 #000000; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + *background-color: #222222; + /* Darken IE7 buttons by default so they stand out more given they won't have borders */ + + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); +} +.btn-inverse:hover, +.btn-inverse:active, +.btn-inverse.active, +.btn-inverse.disabled, +.btn-inverse[disabled] { + color: #ffffff; + background-color: #222222; + *background-color: #151515; +} +.btn-inverse:active, +.btn-inverse.active { + background-color: #080808 \9; +} +button.btn, +input[type="submit"].btn { + *padding-top: 3px; + *padding-bottom: 3px; +} +button.btn::-moz-focus-inner, +input[type="submit"].btn::-moz-focus-inner { + padding: 0; + border: 0; +} +button.btn.btn-large, +input[type="submit"].btn.btn-large { + *padding-top: 7px; + *padding-bottom: 7px; +} +button.btn.btn-small, +input[type="submit"].btn.btn-small { + *padding-top: 3px; + *padding-bottom: 3px; +} +button.btn.btn-mini, +input[type="submit"].btn.btn-mini { + *padding-top: 1px; + *padding-bottom: 1px; +} +.btn-link, +.btn-link:active, +.btn-link[disabled] { + background-color: transparent; + background-image: none; + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; +} +.btn-link { + border-color: transparent; + cursor: pointer; + color: #0088cc; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.btn-link:hover { + color: #005580; + text-decoration: underline; + background-color: transparent; +} +.btn-link[disabled]:hover { + color: #333333; + text-decoration: none; +} +.btn-group { + position: relative; + font-size: 0; + vertical-align: middle; + white-space: nowrap; + *margin-left: .3em; +} +.btn-group:first-child { + *margin-left: 0; +} +.btn-group + .btn-group { + margin-left: 5px; +} +.btn-toolbar { + font-size: 0; + margin-top: 10px; + margin-bottom: 10px; +} +.btn-toolbar .btn-group { + display: inline-block; + *display: inline; + /* IE7 inline-block hack */ + + *zoom: 1; +} +.btn-toolbar .btn + .btn, +.btn-toolbar .btn-group + .btn, +.btn-toolbar .btn + .btn-group { + margin-left: 5px; +} +.btn-group > .btn { + position: relative; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.btn-group > .btn + .btn { + margin-left: -1px; +} +.btn-group > .btn, +.btn-group > .dropdown-menu { + font-size: 14px; +} +.btn-group > .btn-mini { + font-size: 11px; +} +.btn-group > .btn-small { + font-size: 12px; +} +.btn-group > .btn-large { + font-size: 16px; +} +.btn-group > .btn:first-child { + margin-left: 0; + -webkit-border-top-left-radius: 4px; + -moz-border-radius-topleft: 4px; + border-top-left-radius: 4px; + -webkit-border-bottom-left-radius: 4px; + -moz-border-radius-bottomleft: 4px; + border-bottom-left-radius: 4px; +} +.btn-group > .btn:last-child, +.btn-group > .dropdown-toggle { + -webkit-border-top-right-radius: 4px; + -moz-border-radius-topright: 4px; + border-top-right-radius: 4px; + -webkit-border-bottom-right-radius: 4px; + -moz-border-radius-bottomright: 4px; + border-bottom-right-radius: 4px; +} +.btn-group > .btn.large:first-child { + margin-left: 0; + -webkit-border-top-left-radius: 6px; + -moz-border-radius-topleft: 6px; + border-top-left-radius: 6px; + -webkit-border-bottom-left-radius: 6px; + -moz-border-radius-bottomleft: 6px; + border-bottom-left-radius: 6px; +} +.btn-group > .btn.large:last-child, +.btn-group > .large.dropdown-toggle { + -webkit-border-top-right-radius: 6px; + -moz-border-radius-topright: 6px; + border-top-right-radius: 6px; + -webkit-border-bottom-right-radius: 6px; + -moz-border-radius-bottomright: 6px; + border-bottom-right-radius: 6px; +} +.btn-group > .btn:hover, +.btn-group > .btn:focus, +.btn-group > .btn:active, +.btn-group > .btn.active { + z-index: 2; +} +.btn-group .dropdown-toggle:active, +.btn-group.open .dropdown-toggle { + outline: 0; +} +.btn-group > .btn + .dropdown-toggle { + padding-left: 8px; + padding-right: 8px; + -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); + -moz-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); + box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); + *padding-top: 5px; + *padding-bottom: 5px; +} +.btn-group > .btn-mini + .dropdown-toggle { + padding-left: 5px; + padding-right: 5px; + *padding-top: 2px; + *padding-bottom: 2px; +} +.btn-group > .btn-small + .dropdown-toggle { + *padding-top: 5px; + *padding-bottom: 4px; +} +.btn-group > .btn-large + .dropdown-toggle { + padding-left: 12px; + padding-right: 12px; + *padding-top: 7px; + *padding-bottom: 7px; +} +.btn-group.open .dropdown-toggle { + background-image: none; + -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); + -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); +} +.btn-group.open .btn.dropdown-toggle { + background-color: #e6e6e6; +} +.btn-group.open .btn-primary.dropdown-toggle { + background-color: #0044cc; +} +.btn-group.open .btn-warning.dropdown-toggle { + background-color: #f89406; +} +.btn-group.open .btn-danger.dropdown-toggle { + background-color: #bd362f; +} +.btn-group.open .btn-success.dropdown-toggle { + background-color: #51a351; +} +.btn-group.open .btn-info.dropdown-toggle { + background-color: #2f96b4; +} +.btn-group.open .btn-inverse.dropdown-toggle { + background-color: #222222; +} +.btn .caret { + margin-top: 8px; + margin-left: 0; +} +.btn-mini .caret, +.btn-small .caret, +.btn-large .caret { + margin-top: 6px; +} +.btn-large .caret { + border-left-width: 5px; + border-right-width: 5px; + border-top-width: 5px; +} +.dropup .btn-large .caret { + border-bottom: 5px solid #000000; + border-top: 0; +} +.btn-primary .caret, +.btn-warning .caret, +.btn-danger .caret, +.btn-info .caret, +.btn-success .caret, +.btn-inverse .caret { + border-top-color: #ffffff; + border-bottom-color: #ffffff; +} +.btn-group-vertical { + display: inline-block; + *display: inline; + /* IE7 inline-block hack */ + + *zoom: 1; +} +.btn-group-vertical .btn { + display: block; + float: none; + width: 100%; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.btn-group-vertical .btn + .btn { + margin-left: 0; + margin-top: -1px; +} +.btn-group-vertical .btn:first-child { + -webkit-border-radius: 4px 4px 0 0; + -moz-border-radius: 4px 4px 0 0; + border-radius: 4px 4px 0 0; +} +.btn-group-vertical .btn:last-child { + -webkit-border-radius: 0 0 4px 4px; + -moz-border-radius: 0 0 4px 4px; + border-radius: 0 0 4px 4px; +} +.btn-group-vertical .btn-large:first-child { + -webkit-border-radius: 6px 6px 0 0; + -moz-border-radius: 6px 6px 0 0; + border-radius: 6px 6px 0 0; +} +.btn-group-vertical .btn-large:last-child { + -webkit-border-radius: 0 0 6px 6px; + -moz-border-radius: 0 0 6px 6px; + border-radius: 0 0 6px 6px; +} +.pagination { + height: 40px; + margin: 20px 0; +} +.pagination ul { + display: inline-block; + *display: inline; + /* IE7 inline-block hack */ + + *zoom: 1; + margin-left: 0; + margin-bottom: 0; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); + -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); +} +.pagination ul > li { + display: inline; +} +.pagination ul > li > a, +.pagination ul > li > span { + float: left; + padding: 0 14px; + line-height: 38px; + text-decoration: none; + background-color: #ffffff; + border: 1px solid #dddddd; + border-left-width: 0; +} +.pagination ul > li > a:hover, +.pagination ul > .active > a, +.pagination ul > .active > span { + background-color: #f5f5f5; +} +.pagination ul > .active > a, +.pagination ul > .active > span { + color: #999999; + cursor: default; +} +.pagination ul > .disabled > span, +.pagination ul > .disabled > a, +.pagination ul > .disabled > a:hover { + color: #999999; + background-color: transparent; + cursor: default; +} +.pagination ul > li:first-child > a, +.pagination ul > li:first-child > span { + border-left-width: 1px; + -webkit-border-radius: 3px 0 0 3px; + -moz-border-radius: 3px 0 0 3px; + border-radius: 3px 0 0 3px; +} +.pagination ul > li:last-child > a, +.pagination ul > li:last-child > span { + -webkit-border-radius: 0 3px 3px 0; + -moz-border-radius: 0 3px 3px 0; + border-radius: 0 3px 3px 0; +} +.pagination-centered { + text-align: center; +} +.pagination-right { + text-align: right; +} +.eb-container .nav { + margin-left: 0; + list-style: none; +} +.eb-container .nav > li > a { + display: block; +} +.eb-container .nav > li > a:hover { + text-decoration: none; + background-color: #eeeeee; +} +.eb-container .nav > .pull-right { + float: right; +} +.eb-container .nav-header { + display: block; + padding: 3px 15px; + font-size: 11px; + font-weight: bold; + line-height: 20px; + color: #999999; + text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); + text-transform: uppercase; +} +.eb-container .nav li + .nav-header { + margin-top: 9px; +} +.eb-container .nav-list { + padding-left: 15px; + padding-right: 15px; + margin-bottom: 0; +} +.eb-container .nav-list > li > a, +.eb-container .nav-list .nav-header { + margin-left: -15px; + margin-right: -15px; + text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); +} +.eb-container .nav-list > li > a { + padding: 3px 15px; +} +.eb-container .nav-list > .active > a, +.eb-container .nav-list > .active > a:hover { + color: #ffffff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2); + background-color: #0088cc; +} +.eb-container .nav-list [class^="icon-"] { + margin-right: 2px; +} +.eb-container .nav-list .divider { + *width: 100%; + height: 1px; + margin: 9px 1px; + *margin: -5px 0 5px; + overflow: hidden; + background-color: #e5e5e5; + border-bottom: 1px solid #ffffff; +} +.eb-container .nav-tabs, +.eb-container .nav-pills { + *zoom: 1; +} +.eb-container .nav-tabs:before, +.eb-container.nav-pills:before, +.eb-container .nav-tabs:after, +.eb-container .nav-pills:after { + display: table; + content: ""; + line-height: 0; +} +.eb-container .nav-tabs:after, +.eb-container .nav-pills:after { + clear: both; +} +.eb-container .nav-tabs > li, +.eb-container .nav-pills > li { + float: left; +} +.eb-container .nav-tabs > li > a, +.eb-container .nav-pills > li > a { + padding-right: 12px; + padding-left: 12px; + margin-right: 2px; + line-height: 14px; +} +.eb-container .nav-tabs { + border-bottom: 1px solid #ddd; +} +.eb-container .nav-tabs > li { + margin-bottom: -1px; +} +.eb-container .nav-tabs > li > a { + padding-top: 8px; + padding-bottom: 8px; + line-height: 20px; + border: 1px solid transparent; + -webkit-border-radius: 4px 4px 0 0; + -moz-border-radius: 4px 4px 0 0; + border-radius: 4px 4px 0 0; +} +.eb-container .nav-tabs > li > a:hover { + border-color: #eeeeee #eeeeee #dddddd; +} +.eb-container .nav-tabs > .active > a, +.eb-container .nav-tabs > .active > a:hover { + color: #555555; + background-color: #ffffff; + border: 1px solid #ddd; + border-bottom-color: transparent; + cursor: default; +} +.eb-container .nav-pills > li > a { + padding-top: 8px; + padding-bottom: 8px; + margin-top: 2px; + margin-bottom: 2px; + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + border-radius: 5px; +} +.eb-container .nav-pills > .active > a, +.eb-container .nav-pills > .active > a:hover { + color: #ffffff; + background-color: #0088cc; +} +.eb-container .nav-stacked > li { + float: none; +} +.eb-container .nav-stacked > li > a { + margin-right: 0; +} +.eb-container .nav-tabs.nav-stacked { + border-bottom: 0; +} +.eb-container .nav-tabs.nav-stacked > li > a { + border: 1px solid #ddd; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.eb-container .nav-tabs.nav-stacked > li:first-child > a { + -webkit-border-top-right-radius: 4px; + -moz-border-radius-topright: 4px; + border-top-right-radius: 4px; + -webkit-border-top-left-radius: 4px; + -moz-border-radius-topleft: 4px; + border-top-left-radius: 4px; +} +.eb-container .nav-tabs.nav-stacked > li:last-child > a { + -webkit-border-bottom-right-radius: 4px; + -moz-border-radius-bottomright: 4px; + border-bottom-right-radius: 4px; + -webkit-border-bottom-left-radius: 4px; + -moz-border-radius-bottomleft: 4px; + border-bottom-left-radius: 4px; +} +.eb-container .nav-tabs.nav-stacked > li > a:hover { + border-color: #ddd; + z-index: 2; +} +.eb-container .nav-pills.nav-stacked > li > a { + margin-bottom: 3px; +} +.eb-container .nav-pills.nav-stacked > li:last-child > a { + margin-bottom: 1px; +} +.eb-container .nav-tabs .dropdown-menu { + -webkit-border-radius: 0 0 6px 6px; + -moz-border-radius: 0 0 6px 6px; + border-radius: 0 0 6px 6px; +} +.eb-container .nav-pills .dropdown-menu { + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; +} +.eb-container .nav .dropdown-toggle .caret { + border-top-color: #0088cc; + border-bottom-color: #0088cc; + margin-top: 6px; +} +.eb-container .nav .dropdown-toggle:hover .caret { + border-top-color: #005580; + border-bottom-color: #005580; +} +/* move down carets for tabs */ +.eb-container .nav-tabs .dropdown-toggle .caret { + margin-top: 8px; +} +.eb-container .nav .active .dropdown-toggle .caret { + border-top-color: #fff; + border-bottom-color: #fff; +} +.nav-tabs .active .dropdown-toggle .caret { + border-top-color: #555555; + border-bottom-color: #555555; +} +.eb-container .nav > .dropdown.active > a:hover { + cursor: pointer; +} +.eb-container .nav-tabs .open .dropdown-toggle, +.eb-container .nav-pills .open .dropdown-toggle, +.eb-container .nav > li.dropdown.open.active > a:hover { + color: #ffffff; + background-color: #999999; + border-color: #999999; +} +.eb-container .nav li.dropdown.open .caret, +.eb-container .nav li.dropdown.open.active .caret, +.eb-container .nav li.dropdown.open a:hover .caret { + border-top-color: #ffffff; + border-bottom-color: #ffffff; + opacity: 1; + filter: alpha(opacity=100); +} +.eb-container .tabs-stacked .open > a:hover { + border-color: #999999; +} +.eb-container .tabbable { + *zoom: 1; +} +.eb-container .tabbable:before, +.eb-container .tabbable:after { + display: table; + content: ""; + line-height: 0; +} +.eb-container .tabbable:after { + clear: both; +} +.eb-container .tab-content { + overflow: auto; +} +.eb-container .tabs-below > .nav-tabs, +.eb-container .tabs-right > .nav-tabs, +.eb-container .tabs-left > .nav-tabs { + border-bottom: 0; +} +.eb-container .tab-content > .tab-pane, +.eb-container .pill-content > .pill-pane { + display: none; +} +.eb-container .tab-content > .active, +.eb-container .pill-content > .active { + display: block; +} +.eb-container .tabs-below > .nav-tabs { + border-top: 1px solid #ddd; +} +.eb-container .tabs-below > .nav-tabs > li { + margin-top: -1px; + margin-bottom: 0; +} +.eb-container .tabs-below > .nav-tabs > li > a { + -webkit-border-radius: 0 0 4px 4px; + -moz-border-radius: 0 0 4px 4px; + border-radius: 0 0 4px 4px; +} +.eb-container .tabs-below > .nav-tabs > li > a:hover { + border-bottom-color: transparent; + border-top-color: #ddd; +} +.eb-container .tabs-below > .nav-tabs > .active > a, +.eb-container .tabs-below > .nav-tabs > .active > a:hover { + border-color: transparent #ddd #ddd #ddd; +} +.eb-container .tabs-left > .nav-tabs > li, +.eb-container .tabs-right > .nav-tabs > li { + float: none; +} +.eb-container .tabs-left > .nav-tabs > li > a, +.eb-container .tabs-right > .nav-tabs > li > a { + min-width: 74px; + margin-right: 0; + margin-bottom: 3px; +} +.eb-container .tabs-left > .nav-tabs { + float: left; + margin-right: 19px; + border-right: 1px solid #ddd; +} +.eb-container .tabs-left > .nav-tabs > li > a { + margin-right: -1px; + -webkit-border-radius: 4px 0 0 4px; + -moz-border-radius: 4px 0 0 4px; + border-radius: 4px 0 0 4px; +} +.eb-container .tabs-left > .nav-tabs > li > a:hover { + border-color: #eeeeee #dddddd #eeeeee #eeeeee; +} +.eb-container .tabs-left > .nav-tabs .active > a, +.eb-container .tabs-left > .nav-tabs .active > a:hover { + border-color: #ddd transparent #ddd #ddd; + *border-right-color: #ffffff; +} +.eb-container .tabs-right > .nav-tabs { + float: right; + margin-left: 19px; + border-left: 1px solid #ddd; +} +.eb-container .tabs-right > .nav-tabs > li > a { + margin-left: -1px; + -webkit-border-radius: 0 4px 4px 0; + -moz-border-radius: 0 4px 4px 0; + border-radius: 0 4px 4px 0; +} +.eb-container .tabs-right > .nav-tabs > li > a:hover { + border-color: #eeeeee #eeeeee #eeeeee #dddddd; +} +.eb-container .tabs-right > .nav-tabs .active > a, +.eb-container .tabs-right > .nav-tabs .active > a:hover { + border-color: #ddd #ddd #ddd transparent; + *border-left-color: #ffffff; +} +.eb-container .nav > .disabled > a { + color: #999999; +} +.eb-container .nav > .disabled > a:hover { + text-decoration: none; + background-color: transparent; + cursor: default; +} +/**Custom css**/ +.eb-container ul.nav-tabs{ + padding: 0; + margin: 0 0 10px 0px; +} \ No newline at end of file diff --git a/style/default.css b/style/default.css new file mode 100644 index 0000000..9ca9c53 --- /dev/null +++ b/style/default.css @@ -0,0 +1,25 @@ +.beschreibung { + min-height: 2rem; + background-color: gainsboro; + padding: 1rem; + margin: 1rem; +} + +.produktlistitem { + margin-top: 0.5rem; + background-color: white; + transition: background-color 0.3s linear; + -o-transition: background-color 0.3s linear; + -webkit-transition: background-color 0.3s linear; + -moz-transition: background-color 0.3s linear; +} + +.produktlistitem a { + padding-left: 5px; + text-decoration: none; + color: black; +} + +.produktlistitem:hover { + background-color: gainsboro; +} \ No newline at end of file diff --git a/style/font-awesome.min.css b/style/font-awesome.min.css new file mode 100644 index 0000000..fc99fc9 --- /dev/null +++ b/style/font-awesome.min.css @@ -0,0 +1,3044 @@ +/*! + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */ + +@font-face { + font-family: 'FontAwesome'; + src: url('../fonts/fontawesome-webfont.eot?v=4.7.0'); + src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg'); + font-weight: normal; + font-style: normal +} + +.fa { + display: inline-block; + font: normal normal normal 14px/1 FontAwesome; + font-size: inherit; + text-rendering: auto; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale +} + +.fa-lg { + font-size: 1.33333333em; + line-height: .75em; + vertical-align: -15% +} + +.fa-2x { + font-size: 2em +} + +.fa-3x { + font-size: 3em +} + +.fa-4x { + font-size: 4em +} + +.fa-5x { + font-size: 5em +} + +.fa-fw { + width: 1.28571429em; + text-align: center +} + +.fa-ul { + padding-left: 0; + margin-left: 2.14285714em; + list-style-type: none +} + +.fa-ul>li { + position: relative +} + +.fa-li { + position: absolute; + left: -2.14285714em; + width: 2.14285714em; + top: .14285714em; + text-align: center +} + +.fa-li.fa-lg { + left: -1.85714286em +} + +.fa-border { + padding: .2em .25em .15em; + border: solid .08em #eee; + border-radius: .1em +} + +.fa-pull-left { + float: left +} + +.fa-pull-right { + float: right +} + +.fa.fa-pull-left { + margin-right: .3em +} + +.fa.fa-pull-right { + margin-left: .3em +} + +.pull-right { + float: right +} + +.pull-left { + float: left +} + +.fa.pull-left { + margin-right: .3em +} + +.fa.pull-right { + margin-left: .3em +} + +.fa-spin { + -webkit-animation: fa-spin 2s infinite linear; + animation: fa-spin 2s infinite linear +} + +.fa-pulse { + -webkit-animation: fa-spin 1s infinite steps(8); + animation: fa-spin 1s infinite steps(8) +} + +@-webkit-keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg) + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg) + } +} + +@keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg) + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg) + } +} + +.fa-rotate-90 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; + -webkit-transform: rotate(90deg); + -ms-transform: rotate(90deg); + transform: rotate(90deg) +} + +.fa-rotate-180 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; + -webkit-transform: rotate(180deg); + -ms-transform: rotate(180deg); + transform: rotate(180deg) +} + +.fa-rotate-270 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; + -webkit-transform: rotate(270deg); + -ms-transform: rotate(270deg); + transform: rotate(270deg) +} + +.fa-flip-horizontal { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; + -webkit-transform: scale(-1, 1); + -ms-transform: scale(-1, 1); + transform: scale(-1, 1) +} + +.fa-flip-vertical { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + -webkit-transform: scale(1, -1); + -ms-transform: scale(1, -1); + transform: scale(1, -1) +} + +:root .fa-rotate-90, +:root .fa-rotate-180, +:root .fa-rotate-270, +:root .fa-flip-horizontal, +:root .fa-flip-vertical { + filter: none +} + +.fa-stack { + position: relative; + display: inline-block; + width: 2em; + height: 2em; + line-height: 2em; + vertical-align: middle +} + +.fa-stack-1x, +.fa-stack-2x { + position: absolute; + left: 0; + width: 100%; + text-align: center +} + +.fa-stack-1x { + line-height: inherit +} + +.fa-stack-2x { + font-size: 2em +} + +.fa-inverse { + color: #fff +} + +.fa-glass:before { + content: "\f000" +} + +.fa-music:before { + content: "\f001" +} + +.fa-search:before { + content: "\f002" +} + +.fa-envelope-o:before { + content: "\f003" +} + +.fa-heart:before { + content: "\f004" +} + +.fa-star:before { + content: "\f005" +} + +.fa-star-o:before { + content: "\f006" +} + +.fa-user:before { + content: "\f007" +} + +.fa-film:before { + content: "\f008" +} + +.fa-th-large:before { + content: "\f009" +} + +.fa-th:before { + content: "\f00a" +} + +.fa-th-list:before { + content: "\f00b" +} + +.fa-check:before { + content: "\f00c" +} + +.fa-remove:before, +.fa-close:before, +.fa-times:before { + content: "\f00d" +} + +.fa-search-plus:before { + content: "\f00e" +} + +.fa-search-minus:before { + content: "\f010" +} + +.fa-power-off:before { + content: "\f011" +} + +.fa-signal:before { + content: "\f012" +} + +.fa-gear:before, +.fa-cog:before { + content: "\f013" +} + +.fa-trash-o:before { + content: "\f014" +} + +.fa-home:before { + content: "\f015" +} + +.fa-file-o:before { + content: "\f016" +} + +.fa-clock-o:before { + content: "\f017" +} + +.fa-road:before { + content: "\f018" +} + +.fa-download:before { + content: "\f019" +} + +.fa-arrow-circle-o-down:before { + content: "\f01a" +} + +.fa-arrow-circle-o-up:before { + content: "\f01b" +} + +.fa-inbox:before { + content: "\f01c" +} + +.fa-play-circle-o:before { + content: "\f01d" +} + +.fa-rotate-right:before, +.fa-repeat:before { + content: "\f01e" +} + +.fa-refresh:before { + content: "\f021" +} + +.fa-list-alt:before { + content: "\f022" +} + +.fa-lock:before { + content: "\f023" +} + +.fa-flag:before { + content: "\f024" +} + +.fa-headphones:before { + content: "\f025" +} + +.fa-volume-off:before { + content: "\f026" +} + +.fa-volume-down:before { + content: "\f027" +} + +.fa-volume-up:before { + content: "\f028" +} + +.fa-qrcode:before { + content: "\f029" +} + +.fa-barcode:before { + content: "\f02a" +} + +.fa-tag:before { + content: "\f02b" +} + +.fa-tags:before { + content: "\f02c" +} + +.fa-book:before { + content: "\f02d" +} + +.fa-bookmark:before { + content: "\f02e" +} + +.fa-print:before { + content: "\f02f" +} + +.fa-camera:before { + content: "\f030" +} + +.fa-font:before { + content: "\f031" +} + +.fa-bold:before { + content: "\f032" +} + +.fa-italic:before { + content: "\f033" +} + +.fa-text-height:before { + content: "\f034" +} + +.fa-text-width:before { + content: "\f035" +} + +.fa-align-left:before { + content: "\f036" +} + +.fa-align-center:before { + content: "\f037" +} + +.fa-align-right:before { + content: "\f038" +} + +.fa-align-justify:before { + content: "\f039" +} + +.fa-list:before { + content: "\f03a" +} + +.fa-dedent:before, +.fa-outdent:before { + content: "\f03b" +} + +.fa-indent:before { + content: "\f03c" +} + +.fa-video-camera:before { + content: "\f03d" +} + +.fa-photo:before, +.fa-image:before, +.fa-picture-o:before { + content: "\f03e" +} + +.fa-pencil:before { + content: "\f040" +} + +.fa-map-marker:before { + content: "\f041" +} + +.fa-adjust:before { + content: "\f042" +} + +.fa-tint:before { + content: "\f043" +} + +.fa-edit:before, +.fa-pencil-square-o:before { + content: "\f044" +} + +.fa-share-square-o:before { + content: "\f045" +} + +.fa-check-square-o:before { + content: "\f046" +} + +.fa-arrows:before { + content: "\f047" +} + +.fa-step-backward:before { + content: "\f048" +} + +.fa-fast-backward:before { + content: "\f049" +} + +.fa-backward:before { + content: "\f04a" +} + +.fa-play:before { + content: "\f04b" +} + +.fa-pause:before { + content: "\f04c" +} + +.fa-stop:before { + content: "\f04d" +} + +.fa-forward:before { + content: "\f04e" +} + +.fa-fast-forward:before { + content: "\f050" +} + +.fa-step-forward:before { + content: "\f051" +} + +.fa-eject:before { + content: "\f052" +} + +.fa-chevron-left:before { + content: "\f053" +} + +.fa-chevron-right:before { + content: "\f054" +} + +.fa-plus-circle:before { + content: "\f055" +} + +.fa-minus-circle:before { + content: "\f056" +} + +.fa-times-circle:before { + content: "\f057" +} + +.fa-check-circle:before { + content: "\f058" +} + +.fa-question-circle:before { + content: "\f059" +} + +.fa-info-circle:before { + content: "\f05a" +} + +.fa-crosshairs:before { + content: "\f05b" +} + +.fa-times-circle-o:before { + content: "\f05c" +} + +.fa-check-circle-o:before { + content: "\f05d" +} + +.fa-ban:before { + content: "\f05e" +} + +.fa-arrow-left:before { + content: "\f060" +} + +.fa-arrow-right:before { + content: "\f061" +} + +.fa-arrow-up:before { + content: "\f062" +} + +.fa-arrow-down:before { + content: "\f063" +} + +.fa-mail-forward:before, +.fa-share:before { + content: "\f064" +} + +.fa-expand:before { + content: "\f065" +} + +.fa-compress:before { + content: "\f066" +} + +.fa-plus:before { + content: "\f067" +} + +.fa-minus:before { + content: "\f068" +} + +.fa-asterisk:before { + content: "\f069" +} + +.fa-exclamation-circle:before { + content: "\f06a" +} + +.fa-gift:before { + content: "\f06b" +} + +.fa-leaf:before { + content: "\f06c" +} + +.fa-fire:before { + content: "\f06d" +} + +.fa-eye:before { + content: "\f06e" +} + +.fa-eye-slash:before { + content: "\f070" +} + +.fa-warning:before, +.fa-exclamation-triangle:before { + content: "\f071" +} + +.fa-plane:before { + content: "\f072" +} + +.fa-calendar:before { + content: "\f073" +} + +.fa-random:before { + content: "\f074" +} + +.fa-comment:before { + content: "\f075" +} + +.fa-magnet:before { + content: "\f076" +} + +.fa-chevron-up:before { + content: "\f077" +} + +.fa-chevron-down:before { + content: "\f078" +} + +.fa-retweet:before { + content: "\f079" +} + +.fa-shopping-cart:before { + content: "\f07a" +} + +.fa-folder:before { + content: "\f07b" +} + +.fa-folder-open:before { + content: "\f07c" +} + +.fa-arrows-v:before { + content: "\f07d" +} + +.fa-arrows-h:before { + content: "\f07e" +} + +.fa-bar-chart-o:before, +.fa-bar-chart:before { + content: "\f080" +} + +.fa-twitter-square:before { + content: "\f081" +} + +.fa-facebook-square:before { + content: "\f082" +} + +.fa-camera-retro:before { + content: "\f083" +} + +.fa-key:before { + content: "\f084" +} + +.fa-gears:before, +.fa-cogs:before { + content: "\f085" +} + +.fa-comments:before { + content: "\f086" +} + +.fa-thumbs-o-up:before { + content: "\f087" +} + +.fa-thumbs-o-down:before { + content: "\f088" +} + +.fa-star-half:before { + content: "\f089" +} + +.fa-heart-o:before { + content: "\f08a" +} + +.fa-sign-out:before { + content: "\f08b" +} + +.fa-linkedin-square:before { + content: "\f08c" +} + +.fa-thumb-tack:before { + content: "\f08d" +} + +.fa-external-link:before { + content: "\f08e" +} + +.fa-sign-in:before { + content: "\f090" +} + +.fa-trophy:before { + content: "\f091" +} + +.fa-github-square:before { + content: "\f092" +} + +.fa-upload:before { + content: "\f093" +} + +.fa-lemon-o:before { + content: "\f094" +} + +.fa-phone:before { + content: "\f095" +} + +.fa-square-o:before { + content: "\f096" +} + +.fa-bookmark-o:before { + content: "\f097" +} + +.fa-phone-square:before { + content: "\f098" +} + +.fa-twitter:before { + content: "\f099" +} + +.fa-facebook-f:before, +.fa-facebook:before { + content: "\f09a" +} + +.fa-github:before { + content: "\f09b" +} + +.fa-unlock:before { + content: "\f09c" +} + +.fa-credit-card:before { + content: "\f09d" +} + +.fa-feed:before, +.fa-rss:before { + content: "\f09e" +} + +.fa-hdd-o:before { + content: "\f0a0" +} + +.fa-bullhorn:before { + content: "\f0a1" +} + +.fa-bell:before { + content: "\f0f3" +} + +.fa-certificate:before { + content: "\f0a3" +} + +.fa-hand-o-right:before { + content: "\f0a4" +} + +.fa-hand-o-left:before { + content: "\f0a5" +} + +.fa-hand-o-up:before { + content: "\f0a6" +} + +.fa-hand-o-down:before { + content: "\f0a7" +} + +.fa-arrow-circle-left:before { + content: "\f0a8" +} + +.fa-arrow-circle-right:before { + content: "\f0a9" +} + +.fa-arrow-circle-up:before { + content: "\f0aa" +} + +.fa-arrow-circle-down:before { + content: "\f0ab" +} + +.fa-globe:before { + content: "\f0ac" +} + +.fa-wrench:before { + content: "\f0ad" +} + +.fa-tasks:before { + content: "\f0ae" +} + +.fa-filter:before { + content: "\f0b0" +} + +.fa-briefcase:before { + content: "\f0b1" +} + +.fa-arrows-alt:before { + content: "\f0b2" +} + +.fa-group:before, +.fa-users:before { + content: "\f0c0" +} + +.fa-chain:before, +.fa-link:before { + content: "\f0c1" +} + +.fa-cloud:before { + content: "\f0c2" +} + +.fa-flask:before { + content: "\f0c3" +} + +.fa-cut:before, +.fa-scissors:before { + content: "\f0c4" +} + +.fa-copy:before, +.fa-files-o:before { + content: "\f0c5" +} + +.fa-paperclip:before { + content: "\f0c6" +} + +.fa-save:before, +.fa-floppy-o:before { + content: "\f0c7" +} + +.fa-square:before { + content: "\f0c8" +} + +.fa-navicon:before, +.fa-reorder:before, +.fa-bars:before { + content: "\f0c9" +} + +.fa-list-ul:before { + content: "\f0ca" +} + +.fa-list-ol:before { + content: "\f0cb" +} + +.fa-strikethrough:before { + content: "\f0cc" +} + +.fa-underline:before { + content: "\f0cd" +} + +.fa-table:before { + content: "\f0ce" +} + +.fa-magic:before { + content: "\f0d0" +} + +.fa-truck:before { + content: "\f0d1" +} + +.fa-pinterest:before { + content: "\f0d2" +} + +.fa-pinterest-square:before { + content: "\f0d3" +} + +.fa-google-plus-square:before { + content: "\f0d4" +} + +.fa-google-plus:before { + content: "\f0d5" +} + +.fa-money:before { + content: "\f0d6" +} + +.fa-caret-down:before { + content: "\f0d7" +} + +.fa-caret-up:before { + content: "\f0d8" +} + +.fa-caret-left:before { + content: "\f0d9" +} + +.fa-caret-right:before { + content: "\f0da" +} + +.fa-columns:before { + content: "\f0db" +} + +.fa-unsorted:before, +.fa-sort:before { + content: "\f0dc" +} + +.fa-sort-down:before, +.fa-sort-desc:before { + content: "\f0dd" +} + +.fa-sort-up:before, +.fa-sort-asc:before { + content: "\f0de" +} + +.fa-envelope:before { + content: "\f0e0" +} + +.fa-linkedin:before { + content: "\f0e1" +} + +.fa-rotate-left:before, +.fa-undo:before { + content: "\f0e2" +} + +.fa-legal:before, +.fa-gavel:before { + content: "\f0e3" +} + +.fa-dashboard:before, +.fa-tachometer:before { + content: "\f0e4" +} + +.fa-comment-o:before { + content: "\f0e5" +} + +.fa-comments-o:before { + content: "\f0e6" +} + +.fa-flash:before, +.fa-bolt:before { + content: "\f0e7" +} + +.fa-sitemap:before { + content: "\f0e8" +} + +.fa-umbrella:before { + content: "\f0e9" +} + +.fa-paste:before, +.fa-clipboard:before { + content: "\f0ea" +} + +.fa-lightbulb-o:before { + content: "\f0eb" +} + +.fa-exchange:before { + content: "\f0ec" +} + +.fa-cloud-download:before { + content: "\f0ed" +} + +.fa-cloud-upload:before { + content: "\f0ee" +} + +.fa-user-md:before { + content: "\f0f0" +} + +.fa-stethoscope:before { + content: "\f0f1" +} + +.fa-suitcase:before { + content: "\f0f2" +} + +.fa-bell-o:before { + content: "\f0a2" +} + +.fa-coffee:before { + content: "\f0f4" +} + +.fa-cutlery:before { + content: "\f0f5" +} + +.fa-file-text-o:before { + content: "\f0f6" +} + +.fa-building-o:before { + content: "\f0f7" +} + +.fa-hospital-o:before { + content: "\f0f8" +} + +.fa-ambulance:before { + content: "\f0f9" +} + +.fa-medkit:before { + content: "\f0fa" +} + +.fa-fighter-jet:before { + content: "\f0fb" +} + +.fa-beer:before { + content: "\f0fc" +} + +.fa-h-square:before { + content: "\f0fd" +} + +.fa-plus-square:before { + content: "\f0fe" +} + +.fa-angle-double-left:before { + content: "\f100" +} + +.fa-angle-double-right:before { + content: "\f101" +} + +.fa-angle-double-up:before { + content: "\f102" +} + +.fa-angle-double-down:before { + content: "\f103" +} + +.fa-angle-left:before { + content: "\f104" +} + +.fa-angle-right:before { + content: "\f105" +} + +.fa-angle-up:before { + content: "\f106" +} + +.fa-angle-down:before { + content: "\f107" +} + +.fa-desktop:before { + content: "\f108" +} + +.fa-laptop:before { + content: "\f109" +} + +.fa-tablet:before { + content: "\f10a" +} + +.fa-mobile-phone:before, +.fa-mobile:before { + content: "\f10b" +} + +.fa-circle-o:before { + content: "\f10c" +} + +.fa-quote-left:before { + content: "\f10d" +} + +.fa-quote-right:before { + content: "\f10e" +} + +.fa-spinner:before { + content: "\f110" +} + +.fa-circle:before { + content: "\f111" +} + +.fa-mail-reply:before, +.fa-reply:before { + content: "\f112" +} + +.fa-github-alt:before { + content: "\f113" +} + +.fa-folder-o:before { + content: "\f114" +} + +.fa-folder-open-o:before { + content: "\f115" +} + +.fa-smile-o:before { + content: "\f118" +} + +.fa-frown-o:before { + content: "\f119" +} + +.fa-meh-o:before { + content: "\f11a" +} + +.fa-gamepad:before { + content: "\f11b" +} + +.fa-keyboard-o:before { + content: "\f11c" +} + +.fa-flag-o:before { + content: "\f11d" +} + +.fa-flag-checkered:before { + content: "\f11e" +} + +.fa-terminal:before { + content: "\f120" +} + +.fa-code:before { + content: "\f121" +} + +.fa-mail-reply-all:before, +.fa-reply-all:before { + content: "\f122" +} + +.fa-star-half-empty:before, +.fa-star-half-full:before, +.fa-star-half-o:before { + content: "\f123" +} + +.fa-location-arrow:before { + content: "\f124" +} + +.fa-crop:before { + content: "\f125" +} + +.fa-code-fork:before { + content: "\f126" +} + +.fa-unlink:before, +.fa-chain-broken:before { + content: "\f127" +} + +.fa-question:before { + content: "\f128" +} + +.fa-info:before { + content: "\f129" +} + +.fa-exclamation:before { + content: "\f12a" +} + +.fa-superscript:before { + content: "\f12b" +} + +.fa-subscript:before { + content: "\f12c" +} + +.fa-eraser:before { + content: "\f12d" +} + +.fa-puzzle-piece:before { + content: "\f12e" +} + +.fa-microphone:before { + content: "\f130" +} + +.fa-microphone-slash:before { + content: "\f131" +} + +.fa-shield:before { + content: "\f132" +} + +.fa-calendar-o:before { + content: "\f133" +} + +.fa-fire-extinguisher:before { + content: "\f134" +} + +.fa-rocket:before { + content: "\f135" +} + +.fa-maxcdn:before { + content: "\f136" +} + +.fa-chevron-circle-left:before { + content: "\f137" +} + +.fa-chevron-circle-right:before { + content: "\f138" +} + +.fa-chevron-circle-up:before { + content: "\f139" +} + +.fa-chevron-circle-down:before { + content: "\f13a" +} + +.fa-html5:before { + content: "\f13b" +} + +.fa-css3:before { + content: "\f13c" +} + +.fa-anchor:before { + content: "\f13d" +} + +.fa-unlock-alt:before { + content: "\f13e" +} + +.fa-bullseye:before { + content: "\f140" +} + +.fa-ellipsis-h:before { + content: "\f141" +} + +.fa-ellipsis-v:before { + content: "\f142" +} + +.fa-rss-square:before { + content: "\f143" +} + +.fa-play-circle:before { + content: "\f144" +} + +.fa-ticket:before { + content: "\f145" +} + +.fa-minus-square:before { + content: "\f146" +} + +.fa-minus-square-o:before { + content: "\f147" +} + +.fa-level-up:before { + content: "\f148" +} + +.fa-level-down:before { + content: "\f149" +} + +.fa-check-square:before { + content: "\f14a" +} + +.fa-pencil-square:before { + content: "\f14b" +} + +.fa-external-link-square:before { + content: "\f14c" +} + +.fa-share-square:before { + content: "\f14d" +} + +.fa-compass:before { + content: "\f14e" +} + +.fa-toggle-down:before, +.fa-caret-square-o-down:before { + content: "\f150" +} + +.fa-toggle-up:before, +.fa-caret-square-o-up:before { + content: "\f151" +} + +.fa-toggle-right:before, +.fa-caret-square-o-right:before { + content: "\f152" +} + +.fa-euro:before, +.fa-eur:before { + content: "\f153" +} + +.fa-gbp:before { + content: "\f154" +} + +.fa-dollar:before, +.fa-usd:before { + content: "\f155" +} + +.fa-rupee:before, +.fa-inr:before { + content: "\f156" +} + +.fa-cny:before, +.fa-rmb:before, +.fa-yen:before, +.fa-jpy:before { + content: "\f157" +} + +.fa-ruble:before, +.fa-rouble:before, +.fa-rub:before { + content: "\f158" +} + +.fa-won:before, +.fa-krw:before { + content: "\f159" +} + +.fa-bitcoin:before, +.fa-btc:before { + content: "\f15a" +} + +.fa-file:before { + content: "\f15b" +} + +.fa-file-text:before { + content: "\f15c" +} + +.fa-sort-alpha-asc:before { + content: "\f15d" +} + +.fa-sort-alpha-desc:before { + content: "\f15e" +} + +.fa-sort-amount-asc:before { + content: "\f160" +} + +.fa-sort-amount-desc:before { + content: "\f161" +} + +.fa-sort-numeric-asc:before { + content: "\f162" +} + +.fa-sort-numeric-desc:before { + content: "\f163" +} + +.fa-thumbs-up:before { + content: "\f164" +} + +.fa-thumbs-down:before { + content: "\f165" +} + +.fa-youtube-square:before { + content: "\f166" +} + +.fa-youtube:before { + content: "\f167" +} + +.fa-xing:before { + content: "\f168" +} + +.fa-xing-square:before { + content: "\f169" +} + +.fa-youtube-play:before { + content: "\f16a" +} + +.fa-dropbox:before { + content: "\f16b" +} + +.fa-stack-overflow:before { + content: "\f16c" +} + +.fa-instagram:before { + content: "\f16d" +} + +.fa-flickr:before { + content: "\f16e" +} + +.fa-adn:before { + content: "\f170" +} + +.fa-bitbucket:before { + content: "\f171" +} + +.fa-bitbucket-square:before { + content: "\f172" +} + +.fa-tumblr:before { + content: "\f173" +} + +.fa-tumblr-square:before { + content: "\f174" +} + +.fa-long-arrow-down:before { + content: "\f175" +} + +.fa-long-arrow-up:before { + content: "\f176" +} + +.fa-long-arrow-left:before { + content: "\f177" +} + +.fa-long-arrow-right:before { + content: "\f178" +} + +.fa-apple:before { + content: "\f179" +} + +.fa-windows:before { + content: "\f17a" +} + +.fa-android:before { + content: "\f17b" +} + +.fa-linux:before { + content: "\f17c" +} + +.fa-dribbble:before { + content: "\f17d" +} + +.fa-skype:before { + content: "\f17e" +} + +.fa-foursquare:before { + content: "\f180" +} + +.fa-trello:before { + content: "\f181" +} + +.fa-female:before { + content: "\f182" +} + +.fa-male:before { + content: "\f183" +} + +.fa-gittip:before, +.fa-gratipay:before { + content: "\f184" +} + +.fa-sun-o:before { + content: "\f185" +} + +.fa-moon-o:before { + content: "\f186" +} + +.fa-archive:before { + content: "\f187" +} + +.fa-bug:before { + content: "\f188" +} + +.fa-vk:before { + content: "\f189" +} + +.fa-weibo:before { + content: "\f18a" +} + +.fa-renren:before { + content: "\f18b" +} + +.fa-pagelines:before { + content: "\f18c" +} + +.fa-stack-exchange:before { + content: "\f18d" +} + +.fa-arrow-circle-o-right:before { + content: "\f18e" +} + +.fa-arrow-circle-o-left:before { + content: "\f190" +} + +.fa-toggle-left:before, +.fa-caret-square-o-left:before { + content: "\f191" +} + +.fa-dot-circle-o:before { + content: "\f192" +} + +.fa-wheelchair:before { + content: "\f193" +} + +.fa-vimeo-square:before { + content: "\f194" +} + +.fa-turkish-lira:before, +.fa-try:before { + content: "\f195" +} + +.fa-plus-square-o:before { + content: "\f196" +} + +.fa-space-shuttle:before { + content: "\f197" +} + +.fa-slack:before { + content: "\f198" +} + +.fa-envelope-square:before { + content: "\f199" +} + +.fa-wordpress:before { + content: "\f19a" +} + +.fa-openid:before { + content: "\f19b" +} + +.fa-institution:before, +.fa-bank:before, +.fa-university:before { + content: "\f19c" +} + +.fa-mortar-board:before, +.fa-graduation-cap:before { + content: "\f19d" +} + +.fa-yahoo:before { + content: "\f19e" +} + +.fa-google:before { + content: "\f1a0" +} + +.fa-reddit:before { + content: "\f1a1" +} + +.fa-reddit-square:before { + content: "\f1a2" +} + +.fa-stumbleupon-circle:before { + content: "\f1a3" +} + +.fa-stumbleupon:before { + content: "\f1a4" +} + +.fa-delicious:before { + content: "\f1a5" +} + +.fa-digg:before { + content: "\f1a6" +} + +.fa-pied-piper-pp:before { + content: "\f1a7" +} + +.fa-pied-piper-alt:before { + content: "\f1a8" +} + +.fa-drupal:before { + content: "\f1a9" +} + +.fa-joomla:before { + content: "\f1aa" +} + +.fa-language:before { + content: "\f1ab" +} + +.fa-fax:before { + content: "\f1ac" +} + +.fa-building:before { + content: "\f1ad" +} + +.fa-child:before { + content: "\f1ae" +} + +.fa-paw:before { + content: "\f1b0" +} + +.fa-spoon:before { + content: "\f1b1" +} + +.fa-cube:before { + content: "\f1b2" +} + +.fa-cubes:before { + content: "\f1b3" +} + +.fa-behance:before { + content: "\f1b4" +} + +.fa-behance-square:before { + content: "\f1b5" +} + +.fa-steam:before { + content: "\f1b6" +} + +.fa-steam-square:before { + content: "\f1b7" +} + +.fa-recycle:before { + content: "\f1b8" +} + +.fa-automobile:before, +.fa-car:before { + content: "\f1b9" +} + +.fa-cab:before, +.fa-taxi:before { + content: "\f1ba" +} + +.fa-tree:before { + content: "\f1bb" +} + +.fa-spotify:before { + content: "\f1bc" +} + +.fa-deviantart:before { + content: "\f1bd" +} + +.fa-soundcloud:before { + content: "\f1be" +} + +.fa-database:before { + content: "\f1c0" +} + +.fa-file-pdf-o:before { + content: "\f1c1" +} + +.fa-file-word-o:before { + content: "\f1c2" +} + +.fa-file-excel-o:before { + content: "\f1c3" +} + +.fa-file-powerpoint-o:before { + content: "\f1c4" +} + +.fa-file-photo-o:before, +.fa-file-picture-o:before, +.fa-file-image-o:before { + content: "\f1c5" +} + +.fa-file-zip-o:before, +.fa-file-archive-o:before { + content: "\f1c6" +} + +.fa-file-sound-o:before, +.fa-file-audio-o:before { + content: "\f1c7" +} + +.fa-file-movie-o:before, +.fa-file-video-o:before { + content: "\f1c8" +} + +.fa-file-code-o:before { + content: "\f1c9" +} + +.fa-vine:before { + content: "\f1ca" +} + +.fa-codepen:before { + content: "\f1cb" +} + +.fa-jsfiddle:before { + content: "\f1cc" +} + +.fa-life-bouy:before, +.fa-life-buoy:before, +.fa-life-saver:before, +.fa-support:before, +.fa-life-ring:before { + content: "\f1cd" +} + +.fa-circle-o-notch:before { + content: "\f1ce" +} + +.fa-ra:before, +.fa-resistance:before, +.fa-rebel:before { + content: "\f1d0" +} + +.fa-ge:before, +.fa-empire:before { + content: "\f1d1" +} + +.fa-git-square:before { + content: "\f1d2" +} + +.fa-git:before { + content: "\f1d3" +} + +.fa-y-combinator-square:before, +.fa-yc-square:before, +.fa-hacker-news:before { + content: "\f1d4" +} + +.fa-tencent-weibo:before { + content: "\f1d5" +} + +.fa-qq:before { + content: "\f1d6" +} + +.fa-wechat:before, +.fa-weixin:before { + content: "\f1d7" +} + +.fa-send:before, +.fa-paper-plane:before { + content: "\f1d8" +} + +.fa-send-o:before, +.fa-paper-plane-o:before { + content: "\f1d9" +} + +.fa-history:before { + content: "\f1da" +} + +.fa-circle-thin:before { + content: "\f1db" +} + +.fa-header:before { + content: "\f1dc" +} + +.fa-paragraph:before { + content: "\f1dd" +} + +.fa-sliders:before { + content: "\f1de" +} + +.fa-share-alt:before { + content: "\f1e0" +} + +.fa-share-alt-square:before { + content: "\f1e1" +} + +.fa-bomb:before { + content: "\f1e2" +} + +.fa-soccer-ball-o:before, +.fa-futbol-o:before { + content: "\f1e3" +} + +.fa-tty:before { + content: "\f1e4" +} + +.fa-binoculars:before { + content: "\f1e5" +} + +.fa-plug:before { + content: "\f1e6" +} + +.fa-slideshare:before { + content: "\f1e7" +} + +.fa-twitch:before { + content: "\f1e8" +} + +.fa-yelp:before { + content: "\f1e9" +} + +.fa-newspaper-o:before { + content: "\f1ea" +} + +.fa-wifi:before { + content: "\f1eb" +} + +.fa-calculator:before { + content: "\f1ec" +} + +.fa-paypal:before { + content: "\f1ed" +} + +.fa-google-wallet:before { + content: "\f1ee" +} + +.fa-cc-visa:before { + content: "\f1f0" +} + +.fa-cc-mastercard:before { + content: "\f1f1" +} + +.fa-cc-discover:before { + content: "\f1f2" +} + +.fa-cc-amex:before { + content: "\f1f3" +} + +.fa-cc-paypal:before { + content: "\f1f4" +} + +.fa-cc-stripe:before { + content: "\f1f5" +} + +.fa-bell-slash:before { + content: "\f1f6" +} + +.fa-bell-slash-o:before { + content: "\f1f7" +} + +.fa-trash:before { + content: "\f1f8" +} + +.fa-copyright:before { + content: "\f1f9" +} + +.fa-at:before { + content: "\f1fa" +} + +.fa-eyedropper:before { + content: "\f1fb" +} + +.fa-paint-brush:before { + content: "\f1fc" +} + +.fa-birthday-cake:before { + content: "\f1fd" +} + +.fa-area-chart:before { + content: "\f1fe" +} + +.fa-pie-chart:before { + content: "\f200" +} + +.fa-line-chart:before { + content: "\f201" +} + +.fa-lastfm:before { + content: "\f202" +} + +.fa-lastfm-square:before { + content: "\f203" +} + +.fa-toggle-off:before { + content: "\f204" +} + +.fa-toggle-on:before { + content: "\f205" +} + +.fa-bicycle:before { + content: "\f206" +} + +.fa-bus:before { + content: "\f207" +} + +.fa-ioxhost:before { + content: "\f208" +} + +.fa-angellist:before { + content: "\f209" +} + +.fa-cc:before { + content: "\f20a" +} + +.fa-shekel:before, +.fa-sheqel:before, +.fa-ils:before { + content: "\f20b" +} + +.fa-meanpath:before { + content: "\f20c" +} + +.fa-buysellads:before { + content: "\f20d" +} + +.fa-connectdevelop:before { + content: "\f20e" +} + +.fa-dashcube:before { + content: "\f210" +} + +.fa-forumbee:before { + content: "\f211" +} + +.fa-leanpub:before { + content: "\f212" +} + +.fa-sellsy:before { + content: "\f213" +} + +.fa-shirtsinbulk:before { + content: "\f214" +} + +.fa-simplybuilt:before { + content: "\f215" +} + +.fa-skyatlas:before { + content: "\f216" +} + +.fa-cart-plus:before { + content: "\f217" +} + +.fa-cart-arrow-down:before { + content: "\f218" +} + +.fa-diamond:before { + content: "\f219" +} + +.fa-ship:before { + content: "\f21a" +} + +.fa-user-secret:before { + content: "\f21b" +} + +.fa-motorcycle:before { + content: "\f21c" +} + +.fa-street-view:before { + content: "\f21d" +} + +.fa-heartbeat:before { + content: "\f21e" +} + +.fa-venus:before { + content: "\f221" +} + +.fa-mars:before { + content: "\f222" +} + +.fa-mercury:before { + content: "\f223" +} + +.fa-intersex:before, +.fa-transgender:before { + content: "\f224" +} + +.fa-transgender-alt:before { + content: "\f225" +} + +.fa-venus-double:before { + content: "\f226" +} + +.fa-mars-double:before { + content: "\f227" +} + +.fa-venus-mars:before { + content: "\f228" +} + +.fa-mars-stroke:before { + content: "\f229" +} + +.fa-mars-stroke-v:before { + content: "\f22a" +} + +.fa-mars-stroke-h:before { + content: "\f22b" +} + +.fa-neuter:before { + content: "\f22c" +} + +.fa-genderless:before { + content: "\f22d" +} + +.fa-facebook-official:before { + content: "\f230" +} + +.fa-pinterest-p:before { + content: "\f231" +} + +.fa-whatsapp:before { + content: "\f232" +} + +.fa-server:before { + content: "\f233" +} + +.fa-user-plus:before { + content: "\f234" +} + +.fa-user-times:before { + content: "\f235" +} + +.fa-hotel:before, +.fa-bed:before { + content: "\f236" +} + +.fa-viacoin:before { + content: "\f237" +} + +.fa-train:before { + content: "\f238" +} + +.fa-subway:before { + content: "\f239" +} + +.fa-medium:before { + content: "\f23a" +} + +.fa-yc:before, +.fa-y-combinator:before { + content: "\f23b" +} + +.fa-optin-monster:before { + content: "\f23c" +} + +.fa-opencart:before { + content: "\f23d" +} + +.fa-expeditedssl:before { + content: "\f23e" +} + +.fa-battery-4:before, +.fa-battery:before, +.fa-battery-full:before { + content: "\f240" +} + +.fa-battery-3:before, +.fa-battery-three-quarters:before { + content: "\f241" +} + +.fa-battery-2:before, +.fa-battery-half:before { + content: "\f242" +} + +.fa-battery-1:before, +.fa-battery-quarter:before { + content: "\f243" +} + +.fa-battery-0:before, +.fa-battery-empty:before { + content: "\f244" +} + +.fa-mouse-pointer:before { + content: "\f245" +} + +.fa-i-cursor:before { + content: "\f246" +} + +.fa-object-group:before { + content: "\f247" +} + +.fa-object-ungroup:before { + content: "\f248" +} + +.fa-sticky-note:before { + content: "\f249" +} + +.fa-sticky-note-o:before { + content: "\f24a" +} + +.fa-cc-jcb:before { + content: "\f24b" +} + +.fa-cc-diners-club:before { + content: "\f24c" +} + +.fa-clone:before { + content: "\f24d" +} + +.fa-balance-scale:before { + content: "\f24e" +} + +.fa-hourglass-o:before { + content: "\f250" +} + +.fa-hourglass-1:before, +.fa-hourglass-start:before { + content: "\f251" +} + +.fa-hourglass-2:before, +.fa-hourglass-half:before { + content: "\f252" +} + +.fa-hourglass-3:before, +.fa-hourglass-end:before { + content: "\f253" +} + +.fa-hourglass:before { + content: "\f254" +} + +.fa-hand-grab-o:before, +.fa-hand-rock-o:before { + content: "\f255" +} + +.fa-hand-stop-o:before, +.fa-hand-paper-o:before { + content: "\f256" +} + +.fa-hand-scissors-o:before { + content: "\f257" +} + +.fa-hand-lizard-o:before { + content: "\f258" +} + +.fa-hand-spock-o:before { + content: "\f259" +} + +.fa-hand-pointer-o:before { + content: "\f25a" +} + +.fa-hand-peace-o:before { + content: "\f25b" +} + +.fa-trademark:before { + content: "\f25c" +} + +.fa-registered:before { + content: "\f25d" +} + +.fa-creative-commons:before { + content: "\f25e" +} + +.fa-gg:before { + content: "\f260" +} + +.fa-gg-circle:before { + content: "\f261" +} + +.fa-tripadvisor:before { + content: "\f262" +} + +.fa-odnoklassniki:before { + content: "\f263" +} + +.fa-odnoklassniki-square:before { + content: "\f264" +} + +.fa-get-pocket:before { + content: "\f265" +} + +.fa-wikipedia-w:before { + content: "\f266" +} + +.fa-safari:before { + content: "\f267" +} + +.fa-chrome:before { + content: "\f268" +} + +.fa-firefox:before { + content: "\f269" +} + +.fa-opera:before { + content: "\f26a" +} + +.fa-internet-explorer:before { + content: "\f26b" +} + +.fa-tv:before, +.fa-television:before { + content: "\f26c" +} + +.fa-contao:before { + content: "\f26d" +} + +.fa-500px:before { + content: "\f26e" +} + +.fa-amazon:before { + content: "\f270" +} + +.fa-calendar-plus-o:before { + content: "\f271" +} + +.fa-calendar-minus-o:before { + content: "\f272" +} + +.fa-calendar-times-o:before { + content: "\f273" +} + +.fa-calendar-check-o:before { + content: "\f274" +} + +.fa-industry:before { + content: "\f275" +} + +.fa-map-pin:before { + content: "\f276" +} + +.fa-map-signs:before { + content: "\f277" +} + +.fa-map-o:before { + content: "\f278" +} + +.fa-map:before { + content: "\f279" +} + +.fa-commenting:before { + content: "\f27a" +} + +.fa-commenting-o:before { + content: "\f27b" +} + +.fa-houzz:before { + content: "\f27c" +} + +.fa-vimeo:before { + content: "\f27d" +} + +.fa-black-tie:before { + content: "\f27e" +} + +.fa-fonticons:before { + content: "\f280" +} + +.fa-reddit-alien:before { + content: "\f281" +} + +.fa-edge:before { + content: "\f282" +} + +.fa-credit-card-alt:before { + content: "\f283" +} + +.fa-codiepie:before { + content: "\f284" +} + +.fa-modx:before { + content: "\f285" +} + +.fa-fort-awesome:before { + content: "\f286" +} + +.fa-usb:before { + content: "\f287" +} + +.fa-product-hunt:before { + content: "\f288" +} + +.fa-mixcloud:before { + content: "\f289" +} + +.fa-scribd:before { + content: "\f28a" +} + +.fa-pause-circle:before { + content: "\f28b" +} + +.fa-pause-circle-o:before { + content: "\f28c" +} + +.fa-stop-circle:before { + content: "\f28d" +} + +.fa-stop-circle-o:before { + content: "\f28e" +} + +.fa-shopping-bag:before { + content: "\f290" +} + +.fa-shopping-basket:before { + content: "\f291" +} + +.fa-hashtag:before { + content: "\f292" +} + +.fa-bluetooth:before { + content: "\f293" +} + +.fa-bluetooth-b:before { + content: "\f294" +} + +.fa-percent:before { + content: "\f295" +} + +.fa-gitlab:before { + content: "\f296" +} + +.fa-wpbeginner:before { + content: "\f297" +} + +.fa-wpforms:before { + content: "\f298" +} + +.fa-envira:before { + content: "\f299" +} + +.fa-universal-access:before { + content: "\f29a" +} + +.fa-wheelchair-alt:before { + content: "\f29b" +} + +.fa-question-circle-o:before { + content: "\f29c" +} + +.fa-blind:before { + content: "\f29d" +} + +.fa-audio-description:before { + content: "\f29e" +} + +.fa-volume-control-phone:before { + content: "\f2a0" +} + +.fa-braille:before { + content: "\f2a1" +} + +.fa-assistive-listening-systems:before { + content: "\f2a2" +} + +.fa-asl-interpreting:before, +.fa-american-sign-language-interpreting:before { + content: "\f2a3" +} + +.fa-deafness:before, +.fa-hard-of-hearing:before, +.fa-deaf:before { + content: "\f2a4" +} + +.fa-glide:before { + content: "\f2a5" +} + +.fa-glide-g:before { + content: "\f2a6" +} + +.fa-signing:before, +.fa-sign-language:before { + content: "\f2a7" +} + +.fa-low-vision:before { + content: "\f2a8" +} + +.fa-viadeo:before { + content: "\f2a9" +} + +.fa-viadeo-square:before { + content: "\f2aa" +} + +.fa-snapchat:before { + content: "\f2ab" +} + +.fa-snapchat-ghost:before { + content: "\f2ac" +} + +.fa-snapchat-square:before { + content: "\f2ad" +} + +.fa-pied-piper:before { + content: "\f2ae" +} + +.fa-first-order:before { + content: "\f2b0" +} + +.fa-yoast:before { + content: "\f2b1" +} + +.fa-themeisle:before { + content: "\f2b2" +} + +.fa-google-plus-circle:before, +.fa-google-plus-official:before { + content: "\f2b3" +} + +.fa-fa:before, +.fa-font-awesome:before { + content: "\f2b4" +} + +.fa-handshake-o:before { + content: "\f2b5" +} + +.fa-envelope-open:before { + content: "\f2b6" +} + +.fa-envelope-open-o:before { + content: "\f2b7" +} + +.fa-linode:before { + content: "\f2b8" +} + +.fa-address-book:before { + content: "\f2b9" +} + +.fa-address-book-o:before { + content: "\f2ba" +} + +.fa-vcard:before, +.fa-address-card:before { + content: "\f2bb" +} + +.fa-vcard-o:before, +.fa-address-card-o:before { + content: "\f2bc" +} + +.fa-user-circle:before { + content: "\f2bd" +} + +.fa-user-circle-o:before { + content: "\f2be" +} + +.fa-user-o:before { + content: "\f2c0" +} + +.fa-id-badge:before { + content: "\f2c1" +} + +.fa-drivers-license:before, +.fa-id-card:before { + content: "\f2c2" +} + +.fa-drivers-license-o:before, +.fa-id-card-o:before { + content: "\f2c3" +} + +.fa-quora:before { + content: "\f2c4" +} + +.fa-free-code-camp:before { + content: "\f2c5" +} + +.fa-telegram:before { + content: "\f2c6" +} + +.fa-thermometer-4:before, +.fa-thermometer:before, +.fa-thermometer-full:before { + content: "\f2c7" +} + +.fa-thermometer-3:before, +.fa-thermometer-three-quarters:before { + content: "\f2c8" +} + +.fa-thermometer-2:before, +.fa-thermometer-half:before { + content: "\f2c9" +} + +.fa-thermometer-1:before, +.fa-thermometer-quarter:before { + content: "\f2ca" +} + +.fa-thermometer-0:before, +.fa-thermometer-empty:before { + content: "\f2cb" +} + +.fa-shower:before { + content: "\f2cc" +} + +.fa-bathtub:before, +.fa-s15:before, +.fa-bath:before { + content: "\f2cd" +} + +.fa-podcast:before { + content: "\f2ce" +} + +.fa-window-maximize:before { + content: "\f2d0" +} + +.fa-window-minimize:before { + content: "\f2d1" +} + +.fa-window-restore:before { + content: "\f2d2" +} + +.fa-times-rectangle:before, +.fa-window-close:before { + content: "\f2d3" +} + +.fa-times-rectangle-o:before, +.fa-window-close-o:before { + content: "\f2d4" +} + +.fa-bandcamp:before { + content: "\f2d5" +} + +.fa-grav:before { + content: "\f2d6" +} + +.fa-etsy:before { + content: "\f2d7" +} + +.fa-imdb:before { + content: "\f2d8" +} + +.fa-ravelry:before { + content: "\f2d9" +} + +.fa-eercast:before { + content: "\f2da" +} + +.fa-microchip:before { + content: "\f2db" +} + +.fa-snowflake-o:before { + content: "\f2dc" +} + +.fa-superpowers:before { + content: "\f2dd" +} + +.fa-wpexplorer:before { + content: "\f2de" +} + +.fa-meetup:before { + content: "\f2e0" +} + +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + border: 0 +} + +.sr-only-focusable:active, +.sr-only-focusable:focus { + position: static; + width: auto; + height: auto; + margin: 0; + overflow: visible; + clip: auto +} \ No newline at end of file diff --git a/style/jquery-3.3.1.min.js b/style/jquery-3.3.1.min.js new file mode 100644 index 0000000..4d9b3a2 --- /dev/null +++ b/style/jquery-3.3.1.min.js @@ -0,0 +1,2 @@ +/*! jQuery v3.3.1 | (c) JS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(e,t){"use strict";var n=[],r=e.document,i=Object.getPrototypeOf,o=n.slice,a=n.concat,s=n.push,u=n.indexOf,l={},c=l.toString,f=l.hasOwnProperty,p=f.toString,d=p.call(Object),h={},g=function e(t){return"function"==typeof t&&"number"!=typeof t.nodeType},y=function e(t){return null!=t&&t===t.window},v={type:!0,src:!0,noModule:!0};function m(e,t,n){var i,o=(t=t||r).createElement("script");if(o.text=e,n)for(i in v)n[i]&&(o[i]=n[i]);t.head.appendChild(o).parentNode.removeChild(o)}function x(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?l[c.call(e)]||"object":typeof e}var b="3.3.1",w=function(e,t){return new w.fn.init(e,t)},T=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;w.fn=w.prototype={jquery:"3.3.1",constructor:w,length:0,toArray:function(){return o.call(this)},get:function(e){return null==e?o.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=w.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return w.each(this,e)},map:function(e){return this.pushStack(w.map(this,function(t,n){return e.call(t,n,t)}))},slice:function(){return this.pushStack(o.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(n>=0&&n0&&t-1 in e)}var E=function(e){var t,n,r,i,o,a,s,u,l,c,f,p,d,h,g,y,v,m,x,b="sizzle"+1*new Date,w=e.document,T=0,C=0,E=ae(),k=ae(),S=ae(),D=function(e,t){return e===t&&(f=!0),0},N={}.hasOwnProperty,A=[],j=A.pop,q=A.push,L=A.push,H=A.slice,O=function(e,t){for(var n=0,r=e.length;n+~]|"+M+")"+M+"*"),z=new RegExp("="+M+"*([^\\]'\"]*?)"+M+"*\\]","g"),X=new RegExp(W),U=new RegExp("^"+R+"$"),V={ID:new RegExp("^#("+R+")"),CLASS:new RegExp("^\\.("+R+")"),TAG:new RegExp("^("+R+"|[*])"),ATTR:new RegExp("^"+I),PSEUDO:new RegExp("^"+W),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+P+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},G=/^(?:input|select|textarea|button)$/i,Y=/^h\d$/i,Q=/^[^{]+\{\s*\[native \w/,J=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,K=/[+~]/,Z=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),ee=function(e,t,n){var r="0x"+t-65536;return r!==r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},te=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ne=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},re=function(){p()},ie=me(function(e){return!0===e.disabled&&("form"in e||"label"in e)},{dir:"parentNode",next:"legend"});try{L.apply(A=H.call(w.childNodes),w.childNodes),A[w.childNodes.length].nodeType}catch(e){L={apply:A.length?function(e,t){q.apply(e,H.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function oe(e,t,r,i){var o,s,l,c,f,h,v,m=t&&t.ownerDocument,T=t?t.nodeType:9;if(r=r||[],"string"!=typeof e||!e||1!==T&&9!==T&&11!==T)return r;if(!i&&((t?t.ownerDocument||t:w)!==d&&p(t),t=t||d,g)){if(11!==T&&(f=J.exec(e)))if(o=f[1]){if(9===T){if(!(l=t.getElementById(o)))return r;if(l.id===o)return r.push(l),r}else if(m&&(l=m.getElementById(o))&&x(t,l)&&l.id===o)return r.push(l),r}else{if(f[2])return L.apply(r,t.getElementsByTagName(e)),r;if((o=f[3])&&n.getElementsByClassName&&t.getElementsByClassName)return L.apply(r,t.getElementsByClassName(o)),r}if(n.qsa&&!S[e+" "]&&(!y||!y.test(e))){if(1!==T)m=t,v=e;else if("object"!==t.nodeName.toLowerCase()){(c=t.getAttribute("id"))?c=c.replace(te,ne):t.setAttribute("id",c=b),s=(h=a(e)).length;while(s--)h[s]="#"+c+" "+ve(h[s]);v=h.join(","),m=K.test(e)&&ge(t.parentNode)||t}if(v)try{return L.apply(r,m.querySelectorAll(v)),r}catch(e){}finally{c===b&&t.removeAttribute("id")}}}return u(e.replace(B,"$1"),t,r,i)}function ae(){var e=[];function t(n,i){return e.push(n+" ")>r.cacheLength&&delete t[e.shift()],t[n+" "]=i}return t}function se(e){return e[b]=!0,e}function ue(e){var t=d.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function le(e,t){var n=e.split("|"),i=n.length;while(i--)r.attrHandle[n[i]]=t}function ce(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function fe(e){return function(t){return"input"===t.nodeName.toLowerCase()&&t.type===e}}function pe(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function de(e){return function(t){return"form"in t?t.parentNode&&!1===t.disabled?"label"in t?"label"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&ie(t)===e:t.disabled===e:"label"in t&&t.disabled===e}}function he(e){return se(function(t){return t=+t,se(function(n,r){var i,o=e([],n.length,t),a=o.length;while(a--)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))})})}function ge(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}n=oe.support={},o=oe.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return!!t&&"HTML"!==t.nodeName},p=oe.setDocument=function(e){var t,i,a=e?e.ownerDocument||e:w;return a!==d&&9===a.nodeType&&a.documentElement?(d=a,h=d.documentElement,g=!o(d),w!==d&&(i=d.defaultView)&&i.top!==i&&(i.addEventListener?i.addEventListener("unload",re,!1):i.attachEvent&&i.attachEvent("onunload",re)),n.attributes=ue(function(e){return e.className="i",!e.getAttribute("className")}),n.getElementsByTagName=ue(function(e){return e.appendChild(d.createComment("")),!e.getElementsByTagName("*").length}),n.getElementsByClassName=Q.test(d.getElementsByClassName),n.getById=ue(function(e){return h.appendChild(e).id=b,!d.getElementsByName||!d.getElementsByName(b).length}),n.getById?(r.filter.ID=function(e){var t=e.replace(Z,ee);return function(e){return e.getAttribute("id")===t}},r.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&g){var n=t.getElementById(e);return n?[n]:[]}}):(r.filter.ID=function(e){var t=e.replace(Z,ee);return function(e){var n="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return n&&n.value===t}},r.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&g){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),r.find.TAG=n.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):n.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},r.find.CLASS=n.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&g)return t.getElementsByClassName(e)},v=[],y=[],(n.qsa=Q.test(d.querySelectorAll))&&(ue(function(e){h.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&y.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||y.push("\\["+M+"*(?:value|"+P+")"),e.querySelectorAll("[id~="+b+"-]").length||y.push("~="),e.querySelectorAll(":checked").length||y.push(":checked"),e.querySelectorAll("a#"+b+"+*").length||y.push(".#.+[+~]")}),ue(function(e){e.innerHTML="";var t=d.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&y.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&y.push(":enabled",":disabled"),h.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&y.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),y.push(",.*:")})),(n.matchesSelector=Q.test(m=h.matches||h.webkitMatchesSelector||h.mozMatchesSelector||h.oMatchesSelector||h.msMatchesSelector))&&ue(function(e){n.disconnectedMatch=m.call(e,"*"),m.call(e,"[s!='']:x"),v.push("!=",W)}),y=y.length&&new RegExp(y.join("|")),v=v.length&&new RegExp(v.join("|")),t=Q.test(h.compareDocumentPosition),x=t||Q.test(h.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return f=!0,0;var r=!e.compareDocumentPosition-!t.compareDocumentPosition;return r||(1&(r=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!n.sortDetached&&t.compareDocumentPosition(e)===r?e===d||e.ownerDocument===w&&x(w,e)?-1:t===d||t.ownerDocument===w&&x(w,t)?1:c?O(c,e)-O(c,t):0:4&r?-1:1)}:function(e,t){if(e===t)return f=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e===d?-1:t===d?1:i?-1:o?1:c?O(c,e)-O(c,t):0;if(i===o)return ce(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?ce(a[r],s[r]):a[r]===w?-1:s[r]===w?1:0},d):d},oe.matches=function(e,t){return oe(e,null,null,t)},oe.matchesSelector=function(e,t){if((e.ownerDocument||e)!==d&&p(e),t=t.replace(z,"='$1']"),n.matchesSelector&&g&&!S[t+" "]&&(!v||!v.test(t))&&(!y||!y.test(t)))try{var r=m.call(e,t);if(r||n.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(e){}return oe(t,d,null,[e]).length>0},oe.contains=function(e,t){return(e.ownerDocument||e)!==d&&p(e),x(e,t)},oe.attr=function(e,t){(e.ownerDocument||e)!==d&&p(e);var i=r.attrHandle[t.toLowerCase()],o=i&&N.call(r.attrHandle,t.toLowerCase())?i(e,t,!g):void 0;return void 0!==o?o:n.attributes||!g?e.getAttribute(t):(o=e.getAttributeNode(t))&&o.specified?o.value:null},oe.escape=function(e){return(e+"").replace(te,ne)},oe.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},oe.uniqueSort=function(e){var t,r=[],i=0,o=0;if(f=!n.detectDuplicates,c=!n.sortStable&&e.slice(0),e.sort(D),f){while(t=e[o++])t===e[o]&&(i=r.push(o));while(i--)e.splice(r[i],1)}return c=null,e},i=oe.getText=function(e){var t,n="",r=0,o=e.nodeType;if(o){if(1===o||9===o||11===o){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=i(e)}else if(3===o||4===o)return e.nodeValue}else while(t=e[r++])n+=i(t);return n},(r=oe.selectors={cacheLength:50,createPseudo:se,match:V,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(Z,ee),e[3]=(e[3]||e[4]||e[5]||"").replace(Z,ee),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||oe.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&oe.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return V.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=a(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(Z,ee).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=E[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&E(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=oe.attr(r,e);return null==i?"!="===t:!t||(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i.replace($," ")+" ").indexOf(n)>-1:"|="===t&&(i===n||i.slice(0,n.length+1)===n+"-"))}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,f,p,d,h,g=o!==a?"nextSibling":"previousSibling",y=t.parentNode,v=s&&t.nodeName.toLowerCase(),m=!u&&!s,x=!1;if(y){if(o){while(g){p=t;while(p=p[g])if(s?p.nodeName.toLowerCase()===v:1===p.nodeType)return!1;h=g="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?y.firstChild:y.lastChild],a&&m){x=(d=(l=(c=(f=(p=y)[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]||[])[0]===T&&l[1])&&l[2],p=d&&y.childNodes[d];while(p=++d&&p&&p[g]||(x=d=0)||h.pop())if(1===p.nodeType&&++x&&p===t){c[e]=[T,d,x];break}}else if(m&&(x=d=(l=(c=(f=(p=t)[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]||[])[0]===T&&l[1]),!1===x)while(p=++d&&p&&p[g]||(x=d=0)||h.pop())if((s?p.nodeName.toLowerCase()===v:1===p.nodeType)&&++x&&(m&&((c=(f=p[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]=[T,x]),p===t))break;return(x-=i)===r||x%r==0&&x/r>=0}}},PSEUDO:function(e,t){var n,i=r.pseudos[e]||r.setFilters[e.toLowerCase()]||oe.error("unsupported pseudo: "+e);return i[b]?i(t):i.length>1?(n=[e,e,"",t],r.setFilters.hasOwnProperty(e.toLowerCase())?se(function(e,n){var r,o=i(e,t),a=o.length;while(a--)e[r=O(e,o[a])]=!(n[r]=o[a])}):function(e){return i(e,0,n)}):i}},pseudos:{not:se(function(e){var t=[],n=[],r=s(e.replace(B,"$1"));return r[b]?se(function(e,t,n,i){var o,a=r(e,null,i,[]),s=e.length;while(s--)(o=a[s])&&(e[s]=!(t[s]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),t[0]=null,!n.pop()}}),has:se(function(e){return function(t){return oe(e,t).length>0}}),contains:se(function(e){return e=e.replace(Z,ee),function(t){return(t.textContent||t.innerText||i(t)).indexOf(e)>-1}}),lang:se(function(e){return U.test(e||"")||oe.error("unsupported lang: "+e),e=e.replace(Z,ee).toLowerCase(),function(t){var n;do{if(n=g?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return(n=n.toLowerCase())===e||0===n.indexOf(e+"-")}while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===h},focus:function(e){return e===d.activeElement&&(!d.hasFocus||d.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:de(!1),disabled:de(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!r.pseudos.empty(e)},header:function(e){return Y.test(e.nodeName)},input:function(e){return G.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:he(function(){return[0]}),last:he(function(e,t){return[t-1]}),eq:he(function(e,t,n){return[n<0?n+t:n]}),even:he(function(e,t){for(var n=0;n=0;)e.push(r);return e}),gt:he(function(e,t,n){for(var r=n<0?n+t:n;++r1?function(t,n,r){var i=e.length;while(i--)if(!e[i](t,n,r))return!1;return!0}:e[0]}function be(e,t,n){for(var r=0,i=t.length;r-1&&(o[l]=!(a[l]=f))}}else v=we(v===a?v.splice(h,v.length):v),i?i(null,a,v,u):L.apply(a,v)})}function Ce(e){for(var t,n,i,o=e.length,a=r.relative[e[0].type],s=a||r.relative[" "],u=a?1:0,c=me(function(e){return e===t},s,!0),f=me(function(e){return O(t,e)>-1},s,!0),p=[function(e,n,r){var i=!a&&(r||n!==l)||((t=n).nodeType?c(e,n,r):f(e,n,r));return t=null,i}];u1&&xe(p),u>1&&ve(e.slice(0,u-1).concat({value:" "===e[u-2].type?"*":""})).replace(B,"$1"),n,u0,i=e.length>0,o=function(o,a,s,u,c){var f,h,y,v=0,m="0",x=o&&[],b=[],w=l,C=o||i&&r.find.TAG("*",c),E=T+=null==w?1:Math.random()||.1,k=C.length;for(c&&(l=a===d||a||c);m!==k&&null!=(f=C[m]);m++){if(i&&f){h=0,a||f.ownerDocument===d||(p(f),s=!g);while(y=e[h++])if(y(f,a||d,s)){u.push(f);break}c&&(T=E)}n&&((f=!y&&f)&&v--,o&&x.push(f))}if(v+=m,n&&m!==v){h=0;while(y=t[h++])y(x,b,a,s);if(o){if(v>0)while(m--)x[m]||b[m]||(b[m]=j.call(u));b=we(b)}L.apply(u,b),c&&!o&&b.length>0&&v+t.length>1&&oe.uniqueSort(u)}return c&&(T=E,l=w),x};return n?se(o):o}return s=oe.compile=function(e,t){var n,r=[],i=[],o=S[e+" "];if(!o){t||(t=a(e)),n=t.length;while(n--)(o=Ce(t[n]))[b]?r.push(o):i.push(o);(o=S(e,Ee(i,r))).selector=e}return o},u=oe.select=function(e,t,n,i){var o,u,l,c,f,p="function"==typeof e&&e,d=!i&&a(e=p.selector||e);if(n=n||[],1===d.length){if((u=d[0]=d[0].slice(0)).length>2&&"ID"===(l=u[0]).type&&9===t.nodeType&&g&&r.relative[u[1].type]){if(!(t=(r.find.ID(l.matches[0].replace(Z,ee),t)||[])[0]))return n;p&&(t=t.parentNode),e=e.slice(u.shift().value.length)}o=V.needsContext.test(e)?0:u.length;while(o--){if(l=u[o],r.relative[c=l.type])break;if((f=r.find[c])&&(i=f(l.matches[0].replace(Z,ee),K.test(u[0].type)&&ge(t.parentNode)||t))){if(u.splice(o,1),!(e=i.length&&ve(u)))return L.apply(n,i),n;break}}}return(p||s(e,d))(i,t,!g,n,!t||K.test(e)&&ge(t.parentNode)||t),n},n.sortStable=b.split("").sort(D).join("")===b,n.detectDuplicates=!!f,p(),n.sortDetached=ue(function(e){return 1&e.compareDocumentPosition(d.createElement("fieldset"))}),ue(function(e){return e.innerHTML="","#"===e.firstChild.getAttribute("href")})||le("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),n.attributes&&ue(function(e){return e.innerHTML="",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||le("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),ue(function(e){return null==e.getAttribute("disabled")})||le(P,function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),oe}(e);w.find=E,w.expr=E.selectors,w.expr[":"]=w.expr.pseudos,w.uniqueSort=w.unique=E.uniqueSort,w.text=E.getText,w.isXMLDoc=E.isXML,w.contains=E.contains,w.escapeSelector=E.escape;var k=function(e,t,n){var r=[],i=void 0!==n;while((e=e[t])&&9!==e.nodeType)if(1===e.nodeType){if(i&&w(e).is(n))break;r.push(e)}return r},S=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},D=w.expr.match.needsContext;function N(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var A=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,t,n){return g(t)?w.grep(e,function(e,r){return!!t.call(e,r,e)!==n}):t.nodeType?w.grep(e,function(e){return e===t!==n}):"string"!=typeof t?w.grep(e,function(e){return u.call(t,e)>-1!==n}):w.filter(t,e,n)}w.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?w.find.matchesSelector(r,e)?[r]:[]:w.find.matches(e,w.grep(t,function(e){return 1===e.nodeType}))},w.fn.extend({find:function(e){var t,n,r=this.length,i=this;if("string"!=typeof e)return this.pushStack(w(e).filter(function(){for(t=0;t1?w.uniqueSort(n):n},filter:function(e){return this.pushStack(j(this,e||[],!1))},not:function(e){return this.pushStack(j(this,e||[],!0))},is:function(e){return!!j(this,"string"==typeof e&&D.test(e)?w(e):e||[],!1).length}});var q,L=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(w.fn.init=function(e,t,n){var i,o;if(!e)return this;if(n=n||q,"string"==typeof e){if(!(i="<"===e[0]&&">"===e[e.length-1]&&e.length>=3?[null,e,null]:L.exec(e))||!i[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(i[1]){if(t=t instanceof w?t[0]:t,w.merge(this,w.parseHTML(i[1],t&&t.nodeType?t.ownerDocument||t:r,!0)),A.test(i[1])&&w.isPlainObject(t))for(i in t)g(this[i])?this[i](t[i]):this.attr(i,t[i]);return this}return(o=r.getElementById(i[2]))&&(this[0]=o,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):g(e)?void 0!==n.ready?n.ready(e):e(w):w.makeArray(e,this)}).prototype=w.fn,q=w(r);var H=/^(?:parents|prev(?:Until|All))/,O={children:!0,contents:!0,next:!0,prev:!0};w.fn.extend({has:function(e){var t=w(e,this),n=t.length;return this.filter(function(){for(var e=0;e-1:1===n.nodeType&&w.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(o.length>1?w.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?u.call(w(e),this[0]):u.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(w.uniqueSort(w.merge(this.get(),w(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}});function P(e,t){while((e=e[t])&&1!==e.nodeType);return e}w.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return k(e,"parentNode")},parentsUntil:function(e,t,n){return k(e,"parentNode",n)},next:function(e){return P(e,"nextSibling")},prev:function(e){return P(e,"previousSibling")},nextAll:function(e){return k(e,"nextSibling")},prevAll:function(e){return k(e,"previousSibling")},nextUntil:function(e,t,n){return k(e,"nextSibling",n)},prevUntil:function(e,t,n){return k(e,"previousSibling",n)},siblings:function(e){return S((e.parentNode||{}).firstChild,e)},children:function(e){return S(e.firstChild)},contents:function(e){return N(e,"iframe")?e.contentDocument:(N(e,"template")&&(e=e.content||e),w.merge([],e.childNodes))}},function(e,t){w.fn[e]=function(n,r){var i=w.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=w.filter(r,i)),this.length>1&&(O[e]||w.uniqueSort(i),H.test(e)&&i.reverse()),this.pushStack(i)}});var M=/[^\x20\t\r\n\f]+/g;function R(e){var t={};return w.each(e.match(M)||[],function(e,n){t[n]=!0}),t}w.Callbacks=function(e){e="string"==typeof e?R(e):w.extend({},e);var t,n,r,i,o=[],a=[],s=-1,u=function(){for(i=i||e.once,r=t=!0;a.length;s=-1){n=a.shift();while(++s-1)o.splice(n,1),n<=s&&s--}),this},has:function(e){return e?w.inArray(e,o)>-1:o.length>0},empty:function(){return o&&(o=[]),this},disable:function(){return i=a=[],o=n="",this},disabled:function(){return!o},lock:function(){return i=a=[],n||t||(o=n=""),this},locked:function(){return!!i},fireWith:function(e,n){return i||(n=[e,(n=n||[]).slice?n.slice():n],a.push(n),t||u()),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!r}};return l};function I(e){return e}function W(e){throw e}function $(e,t,n,r){var i;try{e&&g(i=e.promise)?i.call(e).done(t).fail(n):e&&g(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}w.extend({Deferred:function(t){var n=[["notify","progress",w.Callbacks("memory"),w.Callbacks("memory"),2],["resolve","done",w.Callbacks("once memory"),w.Callbacks("once memory"),0,"resolved"],["reject","fail",w.Callbacks("once memory"),w.Callbacks("once memory"),1,"rejected"]],r="pending",i={state:function(){return r},always:function(){return o.done(arguments).fail(arguments),this},"catch":function(e){return i.then(null,e)},pipe:function(){var e=arguments;return w.Deferred(function(t){w.each(n,function(n,r){var i=g(e[r[4]])&&e[r[4]];o[r[1]](function(){var e=i&&i.apply(this,arguments);e&&g(e.promise)?e.promise().progress(t.notify).done(t.resolve).fail(t.reject):t[r[0]+"With"](this,i?[e]:arguments)})}),e=null}).promise()},then:function(t,r,i){var o=0;function a(t,n,r,i){return function(){var s=this,u=arguments,l=function(){var e,l;if(!(t=o&&(r!==W&&(s=void 0,u=[e]),n.rejectWith(s,u))}};t?c():(w.Deferred.getStackHook&&(c.stackTrace=w.Deferred.getStackHook()),e.setTimeout(c))}}return w.Deferred(function(e){n[0][3].add(a(0,e,g(i)?i:I,e.notifyWith)),n[1][3].add(a(0,e,g(t)?t:I)),n[2][3].add(a(0,e,g(r)?r:W))}).promise()},promise:function(e){return null!=e?w.extend(e,i):i}},o={};return w.each(n,function(e,t){var a=t[2],s=t[5];i[t[1]]=a.add,s&&a.add(function(){r=s},n[3-e][2].disable,n[3-e][3].disable,n[0][2].lock,n[0][3].lock),a.add(t[3].fire),o[t[0]]=function(){return o[t[0]+"With"](this===o?void 0:this,arguments),this},o[t[0]+"With"]=a.fireWith}),i.promise(o),t&&t.call(o,o),o},when:function(e){var t=arguments.length,n=t,r=Array(n),i=o.call(arguments),a=w.Deferred(),s=function(e){return function(n){r[e]=this,i[e]=arguments.length>1?o.call(arguments):n,--t||a.resolveWith(r,i)}};if(t<=1&&($(e,a.done(s(n)).resolve,a.reject,!t),"pending"===a.state()||g(i[n]&&i[n].then)))return a.then();while(n--)$(i[n],s(n),a.reject);return a.promise()}});var B=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;w.Deferred.exceptionHook=function(t,n){e.console&&e.console.warn&&t&&B.test(t.name)&&e.console.warn("jQuery.Deferred exception: "+t.message,t.stack,n)},w.readyException=function(t){e.setTimeout(function(){throw t})};var F=w.Deferred();w.fn.ready=function(e){return F.then(e)["catch"](function(e){w.readyException(e)}),this},w.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--w.readyWait:w.isReady)||(w.isReady=!0,!0!==e&&--w.readyWait>0||F.resolveWith(r,[w]))}}),w.ready.then=F.then;function _(){r.removeEventListener("DOMContentLoaded",_),e.removeEventListener("load",_),w.ready()}"complete"===r.readyState||"loading"!==r.readyState&&!r.documentElement.doScroll?e.setTimeout(w.ready):(r.addEventListener("DOMContentLoaded",_),e.addEventListener("load",_));var z=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if("object"===x(n)){i=!0;for(s in n)z(e,t,s,n[s],!0,o,a)}else if(void 0!==r&&(i=!0,g(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(w(e),n)})),t))for(;s1,null,!0)},removeData:function(e){return this.each(function(){K.remove(this,e)})}}),w.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=J.get(e,t),n&&(!r||Array.isArray(n)?r=J.access(e,t,w.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=w.queue(e,t),r=n.length,i=n.shift(),o=w._queueHooks(e,t),a=function(){w.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,a,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return J.get(e,n)||J.access(e,n,{empty:w.Callbacks("once memory").add(function(){J.remove(e,[t+"queue",n])})})}}),w.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),arguments.length\x20\t\r\n\f]+)/i,he=/^$|^module$|\/(?:java|ecma)script/i,ge={option:[1,""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};ge.optgroup=ge.option,ge.tbody=ge.tfoot=ge.colgroup=ge.caption=ge.thead,ge.th=ge.td;function ye(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&N(e,t)?w.merge([e],n):n}function ve(e,t){for(var n=0,r=e.length;n-1)i&&i.push(o);else if(l=w.contains(o.ownerDocument,o),a=ye(f.appendChild(o),"script"),l&&ve(a),n){c=0;while(o=a[c++])he.test(o.type||"")&&n.push(o)}return f}!function(){var e=r.createDocumentFragment().appendChild(r.createElement("div")),t=r.createElement("input");t.setAttribute("type","radio"),t.setAttribute("checked","checked"),t.setAttribute("name","t"),e.appendChild(t),h.checkClone=e.cloneNode(!0).cloneNode(!0).lastChild.checked,e.innerHTML="",h.noCloneChecked=!!e.cloneNode(!0).lastChild.defaultValue}();var be=r.documentElement,we=/^key/,Te=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Ce=/^([^.]*)(?:\.(.+)|)/;function Ee(){return!0}function ke(){return!1}function Se(){try{return r.activeElement}catch(e){}}function De(e,t,n,r,i,o){var a,s;if("object"==typeof t){"string"!=typeof n&&(r=r||n,n=void 0);for(s in t)De(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=ke;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return w().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=w.guid++)),e.each(function(){w.event.add(this,t,i,r,n)})}w.event={global:{},add:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,y=J.get(e);if(y){n.handler&&(n=(o=n).handler,i=o.selector),i&&w.find.matchesSelector(be,i),n.guid||(n.guid=w.guid++),(u=y.events)||(u=y.events={}),(a=y.handle)||(a=y.handle=function(t){return"undefined"!=typeof w&&w.event.triggered!==t.type?w.event.dispatch.apply(e,arguments):void 0}),l=(t=(t||"").match(M)||[""]).length;while(l--)d=g=(s=Ce.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=w.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=w.event.special[d]||{},c=w.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&w.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(e,r,h,a)||e.addEventListener&&e.addEventListener(d,a)),f.add&&(f.add.call(e,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),w.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,y=J.hasData(e)&&J.get(e);if(y&&(u=y.events)){l=(t=(t||"").match(M)||[""]).length;while(l--)if(s=Ce.exec(t[l])||[],d=g=s[1],h=(s[2]||"").split(".").sort(),d){f=w.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,y.handle)||w.removeEvent(e,d,y.handle),delete u[d])}else for(d in u)w.event.remove(e,d+t[l],n,r,!0);w.isEmptyObject(u)&&J.remove(e,"handle events")}},dispatch:function(e){var t=w.event.fix(e),n,r,i,o,a,s,u=new Array(arguments.length),l=(J.get(this,"events")||{})[t.type]||[],c=w.event.special[t.type]||{};for(u[0]=t,n=1;n=1))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&("click"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n-1:w.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&s.push({elem:l,handlers:o})}return l=this,u\x20\t\r\n\f]*)[^>]*)\/>/gi,Ae=/\s*$/g;function Le(e,t){return N(e,"table")&&N(11!==t.nodeType?t:t.firstChild,"tr")?w(e).children("tbody")[0]||e:e}function He(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Oe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Pe(e,t){var n,r,i,o,a,s,u,l;if(1===t.nodeType){if(J.hasData(e)&&(o=J.access(e),a=J.set(t,o),l=o.events)){delete a.handle,a.events={};for(i in l)for(n=0,r=l[i].length;n1&&"string"==typeof y&&!h.checkClone&&je.test(y))return e.each(function(i){var o=e.eq(i);v&&(t[0]=y.call(this,i,o.html())),Re(o,t,n,r)});if(p&&(i=xe(t,e[0].ownerDocument,!1,e,r),o=i.firstChild,1===i.childNodes.length&&(i=o),o||r)){for(u=(s=w.map(ye(i,"script"),He)).length;f")},clone:function(e,t,n){var r,i,o,a,s=e.cloneNode(!0),u=w.contains(e.ownerDocument,e);if(!(h.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||w.isXMLDoc(e)))for(a=ye(s),r=0,i=(o=ye(e)).length;r0&&ve(a,!u&&ye(e,"script")),s},cleanData:function(e){for(var t,n,r,i=w.event.special,o=0;void 0!==(n=e[o]);o++)if(Y(n)){if(t=n[J.expando]){if(t.events)for(r in t.events)i[r]?w.event.remove(n,r):w.removeEvent(n,r,t.handle);n[J.expando]=void 0}n[K.expando]&&(n[K.expando]=void 0)}}}),w.fn.extend({detach:function(e){return Ie(this,e,!0)},remove:function(e){return Ie(this,e)},text:function(e){return z(this,function(e){return void 0===e?w.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)})},null,e,arguments.length)},append:function(){return Re(this,arguments,function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||Le(this,e).appendChild(e)})},prepend:function(){return Re(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Le(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return Re(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return Re(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(w.cleanData(ye(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return w.clone(this,e,t)})},html:function(e){return z(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!Ae.test(e)&&!ge[(de.exec(e)||["",""])[1].toLowerCase()]){e=w.htmlPrefilter(e);try{for(;n=0&&(u+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-o-u-s-.5))),u}function et(e,t,n){var r=$e(e),i=Fe(e,t,r),o="border-box"===w.css(e,"boxSizing",!1,r),a=o;if(We.test(i)){if(!n)return i;i="auto"}return a=a&&(h.boxSizingReliable()||i===e.style[t]),("auto"===i||!parseFloat(i)&&"inline"===w.css(e,"display",!1,r))&&(i=e["offset"+t[0].toUpperCase()+t.slice(1)],a=!0),(i=parseFloat(i)||0)+Ze(e,t,n||(o?"border":"content"),a,r,i)+"px"}w.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Fe(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=G(t),u=Xe.test(t),l=e.style;if(u||(t=Je(s)),a=w.cssHooks[t]||w.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];"string"==(o=typeof n)&&(i=ie.exec(n))&&i[1]&&(n=ue(e,t,i),o="number"),null!=n&&n===n&&("number"===o&&(n+=i&&i[3]||(w.cssNumber[s]?"":"px")),h.clearCloneStyle||""!==n||0!==t.indexOf("background")||(l[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,s=G(t);return Xe.test(t)||(t=Je(s)),(a=w.cssHooks[t]||w.cssHooks[s])&&"get"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=Fe(e,t,r)),"normal"===i&&t in Ve&&(i=Ve[t]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),w.each(["height","width"],function(e,t){w.cssHooks[t]={get:function(e,n,r){if(n)return!ze.test(w.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?et(e,t,r):se(e,Ue,function(){return et(e,t,r)})},set:function(e,n,r){var i,o=$e(e),a="border-box"===w.css(e,"boxSizing",!1,o),s=r&&Ze(e,t,r,a,o);return a&&h.scrollboxSize()===o.position&&(s-=Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-parseFloat(o[t])-Ze(e,t,"border",!1,o)-.5)),s&&(i=ie.exec(n))&&"px"!==(i[3]||"px")&&(e.style[t]=n,n=w.css(e,t)),Ke(e,n,s)}}}),w.cssHooks.marginLeft=_e(h.reliableMarginLeft,function(e,t){if(t)return(parseFloat(Fe(e,"marginLeft"))||e.getBoundingClientRect().left-se(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+"px"}),w.each({margin:"",padding:"",border:"Width"},function(e,t){w.cssHooks[e+t]={expand:function(n){for(var r=0,i={},o="string"==typeof n?n.split(" "):[n];r<4;r++)i[e+oe[r]+t]=o[r]||o[r-2]||o[0];return i}},"margin"!==e&&(w.cssHooks[e+t].set=Ke)}),w.fn.extend({css:function(e,t){return z(this,function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=$e(e),i=t.length;a1)}});function tt(e,t,n,r,i){return new tt.prototype.init(e,t,n,r,i)}w.Tween=tt,tt.prototype={constructor:tt,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||w.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(w.cssNumber[n]?"":"px")},cur:function(){var e=tt.propHooks[this.prop];return e&&e.get?e.get(this):tt.propHooks._default.get(this)},run:function(e){var t,n=tt.propHooks[this.prop];return this.options.duration?this.pos=t=w.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):tt.propHooks._default.set(this),this}},tt.prototype.init.prototype=tt.prototype,tt.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=w.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){w.fx.step[e.prop]?w.fx.step[e.prop](e):1!==e.elem.nodeType||null==e.elem.style[w.cssProps[e.prop]]&&!w.cssHooks[e.prop]?e.elem[e.prop]=e.now:w.style(e.elem,e.prop,e.now+e.unit)}}},tt.propHooks.scrollTop=tt.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},w.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},w.fx=tt.prototype.init,w.fx.step={};var nt,rt,it=/^(?:toggle|show|hide)$/,ot=/queueHooks$/;function at(){rt&&(!1===r.hidden&&e.requestAnimationFrame?e.requestAnimationFrame(at):e.setTimeout(at,w.fx.interval),w.fx.tick())}function st(){return e.setTimeout(function(){nt=void 0}),nt=Date.now()}function ut(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i["margin"+(n=oe[r])]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i}function lt(e,t,n){for(var r,i=(pt.tweeners[t]||[]).concat(pt.tweeners["*"]),o=0,a=i.length;o1)},removeAttr:function(e){return this.each(function(){w.removeAttr(this,e)})}}),w.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return"undefined"==typeof e.getAttribute?w.prop(e,t,n):(1===o&&w.isXMLDoc(e)||(i=w.attrHooks[t.toLowerCase()]||(w.expr.match.bool.test(t)?dt:void 0)),void 0!==n?null===n?void w.removeAttr(e,t):i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(r=i.get(e,t))?r:null==(r=w.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!h.radioValue&&"radio"===t&&N(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(M);if(i&&1===e.nodeType)while(n=i[r++])e.removeAttribute(n)}}),dt={set:function(e,t,n){return!1===t?w.removeAttr(e,n):e.setAttribute(n,n),n}},w.each(w.expr.match.bool.source.match(/\w+/g),function(e,t){var n=ht[t]||w.find.attr;ht[t]=function(e,t,r){var i,o,a=t.toLowerCase();return r||(o=ht[a],ht[a]=i,i=null!=n(e,t,r)?a:null,ht[a]=o),i}});var gt=/^(?:input|select|textarea|button)$/i,yt=/^(?:a|area)$/i;w.fn.extend({prop:function(e,t){return z(this,w.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each(function(){delete this[w.propFix[e]||e]})}}),w.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&w.isXMLDoc(e)||(t=w.propFix[t]||t,i=w.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=w.find.attr(e,"tabindex");return t?parseInt(t,10):gt.test(e.nodeName)||yt.test(e.nodeName)&&e.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),h.optSelected||(w.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),w.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){w.propFix[this.toLowerCase()]=this});function vt(e){return(e.match(M)||[]).join(" ")}function mt(e){return e.getAttribute&&e.getAttribute("class")||""}function xt(e){return Array.isArray(e)?e:"string"==typeof e?e.match(M)||[]:[]}w.fn.extend({addClass:function(e){var t,n,r,i,o,a,s,u=0;if(g(e))return this.each(function(t){w(this).addClass(e.call(this,t,mt(this)))});if((t=xt(e)).length)while(n=this[u++])if(i=mt(n),r=1===n.nodeType&&" "+vt(i)+" "){a=0;while(o=t[a++])r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(s=vt(r))&&n.setAttribute("class",s)}return this},removeClass:function(e){var t,n,r,i,o,a,s,u=0;if(g(e))return this.each(function(t){w(this).removeClass(e.call(this,t,mt(this)))});if(!arguments.length)return this.attr("class","");if((t=xt(e)).length)while(n=this[u++])if(i=mt(n),r=1===n.nodeType&&" "+vt(i)+" "){a=0;while(o=t[a++])while(r.indexOf(" "+o+" ")>-1)r=r.replace(" "+o+" "," ");i!==(s=vt(r))&&n.setAttribute("class",s)}return this},toggleClass:function(e,t){var n=typeof e,r="string"===n||Array.isArray(e);return"boolean"==typeof t&&r?t?this.addClass(e):this.removeClass(e):g(e)?this.each(function(n){w(this).toggleClass(e.call(this,n,mt(this),t),t)}):this.each(function(){var t,i,o,a;if(r){i=0,o=w(this),a=xt(e);while(t=a[i++])o.hasClass(t)?o.removeClass(t):o.addClass(t)}else void 0!==e&&"boolean"!==n||((t=mt(this))&&J.set(this,"__className__",t),this.setAttribute&&this.setAttribute("class",t||!1===e?"":J.get(this,"__className__")||""))})},hasClass:function(e){var t,n,r=0;t=" "+e+" ";while(n=this[r++])if(1===n.nodeType&&(" "+vt(mt(n))+" ").indexOf(t)>-1)return!0;return!1}});var bt=/\r/g;w.fn.extend({val:function(e){var t,n,r,i=this[0];{if(arguments.length)return r=g(e),this.each(function(n){var i;1===this.nodeType&&(null==(i=r?e.call(this,n,w(this).val()):e)?i="":"number"==typeof i?i+="":Array.isArray(i)&&(i=w.map(i,function(e){return null==e?"":e+""})),(t=w.valHooks[this.type]||w.valHooks[this.nodeName.toLowerCase()])&&"set"in t&&void 0!==t.set(this,i,"value")||(this.value=i))});if(i)return(t=w.valHooks[i.type]||w.valHooks[i.nodeName.toLowerCase()])&&"get"in t&&void 0!==(n=t.get(i,"value"))?n:"string"==typeof(n=i.value)?n.replace(bt,""):null==n?"":n}}}),w.extend({valHooks:{option:{get:function(e){var t=w.find.attr(e,"value");return null!=t?t:vt(w.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a="select-one"===e.type,s=a?null:[],u=a?o+1:i.length;for(r=o<0?u:a?o:0;r-1)&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),w.each(["radio","checkbox"],function(){w.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=w.inArray(w(e).val(),t)>-1}},h.checkOn||(w.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})}),h.focusin="onfocusin"in e;var wt=/^(?:focusinfocus|focusoutblur)$/,Tt=function(e){e.stopPropagation()};w.extend(w.event,{trigger:function(t,n,i,o){var a,s,u,l,c,p,d,h,v=[i||r],m=f.call(t,"type")?t.type:t,x=f.call(t,"namespace")?t.namespace.split("."):[];if(s=h=u=i=i||r,3!==i.nodeType&&8!==i.nodeType&&!wt.test(m+w.event.triggered)&&(m.indexOf(".")>-1&&(m=(x=m.split(".")).shift(),x.sort()),c=m.indexOf(":")<0&&"on"+m,t=t[w.expando]?t:new w.Event(m,"object"==typeof t&&t),t.isTrigger=o?2:3,t.namespace=x.join("."),t.rnamespace=t.namespace?new RegExp("(^|\\.)"+x.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,t.result=void 0,t.target||(t.target=i),n=null==n?[t]:w.makeArray(n,[t]),d=w.event.special[m]||{},o||!d.trigger||!1!==d.trigger.apply(i,n))){if(!o&&!d.noBubble&&!y(i)){for(l=d.delegateType||m,wt.test(l+m)||(s=s.parentNode);s;s=s.parentNode)v.push(s),u=s;u===(i.ownerDocument||r)&&v.push(u.defaultView||u.parentWindow||e)}a=0;while((s=v[a++])&&!t.isPropagationStopped())h=s,t.type=a>1?l:d.bindType||m,(p=(J.get(s,"events")||{})[t.type]&&J.get(s,"handle"))&&p.apply(s,n),(p=c&&s[c])&&p.apply&&Y(s)&&(t.result=p.apply(s,n),!1===t.result&&t.preventDefault());return t.type=m,o||t.isDefaultPrevented()||d._default&&!1!==d._default.apply(v.pop(),n)||!Y(i)||c&&g(i[m])&&!y(i)&&((u=i[c])&&(i[c]=null),w.event.triggered=m,t.isPropagationStopped()&&h.addEventListener(m,Tt),i[m](),t.isPropagationStopped()&&h.removeEventListener(m,Tt),w.event.triggered=void 0,u&&(i[c]=u)),t.result}},simulate:function(e,t,n){var r=w.extend(new w.Event,n,{type:e,isSimulated:!0});w.event.trigger(r,null,t)}}),w.fn.extend({trigger:function(e,t){return this.each(function(){w.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return w.event.trigger(e,t,n,!0)}}),h.focusin||w.each({focus:"focusin",blur:"focusout"},function(e,t){var n=function(e){w.event.simulate(t,e.target,w.event.fix(e))};w.event.special[t]={setup:function(){var r=this.ownerDocument||this,i=J.access(r,t);i||r.addEventListener(e,n,!0),J.access(r,t,(i||0)+1)},teardown:function(){var r=this.ownerDocument||this,i=J.access(r,t)-1;i?J.access(r,t,i):(r.removeEventListener(e,n,!0),J.remove(r,t))}}});var Ct=e.location,Et=Date.now(),kt=/\?/;w.parseXML=function(t){var n;if(!t||"string"!=typeof t)return null;try{n=(new e.DOMParser).parseFromString(t,"text/xml")}catch(e){n=void 0}return n&&!n.getElementsByTagName("parsererror").length||w.error("Invalid XML: "+t),n};var St=/\[\]$/,Dt=/\r?\n/g,Nt=/^(?:submit|button|image|reset|file)$/i,At=/^(?:input|select|textarea|keygen)/i;function jt(e,t,n,r){var i;if(Array.isArray(t))w.each(t,function(t,i){n||St.test(e)?r(e,i):jt(e+"["+("object"==typeof i&&null!=i?t:"")+"]",i,n,r)});else if(n||"object"!==x(t))r(e,t);else for(i in t)jt(e+"["+i+"]",t[i],n,r)}w.param=function(e,t){var n,r=[],i=function(e,t){var n=g(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(Array.isArray(e)||e.jquery&&!w.isPlainObject(e))w.each(e,function(){i(this.name,this.value)});else for(n in e)jt(n,e[n],t,i);return r.join("&")},w.fn.extend({serialize:function(){return w.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=w.prop(this,"elements");return e?w.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!w(this).is(":disabled")&&At.test(this.nodeName)&&!Nt.test(e)&&(this.checked||!pe.test(e))}).map(function(e,t){var n=w(this).val();return null==n?null:Array.isArray(n)?w.map(n,function(e){return{name:t.name,value:e.replace(Dt,"\r\n")}}):{name:t.name,value:n.replace(Dt,"\r\n")}}).get()}});var qt=/%20/g,Lt=/#.*$/,Ht=/([?&])_=[^&]*/,Ot=/^(.*?):[ \t]*([^\r\n]*)$/gm,Pt=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Mt=/^(?:GET|HEAD)$/,Rt=/^\/\//,It={},Wt={},$t="*/".concat("*"),Bt=r.createElement("a");Bt.href=Ct.href;function Ft(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(M)||[];if(g(n))while(r=o[i++])"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function _t(e,t,n,r){var i={},o=e===Wt;function a(s){var u;return i[s]=!0,w.each(e[s]||[],function(e,s){var l=s(t,n,r);return"string"!=typeof l||o||i[l]?o?!(u=l):void 0:(t.dataTypes.unshift(l),a(l),!1)}),u}return a(t.dataTypes[0])||!i["*"]&&a("*")}function zt(e,t){var n,r,i=w.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&w.extend(!0,e,r),e}function Xt(e,t,n){var r,i,o,a,s=e.contents,u=e.dataTypes;while("*"===u[0])u.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in s)if(s[i]&&s[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+" "+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}function Ut(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];o=c.shift();while(o)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if("*"===o)o=u;else if("*"!==u&&u!==o){if(!(a=l[u+" "+o]||l["* "+o]))for(i in l)if((s=i.split(" "))[1]===o&&(a=l[u+" "+s[0]]||l["* "+s[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e["throws"])t=a(t);else try{t=a(t)}catch(e){return{state:"parsererror",error:a?e:"No conversion from "+u+" to "+o}}}return{state:"success",data:t}}w.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Ct.href,type:"GET",isLocal:Pt.test(Ct.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":$t,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":w.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?zt(zt(e,w.ajaxSettings),t):zt(w.ajaxSettings,e)},ajaxPrefilter:Ft(It),ajaxTransport:Ft(Wt),ajax:function(t,n){"object"==typeof t&&(n=t,t=void 0),n=n||{};var i,o,a,s,u,l,c,f,p,d,h=w.ajaxSetup({},n),g=h.context||h,y=h.context&&(g.nodeType||g.jquery)?w(g):w.event,v=w.Deferred(),m=w.Callbacks("once memory"),x=h.statusCode||{},b={},T={},C="canceled",E={readyState:0,getResponseHeader:function(e){var t;if(c){if(!s){s={};while(t=Ot.exec(a))s[t[1].toLowerCase()]=t[2]}t=s[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return c?a:null},setRequestHeader:function(e,t){return null==c&&(e=T[e.toLowerCase()]=T[e.toLowerCase()]||e,b[e]=t),this},overrideMimeType:function(e){return null==c&&(h.mimeType=e),this},statusCode:function(e){var t;if(e)if(c)E.always(e[E.status]);else for(t in e)x[t]=[x[t],e[t]];return this},abort:function(e){var t=e||C;return i&&i.abort(t),k(0,t),this}};if(v.promise(E),h.url=((t||h.url||Ct.href)+"").replace(Rt,Ct.protocol+"//"),h.type=n.method||n.type||h.method||h.type,h.dataTypes=(h.dataType||"*").toLowerCase().match(M)||[""],null==h.crossDomain){l=r.createElement("a");try{l.href=h.url,l.href=l.href,h.crossDomain=Bt.protocol+"//"+Bt.host!=l.protocol+"//"+l.host}catch(e){h.crossDomain=!0}}if(h.data&&h.processData&&"string"!=typeof h.data&&(h.data=w.param(h.data,h.traditional)),_t(It,h,n,E),c)return E;(f=w.event&&h.global)&&0==w.active++&&w.event.trigger("ajaxStart"),h.type=h.type.toUpperCase(),h.hasContent=!Mt.test(h.type),o=h.url.replace(Lt,""),h.hasContent?h.data&&h.processData&&0===(h.contentType||"").indexOf("application/x-www-form-urlencoded")&&(h.data=h.data.replace(qt,"+")):(d=h.url.slice(o.length),h.data&&(h.processData||"string"==typeof h.data)&&(o+=(kt.test(o)?"&":"?")+h.data,delete h.data),!1===h.cache&&(o=o.replace(Ht,"$1"),d=(kt.test(o)?"&":"?")+"_="+Et+++d),h.url=o+d),h.ifModified&&(w.lastModified[o]&&E.setRequestHeader("If-Modified-Since",w.lastModified[o]),w.etag[o]&&E.setRequestHeader("If-None-Match",w.etag[o])),(h.data&&h.hasContent&&!1!==h.contentType||n.contentType)&&E.setRequestHeader("Content-Type",h.contentType),E.setRequestHeader("Accept",h.dataTypes[0]&&h.accepts[h.dataTypes[0]]?h.accepts[h.dataTypes[0]]+("*"!==h.dataTypes[0]?", "+$t+"; q=0.01":""):h.accepts["*"]);for(p in h.headers)E.setRequestHeader(p,h.headers[p]);if(h.beforeSend&&(!1===h.beforeSend.call(g,E,h)||c))return E.abort();if(C="abort",m.add(h.complete),E.done(h.success),E.fail(h.error),i=_t(Wt,h,n,E)){if(E.readyState=1,f&&y.trigger("ajaxSend",[E,h]),c)return E;h.async&&h.timeout>0&&(u=e.setTimeout(function(){E.abort("timeout")},h.timeout));try{c=!1,i.send(b,k)}catch(e){if(c)throw e;k(-1,e)}}else k(-1,"No Transport");function k(t,n,r,s){var l,p,d,b,T,C=n;c||(c=!0,u&&e.clearTimeout(u),i=void 0,a=s||"",E.readyState=t>0?4:0,l=t>=200&&t<300||304===t,r&&(b=Xt(h,E,r)),b=Ut(h,b,E,l),l?(h.ifModified&&((T=E.getResponseHeader("Last-Modified"))&&(w.lastModified[o]=T),(T=E.getResponseHeader("etag"))&&(w.etag[o]=T)),204===t||"HEAD"===h.type?C="nocontent":304===t?C="notmodified":(C=b.state,p=b.data,l=!(d=b.error))):(d=C,!t&&C||(C="error",t<0&&(t=0))),E.status=t,E.statusText=(n||C)+"",l?v.resolveWith(g,[p,C,E]):v.rejectWith(g,[E,C,d]),E.statusCode(x),x=void 0,f&&y.trigger(l?"ajaxSuccess":"ajaxError",[E,h,l?p:d]),m.fireWith(g,[E,C]),f&&(y.trigger("ajaxComplete",[E,h]),--w.active||w.event.trigger("ajaxStop")))}return E},getJSON:function(e,t,n){return w.get(e,t,n,"json")},getScript:function(e,t){return w.get(e,void 0,t,"script")}}),w.each(["get","post"],function(e,t){w[t]=function(e,n,r,i){return g(n)&&(i=i||r,r=n,n=void 0),w.ajax(w.extend({url:e,type:t,dataType:i,data:n,success:r},w.isPlainObject(e)&&e))}}),w._evalUrl=function(e){return w.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,"throws":!0})},w.fn.extend({wrapAll:function(e){var t;return this[0]&&(g(e)&&(e=e.call(this[0])),t=w(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstElementChild)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(e){return g(e)?this.each(function(t){w(this).wrapInner(e.call(this,t))}):this.each(function(){var t=w(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=g(e);return this.each(function(n){w(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(e){return this.parent(e).not("body").each(function(){w(this).replaceWith(this.childNodes)}),this}}),w.expr.pseudos.hidden=function(e){return!w.expr.pseudos.visible(e)},w.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},w.ajaxSettings.xhr=function(){try{return new e.XMLHttpRequest}catch(e){}};var Vt={0:200,1223:204},Gt=w.ajaxSettings.xhr();h.cors=!!Gt&&"withCredentials"in Gt,h.ajax=Gt=!!Gt,w.ajaxTransport(function(t){var n,r;if(h.cors||Gt&&!t.crossDomain)return{send:function(i,o){var a,s=t.xhr();if(s.open(t.type,t.url,t.async,t.username,t.password),t.xhrFields)for(a in t.xhrFields)s[a]=t.xhrFields[a];t.mimeType&&s.overrideMimeType&&s.overrideMimeType(t.mimeType),t.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest");for(a in i)s.setRequestHeader(a,i[a]);n=function(e){return function(){n&&(n=r=s.onload=s.onerror=s.onabort=s.ontimeout=s.onreadystatechange=null,"abort"===e?s.abort():"error"===e?"number"!=typeof s.status?o(0,"error"):o(s.status,s.statusText):o(Vt[s.status]||s.status,s.statusText,"text"!==(s.responseType||"text")||"string"!=typeof s.responseText?{binary:s.response}:{text:s.responseText},s.getAllResponseHeaders()))}},s.onload=n(),r=s.onerror=s.ontimeout=n("error"),void 0!==s.onabort?s.onabort=r:s.onreadystatechange=function(){4===s.readyState&&e.setTimeout(function(){n&&r()})},n=n("abort");try{s.send(t.hasContent&&t.data||null)}catch(e){if(n)throw e}},abort:function(){n&&n()}}}),w.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),w.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return w.globalEval(e),e}}}),w.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),w.ajaxTransport("script",function(e){if(e.crossDomain){var t,n;return{send:function(i,o){t=w(" + + + + + + + diff --git a/templates/footer.inc b/templates/footer.inc new file mode 100644 index 0000000..344798f --- /dev/null +++ b/templates/footer.inc @@ -0,0 +1,10 @@ + +
 
 
 
+ + +
+ Abschließende Informationen +
+ + + \ No newline at end of file diff --git a/templates/header.inc b/templates/header.inc new file mode 100644 index 0000000..3503af7 --- /dev/null +++ b/templates/header.inc @@ -0,0 +1,20 @@ + + + + + <?=$this->title?> + + + + + + + + + + + + + + + +
+

Herzlichen Dank für Ihre Bestellung

+
Sie sollten in den nächsten Minuten eine E-Mail-Nachricht mit den Tickets und der Rechnung erhalten.
+
Falls Probleme auftreten kontaktieren Sie uns bitte
+
\ No newline at end of file diff --git a/templates/table_foot.inc b/templates/table_foot.inc new file mode 100644 index 0000000..3e2f327 --- /dev/null +++ b/templates/table_foot.inc @@ -0,0 +1,4 @@ +
+
+
+ \ No newline at end of file diff --git a/templates/table_head.inc b/templates/table_head.inc new file mode 100644 index 0000000..5e07afe --- /dev/null +++ b/templates/table_head.inc @@ -0,0 +1,47 @@ + +properties)) { + $properties = $this->properties; + + if( count($properties[items][0][items]) >0) { + $monat = -2; + $jahr = -2; + if(!is_null($_GET['monat'])) $monat =$_GET['monat']; + if(!is_null($_GET['jahr'])) $jahr =$_GET['jahr']; + + echo ""; + } + } +?> + + + +
+
+
Event
+
Datum
+
Uhrzeit
+
MaxTN
+
aktuelle TN
+
Verfügbar
+
Anmeldung
+
+ + diff --git a/templates/table_row.inc b/templates/table_row.inc new file mode 100644 index 0000000..7623025 --- /dev/null +++ b/templates/table_row.inc @@ -0,0 +1,20 @@ +
+
+ produkt_titel?> +
produkt_beschreibung?>
+
+
+
von->format('H:i')?>
+
maxtn?>
+
tn?>
+
freitn?>
+
+ freitn>0) { + echo "Anmeldung"; + } else { + echo "Ausgebucht"; + } + ?> +
+
diff --git a/templates/teaser_foot.inc b/templates/teaser_foot.inc new file mode 100644 index 0000000..ba44661 --- /dev/null +++ b/templates/teaser_foot.inc @@ -0,0 +1,2 @@ + +
\ No newline at end of file diff --git a/templates/teaser_head.inc b/templates/teaser_head.inc new file mode 100644 index 0000000..a1c177b --- /dev/null +++ b/templates/teaser_head.inc @@ -0,0 +1,3 @@ +
+ + diff --git a/templates/teaser_row.inc b/templates/teaser_row.inc new file mode 100644 index 0000000..a6effcf --- /dev/null +++ b/templates/teaser_row.inc @@ -0,0 +1,19 @@ +
+
+
+ bis->getTimestamp())?> +
+
+ bis->getTimestamp())?> +
+
+ + +
diff --git a/templates/termindetail.inc b/templates/termindetail.inc new file mode 100644 index 0000000..957e0d1 --- /dev/null +++ b/templates/termindetail.inc @@ -0,0 +1,89 @@ + + +
+
+

produkt_titel?>

+
+
+ +
+ produkt_beschreibung?> +
+
+
+
+
+ Beginn +
+
+ +
+
+
+
+ Ende +
+
+ +
+
+
+
Max. TN
+
maxtn?>
+
+
+
aktuell TN
+
tn?>
+
+
+
Freie Plätze
+
freitn?>
+
+ + de_stattbuchung_Preismodell)) { + echo "
Preisinformationen
"; + foreach ($this->de_stattbuchung_Preismodell as $preismodell) { + echo " + + + "; + echo "
".$preismodell[de_stattbuchung_Teilnehmerart][label]."
". + round($preismodell[items][0][preis_brutto], 2) + ." €
"; + } + echo ""; + echo "
"; + } + ?> + + + + + weitere Termine + +
+
+
+ freitn>0) { + echo "Anmeldung"; + } else { + echo "Ausgebucht"; + } + ?> +
+ diff --git a/testwarenkorb.html b/testwarenkorb.html new file mode 100644 index 0000000..252b2cb --- /dev/null +++ b/testwarenkorb.html @@ -0,0 +1,306 @@ + + + + Termine Verkehrsakadmie Franken + + + + + + + + + + + + + + + + + + +
+ +
+

Anmeldung für: Modul 1 Wirtschaftliches Fahren Kombimodul KOM/LKW

+
+ +
+
+
+
+ Beginn +
+
+ +
+
+
+
+ Ende +
+
+ +
+
+
+
Max. TN
+
16
+
+
+
aktuell TN
+
1
+
+
+
Freie Plätze
+
15
+
+
+
+

Eco-Fahren, Das Perfektionstraining


  • Das Modul 1 ist ein Kombinationsmodul, das Inhalte für beide Führerscheinklassen vermittelt.
  • Die Kennziffern für dieses Modul sind: 1.1, 1.2, 1.3
+
+ + + +
+ +
+ + + +
+ + + + + + +
+
+ + +
+
+ + +
+ +
+ + + +
+
+ + +
+ + +
+ + +
+
+ +
+
+ + +
+ +
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ +
+ + + +
+
Bitte geben Sie die gewünschte Anzahl von Tickets ein
+
+ + + + +
+
+ + + + +
+ +
+ + +
+ + + +
+ + +
+
+ + +
+ + + + + + + + + +
 
 
 
+ + + + + \ No newline at end of file diff --git a/util.php b/util.php new file mode 100644 index 0000000..8b5ad89 --- /dev/null +++ b/util.php @@ -0,0 +1,11 @@ + $paramName, "value"=>$value, "type"=>"string"); + + return $param; + +} + + +?> \ No newline at end of file