diff --git a/.DS_Store b/.DS_Store index 7b31595..f65d3a9 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/settings.py b/settings.py index c9646d4..a3370e7 100644 --- a/settings.py +++ b/settings.py @@ -117,6 +117,7 @@ # 'django.contrib.admindocs', # project + 'www', 'order', 'uni_form', 'south', diff --git a/settings.pyc b/settings.pyc index 4995f60..ea320fb 100644 Binary files a/settings.pyc and b/settings.pyc differ diff --git a/urls.py b/urls.py index 5e19948..21e2d34 100644 --- a/urls.py +++ b/urls.py @@ -8,11 +8,13 @@ admin.autodiscover() urlpatterns = patterns('views', - ('^$', 'index'), + ('^office/$', 'office'), + ('^$', 'www'), url('^about/$', 'about', name='about'), url(r'^login/$', 'make_login', name='login'), url(r'^logout/$', logout, name='logout'), url(r'^order/', include('personalcar.order.urls')), + url(r'^/', include('personalcar.www.urls')), url(r'^admin/', include(admin.site.urls)), ) diff --git a/urls.pyc b/urls.pyc index d4d2e63..0593a16 100644 Binary files a/urls.pyc and b/urls.pyc differ diff --git a/views.py b/views.py index f922d29..33f1882 100644 --- a/views.py +++ b/views.py @@ -16,10 +16,15 @@ from django.contrib.auth import authenticate, login @login_required -def index(request, template="index.html"): +def office(request, template="index.html"): return render_to_response(template, {}, context_instance=RequestContext(request)) + +def www(request, template="index_accordion.html"): + return render_to_response(template, + {}, + context_instance=RequestContext(request)) def make_login(request): if request.method == 'POST': diff --git a/views.pyc b/views.pyc index 3b3f570..bdf63b4 100644 Binary files a/views.pyc and b/views.pyc differ diff --git a/www/__init__.py b/www/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/www/models.py b/www/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/www/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/www/static/css/kriframework.css b/www/static/css/kriframework.css new file mode 100644 index 0000000..fe941a6 --- /dev/null +++ b/www/static/css/kriframework.css @@ -0,0 +1,89 @@ +/*Small reset*/ +body, ul, ol, h1,h2,h3,h4,h5,h6,form,li,p,input,select,legend,textarea,fieldset{ margin:0; padding:0;} +ul{list-style-type: none; list-style-position: outside} +ol{list-style-position: outside} + +body{font-size: 13px; line-height: 1.8em;} +.wrap_fullwidth{width:100%; position: relative; float:left; clear:both; } +.center{width:940px; position: relative; margin:0 auto; clear: both; padding:20px; overflow: auto;} +.wrap_content{width:100%; position: relative; clear: both; float: left; } + +/*Generic rules*/ +.content_one_half, +.content_one_fourth, +.content_three_fourth, +.content_two_third, +.content_one_third, +.content_fullwidth +{margin: 0 0 10px 50px; float:left; position: relative;} + +/* First child elements */ +#top .content_one_half:first-child, +#top .content_one_fourth:first-child, +#top .content_three_fourth:first-child, +#top .content_two_third:first-child, +#top .content_one_third:first-child, +#top .content_fullwidth:first-child, +#top .js_add_firstchild, +#top .firstchild +{margin:0 0 10px 0; +} + +/*************************** Basic sets ****************************/ +/*Basic 50px set*/ +#top .wrap_fullwidth .content_fullwidth{width:940px; margin:0 auto 10px auto;clear:both;} +.content_one_third{width:280px;} +.content_one_half{width:445px;} +.content_one_fourth{width:197.5px;} +.content_three_fourth{width:692.5px;} +.content_two_third{width:610px;} + +/*Basic 20px set*/ +.small_margin .content_one_half, +.small_margin .content_one_fourth, +.small_margin .content_three_fourth, +.small_margin .content_two_third, +.small_margin .content_one_third, +.small_margin .content_fullwidth +{margin: 0 0 10px 20px; float:left;} + +.small_margin .content_fullwidth{width:100%;} +.small_margin .content_one_third{width:300px;} +.small_margin .content_one_half{width:460px;} +.small_margin .content_one_fourth{width:220px;} +.small_margin .content_three_fourth{width:700px;} +.small_margin .content_two_third{width:620px;} + + +/*************************** Boxed sets ****************************/ +/*Boxed 50px set*/ +.boxed .content_one_half, +.boxed .content_one_fourth, +.boxed .content_three_fourth, +.boxed .content_two_third, +.boxed .content_one_third, +.boxed .content_fullwidth +{margin: 0 0 10px 50px; float:left; height:50px; border-width: 1px; border-style: solid; padding: 20px;} + +#top .wrap_fullwidth .boxed .content_fullwidth{width:898px;} +.boxed .content_one_third{width:238px;} +.boxed .content_one_half{width:403px;} +.boxed .content_one_fourth{width:155.5px;} +.boxed .content_three_fourth{width:650.5px;} +.boxed .content_two_third{width:568px;} + +/*Boxed 20px set*/ +.boxed .small_margin .content_one_half, +.boxed .small_margin .content_one_fourth, +.boxed .small_margin .content_three_fourth, +.boxed .small_margin .content_two_third, +.boxed .small_margin .content_one_third, +.boxed .small_margin .content_fullwidth +{margin: 0 0 10px 20px; float:left; padding:20px;} + +.boxed .small_margin .content_fullwidth{width:898px;} +.boxed .small_margin .content_one_third{width:258px;} +.boxed .small_margin .content_one_half{width:418px;} +.boxed .small_margin .content_one_fourth{width:178px;} +.boxed .small_margin .content_three_fourth{width:658px;} +.boxed .small_margin .content_two_third{width:578px;} diff --git a/www/static/css/style.css b/www/static/css/style.css new file mode 100644 index 0000000..ad2abab --- /dev/null +++ b/www/static/css/style.css @@ -0,0 +1,990 @@ +/* +Table of contents: +-) HEAD +-) FEATURED +-) MAIN CONTENT +-) CONTACT FORM +-) COMMENTS +-) SIDEBAR +-) GENERIC +*/ + + + +body{ +font-size:13px; +font-family: Arial, Helevtica, Verdana, san-serif; +line-height:23px; +position:relative; +float: left; +width: 100%; +} + +/************************************************************************ +HEAD +*************************************************************************/ +#head .center{ +padding:0 20px; +} + +#top .logo, #top .logo a{ +display:block; +height:60px; +width:240px; +position:relative; +border: none; +padding: 0; +margin:0; +z-index: 10; +} + +#top .logo a{ +top:0; +left:0; +text-indent:-9999px; +outline:none; +border: none; +} + +/*searchform head*/ +#head #searchform{ +float:right; +position: relative; +} + +#head #searchsubmit{ +border:medium none; +cursor:pointer; +display:block; +height:35px; +outline:none; +padding:0; +position:absolute; +right:-8px; +text-indent:-9999px; +top:4px; +width:35px; +z-index: 2; +} + +#head #s{ +border: none; +width:200px; +padding:5px 30px 5px 10px; +color:#ccc; +position: relative; +top:10px; +} + +.headline{ +float:left; +padding:16px 0; +font-size: 11px; +line-height: 1em; +} + +.headline a, .headline span{ +display:block; +margin-right:25px; +float: left; +} + + + +#second_header, #second_header .center{ +overflow: visible; +z-index: 2105; +} + + +#nav{ +position: absolute; +right:20px; +list-style-type: none; +list-style-position: outside; +margin:0; +z-index: 5; +top:28px; +} + +#nav li{ +float: left; +} + +#nav li a{ +display:block; +float:left; +padding:6px 15px; +border: none; +text-decoration: none; +line-height: 18px; +outline: none; +margin-right:1px; +} + + +/*navigation*/ + + +#nav ul{ +margin:0; +padding:0; +list-style-type:none; +list-style-position:outside; +position:relative; +line-height:50px; +z-index:5; +} + + +#top #nav ul a{ +line-height:28px; +font-size: 12px; +cursor: pointer; +} + +#top #nav li{ +float:left; +position:relative; +z-index:20; +margin-top:11px; +} + +#top #nav li li{ +border-left:none; +margin-top:0; +} + +#top #nav ul { +display:none; +position:absolute; +top:27px; +width:172px; +left:0; +padding:5px; +} + +#top #nav li ul a{ +width:150px; +height:auto; +float:left; +text-align:left; +padding:0 10px; +} + +#top #nav ul ul{ +top:auto; +border-top:none; +} + +#top #nav li ul ul { +left:-182px; +top:-4px; +} + +#top #nav li:hover ul ul, #top #nav li:hover ul ul ul,#top #nav li:hover ul ul ul ul{ +display:none; +} +#top #nav li:hover ul, #top #nav li li:hover ul, #top #nav li li li:hover ul, #top #nav li li li li:hover ul{ +display:block; +} + +#top #nav li ul a{ +border-top:none; +} + + + +/************************************************************************ +FEATURED +*************************************************************************/ +#featured, .featured, .fadeout, .newsselect{ +height:370px; /*this changes the height of the image slider*/ +} + +#feature_background{ +padding:0 0 20px 0; +} + +#top #feature_wrap{ +padding:0 0 20px; +overflow: visible; +} + +#featured{ +position: relative; +width:940px; +overflow: hidden; +} + +#top .featured1{ +border:none; +display: block; +} + + +.featured{ +width:940px; +position:absolute; +top:0; +left:0; +overflow: hidden; +display:none; +} + +#top .fadeout{ +position:absolute; +width:200px; +display:block; +right:0px; +z-index: 3; +} + +/*accordion*/ +.accordion .featured{ +width:670px; +} + +#top .accordion .feature_excerpt{ +width:630px; +} + +#top .accordion .heading_clone{ +position: absolute; +z-index: 4; +bottom:20px; +left:20px; +font-size: 13px; +text-transform: uppercase; +padding:0; +margin: 0; +} + +/*fadeslider*/ +.fadeslider .featured{ +width:100%; +border:none; +} + +#top .slidecontrolls{ +position:absolute; +width:10px; +right:-15px; +top:0; +} + +#top .slidecontrolls span{ +height:10px; +padding:2px 0; +width:10px; +display:block; +cursor: pointer; +} + + +#top .fadeslider .feature_excerpt{ +width:917px; +} + +/*newsslider*/ + +.newsselect{ +position: absolute; +overflow: hidden; +width:276px; +right:0px; +top:0px; +z-index: 5; +} + +.newsslider .newsItems{ +position: absolute; +top:0; +left:0; +} + +#top .newsslider .feature_excerpt{ +width:630px; +} + +.newsslider .featured{ +border:none; +width:670px; +} + +#top .newsselect .sliderheading{ +font-size:13px; +font-family: Arial, Helevtica, Verdana, san-serif; +font-weight: bold; +padding: 0; +} + +.newsselect .single_item{ +padding:10px; +display: block; +text-decoration: none; +line-height: 1.3em; +} + +#top .newsslider .fadeout{ +right:155px; +} + +.newsselect .sliderdate{ +display:block; +font-size: 11px; +} +/*-------------------*/ + + + +#top .feature_excerpt{ +width:900px; +position: absolute; +display: block; +bottom: 0; +left:0; +z-index: 2; +padding:10px 20px; +font-size: 11.5px; +line-height:1.5em; +cursor: pointer; +} + + +#top .sliderheading{ +display:block; +font-size: 26px; +font-weight: normal; +font-family: "Trebuchet MS",Arial,Helvetica,san-serif; +} + +.sliderdate{ +display:none; +} + +#featured a, #featured a img, #featured img{ +text-decoration: none; +border:none; +} + +.bottom_right_rounded_corner, .bottom_left_rounded_corner, .top_right_rounded_corner, .top_left_rounded_corner{ +display: block; +width:5px; +height:5px; +position: absolute; +z-index: 2100; +} + +#featured a:hover{ +text-decoration: none; +} + +.bottom_right_rounded_corner{bottom:20px; right:0} +.bottom_left_rounded_corner{bottom:20px; left:0} +.top_right_rounded_corner{top:0; right:0} +.top_left_rounded_corner{top:0; left:0} + +#top #featured .rel_pos{ +position: relative; +} + +/************************************************************************ +MAIN CONTENT +*************************************************************************/ +#top .wrap_fullwidth .content_fullwidth{ +margin-bottom: 20px; +} + +#main .center{ +padding-top: 0; +overflow: visible; +} + +#info { +bottom:17px; +padding:0 0 30px; +position:relative; +margin:0 0 30px; +} + +#top .info_noslide{ +margin:4px 0 12px 0; +padding:23px 0 26px; +position:relative; +bottom: auto; +} + +.latest_work, .show_portfolio{ +text-transform: uppercase; +float:left; +font-weight: bold; +display: block; +font-size: 11px; +} + +#top .show_portfolio{ +float: right; +padding-right:20px; +} + +#top .portfolio_item{ +font-size: 12px; +line-height: 1.7em; +padding:0 0 27px 0; +} + +.portfolio_item .item_data{ +padding:6px; +width:286px; +float: left; +} + +#top .portfolio_item img, #top .portfolio_item a img{ +border: none; +display: block; +margin-bottom: 5px; +} + +#top .portfolio_item h2{ +font-size: 13px; +font-weight: bold; +text-transform: uppercase; +padding:1px 1px 3px 1px; +border: none; +} + +.category, .date, .post_data .comments{ +display: block; +float: left; +font-size: 11px; +padding:0 0 0 20px; +font-weight: bold; +} + +#top .portfolio_item .date{ +float: right; +padding:0 20px 0 0; +} + +.portfolio_item .entry{ +padding:1px 1px 4px 1px; +} + +/*blog*/ + +#top .entry{ +margin-left:0; +} + +.post_data .date, .post_data .category, .post_data .comments{ +margin-right:20px; +} + +.entry_content{ +clear:both; +position: relative; +float: left; +width: 100%; +padding-bottom: 30px; +overflow: hidden; +} + +.image_border{ +padding: 10px 0 20px 0; +} + +.entry img{ +padding:5px; +display: block; +} + + + +.content_one_third img{ +max-width:288px; +} + +.content_two_third img{ +max-width:608px; +} + +#sidebar img{ +max-width:268px; +} + + +.more-link{ +display:block; +font-size:11px; +font-weight:bold; +line-height:20px; +margin:8px 0 0; +padding:0 20px 0 0; +width:62px; +} + +.entry_content h1, .entry_content h2, .entry_content h3, .entry_content h4, .entry_content h5, .entry_content h6{ +padding-top:20px; +} + +/*pagination*/ + +#top .pagination { +clear:both; +padding:0 0 60px 0; +position:relative; +z-index:3; +} + +#top .pagination span, #top .pagination a { +display:block; +float:left; +font-size:11px; +line-height:13px; +margin: 2px 2px 2px 0; +padding:6px 9px 5px 9px; +text-decoration:none; +width:auto; +} + + +#top .pagination .current{ +font-size:11px; +padding:6px 9px 5px 9px; + +} +/************************************************************************ +CONTACT FORM +*************************************************************************/ + +fieldset{ +border:none; +} + +.ajax_form .text_area{ +padding:10px; +width:500px; +} + +.ajax_form .text_input{ +width:250px; +margin-right:10px; +} + +.ajax_form h3{ +border:none; +} + +.ajax_form p{ +padding: 0 0 10px 0; +} + +.ajax_form label{ +font-size: 11px; +font-weight: bold; +} + +/************************************************************************ +COMMENTS +*************************************************************************/ +.commentlist{ +float:left; +width:100%; +padding: 0 0 30px 0; +} + +.commentlist .comment{ +list-style-type: none; +list-style-position: outside; +width:100%; +position: relative; +display: block; +float: left; +padding: 10px 0 0 0; +margin: 10px 0 0 0; +} + +.gravatar{ +float:left; +width:72px; +padding-right:20px; +font-size: 11px; +text-decoration: none; +text-align: center; +position: relative; +} + +.comment_content{ +float:right; +padding:18px 18px 30px; +position:relative; +width:490px; +-moz-border-radius: 5px; +-webkit-border-radius:5px; +border-radius:5px; +} + +.author_name a{ +font-size: 16px; +font-weight: bold; +text-decoration: none; +font-style: normal; +float:left; +} + +.commentmetadata { +float:left; +font-size:11px; +line-height:26px; +padding-left:12px; +} + +.says{ +position: absolute; +left:-13px; +top:18px; +display: block; +height:24px; +width:13px; +text-indent: -9999px; +} + +.comment_text{ +clear: both; +font-size: 12px; +} + +#top .comment-reply-link{ +font-size: 11px; +text-decoration: none; +position: absolute; +display: block; +padding:0px 7px; +bottom: 0; +left:0; +} + +/*comment children*/ + +.children .gravatar { +padding:0; +position:absolute; +right:20px; +top:0; +width:42px; +z-index:2; +} + +.children .gravatar img{ +width:30px; +height:30px; +} + +.children .says{ +display:none; +} + + +/*input fields*/ + +.personal_data p{ +float:left; +width:33%; +} + +.personal_data label{ +display:none; +} + +.message_data textarea{ +width:95%; +padding:10px; +font-size:12px; +font-family: Arial, Helevtica, Verdana, san-serif; +} + +.text_input, .button{ +padding:7px; +font-size:12px; +font-family: Arial, Helevtica, Verdana, san-serif; +} + +.button{ +padding:7px 12px; +} + + +.personal_data .text_input{ +width:91%; +} + + +.children .personal_data .text_input{ + +} +/************************************************************************ +SIDEBAR +*************************************************************************/ +#sidebar{ +width:280px; +padding:20px 0 20px 20px; +position: relative; +} + +#sidebar div{ +position: relative; +z-index: 2; +} + +#sidebar_top, #sidebar_bottom{ +width:280px; +height:70px; +display: block; +position: absolute; +left: 0; +z-index: 1; +top:0; +} + +#sidebar #sidebar_bottom{ +top:auto; +bottom: 0; +} + +#sidebar ul li a { +display:block; +line-height:22px; +padding:3px 10px; +position:relative; +text-decoration:none; +} + +.box{ +padding-bottom: 30px; +} + + +/************************************************************************ +FOOTER +*************************************************************************/ +#breadcrumb_wrap .center { +padding:5px 20px; +font-size: 11px; +} + +#footer_bottom .center{ +padding:9px 20px; +} + +/*breadcrumb*/ +.breadcrumb{ +float:left; +width:750px; +} + +.breadcrumb span, .breadcrumb a{ +float:left; +display:block; +padding-right:5px; +line-height:19px; +} + +.breadcrumb span{ +height:19px; +width:8px; +text-indent: -9999px; +} + +#top .breadcrumb_info{ +height:19px; +width:19px; +text-indent: -9999px; +} + +#top .current_crumb{ +text-indent: 0; +width:auto; +height: auto; +background: none; +} + +/*social bookmark icons*/ +.social_bookmarks{ +border:none; +display: block; +float: right; +list-style-type: none; +list-style-position: outside; +padding:7px 0px 0 0; +position: relative; +z-index: 6; +} + +.social_bookmarks li{ +float:left; +margin:0; +width:16px; +padding:0 0 0 7px; +} + +.social_bookmarks li a{ +height:16px; +width:16px; +display: block; +float:left; +text-indent: -9999px; +border:none; +padding:0; +outline: none; +} + + +#footer .box_mini { +margin-right:20px; +width:160px; +float:left; +} + +#footer .box_custom_footer { +margin-right:0; +width:220px; +float:left; +} + +#footer ul li a{ +display:block; +padding:3px 10px; +line-height:22px; +position: relative; +text-decoration: none; +} + +.copyright, .scrollTop{ +font-size: 11px; +float:left; +} + +#top .scrollTop{ +float: right; +display: block; +padding-right:15px; +outline: none; +} + +/************************************************************************ +GENERIC +*************************************************************************/ +.lightbox_video, .lightbox_image{ +position: absolute; +z-index: 1; +top:0; +left:0; +} + +a img, a:hover img{ +z-index: 2; +position: relative; +} + +a{ +text-decoration: none; +} + +a:hover{ +text-decoration: underline; +} + +h1, h2, h3, h4, h5, h6, legend, .sliderheading { +font-family: Arial, Helevtica, Verdana, san-serif; +font-weight:bold; +letter-spacing:0.4px; +line-height:1.4em; +padding-bottom:5px; +position:relative; +} + +h1{clear:both; font-size:24px; font-weight:normal;} +.entry h1{font-size:21px;} +h2{font-size:20px; clear:both; font-weight:normal;} +h3, legend{font-size:13px; clear:both;} +h4{font-size:12px; clear:both;} +h5{font-size:11px; clear:both;} +h6{font-size:10px; clear:both;} + +p{ padding: 0.5em 0;} + +#main ul,#main ol { +margin-bottom:10px; +} + +blockquote p{ +padding:11px 0px; +} + +blockquote{ +margin:0 0 22px 5px; +padding:0 15px; +font-size:12px; +font-style:italic; +} + +.floatleft{ +float:left; +} + +.floatright{ +float:right; +} + +.clearboth{ +clear:both; +} + +body .alignleft{ +float:left; +margin:5px 10px 0px 0; +display: block; +} + +body .alignright{ +float:right; +margin:5px 0px 0px 10px; +display: block; +} + +.aligncenter{ +clear:both; +display:block; +margin:10px auto; +padding: 10px 0; +} + +.alignleft img, .alignright img{ +display:block; +} + + +.rounded, .entry img, .text_input, textarea, .button{ +-moz-border-radius: 5px; +-webkit-border-radius:5px; +border-radius:5px; +} + +.pagination span, .pagination a, .pagination .current, #nav a, #top #nav ul, #top #nav li{ +-moz-border-radius: 3px; +-webkit-border-radius:3px; +border-radius:3px; +} + +#top .noborder, #top .noborder img{ +border:none; +padding:0; +background: transparent; +} + +.currentTextHolder{ +padding:0; +margin:0px 4px; +line-height: 1em; +} \ No newline at end of file diff --git a/www/static/css/style1.css b/www/static/css/style1.css new file mode 100644 index 0000000..74fdb51 --- /dev/null +++ b/www/static/css/style1.css @@ -0,0 +1,379 @@ +body{ +background: transparent url('../images/skin1/bg.png') repeat top left; +color:#777; +} + +#main, #second_header{ +background: #fff; +} + +/************************************************************************ +FEATURED +*************************************************************************/ + +#feature_background{ +background:#fff url('../images/skin1/bg_featured.png') no-repeat center 301px; +} + +.bottom_right_rounded_corner, .bottom_left_rounded_corner, .top_right_rounded_corner, .top_left_rounded_corner{ +background:transparent url('http://www.kriesi.at/demos/elementia/water/images/skin1/rounded.png') no-repeat; +} + +.bottom_right_rounded_corner{background-position: bottom right;} +.bottom_left_rounded_corner{background-position: bottom left;} +.top_right_rounded_corner{background-position: top right;} +.top_left_rounded_corner{background-position: top left;} + +.slidercontent{ +color:#555; +} + +/*accordiom*/ +.featured{ +background: #f9f9f9 url(../images/skin1/preload.gif) no-repeat center center; +} + +#top .fadeout{ +background: transparent url(../images/skin1/overlay.png) repeat-y right top; +} + +/*fadeslider*/ + +#top .slidecontrolls span{ +background:transparent url(http://www.kriesi.at/demos/elementia/water/images/skin1/slide_controlls.png) no-repeat top right; +} + +#top .slidecontrolls .active_item, #top .slidecontrolls span:hover{ +background:transparent url(../images/skin1/slide_controlls.png) no-repeat top left; +} + +/*news*/ +.newsselect{ +border:1px solid #e1e1e1; +background: #f9f9f9; +} + +#top .newsselect .single_item{ +border-top: 1px solid #fff; +border-bottom: 1px solid #eee; +} + +.newsselect .single_item:hover, .newsselect .active_item{ +background-color: #f1f1f1; +text-shadow:1px 1px 0 #FFFFFF; +outline: none; +} + +.newsselect .sliderdate { +color:#888; +} + +/*------------------------------------------------------------*/ + + +#breadcrumb_wrap{ +background: #f5f5f5; +border-top:1px solid #d1d1d1; +} + +#head, #footer, #footer_bottom{ +color:#fff; +} + +.logo{ +background: transparent url('../images/skin1/logo.png') repeat top left; +} + +.social_bookmarks .rss a{background: transparent url(../images/skin1/rss_16.png) 0 0 no-repeat;} +.social_bookmarks .facebook a{background: transparent url(../images/skin1/facebook_16.png) 0 0 no-repeat;} +.social_bookmarks .twitter a{background: transparent url(../images/skin1/twitter_16.png) 0 0 no-repeat;} +.social_bookmarks .flickr a{background: transparent url(../images/skin1/flickr_16.png) 0 0 no-repeat;} +.social_bookmarks .skype a{background: transparent url(../images/skin1/skype_16.png) 0 0 no-repeat;} + +/*head searchform*/ + +#head #s{ +background: #fff; +color:#555; +} + +#head #searchsubmit{ +background: transparent url(../images/skin1/search.png) 2px center no-repeat; +} + +/*nav*/ + +#nav a{ +color:#555; +} + +#nav a:hover, #nav .current a, #top #nav li:hover a{ +color:#fff; +background: #333; +} + +#top #nav ul{ +background: #333; +} + +#top #nav ul a{ +color: #fff; +} + +#top #nav ul a:hover{ +color: #333; +background: #fff; +} + + +/*featured*/ + +.feature_excerpt{ +background: #fff; +} + +.featured a{ +color: #444; +} + +.featured a:hover{ +color: #777; +} +/*main content*/ +#info{ +border-bottom:1px solid #ccc; +color:#555; +} + +.info_noslide{ +border-top:1px solid #ccc; +} + +.show_portfolio, .more-link{ +background: transparent url(../images/skin1/icon_next.png) right 2px no-repeat; +} + +.show_portfolio:hover{ +text-decoration: none; +color: #777; +} + +.portfolio_item .item_data{ +border:1px solid #ccc; +background: #fff; +} + +.category a, .date, .comments a{ +color:#555; +} +.portfolio_item{ +background: transparent url(http://www.kriesi.at/demos/elementia/water/images/skin1/bg_portfolio_item.png) center bottom no-repeat; +} + +.category{ +background: transparent url(../images/skin1/icon_category.png) left 2px no-repeat; +} + +.date{ +background: transparent url(../images/skin1/icon_date.png) left 2px no-repeat; +} + +.post_data .comments{ +background: transparent url(../images/skin1/icon_comments.png) left 2px no-repeat; +} + +.portfolio_item .date{ +background: transparent url(../images/skin1/icon_date.png) right 2px no-repeat; +} +/*blog*/ + +.entry img{ +background: #fff; +border:1px solid #ccc; +} + +.image_border{ +background: transparent url(http://www.kriesi.at/demos/elementia/water/images/skin1/bg_blog_image.png) bottom center no-repeat; +} + +.latest_work, .show_portfolio, .more-link{ +color:#555; +} + +/*pagination*/ + +#top .pagination span, #top .pagination a{ +color:#fff; +background: #555; +} + +#top .pagination a:hover{ +color:#fff; +background: #777; +} + +#top .pagination .current{ +background: #29ABE2; +color:#fff; +} + +/*footer*/ +#footer{ +background: transparent url(../images/skin1/bg_footer_shadow.png) top left repeat-x; +border-bottom:1px solid #333; +} + +#top .breadcrumb_info{ +background: transparent url(../images/skin1/earth.png) top left no-repeat; +} + +.breadcrumb span{ +background: transparent url(../images/skin1/arrow.png) center left no-repeat; +} + +.breadcrumb a{ +color: #9c9c9c; +text-shadow:1px 1px 0 #FFFFFF; +} + +#footer h1, #footer h2, #footer h3, #footer h4, #footer h5, #footer h6, #footer legend, #footer h1 a, #footer h2 a, #footer h3 a, #footer h4 a, #footer h5 a, #footer h6 a { +color:#fff; +} +#footer h2,#footer h3,#footer h4,#footer h6, #footer ul li a{ +border-bottom:1px solid #777; +} + +#footer_bottom{ +border-top:1px solid #777; +} + +#footer li a{ +color:#aaa; +} + +#footer li a:hover{ +color:#fff; +text-decoration: none; +} + +.box li a, #footer .box .recentcomments{ +background:transparent url(../images/skin1/bullet2.png) no-repeat scroll 0 12px; +border-bottom:1px solid #333; +} + +.copyright, .scrollTop{color:#aaa;} +.scrollTop:hover{color:#fff; font-weight: bold; text-decoration: none;} + +.scrollTop{ +background:transparent url(../images/skin1/top.png) no-repeat scroll right 7px; +} + +/*sidebar*/ + +#sidebar{ +background:transparent url(../images/skin1/bg_sidebar_center.png) repeat-y top left; +} + +#sidebar_top{ +background:transparent url(../images/skin1/bg_sidebar_top.png) no-repeat top left; +} + +#sidebar_bottom{ +background:transparent url(../images/skin1/bg_sidebar_bottom.png) no-repeat bottom left; +} + +#sidebar .box li a{ +color:#777; +border-bottom:1px solid #CCCCCC; +background:transparent url(../images/skin1/bullet.png) no-repeat scroll 0 12px; +} + +#sidebar li a:hover{ +color:#555; +text-decoration: none; +} + +/*Generic*/ +h1, h2, h3, h4, h5, h6, legend, .sliderheading, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { +color:#555; +} + +h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover { +color:#777; +text-decoration: none; +} + +h2, h3, h4, h6{ +border-bottom:1px solid #ccc; +} + + + +a{ +color:#29abe2; +} + +a:hover{ +color:#6dc5eb; +} + +.lightbox_video, .lightbox_image{ +background:transparent url(../images/skin1/video.png) no-repeat center center; +} + +#top .lightbox_image{ +background:transparent url(../images/skin1/magnify.png) no-repeat center center; +} + +/************************************************************************ +CONTACT FORM +*************************************************************************/ + +.valid .text_input, .valid .text_area{border:1px solid #29abe2;} /*#70A41B*/ +.error .text_input, .error .text_area{border:1px solid #FF6600;} +.ajax_alert .text_input, .ajax_alert .text_area{border:1px solid #ffb628;} + +/************************************************************************ +COMMENTS +*************************************************************************/ + +.comment_content{ +border:1px solid #ccc; +} + +.author_name a{ +color:#555; +} + +.commentmetadata a{ +color:#aaa; +} + +.says{ +background:transparent url(../images/skin1/say.png) no-repeat scroll 0 0; +} + +.comment-reply-link{ +border-top:1px solid #ccc; +border-right:1px solid #ccc; +color:#555; +} + +.text_input, textarea{ +border:1px solid #ccc; +color:#555; +} + +.button{ +color: #fff; +background:#29abe2; +border: none; +cursor: pointer; +} + +.button:hover{ +color: #fff; +background:#333; +} + + diff --git a/www/static/images/ambiente.jpg b/www/static/images/ambiente.jpg new file mode 100644 index 0000000..89d9994 Binary files /dev/null and b/www/static/images/ambiente.jpg differ diff --git a/www/static/images/content_pic_big1.jpg b/www/static/images/content_pic_big1.jpg new file mode 100644 index 0000000..e1fe65c Binary files /dev/null and b/www/static/images/content_pic_big1.jpg differ diff --git a/www/static/images/content_pic_big2.jpg b/www/static/images/content_pic_big2.jpg new file mode 100644 index 0000000..876766b Binary files /dev/null and b/www/static/images/content_pic_big2.jpg differ diff --git a/www/static/images/content_pic_big3.jpg b/www/static/images/content_pic_big3.jpg new file mode 100644 index 0000000..59fbdb0 Binary files /dev/null and b/www/static/images/content_pic_big3.jpg differ diff --git a/www/static/images/content_pic_big4.jpg b/www/static/images/content_pic_big4.jpg new file mode 100644 index 0000000..9a77619 Binary files /dev/null and b/www/static/images/content_pic_big4.jpg differ diff --git a/www/static/images/content_pic_big5.jpg b/www/static/images/content_pic_big5.jpg new file mode 100644 index 0000000..a9997b3 Binary files /dev/null and b/www/static/images/content_pic_big5.jpg differ diff --git a/www/static/images/content_pic_medium1.jpg b/www/static/images/content_pic_medium1.jpg new file mode 100644 index 0000000..f435bb5 Binary files /dev/null and b/www/static/images/content_pic_medium1.jpg differ diff --git a/www/static/images/content_pic_medium2.jpg b/www/static/images/content_pic_medium2.jpg new file mode 100644 index 0000000..42df814 Binary files /dev/null and b/www/static/images/content_pic_medium2.jpg differ diff --git a/www/static/images/content_pic_small1.jpg b/www/static/images/content_pic_small1.jpg new file mode 100644 index 0000000..11680c1 Binary files /dev/null and b/www/static/images/content_pic_small1.jpg differ diff --git a/www/static/images/content_pic_small2.jpg b/www/static/images/content_pic_small2.jpg new file mode 100644 index 0000000..60f6548 Binary files /dev/null and b/www/static/images/content_pic_small2.jpg differ diff --git a/www/static/images/content_pic_small3.jpg b/www/static/images/content_pic_small3.jpg new file mode 100644 index 0000000..6d5ff33 Binary files /dev/null and b/www/static/images/content_pic_small3.jpg differ diff --git a/www/static/images/funilaria.jpg b/www/static/images/funilaria.jpg new file mode 100644 index 0000000..7d869e9 Binary files /dev/null and b/www/static/images/funilaria.jpg differ diff --git a/www/static/images/gravatar.png b/www/static/images/gravatar.png new file mode 100644 index 0000000..fd28f4a Binary files /dev/null and b/www/static/images/gravatar.png differ diff --git a/www/static/images/icon40_mail.png b/www/static/images/icon40_mail.png new file mode 100644 index 0000000..ade65d5 Binary files /dev/null and b/www/static/images/icon40_mail.png differ diff --git a/www/static/images/icon40_star.png b/www/static/images/icon40_star.png new file mode 100644 index 0000000..4cdb2d7 Binary files /dev/null and b/www/static/images/icon40_star.png differ diff --git a/www/static/images/icon40_stats.png b/www/static/images/icon40_stats.png new file mode 100644 index 0000000..3af2dda Binary files /dev/null and b/www/static/images/icon40_stats.png differ diff --git a/www/static/images/icon40_tft.png b/www/static/images/icon40_tft.png new file mode 100644 index 0000000..3d80c85 Binary files /dev/null and b/www/static/images/icon40_tft.png differ diff --git a/www/static/images/pecas.jpg b/www/static/images/pecas.jpg new file mode 100644 index 0000000..a94e8e8 Binary files /dev/null and b/www/static/images/pecas.jpg differ diff --git a/www/static/images/reboque.jpg b/www/static/images/reboque.jpg new file mode 100644 index 0000000..b361b9f Binary files /dev/null and b/www/static/images/reboque.jpg differ diff --git a/www/static/images/revisao.jpg b/www/static/images/revisao.jpg new file mode 100644 index 0000000..0d13b8b Binary files /dev/null and b/www/static/images/revisao.jpg differ diff --git a/www/static/images/skin1/arrow.png b/www/static/images/skin1/arrow.png new file mode 100644 index 0000000..ea58ef4 Binary files /dev/null and b/www/static/images/skin1/arrow.png differ diff --git a/www/static/images/skin1/bg.png b/www/static/images/skin1/bg.png new file mode 100644 index 0000000..55c87b6 Binary files /dev/null and b/www/static/images/skin1/bg.png differ diff --git a/www/static/images/skin1/bg_featured.png b/www/static/images/skin1/bg_featured.png new file mode 100644 index 0000000..9658990 Binary files /dev/null and b/www/static/images/skin1/bg_featured.png differ diff --git a/www/static/images/skin1/bg_footer_shadow.png b/www/static/images/skin1/bg_footer_shadow.png new file mode 100644 index 0000000..ed82a25 Binary files /dev/null and b/www/static/images/skin1/bg_footer_shadow.png differ diff --git a/www/static/images/skin1/bg_sidebar_bottom.png b/www/static/images/skin1/bg_sidebar_bottom.png new file mode 100644 index 0000000..e9f0a89 Binary files /dev/null and b/www/static/images/skin1/bg_sidebar_bottom.png differ diff --git a/www/static/images/skin1/bg_sidebar_center.png b/www/static/images/skin1/bg_sidebar_center.png new file mode 100644 index 0000000..ad2c542 Binary files /dev/null and b/www/static/images/skin1/bg_sidebar_center.png differ diff --git a/www/static/images/skin1/bg_sidebar_top.png b/www/static/images/skin1/bg_sidebar_top.png new file mode 100644 index 0000000..b296c48 Binary files /dev/null and b/www/static/images/skin1/bg_sidebar_top.png differ diff --git a/www/static/images/skin1/bullet.png b/www/static/images/skin1/bullet.png new file mode 100644 index 0000000..6a93992 Binary files /dev/null and b/www/static/images/skin1/bullet.png differ diff --git a/www/static/images/skin1/bullet2.png b/www/static/images/skin1/bullet2.png new file mode 100644 index 0000000..933a29d Binary files /dev/null and b/www/static/images/skin1/bullet2.png differ diff --git a/www/static/images/skin1/earth.png b/www/static/images/skin1/earth.png new file mode 100644 index 0000000..556a75e Binary files /dev/null and b/www/static/images/skin1/earth.png differ diff --git a/www/static/images/skin1/facebook_16.png b/www/static/images/skin1/facebook_16.png new file mode 100644 index 0000000..f0faf29 Binary files /dev/null and b/www/static/images/skin1/facebook_16.png differ diff --git a/www/static/images/skin1/flickr_16.png b/www/static/images/skin1/flickr_16.png new file mode 100644 index 0000000..4a6b134 Binary files /dev/null and b/www/static/images/skin1/flickr_16.png differ diff --git a/www/static/images/skin1/icon_category.png b/www/static/images/skin1/icon_category.png new file mode 100644 index 0000000..0206ab1 Binary files /dev/null and b/www/static/images/skin1/icon_category.png differ diff --git a/www/static/images/skin1/icon_comments.png b/www/static/images/skin1/icon_comments.png new file mode 100644 index 0000000..e83dcee Binary files /dev/null and b/www/static/images/skin1/icon_comments.png differ diff --git a/www/static/images/skin1/icon_date.png b/www/static/images/skin1/icon_date.png new file mode 100644 index 0000000..db3b8a2 Binary files /dev/null and b/www/static/images/skin1/icon_date.png differ diff --git a/www/static/images/skin1/icon_next.png b/www/static/images/skin1/icon_next.png new file mode 100644 index 0000000..cab4fa6 Binary files /dev/null and b/www/static/images/skin1/icon_next.png differ diff --git a/www/static/images/skin1/logo.png b/www/static/images/skin1/logo.png new file mode 100644 index 0000000..79cad9f Binary files /dev/null and b/www/static/images/skin1/logo.png differ diff --git a/www/static/images/skin1/magnify.png b/www/static/images/skin1/magnify.png new file mode 100644 index 0000000..e2bd292 Binary files /dev/null and b/www/static/images/skin1/magnify.png differ diff --git a/www/static/images/skin1/overlay.png b/www/static/images/skin1/overlay.png new file mode 100644 index 0000000..b0bd488 Binary files /dev/null and b/www/static/images/skin1/overlay.png differ diff --git a/www/static/images/skin1/preload.gif b/www/static/images/skin1/preload.gif new file mode 100644 index 0000000..ea401ef Binary files /dev/null and b/www/static/images/skin1/preload.gif differ diff --git a/www/static/images/skin1/rss_16.png b/www/static/images/skin1/rss_16.png new file mode 100644 index 0000000..f921046 Binary files /dev/null and b/www/static/images/skin1/rss_16.png differ diff --git a/www/static/images/skin1/say.png b/www/static/images/skin1/say.png new file mode 100644 index 0000000..c230106 Binary files /dev/null and b/www/static/images/skin1/say.png differ diff --git a/www/static/images/skin1/search.png b/www/static/images/skin1/search.png new file mode 100644 index 0000000..407395d Binary files /dev/null and b/www/static/images/skin1/search.png differ diff --git a/www/static/images/skin1/skype_16.png b/www/static/images/skin1/skype_16.png new file mode 100644 index 0000000..97ed84c Binary files /dev/null and b/www/static/images/skin1/skype_16.png differ diff --git a/www/static/images/skin1/slide_controlls.png b/www/static/images/skin1/slide_controlls.png new file mode 100644 index 0000000..c7a5a75 Binary files /dev/null and b/www/static/images/skin1/slide_controlls.png differ diff --git a/www/static/images/skin1/top.png b/www/static/images/skin1/top.png new file mode 100644 index 0000000..bc76369 Binary files /dev/null and b/www/static/images/skin1/top.png differ diff --git a/www/static/images/skin1/twitter_16.png b/www/static/images/skin1/twitter_16.png new file mode 100644 index 0000000..2bcd957 Binary files /dev/null and b/www/static/images/skin1/twitter_16.png differ diff --git a/www/static/images/skin1/video.png b/www/static/images/skin1/video.png new file mode 100644 index 0000000..bc90f43 Binary files /dev/null and b/www/static/images/skin1/video.png differ diff --git a/www/static/js/cufon.js b/www/static/js/cufon.js new file mode 100644 index 0000000..cf0f799 --- /dev/null +++ b/www/static/js/cufon.js @@ -0,0 +1,7 @@ +/* + * Copyright (c) 2009 Simo Kinnunen. + * Licensed under the MIT license. + * + * @version 1.09 + */ +var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E0){E=" "+E}}else{if(B400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||JD){D=J}K.push(J)}if(ID){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?ML:(M<=I&&L<=I)?M>L:MO){O=K}if(I>N){N=I}if(Kcufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m 0) + { + images.each(function(i, event) + { + var image = $(this); + setTimeout(function() + { + image.css('visibility','visible').animate({opacity:1}, options.fadeInSpeed); + }, + options.delay*(i+1)); + }); + + if(options.callback != '') + { + setTimeout(options.callback, options.delay*images.length); + } + } + else if(options.callback != '') + { + (options.callback)(); + } + + } + + } + + }; + + imageContainer.operations.preload(); + }); + + } +})(jQuery); + + + +// ------------------------------------------------------------------------------------------- +// The Fade Slider +// ------------------------------------------------------------------------------------------- + +(function($) +{ + $.fn.kriesi_fade_slider= function(options) + { + var defaults = + { + slides: '>div', // wich element inside the container should serve as slide + animationSpeed: 900, // animation duration + autorotation: true, // autorotation true or false? + autorotationSpeed:3, // duration between autorotation switch in Seconds + appendControlls: '', + backgroundOpacity:0.8 // opacity for background + }; + + var options = $.extend(defaults, options); + + return this.each(function() + { + var slideWrapper = $(this), + slides = slideWrapper.find(options.slides).css({display:'none',zIndex:0}), + slideCount = slides.length, + currentSlideNumber = 0, + interval, + current_class = 'active_item', + controlls = '', + skipSwitch = true; + + slides.find('.feature_excerpt').css('opacity',options.backgroundOpacity); + + slideWrapper.methods = { + + init: function() + { + slides.filter(':eq(0)').css({zIndex:2, display:'block'}); + + if(slideCount <= 1) + { + slideWrapper.kriesi_image_preloader({delay:200}); + } + else + { + slideWrapper.kriesi_image_preloader({callback:slideWrapper.methods.preloadingDone, delay:200}); + + if (options.appendControlls) + { + controlls = $('
').addClass('slidecontrolls').css({position:'absolute'}).appendTo(options.appendControlls); + slides.each(function(i) + { + var controller = $('').appendTo(controlls); + controller.bind('click', {currentSlideNumber: i}, slideWrapper.methods.switchSlide); + current_class = ""; + }); + } + } + }, + + preloadingDone: function() + { + skipSwitch = false; + + if(options.autorotation) + { + slideWrapper.methods.autorotate(); + } + }, + + switchSlide: function(passed) + { + var noAction = false; + + + if(passed != undefined && !skipSwitch) + { + if(currentSlideNumber != passed.data.currentSlideNumber) + { + currentSlideNumber = passed.data.currentSlideNumber; + } + else + { + noAction = true; + } + } + + if(passed != undefined) + { + clearInterval(interval); + } + + if(!skipSwitch && noAction == false) + { + skipSwitch = true; + var currentSlide = slides.filter(':visible'), + nextSlide = slides.filter(':eq('+currentSlideNumber+')'); + if(options.appendControlls) + { + controlls.find('.active_item').removeClass('active_item'); + controlls.find('span:eq('+currentSlideNumber+')').addClass('active_item'); + } + + currentSlide.css({zIndex:4}); + nextSlide.css({zIndex:2, display:'block'}); + + currentSlide.fadeOut(options.animationSpeed, function() + { + currentSlide.css({zIndex:0, display:"none"}); + skipSwitch = false; + }); + } + }, + + autorotate: function() + { + interval = setInterval(function() + { + currentSlideNumber ++; + if(currentSlideNumber == slideCount) currentSlideNumber = 0; + + slideWrapper.methods.switchSlide(); + }, + (parseInt(options.autorotationSpeed) * 1000)); + } + + }; + + slideWrapper.methods.init(); + }); + + } +})(jQuery); + +// ------------------------------------------------------------------------------------------- +// The News Slider +// ------------------------------------------------------------------------------------------- + +(function($) +{ + $.fn.kriesi_news_slider= function(options) + { + var defaults = + { + slides: '>div', // wich element inside the container should serve as slide + animationSpeed: 900, // animation duration + autorotation: true, // autorotation true or false? + autorotationSpeed:3, // duration between autorotation switch in Seconds + easing: 'easeOutQuint', + backgroundOpacity:0.8 // opacity for background + }; + + var options = $.extend(defaults, options); + + return this.each(function() + { + var slideWrapper = $(this), + slides = slideWrapper.find(options.slides).css({display:'none',zIndex:0}), + slideCount = slides.length, + accelerator = 0, // accelerator of scrolling speed + scrollInterval = '', // var that stores the setInterval id + mousePos = '', // current mouse position + moving = false, // scrollbar currently moving or not? + controllWindowHeight = 0, // height of the wrapping element that hides overflow + controllWindowPart = 0, // mouseoverpart of the wrapping element that hides overflow + itemWindowHeight = 0, // height of element to move + current_class = 'active_item', + skipSwitch = true, + currentSlideNumber = 0, + newsSelect ='', + newsItems = ''; + + slides.find('.feature_excerpt').css('opacity',options.backgroundOpacity); + + slideWrapper.methods = { + + init: function() + { + newsSelect = $('
').addClass('newsselect').appendTo(slideWrapper); + newsItems = $('
').addClass('newsItems').appendTo(newsSelect); + fadeout = $('
').addClass('fadeout').addClass('').appendTo(slideWrapper); + + slides.filter(':eq(0)').css({zIndex:2, display:'block'}); + + slides.each(function(i) + { + var slide = $(this), + url = slide.find('a').attr('href'), + controll = $('').appendTo(newsItems).attr('href',url); + current_class =''; + + slide.find('.feature_excerpt .sliderheading, .feature_excerpt .sliderdate').clone().appendTo(controll); + controll.bind('click', {currentSlideNumber: i}, slideWrapper.methods.switchSlide); + }); + + controllWindowHeight = newsSelect.height(); + controllWindowPart = controllWindowHeight/3; + itemWindowHeight = newsItems.height(); + + if(slideCount > 1) + { + slideWrapper.kriesi_image_preloader({delay:200}); + slideWrapper.methods.preloadingDone(); + } + }, + + preloadingDone: function() + { + skipSwitch = false; + var offset = newsSelect.offset(); + + newsSelect.mousemove(function(e) + { + mousePos = e.pageY - offset.top; + + if(!moving) + { + scrollInterval = setInterval(function() { slideWrapper.methods.scrollItem(mousePos); }, 25); + moving = true; + } + }); + + newsSelect.bind('mouseleave', function() + { + clearInterval(scrollInterval); + moving = false; + accelerator = 0; + }); + + }, + + scrollItem: function() + { + var movement = 0, + percent = controllWindowPart / 100, + modifier = 10, + currentTop = parseInt(newsItems.css('top')); + + accelerator = accelerator <= 2 ? accelerator + 0.5 : accelerator; + + if(mousePos < controllWindowPart) + { + movement = ((controllWindowPart - mousePos) / percent) * accelerator; + newPos = currentTop + (movement/modifier); + + if(currentTop < 0) + { + if (newPos > 0) newPos = 0; + newsItems.css({top:newPos + "px"}); + } + } + else if(mousePos > controllWindowPart * 2) + { + movement = ((mousePos - controllWindowPart * 2) / percent) * accelerator; + newPos = currentTop + (movement/modifier * -1); + + if((currentTop * -1) < itemWindowHeight - controllWindowHeight) + { + if (newPos * -1 > itemWindowHeight - controllWindowHeight) newPos = controllWindowHeight - itemWindowHeight; + + newsItems.css({top:newPos + "px"}); + } + } + else + { + accelerator = 0; + } + }, + + switchSlide: function(passed) + { + + var noAction = false; + + if(passed != undefined && !skipSwitch) + { + if(currentSlideNumber != passed.data.currentSlideNumber) + { + currentSlideNumber = passed.data.currentSlideNumber; + } + else + { + noAction = true; + } + } + + if(passed != undefined) + { + // clearInterval(interval); + } + + + if(!skipSwitch && noAction == false) + { + skipSwitch = true; + var currentSlide = slides.filter(':visible'), + nextSlide = slides.filter(':eq('+currentSlideNumber+')'); + + newsSelect.find('.active_item').removeClass('active_item'); + newsSelect.find('a:eq('+currentSlideNumber+')').addClass('active_item'); + + currentSlide.css({zIndex:4}); + nextSlide.css({zIndex:2, display:'block'}); + + currentSlide.fadeOut(options.animationSpeed, function() + { + currentSlide.css({zIndex:0, display:"none"}); + skipSwitch = false; + }); + } + return false; + }, + + autorotate: function() + { + //autorotation not yet supportet + } + + }; + + slideWrapper.methods.init(); + }); + + } +})(jQuery); + +// ------------------------------------------------------------------------------------------- +// Curtain slider prearation +// ------------------------------------------------------------------------------------------- + +(function($) +{ + $.fn.curtain_prepare= function(options) + { + return this.each(function() + { + var slideWrapper = $(this); + options.width = slideWrapper.width(), + options.height = slideWrapper.height(); + + slideWrapper.find('.featured').each(function() + { + var permaLink = $(this).find('a').attr('href'), + infoText = $(this).find('.feature_excerpt'), + posChange =''; + + if (permaLink == undefined) permaLink ='#' + if(jQuery.browser.msie) {posChange = 'rel_pos'; options.titleOpacity = 0.85;} + + $(this).find('img').attr('alt',''+infoText.html()+''); + infoText.remove(); + }); + + jQuery('#featured').kriesi_image_preloader({callback:add_jqFancyTransitions}); + + function add_jqFancyTransitions() + { + slideWrapper.find('.featured').addClass('noborder') + slideWrapper.jqFancyTransitions(options); + } + }); + } +})(jQuery); +// ------------------------------------------------------------------------------------------- +// The Main accordion slider - KRICORDION + +// Dependencies: equalheight function, kriesi_image_preoloader. jquery easing +// +// ------------------------------------------------------------------------------------------- +(function($) +{ + $.fn.kricordion = function(options) + { + var defaults = + { + slides: '>div', // wich element inside the container should serve as slide + animationSpeed: 900, // animation duration + autorotation: true, // autorotation true or false? + autorotationSpeed:3, // duration between autorotation switch in Seconds + easing: 'easeOutQuint', // animation easing, more options at the bottom of this file + event: 'mouseover', // event to focus a slide: mouseover or click + imageShadow:true, // should the image get a drop shadow to the left + imageShadowStrength:0.5, // how dark should that shadow be, recommended values: between 0.3 and 0.8, allowed between 0 and 1 + fontOpacity: 1, // opacity for font, if set to 1 it will be stronger but most browsers got a small rendering glitch at 1 + backgroundOpacity: 0.8 + }; + + // merge default values with the values that were passed with the function call + var options = $.extend(defaults, options); + + return this.each(function() + { + // save some jQuery selections into variables, also calculate base values for each slide + var slideWrapper = $(this), // element that holds the slides + slides = slideWrapper.find(options.slides).css('display','block'), // the slides + slide_count = slides.length, // number of slides + slide_width = slideWrapper.width() / slide_count // width of the slides + expand_slide = slides.width(), // size of a slide when expanded, defined in css, class ".featured" by default + minimized_slide = (slideWrapper.width() - expand_slide) / (slide_count - 1), // remaining width is shared among the non-active slides + overlay_modifier = 200 *(1- options.imageShadowStrength), //increases the size of the minimized image div to avoid flickering + excerptWrapper = slideWrapper.find('.feature_excerpt'), + interval = '', + current_slide = 0; + + + //modify excerptWrapper and re-select it, also add positioning span ------------------------- + excerptWrapper.wrap('').removeClass('feature_excerpt').addClass('position_excerpt'); + excerptWrapper = slideWrapper.find('.feature_excerpt').css('opacity',options.backgroundOpacity); + // ------------------------------------------------------------------------------------------- + + + //equal heights for all excerpt containers, then hide basic excerpt content ----------------- + excerptWrapper.equalHeights().find('.position_excerpt').css({display:'block', opacity:0, position:'absolute'}); + var excerptWrapperHeight = excerptWrapper.height(); + // ------------------------------------------------------------------------------------------- + + + + //iterate each slide and set new base values, also set positions for acitve and inactive states and event handlers + slides.each(function(i) + { + var this_slide = $(this), // current slide element + this_slide_a = this_slide.find('a'), // a tag inside the element + real_excerpt = this_slide.find('.position_excerpt'), // wrapper to center the excerpt content verticaly + real_excerpt_height = real_excerpt.height(), // height of the excerpt content + slide_heading =this_slide.find('.sliderheading'), // slide heading + cloned_heading = slide_heading.clone().appendTo(this_slide_a) // clone heading for heading only view + .addClass('heading_clone') + .css({opacity:options.fontOpacity, width:slide_width-30}), + clone_height = cloned_heading.height(); // height of clone heading, needed to center verticaly as well + + + this_slide.css('backgroundPosition',parseInt(slide_width/2-8) + 'px ' + parseInt((this_slide.height()- excerptWrapperHeight)/2 -8) + 'px'); + + cloned_heading.css({bottom: (excerptWrapperHeight-clone_height)/2 +9}); //center clone heading + real_excerpt.css({bottom: (excerptWrapperHeight-real_excerpt_height)/2 +9}); //center real excerpt + + this_slide.data( //save data of each slide via jquerys data method + 'data', + { + this_slides_position: i * slide_width, // position if no item is active + pos_active_higher: i * minimized_slide, // position of the item if a higher item is active + pos_active_lower: ((i-1) * minimized_slide) + expand_slide // position of the item if a lower item is active + }); + + //set base properties + this_slide.css({zIndex:i+1, left: i * slide_width, width:slide_width + overlay_modifier}); + + + //apply the fading div if option is set to do so + if(options.imageShadow) + { + this_slide.find('>a').prepend(''); + } + + }); + + // calls the preloader, kriesi_image_preloader plugin needed + jQuery('#featured').kriesi_image_preloader({callback:add_functionality}); + + function add_functionality() + { + + //set autorotation --------------------------------------------------------------------------- + + + if(options.autorotation) + { + interval = setInterval(function() { autorotation(); }, (parseInt(options.autorotationSpeed) * 1000)); + } + + slides.each(function(i) + { + var this_slide = $(this), + real_excerpt = this_slide.find('.position_excerpt'), + cloned_heading = this_slide.find('.heading_clone'); + + //set mouseover or click event + this_slide.bind(options.event, function(event, continue_autoslide) + { + //stop autoslide on userinteraction + if(!continue_autoslide) + { + clearInterval(interval) + } + + var objData = this_slide.data( 'data' ); + //on mouseover expand current slide to full size and fadeIn real content + real_excerpt.stop().animate({opacity:options.fontOpacity},options.animationSpeed, options.easing); + cloned_heading.stop().animate({opacity:0},options.animationSpeed, options.easing); + + this_slide.stop().animate({ width: expand_slide + (overlay_modifier * 1.2), + left: objData.pos_active_higher}, + options.animationSpeed, options.easing); + + //set and all other slides to small size + slides.each(function(j){ + + if (i !== j) + { + var this_slide = $(this), + real_excerpt = this_slide.find('.position_excerpt'), + cloned_heading = this_slide.find('.heading_clone'), + objData = this_slide.data( 'data' ), + new_pos = objData.pos_active_higher; + + if(i < j) { new_pos = objData.pos_active_lower; } + this_slide.stop().animate({left: new_pos, width:minimized_slide + overlay_modifier},options.animationSpeed, options.easing); + real_excerpt.stop().animate({opacity:0},options.animationSpeed, options.easing); + cloned_heading.stop().animate({opacity:options.fontOpacity},options.animationSpeed, options.easing); + } + + }); + + }); + }); + + + //set mouseout event: expand all slides to no-slide-active position and width + slideWrapper.bind('mouseleave', function() + { + slides.each(function(i) + { + var this_slide = $(this), + real_excerpt = this_slide.find('.position_excerpt'), + cloned_heading = this_slide.find('.heading_clone'), + objData = this_slide.data( 'data' ), + new_pos = objData.this_slides_position; + + this_slide.stop().animate({left: new_pos, width:slide_width + overlay_modifier},options.animationSpeed, options.easing); + real_excerpt.stop().animate({opacity:0},options.animationSpeed, options.easing); + cloned_heading.stop().animate({opacity:options.fontOpacity},options.animationSpeed, options.easing); + }); + + }); + } + + + // autorotation function for the image slider + function autorotation() + { + if(slide_count == current_slide) + { + slideWrapper.trigger('mouseleave'); + current_slide = 0; + } + else + { + slides.filter(':eq('+current_slide+')').trigger(options.event,[true]); + current_slide ++; + } + } + }); + }; +})(jQuery); +// ------------------------------------------------------------------------------------------- +// END KRICORDION +// ------------------------------------------------------------------------------------------- + + + +function k_menu() +{ + // k_menu controlls the dropdown menus and improves them with javascript + + jQuery("#nav a").removeAttr('title'); + jQuery(" #nav ul").css({display: "none"}); + + //smooth drop downs + jQuery("#nav li").each(function() + { + var $sublist = jQuery(this).find('ul:first'); + + $sublist.find('>li:first').css('marginTop','5px'); + $sublist.find('>li:last').css('marginBottom','5px'); + + jQuery(this).hover(function() + { + $sublist.stop().css({overflow:"hidden", height:"auto", display:"none",'paddingTop':'0px','paddingBottom':'0px'}).slideDown(400, function() + { + jQuery(this).css({overflow:"visible", height:"auto"}); + }); + }, + function() + { + $sublist.stop().slideUp(400, function() + { + jQuery(this).css({overflow:"hidden", display:"none"}); + }); + }); + }); +} + + +//equalHeights by james padolsey +jQuery.fn.equalHeights = function() { + return this.height(Math.max.apply(null, + this.map(function() { + return jQuery(this).height() + }).get() + )); +}; + + + + +function my_lightbox($elements, autolink) +{ + var theme_selected = 'light_rounded'; + + if(autolink) + { + jQuery('a[href$=jpg], a[href$=png], a[href$=gif], a[href$=jpeg], a[href$=.mov] , a[href$=.swf] , a[href*=vimeo.com] , a[href*=youtube.com]').contents("img").parent().each(function() + { + if(!jQuery(this).attr('rel') != undefined && !jQuery(this).attr('rel') != '' && !jQuery(this).hasClass('noLightbox')) + { + jQuery(this).attr('rel','lightbox[auto_group]') + } + }); + } + + jQuery($elements).prettyPhoto({ + "theme": theme_selected /* light_rounded / dark_rounded / light_square / dark_square */ }); + + jQuery($elements).each(function() + { + var $image = jQuery(this).contents("img"); + $newclass = 'lightbox_video'; + + if(jQuery(this).attr('href').match(/(jpg|gif|jpeg|png|tif)/)) $newclass = 'lightbox_image'; + + if ($image.length > 0) + { + if(jQuery.browser.msie && jQuery.browser.version < 7) jQuery(this).addClass('ie6_lightbox'); + + var $bg = jQuery("").appendTo(jQuery(this)); + + jQuery(this).bind('mouseenter', function() + { + $height = $image.height(); + $width = $image.width(); + $pos = $image.position(); + $bg.css({height:$height, width:$width, top:$pos.top, left:$pos.left}); + }); + } + }); + + jQuery($elements).contents("img").hover(function() + { + jQuery(this).stop().animate({opacity:0.5},400); + }, + function() + { + jQuery(this).stop().animate({opacity:1},400); + }); +} + + +(function($) +{ + $.fn.kriesi_ajax_form = function(options) + { + var defaults = + { + sendPath: 'send.php', + responseContainer: '.ajaxresponse' + }; + + var options = $.extend(defaults, options); + + return this.each(function() + { + var form = $(this), + send = + { + formElements: form.find('textarea, select, input:text, input[type=hidden]'), + validationError:false, + button : form.find('input:submit'), + datastring : '' + }; + + send.button.bind('click', checkElements); + + function send_ajax_form() + { + send.button.fadeOut(300); + + $.ajax({ + type: "POST", + url: options.sendPath, + data:send.datastring, + success: function(response) + { + + var message = $("").addClass(options.responseContainer) + .css('display','none') + .insertBefore(form) + .html(response); + + form.slideUp(400, function(){message.slideDown(400), send.formElements.val('');}); + + } + }); + + } + + function checkElements() + { + // reset validation var and send data + send.validationError = false; + send.datastring = 'ajax=true'; + + send.formElements.each(function(i) + { + var currentElement = $(this), + surroundingElement = currentElement.parent(), + value = currentElement.val(), + name = currentElement.attr('name'), + classes = currentElement.attr('class'), + nomatch = true; + + send.datastring += "&" + name + "=" + value; + + if(classes.match(/is_empty/)) + { + if(value == '') + { + surroundingElement.attr("class","").addClass("error"); + send.validationError = true; + } + else + { + surroundingElement.attr("class","").addClass("valid"); + } + nomatch = false; + } + + if(classes.match(/is_email/)) + { + if(!value.match(/^\w[\w|\.|\-]+@\w[\w|\.|\-]+\.[a-zA-Z]{2,4}$/)) + { + surroundingElement.attr("class","").addClass("error"); + send.validationError = true; + } + else + { + surroundingElement.attr("class","").addClass("valid"); + } + nomatch = false; + } + + if(nomatch && value != '') + { + surroundingElement.attr("class","").addClass("valid"); + } + }); + + if(send.validationError == false) + { + send_ajax_form(); + } + return false; + } + }); + } +})(jQuery); + + + +function k_smoothscroll() +{ + jQuery('a[href*=#]').click(function() { + + // duration in ms + + var newHash=this.hash, + target=jQuery(this.hash).offset().top, + oldLocation=window.location.href.replace(window.location.hash, ''), + newLocation=this, + duration=800, + easing='easeOutQuint'; + + + // make sure it's the same location + if(oldLocation+newHash==newLocation) + { + // animate to target and set the hash to the window.location after the animation + jQuery('html:not(:animated),body:not(:animated)').animate({ scrollTop: target }, duration, easing, function() { + + // add new hash to the browser location + window.location.href=newLocation; + }); + + // cancel default click action + return false; + } + + }); +} + + + + +/* + * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/ +*/ + +// t: current time, b: begInnIng value, c: change In value, d: duration +jQuery.easing['jswing'] = jQuery.easing['swing']; + +jQuery.extend( jQuery.easing, +{ + def: 'easeOutQuad', + swing: function (x, t, b, c, d) { + //alert(jQuery.easing.default); + return jQuery.easing[jQuery.easing.def](x, t, b, c, d); + }, + easeInQuad: function (x, t, b, c, d) { + return c*(t/=d)*t + b; + }, + easeOutQuad: function (x, t, b, c, d) { + return -c *(t/=d)*(t-2) + b; + }, + easeInOutQuad: function (x, t, b, c, d) { + if ((t/=d/2) < 1) return c/2*t*t + b; + return -c/2 * ((--t)*(t-2) - 1) + b; + }, + easeInCubic: function (x, t, b, c, d) { + return c*(t/=d)*t*t + b; + }, + easeOutCubic: function (x, t, b, c, d) { + return c*((t=t/d-1)*t*t + 1) + b; + }, + easeInOutCubic: function (x, t, b, c, d) { + if ((t/=d/2) < 1) return c/2*t*t*t + b; + return c/2*((t-=2)*t*t + 2) + b; + }, + easeInQuart: function (x, t, b, c, d) { + return c*(t/=d)*t*t*t + b; + }, + easeOutQuart: function (x, t, b, c, d) { + return -c * ((t=t/d-1)*t*t*t - 1) + b; + }, + easeInOutQuart: function (x, t, b, c, d) { + if ((t/=d/2) < 1) return c/2*t*t*t*t + b; + return -c/2 * ((t-=2)*t*t*t - 2) + b; + }, + easeInQuint: function (x, t, b, c, d) { + return c*(t/=d)*t*t*t*t + b; + }, + easeOutQuint: function (x, t, b, c, d) { + return c*((t=t/d-1)*t*t*t*t + 1) + b; + }, + easeInOutQuint: function (x, t, b, c, d) { + if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b; + return c/2*((t-=2)*t*t*t*t + 2) + b; + }, + easeInSine: function (x, t, b, c, d) { + return -c * Math.cos(t/d * (Math.PI/2)) + c + b; + }, + easeOutSine: function (x, t, b, c, d) { + return c * Math.sin(t/d * (Math.PI/2)) + b; + }, + easeInOutSine: function (x, t, b, c, d) { + return -c/2 * (Math.cos(Math.PI*t/d) - 1) + b; + }, + easeInExpo: function (x, t, b, c, d) { + return (t==0) ? b : c * Math.pow(2, 10 * (t/d - 1)) + b; + }, + easeOutExpo: function (x, t, b, c, d) { + return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b; + }, + easeInOutExpo: function (x, t, b, c, d) { + if (t==0) return b; + if (t==d) return b+c; + if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b; + return c/2 * (-Math.pow(2, -10 * --t) + 2) + b; + }, + easeInCirc: function (x, t, b, c, d) { + return -c * (Math.sqrt(1 - (t/=d)*t) - 1) + b; + }, + easeOutCirc: function (x, t, b, c, d) { + return c * Math.sqrt(1 - (t=t/d-1)*t) + b; + }, + easeInOutCirc: function (x, t, b, c, d) { + if ((t/=d/2) < 1) return -c/2 * (Math.sqrt(1 - t*t) - 1) + b; + return c/2 * (Math.sqrt(1 - (t-=2)*t) + 1) + b; + }, + easeInElastic: function (x, t, b, c, d) { + var s=1.70158;var p=0;var a=c; + if (t==0) return b; if ((t/=d)==1) return b+c; if (!p) p=d*.3; + if (a < Math.abs(c)) { a=c; var s=p/4; } + else var s = p/(2*Math.PI) * Math.asin (c/a); + return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b; + }, + easeOutElastic: function (x, t, b, c, d) { + var s=1.70158;var p=0;var a=c; + if (t==0) return b; if ((t/=d)==1) return b+c; if (!p) p=d*.3; + if (a < Math.abs(c)) { a=c; var s=p/4; } + else var s = p/(2*Math.PI) * Math.asin (c/a); + return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b; + }, + easeInOutElastic: function (x, t, b, c, d) { + var s=1.70158;var p=0;var a=c; + if (t==0) return b; if ((t/=d/2)==2) return b+c; if (!p) p=d*(.3*1.5); + if (a < Math.abs(c)) { a=c; var s=p/4; } + else var s = p/(2*Math.PI) * Math.asin (c/a); + if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b; + return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b; + }, + easeInBack: function (x, t, b, c, d, s) { + if (s == undefined) s = 1.70158; + return c*(t/=d)*t*((s+1)*t - s) + b; + }, + easeOutBack: function (x, t, b, c, d, s) { + if (s == undefined) s = 1.70158; + return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b; + }, + easeInOutBack: function (x, t, b, c, d, s) { + if (s == undefined) s = 1.70158; + if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b; + return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b; + }, + easeInBounce: function (x, t, b, c, d) { + return c - jQuery.easing.easeOutBounce (x, d-t, 0, c, d) + b; + }, + easeOutBounce: function (x, t, b, c, d) { + if ((t/=d) < (1/2.75)) { + return c*(7.5625*t*t) + b; + } else if (t < (2/2.75)) { + return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b; + } else if (t < (2.5/2.75)) { + return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b; + } else { + return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b; + } + }, + easeInOutBounce: function (x, t, b, c, d) { + if (t < d/2) return jQuery.easing.easeInBounce (x, t*2, 0, c, d) * .5 + b; + return jQuery.easing.easeOutBounce (x, t*2-d, 0, c, d) * .5 + c*.5 + b; + } +}); + + +/** + * jqFancyTransitions - jQuery plugin + * @version: 1.0 (2009/12/04) + * @requires jQuery v1.2.2 or later + * @author Ivan Lazarevic + * Examples and documentation at: http://www.workshop.rs/projects/jqfancytransitions + + * Dual licensed under the MIT and GPL licenses: + * http://www.opensource.org/licenses/mit-license.php + * http://www.gnu.org/licenses/gpl.html +**/ + +(function($){var opts=new Array;var level=new Array;var img=new Array;var titles=new Array;var order=new Array;var imgInc=new Array;var inc=new Array;var stripInt=new Array;var imgInt=new Array;$.fn.jqFancyTransitions=$.fn.jqFancyTransitions=function(options){init=function(el){opts[el.id]=$.extend({},$.fn.jqFancyTransitions.defaults,options);img[el.id]=new Array();titles[el.id]=new Array();order[el.id]=new Array();imgInc[el.id]=0;inc[el.id]=0;params=opts[el.id];if(params.effect=='zipper'){params.direction='alternate';params.position='alternate';} +if(params.effect=='wave'){params.direction='alternate';params.position='top';} +if(params.effect=='curtain'){params.direction='alternate';params.position='curtain';} +stripWidth=parseInt(params.width/params.strips);gap=params.width-stripWidth*params.strips;stripLeft=0;$.each($('#'+el.id+' img'),function(i,item){img[el.id][i]=$(item).attr('src');titles[el.id][i]=$(item).attr('alt')?$(item).attr('alt'):'';$(item).hide();});$('#'+el.id).css({'background-image':'url('+img[el.id][0]+')','width':params.width,'height':params.height,'position':'relative','background-position':'top left'});$('#'+el.id).append("
"+titles[el.id][0]+"
");if(titles[el.id][imgInc[el.id]]) +$('#ft-title-'+el.id).css('opacity',opts[el.id].titleOpacity);else +$('#ft-title-'+el.id).css('opacity',0);odd=1;for(j=1;j0){tstripWidth=stripWidth+1;gap--;}else{tstripWidth=stripWidth;} +$('#'+el.id).append("
");$("#ft-"+el.id+j).css({'background-position':-stripLeft+'px top','left':stripLeft});stripLeft+=tstripWidth;if(params.position=='bottom') +$("#ft-"+el.id+j).css('bottom',0);if(j%2==0&¶ms.position=='alternate') +$("#ft-"+el.id+j).css('bottom',0);if(params.direction=='fountain'||params.direction=='fountainAlternate'){order[el.id][j-1]=parseInt(params.strips/2)-(parseInt(j/2)*odd);order[el.id][params.strips-1]=params.strips;odd*=-1;}else{order[el.id][j-1]=j;}} +$('.ft-'+el.id).mouseover(function(){opts[el.id].pause=true;});$('.ft-'+el.id).mouseout(function(){opts[el.id].pause=false;});$('#ft-title-'+el.id).mouseover(function(){opts[el.id].pause=true;});$('#ft-title-'+el.id).mouseout(function(){opts[el.id].pause=false;});clearInterval(imgInt[el.id]);imgInt[el.id]=setInterval(function(){$.transition(el)},params.delay+params.stripDelay*params.strips);};$.transition=function(el){if(opts[el.id].pause==true)return;stripInt[el.id]=setInterval(function(){$.strips(order[el.id][inc[el.id]],el)},opts[el.id].stripDelay);$('#'+el.id).css({'background-image':'url('+img[el.id][imgInc[el.id]]+')'});imgInc[el.id]++;if(imgInc[el.id]==img[el.id].length){imgInc[el.id]=0;} +if(titles[el.id][imgInc[el.id]]!=''){$('#ft-title-'+el.id).animate({opacity:0},opts[el.id].titleSpeed,function(){$(this).html(titles[el.id][imgInc[el.id]]).animate({opacity:opts[el.id].titleOpacity},opts[el.id].titleSpeed);});}else{$('#ft-title-'+el.id).animate({opacity:0},opts[el.id].titleSpeed);} +inc[el.id]=0;if(opts[el.id].direction=='random') +$.fisherYates(order[el.id]);if((opts[el.id].direction=='right'&&order[el.id][0]==1)||opts[el.id].direction=='alternate'||opts[el.id].direction=='fountainAlternate') +order[el.id].reverse();};$.strips=function(itemId,el){temp=opts[el.id].strips;if(inc[el.id]==temp){clearInterval(stripInt[el.id]);return;} +if(opts[el.id].position=='curtain'){currWidth=$('#ft-'+el.id+itemId).width();$('#ft-'+el.id+itemId).css({width:0,opacity:0,'background-image':'url('+img[el.id][imgInc[el.id]]+')'});$('#ft-'+el.id+itemId).animate({width:currWidth,opacity:1},1000);}else{$('#ft-'+el.id+itemId).css({height:0,opacity:0,'background-image':'url('+img[el.id][imgInc[el.id]]+')'});$('#ft-'+el.id+itemId).animate({height:opts[el.id].height,opacity:1},1000);} +inc[el.id]++;};$.fisherYates=function(arr){var i=arr.length;if(i==0)return false;while(--i){var j=Math.floor(Math.random()*(i+1));var tempi=arr[i];var tempj=arr[j];arr[i]=tempj;arr[j]=tempi;}} +this.each(function(){init(this);});};$.fn.jqFancyTransitions.defaults={width:500,height:332,strips:20,delay:5000,stripDelay:50,titleOpacity:0.7,titleSpeed:1000,position:'alternate',direction:'fountainAlternate',effect:''};})(jQuery); + + diff --git a/www/static/js/geosans.js b/www/static/js/geosans.js new file mode 100644 index 0000000..684242c --- /dev/null +++ b/www/static/js/geosans.js @@ -0,0 +1,7 @@ +/*! + * The following copyright notice may not be removed under any circumstances. + * + * Copyright: + * \251 M Klein 9.03 + */ +Cufon.registerFont({"w":141,"face":{"font-family":"geosans","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 3 2 0 0 2 0 3","ascent":"288","descent":"-72","x-height":"3","bbox":"-14 -325 391 76","underline-thickness":"6.84","underline-position":"-44.64","unicode-range":"U+0005-U+E00B"},"glyphs":{" ":{"w":91},"\r":{"d":"41,0r0,-149r-15,0r0,149r15,0","w":66},"!":{"d":"44,-53r0,-204r-14,0r0,204r14,0xm37,1v19,0,15,-27,0,-25v-9,1,-13,5,-13,12v0,9,4,13,13,13","w":73},"\"":{"d":"77,-262r-15,0r4,58r7,0xm37,-262r-15,0r4,58r7,0","w":97},"#":{"d":"188,-186r-47,0r11,-45r-9,0r-11,45r-50,0r11,-45r-9,0r-11,45r-50,0r-3,9r51,0r-11,41r-46,0r-2,9r46,0r-10,46r8,0r11,-46r51,0r-12,47r9,0r11,-47r49,0r2,-9r-48,0r10,-41r46,0xm130,-177r-10,41r-51,0r10,-41r51,0","w":194},"$":{"d":"98,3v40,0,64,-31,63,-73v0,-33,-21,-59,-63,-75r0,-99v18,2,30,11,38,25r14,-6v-11,-22,-29,-33,-52,-33r0,-19r-14,0r0,19v-33,-1,-58,26,-57,59v1,40,22,51,57,64r0,123v-29,0,-48,-16,-56,-46r-15,5v7,33,33,56,71,56r0,19r14,0r0,-19xm84,-150v-51,-8,-57,-89,0,-94r0,94xm98,-129v47,16,60,60,37,99v-8,12,-21,18,-37,18r0,-117","w":170},"%":{"d":"60,-162v23,0,45,-19,45,-44v0,-24,-21,-45,-45,-45v-24,0,-45,21,-45,45v0,23,22,44,45,44xm176,-257r-14,0r-140,257r15,0xm132,3v23,0,45,-19,45,-44v0,-24,-21,-45,-45,-45v-24,0,-45,21,-45,45v0,23,22,44,45,44xm60,-236v15,0,30,15,30,30v0,16,-16,30,-30,30v-15,0,-30,-15,-30,-30v0,-15,15,-30,30,-30xm132,-72v16,0,30,15,30,31v0,15,-15,29,-30,29v-15,0,-30,-14,-30,-29v0,-16,14,-31,30,-31","w":191},"&":{"d":"42,-112v-48,35,-33,115,30,113v25,0,52,-11,81,-35r23,34r17,0r-28,-43r38,-31r-8,-10r-38,30r-56,-85v22,-15,58,-38,58,-65v0,-32,-22,-50,-55,-50v-47,0,-69,59,-36,91r14,22xm104,-241v47,0,53,57,17,73r-27,19v-9,-18,-26,-30,-28,-55v-1,-20,19,-37,38,-37xm146,-45v-28,32,-118,54,-118,-10v0,-34,34,-59,61,-76","w":216},"'":{"d":"37,-257r-15,0r4,57r7,0","w":59},"(":{"d":"41,-271v-37,90,-34,213,0,293r12,0v-38,-91,-32,-207,0,-293r-12,0","w":66},")":{"d":"19,-271v37,93,34,208,0,293r13,0v37,-87,34,-210,0,-293r-13,0","w":69},"*":{"d":"98,-201v-2,-14,-25,-19,-43,-22v14,-3,43,-12,43,-23v0,-6,-3,-8,-8,-8v-12,3,-25,11,-37,27v6,-12,15,-45,-2,-49v-17,5,-5,36,-2,49v-10,-8,-22,-27,-36,-27v-15,7,-7,19,9,24v8,3,17,5,26,7v-29,7,-43,14,-43,22v2,18,21,5,27,-2r17,-16v-3,13,-18,44,2,48v17,-4,5,-36,2,-48v10,8,22,25,37,26v6,0,8,-3,8,-8","w":104},"+":{"d":"114,-88r0,-15r-37,0r0,-36r-17,0r0,36r-36,0r0,15r36,0r0,37r17,0r0,-37r37,0","w":136},",":{"d":"56,-19r-13,-6r-26,59r4,3","w":64},"-":{"d":"82,-88r0,-15r-76,0r0,15r76,0","w":97},".":{"d":"18,-22v-17,1,-14,24,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12","w":40},"\/":{"d":"98,-262r-14,0r-76,262r15,0","w":103},"0":{"d":"101,4v62,0,94,-67,94,-135v0,-67,-33,-134,-94,-134v-61,0,-95,68,-95,134v0,67,34,135,95,135xm101,-251v106,0,106,237,0,239v-53,1,-79,-60,-79,-119v0,-58,28,-120,79,-120","w":200,"k":{"\u00ef":-32,"\u00ec":-32,"\u00c5":9,"\u00c4":9,"{":-33,"`":10,"_":138,"]":8,"Z":22,"Y":14,"X":13,"W":20,"V":20,"T":17,"J":9,"A":9,"7":15,"4":21,"3":12,"2":9,"1":62}},"1":{"d":"121,0r0,-257r-49,0r-9,15r43,0r0,242r15,0","w":196,"k":{"\u00fc":53,"\u00fb":53,"\u00fa":55,"\u00f9":53,"\u00f6":47,"\u00f5":46,"\u00f4":47,"\u00f3":49,"\u00f2":47,"\u00f1":53,"\u00ef":30,"\u00ee":37,"\u00ed":56,"\u00ec":21,"\u00eb":46,"\u00ea":46,"\u00e9":48,"\u00e8":46,"\u00e7":47,"\u00e5":46,"\u00e4":46,"\u00e3":46,"\u00e2":47,"\u00e1":49,"\u00e0":47,"\u00dc":55,"\u00d6":50,"\u00d1":55,"\u00c9":53,"\u00c7":50,"\u00c5":49,"\u00c4":49,"~":42,"}":40,"|":47,"{":33,"z":53,"y":44,"x":38,"w":45,"v":44,"u":50,"t":42,"s":43,"r":51,"q":41,"p":51,"o":43,"n":51,"m":51,"l":55,"k":52,"j":51,"i":51,"h":54,"g":43,"f":47,"e":42,"d":56,"c":47,"b":48,"a":43,"`":64,"_":134,"^":46,"]":75,"\\":43,"[":49,"Z":55,"Y":50,"X":47,"W":48,"V":49,"U":55,"T":54,"S":51,"R":55,"Q":53,"P":55,"O":50,"N":55,"M":42,"L":55,"K":51,"J":50,"I":55,"H":55,"G":50,"F":55,"E":53,"D":55,"C":50,"B":55,"A":49,"9":47,"8":54,"7":50,"6":43,"5":53,"4":60,"3":67,"2":63,"1":98,"0":37}},"2":{"d":"44,-198v7,-65,120,-58,119,7v0,16,-4,32,-15,45r-126,146r155,0r0,-15r-123,0r100,-114v48,-50,18,-130,-51,-130v-39,0,-70,30,-76,61r17,0","w":196,"k":{"\u00fc":12,"\u00fb":11,"\u00fa":13,"\u00f9":11,"\u00f6":19,"\u00f5":11,"\u00f4":18,"\u00f3":19,"\u00f2":18,"\u00f1":21,"\u00ed":22,"\u00eb":17,"\u00ea":17,"\u00e9":18,"\u00e8":17,"\u00e7":21,"\u00e5":17,"\u00e4":18,"\u00e3":14,"\u00e2":18,"\u00e1":20,"\u00e0":18,"\u00dc":22,"\u00d6":22,"\u00d1":21,"\u00c9":20,"\u00c7":22,"~":9,"}":9,"z":23,"y":21,"w":22,"v":21,"u":12,"t":16,"s":20,"r":21,"q":15,"p":21,"o":17,"n":21,"m":21,"l":21,"k":18,"j":18,"i":18,"h":20,"g":17,"f":21,"e":16,"d":27,"c":21,"a":17,"`":10,"_":151,"^":18,"]":25,"\\":21,"Z":22,"Y":19,"W":11,"V":12,"U":21,"T":24,"S":13,"R":21,"Q":9,"P":21,"O":22,"N":21,"L":21,"K":17,"J":18,"I":21,"H":21,"G":22,"F":21,"E":19,"D":21,"C":22,"B":21,"8":12,"7":16,"6":15,"5":22,"4":71,"3":21,"2":13,"1":68}},"3":{"d":"97,2v41,0,75,-29,74,-71v0,-36,-17,-60,-51,-70v80,-14,52,-124,-21,-124v-39,0,-65,24,-69,60r17,0v6,-30,23,-45,52,-45v29,-1,52,21,52,51v0,37,-26,50,-65,48r0,21v41,-4,68,23,68,59v0,31,-26,57,-57,56v-25,0,-50,-20,-55,-41r-15,0v7,33,32,56,70,56","w":196,"k":{"\u00fc":22,"\u00fb":22,"\u00fa":8,"\u00f9":21,"\u00f3":17,"\u00f1":22,"\u00ed":8,"\u00e9":17,"\u00e7":16,"\u00e1":17,"\u00dc":9,"\u00d6":8,"\u00d1":9,"\u00c9":22,"\u00c7":8,"\u00c5":17,"\u00c4":17,"~":11,"}":17,"z":27,"y":14,"x":9,"w":15,"v":14,"u":19,"t":11,"s":19,"r":20,"p":19,"n":20,"m":20,"l":8,"k":20,"j":21,"i":21,"h":8,"f":15,"d":9,"c":16,"b":16,"`":18,"_":158,"^":15,"]":28,"\\":7,"[":18,"Z":28,"Y":21,"X":19,"W":14,"V":14,"U":8,"T":22,"S":21,"R":8,"Q":11,"P":8,"O":8,"N":9,"M":22,"L":8,"K":20,"J":15,"I":8,"H":8,"G":8,"F":8,"E":22,"D":8,"C":8,"B":8,"A":17,"9":19,"8":7,"7":20,"5":23,"4":15,"3":21,"2":21,"1":66}},"4":{"d":"194,-49r0,-14r-30,0r0,-198r-147,212r132,0r0,49r15,0r0,-49r30,0xm149,-63r-106,0r106,-152r0,152","w":196,"k":{"\u00c5":17,"\u00c4":17,"z":9,"y":16,"w":17,"f":17,"`":21,"_":135,"^":19,"]":8,"Z":10,"Y":23,"X":19,"W":21,"V":21,"T":11,"J":23,"A":17,"9":20,"7":23,"3":22,"2":19,"1":55}},"5":{"d":"94,4v54,1,91,-42,91,-96v0,-60,-57,-100,-121,-84r16,-66r87,0r0,-15r-99,0r-26,100v60,-22,128,3,128,65v0,45,-32,82,-76,81v-39,0,-57,-17,-71,-45r-13,6v15,36,43,54,84,54","w":196,"k":{"\u00ee":9,"\u00c5":12,"\u00c4":12,"z":17,"`":90,"_":144,"^":22,"]":19,"\\":17,"Z":21,"Y":9,"X":9,"W":22,"V":7,"T":13,"M":17,"J":13,"A":12,"9":18,"7":10,"5":17,"4":9,"3":15,"2":39,"1":57}},"6":{"d":"99,6v77,0,116,-97,63,-151v-27,-27,-78,-34,-110,-12r55,-100r-17,0v-25,60,-76,97,-80,175v-3,51,37,88,89,88xm99,-156v41,0,74,36,74,74v1,41,-33,74,-74,74v-41,0,-74,-33,-74,-74v0,-40,33,-74,74,-74","w":196,"k":{"\u00ee":7,"\u00c5":9,"\u00c4":9,"}":23,"z":19,"`":99,"_":141,"^":10,"]":18,"\\":21,"Z":22,"Y":51,"X":13,"W":30,"V":30,"T":42,"J":9,"A":9,"9":20,"7":15,"4":22,"3":13,"2":35,"1":76}},"7":{"d":"192,-257r-181,0r0,15r154,0r-156,236r12,10","w":196,"k":{"\u00fc":49,"\u00fb":49,"\u00fa":58,"\u00f9":27,"\u00f6":59,"\u00f5":44,"\u00f4":59,"\u00f3":77,"\u00f2":42,"\u00f1":37,"\u00ef":12,"\u00ee":24,"\u00ed":43,"\u00eb":60,"\u00ea":61,"\u00e9":76,"\u00e8":42,"\u00e7":80,"\u00e5":57,"\u00e4":58,"\u00e3":47,"\u00e2":59,"\u00e1":77,"\u00e0":40,"\u00dc":17,"\u00d6":38,"\u00d1":18,"\u00c7":38,"\u00c5":72,"\u00c4":72,"~":55,"z":65,"y":52,"x":46,"w":53,"v":52,"u":58,"t":26,"s":71,"r":59,"q":75,"p":59,"o":77,"n":59,"m":59,"l":17,"j":32,"i":32,"h":16,"g":77,"f":12,"e":76,"d":82,"c":80,"a":77,"`":19,"_":137,"^":27,"]":21,"Z":8,"U":17,"S":27,"R":16,"Q":41,"P":16,"O":38,"N":18,"M":40,"L":16,"J":49,"I":17,"H":16,"G":38,"F":16,"D":16,"C":38,"B":16,"A":72,"9":21,"8":25,"6":50,"5":44,"4":112,"3":34,"2":35,"1":49,"0":17}},"8":{"d":"99,5v42,0,76,-31,75,-73v0,-35,-21,-58,-50,-68v24,-6,40,-31,41,-59v0,-39,-27,-66,-67,-66v-73,0,-87,108,-26,125v-28,10,-48,32,-48,68v-1,43,32,73,75,73xm98,-247v29,-1,53,23,52,52v0,30,-21,53,-52,53v-29,0,-50,-25,-51,-53v0,-29,22,-52,51,-52xm98,-130v34,0,60,29,61,62v0,33,-26,58,-61,58v-32,0,-61,-26,-60,-58v0,-33,27,-62,60,-62","w":196,"k":{"\u00fc":19,"\u00fb":19,"\u00fa":21,"\u00f9":19,"\u00f1":20,"\u00ed":22,"\u00dc":23,"\u00d6":22,"\u00d1":23,"\u00c9":20,"\u00c7":22,"\u00c5":14,"\u00c4":14,"~":12,"}":15,"z":25,"y":14,"x":9,"w":15,"v":14,"u":16,"t":8,"r":17,"p":17,"n":17,"m":17,"l":22,"k":18,"j":21,"i":20,"h":21,"f":13,"d":23,"`":22,"_":155,"^":18,"]":26,"\\":11,"Z":25,"Y":24,"X":16,"W":17,"V":18,"U":22,"T":26,"S":19,"R":21,"Q":9,"P":21,"O":22,"N":23,"M":20,"L":21,"K":17,"J":12,"I":21,"H":21,"G":22,"F":21,"E":19,"D":21,"C":22,"B":21,"A":14,"9":22,"8":21,"7":18,"5":20,"4":13,"3":18,"2":25,"1":70}},"9":{"d":"99,-259v-77,0,-116,98,-63,152v27,27,77,31,110,12r-51,92r14,7r70,-128v28,-63,-13,-135,-80,-135xm99,-244v41,0,74,33,74,74v0,41,-33,74,-74,74v-41,0,-74,-34,-74,-74v0,-41,33,-74,74,-74","w":196,"k":{"\u00f6":18,"\u00f4":18,"\u00f3":20,"\u00f2":18,"\u00ec":-32,"\u00eb":18,"\u00ea":17,"\u00e9":19,"\u00e8":17,"\u00e7":20,"\u00e5":18,"\u00e4":18,"\u00e3":17,"\u00e2":18,"\u00e1":20,"\u00e0":18,"\u00c5":31,"\u00c4":31,"}":19,"o":17,"g":16,"d":12,"c":20,"a":16,"`":22,"_":141,"]":14,"Z":28,"Y":14,"X":14,"W":20,"V":20,"T":21,"S":19,"M":12,"J":40,"A":31,"8":17,"7":18,"5":18,"4":36,"3":13,"2":9,"1":64}},":":{"d":"30,-128v-17,1,-14,24,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12xm30,-22v-17,1,-14,24,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12","w":58},";":{"d":"37,-128v-17,1,-14,24,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12xm54,-19r-13,-6r-26,59r4,3","w":73},"<":{"d":"102,-40r0,-16r-64,-39r64,-39r0,-16r-90,55","w":113},"=":{"d":"95,-110r0,-15r-82,0r0,15r82,0xm95,-66r0,-14r-82,0r0,14r82,0","w":106},">":{"d":"107,-95r-90,-55r0,16r63,39r-63,39r0,16","w":113},"?":{"d":"105,-77v-13,11,-47,10,-44,-12v8,-54,94,-55,95,-117v0,-35,-29,-56,-67,-55v-35,0,-59,16,-72,48r13,6v13,-24,29,-37,59,-39v51,-4,69,55,29,79v-23,22,-71,40,-73,78v-3,35,48,44,69,23xm93,-12v-1,-8,-5,-12,-12,-12v-8,0,-13,5,-13,12v0,17,26,18,25,0","w":168},"@":{"d":"163,-19v27,0,40,-27,40,-56v1,-49,-44,-88,-95,-88v-53,0,-96,41,-96,92v0,83,102,120,161,71r-7,-7v-47,44,-144,11,-144,-64v0,-47,39,-83,86,-83v47,0,86,34,86,79v0,22,-12,46,-30,46v-30,-6,-9,-55,-11,-83r-9,0r-1,19v-19,-40,-92,-18,-87,28v-6,49,64,61,83,25v2,11,11,21,24,21xm105,-105v19,0,33,14,33,34v0,24,-15,42,-40,42v-22,0,-32,-12,-32,-36v0,-21,18,-41,39,-40","w":214},"A":{"d":"217,0r-103,-265r-103,265r15,0r29,-77r117,0r30,77r15,0xm166,-92r-105,0r53,-136","w":227,"k":{"\u00fc":7,"\u00fb":8,"\u00fa":11,"\u00f9":8,"\u00f6":23,"\u00f5":22,"\u00f4":8,"\u00f3":10,"\u00f2":8,"\u00ee":10,"\u00ed":16,"\u00eb":22,"\u00ea":7,"\u00e9":9,"\u00e8":8,"\u00e7":21,"\u00e5":7,"\u00e4":22,"\u00e3":22,"\u00e2":8,"\u00e1":10,"\u00e0":8,"\u00dc":17,"\u00d6":27,"\u00d1":18,"\u00c9":16,"\u00c7":26,"~":25,"}":20,"y":30,"w":31,"v":30,"u":18,"t":18,"o":17,"l":17,"h":16,"g":17,"f":9,"d":19,"c":21,"a":17,"`":81,"_":144,"^":39,"]":21,"\\":46,"Z":17,"Y":54,"W":58,"V":58,"U":15,"T":46,"S":12,"R":17,"Q":28,"P":17,"O":26,"N":17,"L":17,"J":17,"I":17,"H":17,"G":26,"F":17,"D":17,"C":26,"B":17,"9":39,"8":15,"6":22,"5":13,"4":21,"3":27,"2":9,"1":79,"0":11}},"B":{"d":"108,0v43,1,80,-31,80,-75v0,-38,-26,-65,-59,-71v50,-28,26,-121,-39,-111r-63,0r0,257r81,0xm42,-242v50,-3,99,-1,99,47v0,47,-49,49,-99,46r0,-93xm42,-134v65,-4,132,-1,132,59v0,60,-66,64,-132,60r0,-119","w":201,"k":{"\u00ee":22,"\u00c5":8,"\u00c4":8,"}":7,"z":18,"y":19,"x":19,"w":19,"v":19,"t":16,"f":22,"`":36,"_":145,"^":17,"]":18,"\\":22,"Z":21,"Y":36,"X":12,"W":27,"V":28,"T":38,"J":8,"A":8,"9":10,"7":14,"4":21,"3":12,"2":34,"1":76}},"C":{"d":"18,-129v0,114,141,174,222,101r0,-17v-28,21,-48,33,-90,34v-67,1,-117,-51,-117,-118v0,-67,50,-118,117,-117v36,0,69,13,90,31r0,-18v-22,-19,-52,-27,-90,-28v-76,-1,-132,55,-132,132","w":252,"k":{"\u00fc":21,"\u00fb":20,"\u00fa":22,"\u00f9":19,"\u00f6":19,"\u00f5":18,"\u00f4":18,"\u00f3":19,"\u00f2":17,"\u00f1":22,"\u00ef":22,"\u00ee":33,"\u00ed":22,"\u00eb":18,"\u00ea":17,"\u00e9":18,"\u00e8":17,"\u00e7":16,"\u00e5":17,"\u00e4":19,"\u00e3":18,"\u00e2":18,"\u00e1":19,"\u00e0":17,"\u00dc":19,"\u00d6":35,"\u00d1":19,"\u00c9":17,"\u00c7":35,"\u00c5":19,"\u00c4":19,"~":186,"}":26,"|":10,"{":9,"z":32,"y":48,"x":16,"w":46,"v":46,"u":16,"t":26,"s":8,"r":17,"q":10,"p":15,"o":12,"n":17,"m":17,"l":18,"k":15,"j":22,"i":22,"h":17,"g":12,"f":26,"e":12,"d":23,"c":17,"b":10,"a":12,"`":28,"_":145,"^":39,"]":37,"\\":11,"[":12,"Z":30,"Y":23,"X":21,"W":16,"V":17,"U":19,"T":28,"S":17,"R":18,"Q":15,"P":18,"O":35,"N":19,"M":10,"L":18,"K":15,"J":15,"I":19,"H":18,"G":35,"F":18,"E":17,"D":18,"C":35,"B":18,"A":19,"9":18,"8":20,"7":22,"6":12,"5":18,"4":115,"3":32,"2":34,"1":72,"0":15}},"D":{"d":"113,0v68,1,115,-58,115,-129v0,-69,-48,-128,-115,-128r-86,0r0,257r86,0xm113,-243v58,-1,100,52,100,114v0,63,-42,115,-100,114r-71,0r0,-228r71,0","w":247,"k":{"\u00fc":16,"\u00fb":17,"\u00fa":19,"\u00f9":17,"\u00f3":16,"\u00f1":18,"\u00ed":19,"\u00e1":16,"\u00dc":20,"\u00d1":20,"\u00c9":18,"\u00c5":26,"\u00c4":26,"}":15,"z":22,"l":20,"k":16,"j":18,"i":18,"h":19,"d":9,"`":33,"_":152,"]":24,"\\":15,"Z":43,"Y":37,"X":33,"W":21,"V":22,"U":20,"T":49,"S":15,"R":19,"P":19,"N":20,"M":12,"L":19,"J":34,"I":20,"H":19,"F":19,"E":18,"D":19,"B":19,"A":26,"8":8,"7":37,"5":17,"4":24,"3":31,"2":29,"1":82}},"E":{"d":"149,0r0,-15r-109,0r0,-118r109,0r0,-16r-109,0r0,-93r109,0r0,-15r-123,0r0,257r123,0","w":170,"k":{"\u00fc":17,"\u00fb":17,"\u00fa":19,"\u00f9":17,"\u00f6":29,"\u00f5":28,"\u00f4":29,"\u00f3":31,"\u00f2":30,"\u00f1":18,"\u00ef":18,"\u00ee":30,"\u00ed":20,"\u00ec":17,"\u00eb":27,"\u00ea":28,"\u00e9":30,"\u00e8":28,"\u00e7":27,"\u00e5":28,"\u00e4":28,"\u00e3":28,"\u00e2":29,"\u00e1":31,"\u00e0":29,"\u00dc":18,"\u00d6":13,"\u00d1":18,"\u00c9":16,"\u00c7":13,"\u00c5":12,"\u00c4":12,"~":21,"}":18,"|":10,"z":15,"y":22,"w":23,"v":22,"u":12,"t":22,"s":12,"r":13,"q":22,"p":13,"o":23,"n":13,"m":13,"l":18,"k":15,"j":18,"i":18,"h":17,"g":23,"f":10,"e":22,"d":37,"c":27,"b":10,"a":23,"`":118,"_":145,"^":11,"]":38,"\\":22,"[":12,"Z":18,"Y":13,"X":10,"W":11,"V":12,"U":18,"T":17,"S":31,"R":18,"Q":16,"P":18,"O":13,"N":18,"M":21,"L":18,"K":14,"J":15,"I":18,"H":18,"G":13,"F":18,"E":16,"D":18,"C":13,"B":18,"A":12,"9":11,"8":33,"7":13,"6":13,"5":34,"4":68,"3":46,"2":26,"1":62}},"F":{"d":"139,-134r0,-15r-97,0r0,-93r97,0r0,-15r-112,0r0,257r15,0r0,-134r97,0","w":155,"k":{"\u00fc":12,"\u00fb":12,"\u00fa":14,"\u00f9":12,"\u00f6":24,"\u00f5":24,"\u00f4":24,"\u00f3":26,"\u00f2":25,"\u00f1":13,"\u00ef":13,"\u00ee":25,"\u00ed":15,"\u00ec":12,"\u00eb":23,"\u00ea":23,"\u00e9":25,"\u00e8":23,"\u00e7":23,"\u00e5":24,"\u00e4":24,"\u00e3":24,"\u00e2":24,"\u00e1":26,"\u00e0":24,"\u00dc":14,"\u00d6":8,"\u00d1":13,"\u00c9":11,"\u00c7":8,"\u00c5":47,"\u00c4":47,"|":21,"z":16,"y":18,"w":19,"v":18,"u":8,"t":17,"s":12,"r":9,"q":18,"p":9,"o":19,"n":9,"m":9,"l":13,"k":10,"j":13,"i":13,"h":12,"g":19,"f":21,"e":18,"d":32,"c":23,"b":21,"a":19,"`":103,"_":129,"^":21,"]":33,"\\":17,"[":23,"Z":20,"Y":8,"X":8,"W":22,"V":23,"U":14,"T":13,"S":36,"R":13,"Q":11,"P":13,"O":8,"N":13,"M":27,"L":13,"K":9,"J":61,"I":13,"H":13,"G":8,"F":13,"E":11,"D":13,"C":8,"B":13,"A":47,"9":22,"8":32,"7":10,"6":8,"5":54,"4":63,"3":42,"2":45,"1":57}},"G":{"d":"18,-129v0,77,55,133,132,133v75,0,133,-55,133,-128r-102,0r0,15r85,0v-5,55,-56,98,-116,98v-67,0,-118,-51,-118,-118v0,-66,51,-118,118,-117v42,0,74,15,97,47r12,-9v-26,-35,-63,-53,-109,-53v-74,-1,-132,57,-132,132","w":295,"k":{"\u00fc":10,"\u00fb":9,"\u00fa":11,"\u00f9":9,"\u00f6":8,"\u00f5":22,"\u00f4":22,"\u00f3":8,"\u00f2":22,"\u00f1":11,"\u00ef":11,"\u00ee":22,"\u00ed":11,"\u00eb":23,"\u00ea":22,"\u00e9":7,"\u00e8":22,"\u00e5":22,"\u00e4":7,"\u00e3":23,"\u00e2":22,"\u00e1":8,"\u00e0":22,"\u00dc":12,"\u00d6":22,"\u00d1":11,"\u00c9":9,"\u00c7":22,"\u00c5":32,"\u00c4":32,"~":18,"}":21,"|":18,"z":48,"y":17,"w":18,"t":14,"s":17,"r":16,"n":16,"m":16,"l":10,"k":23,"j":12,"i":12,"h":10,"f":18,"d":15,"b":19,"`":48,"_":146,"^":58,"]":30,"\\":27,"[":20,"Z":49,"Y":44,"X":40,"W":34,"V":34,"U":11,"T":55,"S":21,"R":10,"Q":9,"P":10,"O":22,"N":11,"M":18,"L":10,"K":22,"J":41,"I":10,"H":10,"G":22,"F":10,"E":8,"D":10,"C":22,"B":10,"A":32,"9":10,"8":14,"7":43,"5":23,"4":31,"3":37,"2":42,"1":88}},"H":{"d":"198,0r0,-257r-15,0r0,108r-141,0r0,-108r-15,0r0,257r15,0r0,-134r141,0r0,134r15,0","w":221,"k":{"\u00fc":17,"\u00fb":17,"\u00fa":19,"\u00f9":17,"\u00f1":17,"\u00ed":20,"\u00dc":19,"\u00d1":19,"\u00c9":17,"z":17,"l":19,"h":18,"d":20,"`":12,"_":156,"]":23,"Z":19,"U":19,"T":18,"R":19,"P":19,"N":19,"L":19,"I":19,"H":19,"F":19,"E":17,"D":19,"B":19,"8":18,"5":17,"4":8,"3":15,"2":11,"1":46}},"I":{"d":"42,0r0,-257r-14,0r0,257r14,0","w":69,"k":{"\u00fc":21,"\u00fb":21,"\u00fa":23,"\u00f9":21,"\u00f3":16,"\u00f1":21,"\u00ed":8,"\u00e1":16,"\u00dc":7,"\u00d6":18,"\u00d1":23,"\u00c9":21,"\u00c7":18,"\u00c4":16,"z":20,"u":18,"r":19,"p":18,"n":19,"m":19,"l":23,"k":19,"j":18,"i":18,"h":22,"d":8,"`":15,"_":41,"]":66,"[":17,"Z":23,"Y":18,"V":16,"U":7,"T":22,"S":19,"R":23,"Q":18,"P":23,"O":18,"N":23,"L":23,"K":19,"J":18,"I":23,"H":23,"G":18,"F":23,"E":21,"D":23,"C":18,"B":23,"8":22,"7":18,"5":21,"4":12,"3":19,"2":14,"1":50}},"J":{"d":"92,-51r0,-206r-15,0r0,205v4,44,-38,51,-54,24r-12,7v20,40,81,30,81,-30","w":113,"k":{"\u00fa":18,"\u00ed":18,"\u00ec":-32,"\u00dc":18,"\u00d1":19,"\u00c5":19,"\u00c4":19,"z":20,"l":18,"h":17,"d":18,"`":10,"_":103,"]":21,"Z":9,"U":18,"T":17,"R":17,"P":17,"N":19,"L":17,"I":18,"H":17,"F":17,"D":17,"B":17,"A":19,"8":17,"4":23,"3":14,"2":14,"1":45}},"K":{"d":"185,0r-134,-134r123,-123r-21,0r-114,114r0,-114r-15,0r0,257r15,0v2,-40,-4,-88,2,-124r124,124r20,0","w":188,"k":{"\u00fc":13,"\u00fb":13,"\u00fa":15,"\u00f9":13,"\u00f6":19,"\u00f5":19,"\u00f4":19,"\u00f3":21,"\u00f2":19,"\u00ee":9,"\u00eb":18,"\u00ea":18,"\u00e9":19,"\u00e8":18,"\u00e7":18,"\u00e5":18,"\u00e4":19,"\u00e3":19,"\u00e2":19,"\u00e1":21,"\u00e0":19,"\u00dc":22,"\u00d6":43,"\u00c7":44,"~":89,"y":32,"w":36,"v":38,"u":10,"t":17,"s":17,"q":13,"o":14,"g":14,"f":20,"e":13,"d":27,"c":18,"a":14,"`":41,"_":136,"^":46,"]":17,"Y":16,"U":22,"T":21,"S":19,"Q":46,"O":43,"J":17,"G":43,"C":43,"9":32,"8":21,"6":15,"5":22,"4":38,"3":34,"2":20,"1":54,"0":20}},"L":{"d":"114,0r0,-15r-72,0r0,-242r-15,0r0,257r87,0","w":128,"k":{"\u00fc":14,"\u00fb":14,"\u00fa":16,"\u00f9":14,"\u00f6":19,"\u00f5":19,"\u00f4":19,"\u00f3":21,"\u00f2":19,"\u00f1":22,"\u00ef":22,"\u00ee":18,"\u00ed":8,"\u00ec":21,"\u00eb":18,"\u00ea":18,"\u00e9":19,"\u00e8":18,"\u00e7":18,"\u00e5":19,"\u00e4":19,"\u00e3":19,"\u00e2":19,"\u00e1":21,"\u00e0":19,"\u00dc":23,"\u00d6":48,"\u00d1":8,"\u00c9":21,"\u00c7":48,"\u00c5":17,"\u00c4":17,"~":53,"}":11,"z":20,"y":41,"w":41,"v":43,"u":10,"t":10,"s":17,"r":19,"q":13,"p":18,"o":15,"n":19,"m":19,"l":8,"k":20,"j":22,"i":22,"h":22,"g":15,"f":15,"e":13,"d":28,"c":18,"a":15,"`":75,"_":101,"^":58,"]":27,"\\":50,"[":17,"Z":8,"Y":60,"W":58,"V":59,"U":23,"T":52,"S":21,"R":7,"Q":51,"P":7,"O":48,"N":8,"L":7,"K":19,"J":20,"I":8,"H":7,"G":48,"F":7,"E":21,"D":7,"C":48,"B":7,"A":17,"9":57,"8":23,"7":18,"6":17,"5":24,"4":71,"3":36,"2":15,"1":86,"0":22}},"M":{"d":"317,0r-67,-265r-87,230r-88,-230r-67,265r15,0r55,-216r85,222r84,-222r55,216r15,0","w":324,"k":{"\u00fa":18,"\u00ee":20,"\u00dc":22,"\u00d6":12,"\u00c7":12,"~":21,"y":12,"w":12,"v":11,"f":18,"d":8,"`":49,"_":140,"^":15,"]":15,"\\":33,"Y":40,"W":39,"V":39,"U":21,"T":39,"S":17,"Q":15,"O":11,"G":11,"C":11,"9":17,"8":20,"5":17,"4":8,"3":17,"2":17,"1":72}},"N":{"d":"234,4r0,-261r-14,0r0,223r-192,-225r0,259r14,0r0,-218","w":257,"k":{"\u00fc":17,"\u00fb":17,"\u00fa":19,"\u00f9":17,"\u00f1":17,"\u00ed":19,"\u00dc":21,"\u00d1":21,"\u00c9":18,"z":16,"l":20,"k":16,"h":19,"d":21,"`":12,"_":156,"]":19,"Z":19,"U":19,"T":18,"R":19,"P":19,"N":21,"L":19,"I":19,"H":19,"F":19,"E":17,"D":19,"B":19,"8":19,"5":16,"4":9,"3":16,"2":12,"1":46}},"O":{"d":"150,4v77,0,133,-56,133,-133v0,-77,-57,-132,-133,-132v-76,0,-132,55,-132,132v0,77,55,133,132,133xm150,-246v68,0,118,49,118,117v0,68,-50,118,-118,118v-67,0,-117,-51,-117,-118v0,-67,50,-117,117,-117","w":295,"k":{"\u00c5":21,"\u00c4":21,"}":9,"d":19,"`":27,"_":146,"]":18,"\\":9,"Z":37,"Y":31,"X":28,"W":17,"V":17,"T":42,"S":10,"O":10,"M":23,"J":30,"A":21,"8":19,"7":31,"5":11,"4":19,"3":26,"2":23,"1":76}},"P":{"d":"42,-129v63,5,118,-7,118,-64v1,-62,-64,-70,-133,-64r0,257r15,0r0,-129xm42,-242v52,-3,103,-1,103,49v0,49,-50,54,-103,50r0,-99","w":176,"k":{"\u00fc":22,"\u00fb":19,"\u00fa":22,"\u00f9":18,"\u00f6":34,"\u00f5":17,"\u00f4":28,"\u00f3":49,"\u00f2":33,"\u00f1":10,"\u00ed":12,"\u00eb":35,"\u00ea":31,"\u00e9":48,"\u00e8":33,"\u00e7":54,"\u00e5":38,"\u00e4":33,"\u00e3":19,"\u00e2":28,"\u00e1":49,"\u00e0":31,"\u00dc":9,"\u00d6":10,"\u00d1":9,"\u00c9":7,"\u00c7":10,"\u00c5":57,"\u00c4":57,"~":31,"}":19,"|":17,"{":16,"z":31,"y":18,"x":12,"w":17,"v":17,"u":23,"t":10,"s":39,"r":25,"q":48,"p":24,"o":50,"n":25,"m":25,"l":9,"k":22,"j":8,"i":8,"h":8,"g":50,"f":13,"e":49,"d":55,"c":54,"b":17,"a":50,"`":8,"_":149,"^":18,"]":29,"\\":8,"[":19,"Z":34,"Y":22,"X":23,"W":14,"V":15,"U":9,"T":27,"S":17,"R":9,"Q":13,"P":9,"O":10,"N":9,"M":32,"L":9,"K":21,"J":57,"I":9,"H":9,"G":10,"F":9,"E":7,"D":9,"C":10,"B":9,"A":57,"9":18,"8":15,"7":24,"6":22,"5":37,"4":80,"3":25,"2":21,"1":71}},"Q":{"d":"153,4v76,0,132,-56,132,-133v0,-76,-56,-132,-132,-132v-76,0,-132,55,-132,132v0,77,55,133,132,133xm153,-246v68,0,118,49,118,117v0,68,-50,118,-118,118v-67,0,-117,-50,-117,-118v0,-67,49,-117,117,-117xm229,35r0,-15r-76,0r0,15r76,0","w":295,"k":{"\u00c5":18,"\u00c4":18,"d":18,"`":24,"]":17,"\\":24,"Z":35,"Y":28,"X":25,"W":14,"V":14,"T":40,"S":24,"M":22,"J":27,"A":18,"8":18,"7":28,"5":8,"4":17,"3":23,"2":21,"1":73}},"R":{"d":"157,-193v0,-64,-62,-68,-130,-64r0,257r15,0r0,-129r27,0r82,129r17,0r-82,-129v44,0,71,-20,71,-64xm42,-242v51,-2,100,-2,100,48v0,51,-47,55,-100,51r0,-99","w":174,"k":{"\u00fc":9,"\u00fb":7,"\u00fa":10,"\u00f9":23,"\u00f6":15,"\u00f5":20,"\u00f4":15,"\u00f3":17,"\u00f2":15,"\u00ec":-32,"\u00eb":15,"\u00ea":14,"\u00e9":16,"\u00e8":14,"\u00e7":17,"\u00e5":15,"\u00e4":15,"\u00e3":7,"\u00e2":15,"\u00e1":17,"\u00e0":15,"~":24,"}":17,"y":17,"w":18,"v":17,"u":8,"s":18,"q":12,"o":14,"g":14,"f":18,"e":13,"d":24,"c":17,"a":14,"`":21,"_":145,"]":18,"Y":12,"W":19,"V":20,"T":16,"S":23,"J":18,"8":21,"6":11,"5":19,"4":30,"3":14,"2":22,"1":60}},"S":{"d":"90,3v86,0,95,-105,34,-136v-30,-16,-81,-26,-81,-66v0,-52,83,-58,101,-20r14,-6v-24,-53,-130,-40,-130,26v0,77,122,55,122,132v1,37,-24,55,-60,55v-32,0,-53,-15,-61,-46r-15,5v11,37,37,56,76,56","w":179,"k":{"\u00fb":16,"\u00fa":18,"\u00f9":16,"\u00f1":17,"\u00ef":17,"\u00ee":13,"\u00ed":19,"\u00dc":18,"\u00d6":18,"\u00d1":19,"\u00c7":18,"\u00c5":9,"\u00c4":9,"~":21,"}":11,"z":16,"y":9,"w":9,"v":8,"t":22,"l":18,"j":17,"i":17,"h":17,"f":10,"d":19,"`":28,"_":147,"^":35,"]":22,"\\":18,"Z":20,"Y":15,"X":11,"W":8,"V":8,"U":18,"T":18,"R":18,"Q":18,"P":18,"O":18,"N":19,"L":18,"J":22,"I":18,"H":18,"G":18,"F":18,"D":18,"C":18,"B":18,"A":9,"9":11,"8":17,"7":13,"5":17,"4":8,"3":15,"2":25,"1":62}},"T":{"d":"145,-242r0,-15r-129,0r0,15r57,0r0,242r15,0r0,-242r57,0","w":158,"k":{"\u00fc":49,"\u00fb":49,"\u00fa":51,"\u00f9":49,"\u00f6":42,"\u00f5":42,"\u00f4":42,"\u00f3":44,"\u00f2":43,"\u00f1":49,"\u00ef":26,"\u00ee":33,"\u00ed":51,"\u00ec":17,"\u00eb":42,"\u00ea":42,"\u00e9":44,"\u00e8":42,"\u00e7":43,"\u00e5":42,"\u00e4":42,"\u00e3":42,"\u00e2":42,"\u00e1":44,"\u00e0":42,"\u00dc":21,"\u00d6":45,"\u00d1":21,"\u00c9":18,"\u00c7":45,"\u00c5":44,"\u00c4":44,"~":38,"z":48,"y":40,"x":33,"w":40,"v":39,"u":46,"t":38,"s":39,"r":47,"q":37,"p":46,"o":39,"n":47,"m":47,"l":21,"k":17,"j":46,"i":46,"h":19,"g":39,"f":13,"e":38,"d":51,"c":43,"a":39,"`":59,"_":143,"^":42,"]":24,"Z":12,"U":21,"T":20,"S":27,"R":20,"Q":48,"P":20,"O":45,"N":21,"M":37,"L":20,"K":17,"J":45,"I":21,"H":20,"G":45,"F":20,"E":18,"D":20,"C":45,"B":20,"A":44,"9":24,"8":24,"7":17,"6":38,"5":46,"4":55,"3":33,"2":37,"1":48,"0":17}},"U":{"d":"102,3v43,0,74,-26,74,-67r0,-193r-14,0r0,193v0,30,-27,52,-60,52v-34,0,-60,-19,-60,-52r0,-193r-15,0r0,193v-1,42,33,67,75,67","w":199,"k":{"\u00fc":18,"\u00fb":18,"\u00fa":20,"\u00f9":18,"\u00f1":18,"\u00ed":21,"\u00dc":21,"\u00d1":21,"\u00c9":18,"\u00c5":11,"\u00c4":11,"z":22,"r":16,"n":16,"m":16,"l":20,"k":16,"h":19,"d":21,"`":12,"_":156,"]":24,"Z":11,"U":21,"T":19,"S":17,"R":19,"P":19,"N":21,"M":17,"L":19,"J":9,"I":20,"H":19,"F":19,"E":18,"D":19,"B":19,"A":11,"8":19,"7":17,"5":18,"4":10,"3":17,"2":15,"1":47}},"V":{"d":"179,-257r-16,0r-67,212r-68,-212r-15,0r83,261","w":189,"k":{"\u00fc":25,"\u00fb":24,"\u00fa":26,"\u00f9":14,"\u00f6":34,"\u00f5":22,"\u00f4":33,"\u00f3":35,"\u00f2":30,"\u00f1":15,"\u00ee":17,"\u00ed":19,"\u00eb":33,"\u00ea":32,"\u00e9":34,"\u00e8":30,"\u00e7":36,"\u00e5":33,"\u00e4":34,"\u00e3":25,"\u00e2":33,"\u00e1":35,"\u00e0":27,"\u00d6":19,"\u00c7":19,"\u00c5":56,"\u00c4":56,"~":18,"z":31,"y":18,"x":12,"w":18,"v":17,"u":24,"t":13,"s":32,"r":24,"q":30,"p":24,"o":32,"n":24,"m":24,"j":12,"i":12,"g":32,"f":9,"e":31,"d":41,"c":36,"a":32,"`":12,"_":143,"^":15,"]":18,"Z":21,"S":17,"Q":22,"O":19,"M":37,"J":46,"G":19,"C":19,"A":56,"9":7,"8":16,"6":24,"5":42,"4":55,"3":25,"2":23,"1":44,"0":19}},"W":{"d":"306,-257r-15,0r-67,210r-65,-215r-65,215r-67,-210r-15,0r83,261r64,-216r64,216","w":315,"k":{"\u00fc":23,"\u00fb":23,"\u00fa":25,"\u00f9":13,"\u00f6":32,"\u00f5":21,"\u00f4":32,"\u00f3":33,"\u00f2":28,"\u00f1":14,"\u00ed":18,"\u00eb":32,"\u00ea":31,"\u00e9":33,"\u00e8":28,"\u00e7":35,"\u00e5":31,"\u00e4":32,"\u00e3":23,"\u00e2":32,"\u00e1":33,"\u00e0":26,"\u00d6":18,"\u00c7":18,"\u00c5":55,"\u00c4":55,"~":17,"z":30,"y":16,"x":11,"w":17,"v":16,"u":22,"t":11,"s":30,"r":23,"q":29,"p":23,"o":31,"n":23,"m":23,"j":10,"i":10,"g":31,"f":8,"e":30,"d":41,"c":35,"a":31,"`":10,"_":141,"^":14,"]":17,"Z":19,"S":15,"Q":21,"O":18,"M":36,"J":45,"G":18,"C":18,"A":55,"9":22,"8":15,"6":23,"5":40,"4":55,"3":24,"2":22,"1":42,"0":18}},"X":{"d":"181,0r-75,-132r71,-125r-17,0r-64,111r-63,-111r-17,0r71,124r-75,133r16,0r68,-119r69,119r16,0","w":190,"k":{"\u00fc":9,"\u00fb":9,"\u00fa":11,"\u00f9":9,"\u00f6":11,"\u00f5":10,"\u00f4":11,"\u00f3":13,"\u00f2":11,"\u00ee":8,"\u00eb":10,"\u00ea":10,"\u00e9":12,"\u00e8":10,"\u00e7":10,"\u00e5":10,"\u00e4":11,"\u00e3":10,"\u00e2":11,"\u00e1":13,"\u00e0":11,"\u00dc":16,"\u00d6":30,"\u00c7":30,"~":45,"y":31,"w":36,"v":37,"u":22,"t":17,"q":21,"o":23,"g":23,"f":20,"e":22,"d":19,"c":11,"a":23,"`":25,"_":142,"^":34,"]":17,"U":16,"S":13,"Q":33,"O":30,"G":30,"C":30,"9":17,"8":15,"6":8,"5":14,"4":22,"3":28,"2":20,"1":48,"0":13}},"Y":{"d":"173,-257r-17,0r-64,111r-63,-111r-17,0r73,128r0,129r15,0r0,-129","w":183,"k":{"\u00fc":44,"\u00fb":44,"\u00fa":51,"\u00f9":25,"\u00f6":54,"\u00f5":39,"\u00f4":53,"\u00f3":55,"\u00f2":40,"\u00f1":32,"\u00ef":23,"\u00ee":19,"\u00ed":38,"\u00eb":54,"\u00ea":53,"\u00e9":54,"\u00e8":40,"\u00e7":56,"\u00e5":53,"\u00e4":53,"\u00e3":41,"\u00e2":53,"\u00e1":55,"\u00e0":38,"\u00dc":18,"\u00d6":35,"\u00d1":17,"\u00c7":35,"\u00c5":54,"\u00c4":54,"~":50,"z":55,"y":42,"x":37,"w":42,"v":42,"u":48,"t":24,"s":52,"r":49,"q":50,"p":49,"o":51,"n":49,"m":49,"l":17,"j":27,"i":27,"h":16,"g":51,"f":13,"e":51,"d":61,"c":56,"a":51,"`":22,"_":143,"^":31,"]":21,"Z":8,"U":18,"T":17,"S":26,"R":17,"Q":37,"P":17,"O":35,"N":17,"M":40,"L":17,"J":49,"I":17,"H":17,"G":35,"F":17,"D":17,"C":35,"B":17,"A":54,"9":19,"8":24,"6":48,"5":45,"4":65,"3":33,"2":34,"1":49,"0":15}},"Z":{"d":"188,-257r-165,0r0,15r138,0r-147,242r173,0r0,-15r-147,0","w":199,"k":{"\u00fc":15,"\u00fb":14,"\u00fa":15,"\u00f9":13,"\u00f6":20,"\u00f5":19,"\u00f4":19,"\u00f3":21,"\u00f2":19,"\u00f1":23,"\u00ef":23,"\u00ee":18,"\u00ed":7,"\u00eb":19,"\u00ea":18,"\u00e9":19,"\u00e8":18,"\u00e7":22,"\u00e5":18,"\u00e4":20,"\u00e3":19,"\u00e2":19,"\u00e1":21,"\u00e0":19,"\u00dc":21,"\u00d6":39,"\u00d1":21,"\u00c9":18,"\u00c7":39,"~":56,"z":8,"y":44,"w":45,"v":46,"u":14,"t":11,"s":21,"r":22,"q":17,"p":22,"o":18,"n":22,"m":22,"l":21,"k":17,"j":8,"i":7,"h":19,"g":18,"f":13,"e":17,"d":26,"c":22,"a":18,"`":24,"_":144,"^":33,"]":24,"Z":21,"U":21,"T":20,"S":18,"R":20,"Q":42,"P":20,"O":39,"N":21,"L":20,"K":17,"J":18,"I":21,"H":20,"G":40,"F":20,"E":18,"D":20,"C":39,"B":20,"9":23,"8":20,"6":14,"5":22,"4":109,"3":33,"2":13,"1":53,"0":19}},"[":{"d":"61,17r0,-13r-25,0r0,-263r24,0r0,-13r-39,0r0,289r40,0","w":77,"k":{"\u00fc":19,"\u00fb":19,"\u00fa":21,"\u00f9":19,"\u00f6":13,"\u00f5":12,"\u00f4":13,"\u00f3":14,"\u00f2":13,"\u00f1":19,"\u00ee":19,"\u00ed":22,"\u00eb":12,"\u00ea":12,"\u00e9":14,"\u00e8":12,"\u00e7":13,"\u00e5":12,"\u00e4":12,"\u00e3":12,"\u00e2":13,"\u00e1":14,"\u00e0":13,"\u00dc":22,"\u00d6":17,"\u00d1":19,"\u00c9":20,"\u00c7":17,"\u00c5":14,"\u00c4":14,"~":8,"z":18,"y":10,"x":19,"w":10,"v":10,"u":16,"t":8,"s":9,"r":17,"q":8,"o":9,"n":17,"m":17,"l":17,"i":17,"h":17,"g":10,"f":13,"e":8,"d":22,"c":13,"a":9,"`":30,"^":12,"\\":9,"Z":21,"Y":16,"X":13,"W":14,"V":15,"U":21,"T":20,"S":17,"R":21,"Q":21,"P":21,"O":16,"N":18,"M":9,"L":21,"K":17,"J":13,"I":21,"H":21,"G":16,"F":21,"E":19,"D":21,"C":16,"B":21,"A":14,"9":13,"8":20,"7":17,"6":9,"5":18,"4":26,"3":33,"2":28,"1":64,"0":19}},"\\":{"d":"96,0r-73,-257r-15,0r74,257r14,0","w":101,"k":{"\u00ee":18,"\u00dc":19,"\u00d6":10,"\u00c7":10,"~":23,"y":11,"w":12,"v":10,"d":22,"`":54,"_":93,"^":18,"]":12,"\\":37,"Y":45,"W":42,"V":43,"U":19,"T":37,"Q":13,"O":10,"G":10,"C":10,"9":18,"8":19,"4":8,"3":15,"1":70}},"]":{"d":"62,17r0,-289r-39,0r0,13r25,0r0,263r-26,0r0,13r40,0","w":77,"k":{"\u00ec":-39,"`":19,"_":55,"4":16,"3":7,"2":18,"1":38}},"^":{"d":"114,-136r-44,-101r-12,0r-43,101r9,0r40,-74r40,74r10,0","w":126,"k":{"\u00fa":20,"\u00f6":19,"\u00f5":18,"\u00f4":18,"\u00f3":23,"\u00f2":19,"\u00eb":18,"\u00ea":17,"\u00e9":21,"\u00e8":18,"\u00e7":13,"\u00e5":17,"\u00e4":19,"\u00e3":18,"\u00e2":18,"\u00e1":23,"\u00e0":18,"\u00c5":37,"\u00c4":37,"}":10,"q":8,"o":10,"g":9,"e":8,"d":33,"c":13,"a":9,"`":33,"_":112,"]":17,"\\":8,"Z":72,"Y":31,"X":35,"W":15,"V":17,"T":42,"S":15,"M":14,"J":46,"A":37,"8":17,"7":70,"5":22,"4":53,"3":36,"2":33,"1":76}},"_":{"d":"132,76r0,-13r-132,0r0,13r132,0","w":128,"k":{"\u00fc":129,"\u00fb":129,"\u00fa":129,"\u00f9":129,"\u00f6":141,"\u00f5":141,"\u00f4":141,"\u00f3":141,"\u00f2":141,"\u00f1":135,"\u00ef":66,"\u00ee":86,"\u00ed":79,"\u00ec":39,"\u00eb":141,"\u00ea":141,"\u00e9":141,"\u00e8":141,"\u00e7":135,"\u00e5":141,"\u00e4":141,"\u00e3":141,"\u00e2":141,"\u00e1":141,"\u00e0":141,"\u00dc":156,"\u00d6":147,"\u00d1":156,"\u00c9":145,"\u00c7":147,"\u00c5":140,"\u00c4":140,"~":139,"}":63,"z":145,"y":-17,"x":121,"w":139,"v":138,"u":129,"t":77,"s":107,"r":98,"q":140,"o":141,"n":135,"m":152,"l":38,"k":140,"i":42,"h":140,"f":86,"e":141,"d":144,"c":135,"b":148,"a":141,"`":85,"_":-51,"^":110,"\\":92,"Z":143,"Y":140,"X":140,"W":141,"V":142,"U":156,"T":141,"S":143,"R":156,"Q":149,"P":156,"O":147,"N":156,"M":137,"L":110,"K":152,"J":88,"I":38,"H":156,"G":147,"F":135,"E":145,"D":156,"C":147,"B":156,"A":140,"9":139,"8":152,"7":137,"6":139,"5":138,"4":145,"3":155,"2":150,"1":117,"0":135}},"`":{"d":"89,-177r-48,-48r-8,8r47,48","w":119,"k":{"\u00fc":30,"\u00fb":24,"\u00fa":62,"\u00f9":49,"\u00f6":42,"\u00f5":22,"\u00f4":34,"\u00f3":108,"\u00f2":103,"\u00f1":15,"\u00ed":18,"\u00ec":20,"\u00eb":43,"\u00ea":37,"\u00e9":108,"\u00e8":103,"\u00e7":104,"\u00e5":48,"\u00e4":40,"\u00e3":25,"\u00e2":34,"\u00e1":109,"\u00e0":102,"\u00dc":14,"\u00d6":14,"\u00d1":15,"\u00c9":13,"\u00c7":14,"\u00c5":106,"\u00c4":106,"~":98,"}":24,"|":22,"{":22,"z":103,"y":97,"x":93,"w":97,"v":96,"u":109,"t":17,"s":97,"r":111,"q":98,"p":110,"o":99,"n":111,"m":111,"l":15,"k":11,"j":10,"i":10,"h":14,"g":99,"f":23,"e":99,"d":122,"c":104,"b":23,"a":99,"`":50,"_":87,"^":21,"]":35,"\\":16,"[":8,"Z":118,"Y":40,"X":45,"W":22,"V":23,"U":14,"T":107,"S":18,"R":14,"Q":17,"P":14,"O":14,"N":15,"M":41,"L":14,"K":11,"J":104,"I":15,"H":14,"G":15,"F":14,"E":13,"D":14,"C":14,"B":14,"A":106,"8":21,"7":113,"6":33,"5":35,"4":117,"3":51,"2":43,"1":93}},"a":{"d":"13,-74v0,71,95,105,136,48r0,26r14,0r0,-149r-14,0r0,26v-42,-56,-136,-22,-136,49xm89,-136v34,0,63,29,63,62v0,33,-29,62,-63,62v-33,0,-62,-29,-62,-62v0,-33,29,-62,62,-62","w":183,"k":{"\u00ee":11,"\u00dc":17,"\u00d1":18,"}":19,"`":109,"_":153,"]":20,"\\":15,"Y":46,"W":23,"V":24,"U":17,"T":46,"S":16,"N":18,"5":18,"4":17,"3":13,"2":7,"1":79}},"b":{"d":"35,-27v39,58,137,24,137,-47v0,-71,-97,-106,-137,-47r0,-145r-15,0r0,266r15,0r0,-27xm95,-136v34,0,63,29,63,62v0,33,-29,62,-63,62v-33,0,-62,-29,-62,-62v0,-33,29,-62,62,-62","w":186,"k":{"\u00fc":17,"\u00fb":18,"\u00fa":21,"\u00f9":19,"\u00f1":18,"\u00ef":18,"\u00ee":15,"\u00ed":22,"\u00ec":19,"\u00dc":9,"\u00d6":8,"\u00d1":9,"\u00c9":22,"\u00c7":22,"\u00c5":18,"\u00c4":18,"}":17,"z":17,"y":21,"x":19,"w":21,"v":20,"t":8,"l":8,"k":20,"j":18,"i":18,"h":23,"f":15,"d":9,"`":140,"_":147,"^":33,"]":27,"\\":33,"[":17,"Z":30,"Y":60,"X":20,"W":42,"V":42,"U":7,"T":51,"S":21,"R":22,"Q":9,"P":22,"O":22,"N":8,"M":7,"L":22,"K":19,"J":16,"I":23,"H":22,"G":22,"F":22,"E":21,"D":22,"C":22,"B":22,"A":18,"9":20,"8":22,"7":22,"5":22,"4":15,"3":21,"2":42,"1":85}},"c":{"d":"17,-74v0,60,70,99,122,64r0,-19v-39,37,-108,10,-108,-45v0,-55,67,-82,108,-47r0,-17v-49,-35,-122,3,-122,64","w":157,"k":{"\u00fc":21,"\u00fb":21,"\u00fa":21,"\u00f9":21,"\u00f6":22,"\u00f5":22,"\u00f4":22,"\u00f3":22,"\u00f2":22,"\u00f1":22,"\u00ef":9,"\u00ee":21,"\u00ed":9,"\u00ec":9,"\u00eb":21,"\u00ea":21,"\u00e9":21,"\u00e8":21,"\u00e7":10,"\u00e5":22,"\u00e4":22,"\u00e3":22,"\u00e2":22,"\u00e1":22,"\u00e0":22,"\u00dc":10,"\u00d6":20,"\u00d1":11,"\u00c9":8,"\u00c7":20,"\u00c5":17,"\u00c4":17,"}":13,"|":17,"z":11,"y":17,"w":17,"v":17,"u":21,"r":22,"q":21,"p":21,"o":22,"n":22,"m":22,"l":10,"k":22,"j":9,"i":9,"h":9,"g":22,"f":17,"e":21,"d":9,"c":10,"b":18,"a":22,"`":107,"_":141,"]":28,"\\":27,"[":19,"Z":8,"Y":62,"X":21,"W":35,"V":36,"U":10,"T":55,"S":16,"R":10,"Q":7,"P":10,"O":20,"N":11,"L":10,"K":22,"J":19,"I":10,"H":10,"G":20,"F":10,"E":8,"D":10,"C":20,"B":10,"A":17,"9":9,"8":15,"5":19,"4":50,"3":28,"2":21,"1":89}},"d":{"d":"15,-74v0,71,97,105,138,47r0,27r14,0r0,-266r-14,0r0,144v-42,-56,-138,-24,-138,48xm92,-136v33,0,62,29,62,62v0,33,-29,62,-62,62v-33,0,-62,-29,-62,-62v0,-33,29,-62,62,-62","w":187,"k":{"\u00fa":16,"\u00ed":17,"\u00ec":-34,"\u00dc":18,"\u00d1":18,"d":18,"`":9,"_":153,"]":16,"U":17,"N":17,"4":21,"3":12,"2":8,"1":43}},"e":{"d":"144,-43v-25,55,-128,31,-117,-34r139,0v1,-43,-33,-74,-77,-74v-43,0,-77,34,-77,77v0,51,48,90,102,73v19,-6,35,-18,44,-36xm149,-91r-120,0v11,-62,112,-59,120,0","w":176,"k":{"\u00ee":9,"\u00c5":19,"\u00c4":19,"}":8,"z":17,"y":21,"x":19,"w":20,"v":20,"t":17,"f":21,"e":-14,"`":99,"_":143,"^":23,"]":18,"\\":26,"Z":15,"Y":55,"X":11,"W":35,"V":36,"T":43,"S":9,"J":21,"A":19,"9":13,"7":7,"5":11,"4":13,"3":21,"2":31,"1":76}},"f":{"d":"90,-249r0,-15v-25,-9,-54,0,-54,31r0,84r-21,0r0,15r21,0r0,134r14,0r0,-134r36,0r0,-15r-36,0v4,-41,-19,-122,40,-100","w":97,"k":{"\u00f6":8,"\u00f5":8,"\u00f4":8,"\u00f3":10,"\u00f2":8,"\u00ee":9,"\u00eb":22,"\u00ea":23,"\u00e9":8,"\u00e8":23,"\u00e7":7,"\u00e5":8,"\u00e4":8,"\u00e3":8,"\u00e2":8,"\u00e1":10,"\u00e0":8,"\u00c5":19,"\u00c4":19,"t":11,"q":18,"o":20,"l":14,"i":17,"g":19,"f":12,"e":18,"d":17,"c":8,"a":19,"`":36,"_":82,"Z":17,"S":22,"M":11,"J":21,"A":19,"8":16,"5":24,"4":31,"3":28,"2":32,"1":40}},"g":{"d":"90,70v44,0,73,-29,73,-73r0,-146r-14,0r0,26v-42,-56,-136,-22,-136,49v0,71,95,105,136,48v4,49,-13,82,-59,81v-29,0,-52,-11,-58,-33r-14,0v8,32,31,48,72,48xm89,-136v34,0,63,29,63,62v0,33,-29,62,-63,62v-33,0,-62,-29,-62,-62v0,-33,29,-62,62,-62","w":183,"k":{"\u00ee":11,"\u00dc":17,"\u00d1":18,"`":109,"\\":15,"Y":46,"W":23,"V":24,"U":17,"T":46,"Q":18,"N":18,"5":18,"4":17,"3":13,"2":7,"1":79}},"h":{"d":"41,-97v-1,-23,21,-39,45,-39v62,0,40,80,44,136r14,0v-2,-67,17,-151,-58,-151v-21,0,-36,7,-45,22r0,-137r-14,0r0,266r14,0r0,-97","w":164,"k":{"\u00fc":19,"\u00fb":21,"\u00fa":7,"\u00f9":21,"\u00f3":16,"\u00f1":21,"\u00ef":20,"\u00ee":18,"\u00ed":8,"\u00ec":21,"\u00e1":17,"\u00dc":10,"\u00d6":7,"\u00d1":11,"\u00c9":8,"\u00c7":22,"\u00c5":19,"\u00c4":19,"|":17,"y":18,"w":18,"v":17,"t":17,"l":9,"k":22,"j":21,"i":20,"h":8,"f":9,"d":10,"b":17,"`":111,"_":138,"^":21,"]":8,"\\":30,"[":18,"Z":9,"Y":62,"X":16,"W":39,"V":39,"U":9,"T":53,"S":21,"R":8,"Q":9,"P":8,"O":22,"N":10,"L":8,"K":21,"J":19,"I":9,"H":8,"G":22,"F":8,"E":22,"D":8,"C":22,"B":8,"A":19,"9":13,"8":8,"7":19,"5":22,"4":14,"3":21,"2":17,"1":87}},"i":{"d":"34,-199v-17,1,-13,23,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12xm41,0r0,-149r-15,0r0,149r15,0","w":66,"k":{"\u00fc":19,"\u00fb":18,"\u00fa":20,"\u00f9":19,"\u00ed":19,"\u00dc":18,"\u00d1":18,"}":53,"z":18,"r":17,"p":17,"n":17,"m":17,"l":18,"h":17,"d":18,"`":28,"_":44,"]":68,"\\":22,"Z":20,"Y":66,"W":12,"V":13,"U":18,"T":68,"S":19,"R":17,"P":17,"N":18,"L":17,"I":18,"H":17,"F":17,"D":17,"B":17,"8":20,"5":21,"4":8,"3":21,"2":15,"1":112}},"j":{"d":"34,-199v-17,1,-13,23,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12xm41,65r0,-214r-14,0r0,214r14,0","w":66,"k":{"\u00fc":19,"\u00fb":19,"\u00fa":20,"\u00f9":19,"\u00f1":16,"\u00ed":19,"\u00dc":18,"\u00d1":19,"\u00c7":19,"z":18,"r":17,"p":17,"n":17,"m":17,"l":18,"h":17,"d":18,"`":28,"]":21,"\\":22,"Z":20,"Y":66,"W":13,"V":14,"U":18,"T":68,"S":19,"R":18,"Q":21,"P":18,"N":19,"L":18,"I":18,"H":18,"F":18,"D":18,"B":18,"8":20,"5":20,"4":8,"3":21,"2":15,"1":112}},"k":{"d":"144,0r-87,-87r67,-67r-21,0r-64,64r0,-176r-15,0r0,266r15,0r0,-69r8,-8r78,77r19,0","w":150,"k":{"\u00fc":12,"\u00fb":13,"\u00fa":15,"\u00f9":13,"\u00f6":18,"\u00f5":18,"\u00f4":19,"\u00f3":21,"\u00f2":19,"\u00ee":9,"\u00eb":17,"\u00ea":18,"\u00e9":20,"\u00e8":18,"\u00e7":15,"\u00e5":18,"\u00e4":18,"\u00e3":18,"\u00e2":19,"\u00e1":21,"\u00e0":19,"\u00dc":17,"\u00d6":13,"\u00d1":17,"\u00c7":12,"~":18,"}":18,"y":18,"w":18,"v":17,"u":23,"t":17,"q":10,"o":12,"g":12,"f":8,"e":10,"d":30,"c":15,"a":12,"`":100,"_":126,"^":17,"]":19,"\\":26,"Y":53,"W":34,"V":34,"U":16,"T":44,"S":21,"Q":15,"O":12,"J":20,"G":12,"C":12,"9":8,"8":24,"6":17,"5":24,"4":41,"3":37,"2":7,"1":77}},"l":{"d":"42,0r0,-266r-14,0r0,266r14,0","w":69,"k":{"\u00fc":21,"\u00fb":21,"\u00fa":23,"\u00f9":21,"\u00f3":16,"\u00f1":21,"\u00ed":8,"\u00e1":16,"\u00dc":8,"\u00d6":19,"\u00d1":8,"\u00c9":22,"\u00c7":18,"\u00c5":17,"\u00c4":17,"z":20,"u":18,"r":19,"p":18,"n":19,"m":19,"l":23,"k":19,"j":18,"i":18,"h":22,"d":8,"`":15,"_":41,"]":7,"[":17,"Z":23,"Y":18,"V":16,"U":7,"T":22,"S":19,"R":23,"Q":18,"P":23,"O":18,"N":23,"L":23,"K":19,"J":18,"I":23,"H":23,"G":18,"F":23,"E":21,"D":23,"C":18,"B":23,"A":17,"8":22,"7":18,"5":21,"4":12,"3":19,"2":14,"1":50}},"m":{"d":"158,-136v56,0,29,85,35,136r15,0v-3,-63,19,-153,-50,-151v-19,0,-33,8,-42,24v-12,-28,-61,-33,-77,-7r0,-15r-15,0r0,149r15,0v6,-51,-21,-136,34,-136v55,0,29,85,35,136r15,0v7,-50,-23,-137,35,-136","w":231,"k":{"\u00f1":16,"\u00ef":19,"\u00ee":15,"\u00ed":19,"\u00ec":19,"\u00dc":21,"\u00d1":20,"\u00c9":18,"}":8,"z":17,"y":19,"w":18,"v":18,"r":16,"n":16,"m":16,"l":20,"k":17,"j":19,"i":19,"h":19,"f":17,"`":113,"_":156,"^":19,"]":24,"\\":27,"Y":61,"W":35,"V":36,"U":21,"T":50,"S":20,"R":20,"P":20,"N":20,"L":20,"K":16,"I":20,"H":20,"F":20,"E":18,"D":20,"B":20,"9":10,"8":19,"5":22,"4":21,"3":17,"2":11,"1":83}},"n":{"d":"39,0v4,-55,-18,-136,42,-136v60,0,40,81,43,136r15,0v-1,-68,15,-150,-58,-150v-22,0,-35,6,-42,19r0,-18r-15,0r0,149r15,0","w":162,"k":{"\u00f1":16,"\u00ef":19,"\u00ee":15,"\u00ed":19,"\u00ec":19,"\u00dc":21,"\u00d1":20,"\u00c9":18,"}":8,"z":18,"y":22,"w":21,"v":22,"r":16,"n":16,"m":16,"l":20,"k":17,"j":19,"i":19,"h":19,"f":20,"`":113,"_":139,"^":8,"]":24,"\\":30,"Y":62,"W":38,"V":39,"U":21,"T":50,"S":20,"R":20,"P":20,"N":20,"L":20,"K":16,"I":20,"H":20,"F":20,"E":18,"D":20,"B":20,"9":13,"8":19,"5":23,"4":22,"3":17,"2":12,"1":83}},"o":{"d":"89,3v42,0,77,-35,77,-77v0,-43,-35,-77,-77,-77v-42,0,-76,36,-76,77v0,42,34,77,76,77xm89,-137v34,0,64,28,63,63v0,33,-29,62,-63,62v-33,0,-62,-29,-62,-62v0,-33,29,-63,62,-63","w":179,"k":{"\u00ee":23,"\u00c5":17,"\u00c4":17,"}":22,"z":17,"y":20,"x":19,"w":19,"v":19,"o":-15,"f":19,"`":102,"_":146,"^":12,"]":16,"\\":25,"Z":14,"Y":53,"X":10,"W":34,"V":35,"T":41,"J":20,"A":17,"9":13,"7":22,"5":16,"3":10,"2":30,"1":75}},"p":{"d":"38,-28v39,59,138,26,138,-46v0,-71,-99,-106,-138,-47r0,-28r-15,0r0,219r15,0r0,-98xm99,-136v33,0,62,29,62,62v0,33,-29,62,-62,62v-33,0,-62,-29,-62,-62v0,-33,29,-62,62,-62","w":184,"k":{"\u00ee":18,"\u00c7":17,"}":19,"z":12,"y":8,"v":16,"`":98,"_":99,"^":8,"]":13,"\\":21,"Z":9,"Y":49,"X":21,"W":30,"V":31,"T":37,"Q":18,"9":9,"7":18,"3":22,"2":26,"1":70}},"q":{"d":"11,-74v0,72,96,105,137,47r0,97r15,0r0,-219r-15,0r0,27v-42,-56,-137,-24,-137,48xm87,-136v34,0,63,29,63,62v0,33,-29,62,-63,62v-33,0,-62,-29,-62,-62v0,-33,29,-62,62,-62","w":180,"k":{"\u00ee":9,"`":107,"\\":13,"Y":44,"W":21,"V":22,"T":44,"3":10,"2":21,"1":77}},"r":{"d":"39,-98v-2,-31,34,-49,55,-29r8,-12v-17,-17,-56,-14,-63,10r0,-20r-15,0r0,149r15,0r0,-98","w":111,"k":{"\u00f6":23,"\u00f5":23,"\u00f4":23,"\u00f3":23,"\u00f2":23,"\u00ee":11,"\u00eb":21,"\u00ea":21,"\u00e9":21,"\u00e8":21,"\u00e7":10,"\u00e5":7,"\u00e4":7,"\u00e3":7,"\u00e2":7,"\u00e1":7,"\u00e0":7,"\u00dc":17,"\u00c5":31,"\u00c4":31,"}":13,"z":18,"s":17,"q":21,"o":23,"g":7,"e":21,"d":10,"c":10,"a":7,"`":99,"_":88,"]":20,"\\":18,"Z":46,"Y":51,"X":43,"W":25,"V":26,"U":17,"T":45,"S":40,"M":12,"J":44,"A":31,"8":24,"7":41,"5":53,"4":48,"3":60,"2":58,"1":78}},"s":{"d":"10,-28v19,46,99,40,101,-13v2,-48,-71,-34,-76,-73v-4,-29,44,-26,57,-10r11,-10v-23,-29,-82,-20,-83,20v-2,48,73,31,76,73v3,41,-65,34,-73,5","w":119,"k":{"\u00ee":20,"}":17,"z":17,"`":97,"_":109,"]":13,"\\":18,"Y":50,"W":26,"V":27,"T":39,"9":16,"3":22,"2":13,"1":72}},"t":{"d":"81,-134r0,-15r-35,0r0,-65r-15,0r0,65r-20,0r0,15r20,0r0,134r15,0r0,-134r35,0","w":90,"k":{"\u00f6":21,"\u00f5":21,"\u00f4":21,"\u00f3":22,"\u00f2":22,"\u00ee":21,"\u00eb":20,"\u00ea":20,"\u00e9":21,"\u00e8":20,"\u00e7":21,"\u00e5":21,"\u00e4":21,"\u00e3":21,"\u00e2":21,"\u00e1":23,"\u00e0":21,"\u00c5":15,"\u00c4":15,"}":22,"o":17,"g":17,"d":12,"c":21,"a":17,"`":33,"_":79,"]":15,"\\":9,"Z":23,"Y":37,"X":15,"W":16,"V":17,"T":41,"S":20,"M":8,"J":18,"A":15,"8":14,"7":18,"5":22,"4":26,"3":37,"2":32,"1":74}},"u":{"d":"77,3v71,0,55,-85,56,-152r-15,0v-5,54,20,137,-41,137v-61,0,-34,-83,-40,-137r-15,0v2,67,-16,152,55,152","w":154,"k":{"\u00ef":17,"\u00ee":13,"\u00ed":17,"\u00ec":17,"\u00dc":19,"\u00d1":20,"\u00c5":18,"\u00c4":18,"}":12,"z":20,"l":18,"j":17,"i":17,"h":18,"`":111,"_":132,"]":22,"\\":17,"Z":12,"Y":49,"X":8,"W":25,"V":26,"U":19,"T":48,"S":18,"R":18,"P":18,"N":20,"L":18,"J":18,"I":18,"H":18,"F":18,"D":18,"B":18,"A":18,"8":17,"7":19,"5":20,"4":19,"3":15,"2":26,"1":81}},"v":{"d":"150,-149r-16,0r-54,119r-54,-119r-16,0r70,155","w":156,"k":{"\u00ee":19,"\u00e7":19,"\u00c5":26,"\u00c4":26,"}":18,"g":16,"d":18,"c":19,"`":95,"_":139,"]":13,"\\":8,"Z":40,"Y":39,"X":36,"W":15,"V":16,"T":38,"S":23,"M":9,"J":32,"A":26,"8":11,"7":32,"5":29,"4":28,"3":39,"2":51,"1":71}},"w":{"d":"238,-149r-17,0r-49,115r-48,-119r-48,120r-50,-116r-16,0r67,155r47,-118r47,118","w":246,"k":{"\u00f6":18,"\u00f5":18,"\u00f4":18,"\u00f3":18,"\u00f2":18,"\u00ee":22,"\u00eb":17,"\u00ea":17,"\u00e9":17,"\u00e8":17,"\u00e7":21,"\u00e5":18,"\u00e4":18,"\u00e3":18,"\u00e2":18,"\u00e1":18,"\u00e0":18,"\u00c5":29,"\u00c4":29,"}":21,"o":17,"g":17,"d":21,"c":21,"a":17,"`":97,"_":141,"]":15,"\\":10,"Z":40,"Y":41,"X":37,"W":18,"V":19,"T":40,"S":26,"M":11,"J":32,"A":29,"8":14,"7":33,"5":29,"4":29,"3":40,"2":52,"1":73,".":31}},"x":{"d":"125,0r-50,-75r49,-74r-17,0r-41,62r-42,-62r-17,0r50,74r-51,75r17,0r43,-62r42,62r17,0","w":129,"k":{"\u00f6":17,"\u00f5":17,"\u00f4":17,"\u00f3":17,"\u00f2":17,"\u00ee":16,"\u00e7":21,"\u00e5":17,"\u00e4":17,"\u00e3":17,"\u00e2":17,"\u00e1":17,"\u00e0":17,"o":17,"g":17,"d":20,"c":21,"a":17,"`":94,"_":124,"]":9,"\\":21,"Y":37,"W":13,"V":14,"T":35,"S":11,"8":9,"5":14,"4":15,"3":23,"1":68}},"y":{"d":"152,-149r-16,0r-55,118r-55,-118r-16,0r63,135r-39,84r17,0","w":160,"k":{"\u00f6":18,"\u00f5":18,"\u00f4":18,"\u00f3":18,"\u00f2":18,"\u00ee":21,"\u00eb":17,"\u00ea":17,"\u00e9":17,"\u00e8":17,"\u00e7":10,"\u00e5":17,"\u00e4":17,"\u00e3":17,"\u00e2":17,"\u00e1":17,"\u00e0":17,"\u00c5":28,"\u00c4":28,"}":21,"q":10,"o":18,"g":22,"e":17,"d":20,"c":21,"a":17,"`":97,"_":58,"]":14,"\\":9,"Z":43,"Y":41,"X":39,"W":17,"V":18,"T":40,"S":25,"M":10,"J":35,"A":28,"8":13,"7":35,"5":31,"4":31,"3":41,"2":54,"1":73}},"z":{"d":"153,-149r-130,0r0,14r100,0r-106,135r134,0r0,-15r-104,0","w":164,"k":{"\u00f6":10,"\u00f5":10,"\u00f4":10,"\u00f3":10,"\u00f2":10,"\u00ee":12,"\u00eb":8,"\u00ea":8,"\u00e9":8,"\u00e8":8,"\u00e7":13,"\u00e5":10,"\u00e4":10,"\u00e3":10,"\u00e2":10,"\u00e1":10,"\u00e0":10,"\u00dc":17,"\u00d1":17,"}":21,"q":8,"o":10,"l":17,"g":10,"e":8,"d":13,"c":13,"a":10,"`":101,"_":144,"]":21,"\\":15,"Y":47,"W":23,"V":24,"U":17,"T":46,"S":18,"N":17,"I":17,"8":17,"5":23,"4":54,"3":31,"2":9,"1":79}},"{":{"d":"3,-128v35,23,-2,105,27,138v6,7,18,8,34,8r0,-13v-65,5,-7,-99,-46,-133v24,-18,11,-62,14,-98v1,-22,9,-31,32,-31r0,-13v-79,-10,-19,104,-61,142","w":69,"k":{"\u00fc":15,"\u00fb":15,"\u00fa":17,"\u00f9":15,"\u00f6":9,"\u00f5":8,"\u00f4":9,"\u00f3":10,"\u00f2":9,"\u00f1":10,"\u00ed":12,"\u00eb":8,"\u00ea":8,"\u00e9":10,"\u00e8":9,"\u00e7":9,"\u00e5":8,"\u00e4":9,"\u00e3":8,"\u00e2":9,"\u00e1":11,"\u00e0":9,"\u00d6":15,"\u00c7":14,"\u00c5":20,"\u00c4":20,"~":12,"z":8,"y":22,"w":7,"v":22,"u":12,"t":21,"s":21,"r":7,"q":21,"o":21,"n":7,"m":7,"i":10,"f":19,"e":20,"d":18,"c":9,"a":21,"`":26,"_":67,"^":12,"S":13,"Q":18,"O":14,"J":20,"G":14,"C":14,"A":20,"9":9,"8":16,"6":21,"5":14,"4":22,"3":29,"2":18,"1":41}},"|":{"d":"32,17r0,-289r-13,0r0,289r13,0","w":47,"k":{"\u00ec":-38,"`":20,"4":17,"3":8,"2":19,"1":39}},"}":{"d":"5,18v85,9,17,-123,62,-146v-46,-22,24,-142,-61,-142r0,13v63,-4,5,99,46,129v-25,23,-13,63,-15,104v-1,24,-7,29,-32,29r0,13","w":69,"k":{"\u00ec":-35,"{":-35,"`":8,"]":17,"Z":16,"4":20,"3":11,"2":8,"1":43}},"~":{"d":"145,-129r-12,-10v-24,28,-52,-4,-80,-4v-16,0,-30,6,-42,18v15,24,32,-19,57,0v22,15,57,21,77,-4","w":154,"k":{"\u00ee":20,"\u00c5":25,"\u00c4":25,"}":10,"`":99,"_":142,"]":13,"\\":10,"Z":55,"Y":48,"X":48,"W":17,"V":18,"T":39,"S":48,"M":21,"J":43,"A":25,"8":15,"7":52,"5":160,"4":35,"3":55,"2":95,"1":72}},"\u201a":{"d":"28,12v23,0,11,-38,14,-60r-19,0r0,26r12,0v0,15,1,26,-7,34","w":56},"\u0192":{"d":"12,-211v0,25,34,41,51,20r0,191r87,0r0,-15r-72,0r0,-242r-15,0r0,27v-16,-20,-51,-6,-51,19xm19,-211v0,-25,41,-29,44,-4v2,16,-9,26,-22,26v-11,0,-23,-11,-22,-22xm45,-213v-3,0,-9,4,-8,8v-1,4,4,9,8,8v4,1,9,-4,8,-8v1,-4,-5,-8,-8,-8xm171,-181v15,0,31,-15,30,-30v0,-15,-15,-29,-30,-29v-15,0,-30,14,-30,29v-1,15,15,30,30,30xm171,-233v10,0,22,12,22,22v0,11,-11,23,-22,22v-11,1,-22,-11,-22,-22v0,-10,12,-22,22,-22xm175,-212v-3,0,-9,4,-8,8v-1,4,4,9,8,8v4,1,9,-4,8,-8v1,-4,-5,-8,-8,-8xm128,54r-6,-8v-18,18,-47,16,-64,-1r-7,9v18,20,61,21,77,0","w":213},"\u201e":{"d":"71,12v22,0,10,-38,13,-60r-19,0r0,26r12,0v0,14,2,26,-6,34xm29,12v23,0,11,-38,14,-60r-19,0r0,26r12,0v0,15,1,26,-7,34","w":108},"\u2026":{"d":"10,-22v-16,1,-13,25,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12xm62,-22v-17,1,-14,24,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12xm113,-22v-16,1,-13,25,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12","w":150},"\u2020":{"d":"74,-197r0,-10r-24,0r0,-58r-10,0r0,58r-25,0r0,10r25,0r0,142r10,0r0,-142r24,0","w":88},"\u2021":{"d":"76,-131r0,-10r-24,0r0,-54r24,0r0,-10r-24,0r0,-60r-10,0r0,60r-24,0r0,10r24,0r0,54r-24,0r0,10r24,0r0,107r10,0r0,-107r24,0","w":88},"\u02c6":{"d":"112,-179r-43,-43r-43,43r7,8r36,-35r36,35","w":136},"\u2030":{"d":"242,3v23,0,45,-19,45,-44v0,-24,-21,-45,-45,-45v-23,0,-44,22,-44,45v0,23,21,44,44,44xm62,-162v23,0,45,-19,45,-44v0,-24,-21,-45,-45,-45v-23,0,-44,22,-44,45v0,23,21,44,44,44xm215,-257r-18,0r-189,257r18,0xm134,3v23,0,45,-19,45,-44v0,-24,-21,-45,-45,-45v-23,0,-44,22,-44,45v0,23,21,44,44,44xm242,-72v16,0,32,15,31,31v0,36,-61,38,-61,0v0,-16,14,-31,30,-31xm62,-236v16,0,31,14,31,30v0,16,-17,30,-31,30v-15,0,-30,-15,-30,-30v0,-15,15,-30,30,-30xm134,-72v16,0,32,15,31,31v0,36,-61,38,-61,0v0,-16,14,-31,30,-31","w":297},"\u0160":{"d":"138,-309r-7,-8r-36,35r-36,-35r-8,8r44,43xm90,3v86,0,95,-105,34,-136v-30,-16,-81,-26,-81,-66v0,-52,83,-58,101,-20r14,-6v-24,-53,-130,-40,-130,26v0,77,122,55,122,132v1,37,-24,55,-60,55v-32,0,-53,-15,-61,-46r-15,5v11,37,37,56,76,56","w":179},"\u2039":{"d":"85,-152r-8,-8r-68,68r67,67r7,-8r-59,-59","w":101},"\u0152":{"d":"150,4v58,0,97,-28,118,-68r0,64r123,0r0,-15r-108,0r0,-118r108,0r0,-16r-108,0r0,-93r108,0r0,-15r-123,0r0,64v-20,-40,-62,-67,-118,-68v-76,-1,-132,55,-132,132v0,77,55,134,132,133xm150,-246v68,0,118,49,118,117v0,68,-50,118,-118,118v-67,0,-117,-51,-117,-118v0,-67,50,-117,117,-117","w":413},"\u2018":{"d":"40,-203r0,-26r-12,0v0,-14,-1,-25,6,-33v-23,-1,-9,38,-13,59r19,0","w":58},"\u2019":{"d":"35,-206v12,-12,5,-37,7,-59r-19,0r0,26r12,0v0,14,1,26,-7,33r7,0","w":56},"\u201c":{"d":"82,-203r0,-26r-11,0v0,-14,-1,-25,6,-33v-24,-1,-11,38,-14,59r19,0xm41,-203r0,-26r-12,0v0,-14,-1,-25,7,-33v-24,-2,-10,38,-14,59r19,0","w":102},"\u201d":{"d":"78,-206v11,-13,4,-38,6,-59r-19,0r0,26r12,0v0,14,1,25,-6,33r7,0xm36,-206v12,-12,5,-37,7,-59r-19,0r0,26r12,0v0,14,1,26,-7,33r7,0","w":108},"\u2022":{"d":"47,-88v15,0,30,-15,30,-30v0,-15,-15,-30,-30,-30v-15,0,-30,15,-30,30v0,15,15,30,30,30","w":105},"\u2013":{"d":"120,-88r0,-15r-105,0r0,15r105,0","w":133},"\u2014":{"d":"206,-88r0,-15r-187,0r0,15r187,0","w":222},"\u02dc":{"d":"125,-201v-27,33,-82,-30,-105,16r10,8v27,-35,76,29,106,-16","w":152},"\u2122":{"d":"113,-197r-11,-58r-19,53r-19,-53r-13,58r3,0r11,-50r18,53r18,-53v5,16,4,38,12,50xm35,-252v6,-1,16,3,18,-2v-12,2,-31,-3,-39,2r18,0r0,55r3,0r0,-55","w":121},"\u0161":{"d":"105,-201r-8,-8r-36,35r-36,-35r-7,8r43,43xm10,-28v19,46,99,40,101,-13v2,-48,-71,-34,-76,-73v-4,-29,44,-26,57,-10r11,-10v-23,-29,-82,-20,-83,20v-2,48,73,31,76,73v3,41,-65,34,-73,5","w":119},"\u203a":{"d":"91,-92r-68,-68r-7,8r61,60r-59,59r7,8","w":101},"\u0153":{"d":"284,-43v-26,55,-127,31,-118,-34r140,0v7,-82,-126,-97,-148,-30v-12,-24,-36,-44,-69,-44v-42,-1,-76,35,-76,77v0,42,34,78,76,77v32,0,59,-19,69,-44v18,52,117,60,139,4xm289,-91r-121,0v12,-61,113,-57,121,0xm89,-136v34,0,63,29,63,62v0,33,-29,62,-63,62v-33,0,-62,-29,-62,-62v0,-33,29,-62,62,-62","w":317},"\u0178":{"d":"116,-298v-17,0,-14,24,0,23v8,0,11,-4,11,-12v-2,-8,-5,-11,-11,-11xm66,-298v-17,0,-14,23,0,23v8,0,12,-4,12,-12v-2,-8,-6,-11,-12,-11xm173,-257r-17,0r-64,111r-63,-111r-17,0r73,128r0,129r15,0r0,-129","w":183},"\u00a1":{"d":"37,-206v19,0,14,-26,0,-26v-9,1,-13,6,-13,13v0,9,4,13,13,13xm45,27r0,-204r-15,0r0,204r15,0","w":73},"\u00a2":{"d":"14,-126v0,38,30,73,64,72r0,21r15,0r0,-21v16,0,31,-6,40,-12r0,-17v-14,10,-28,15,-40,15r0,-117v15,0,31,9,41,16v4,-28,-20,-30,-41,-32r0,-18r-15,0r0,18v-37,4,-64,34,-64,75xm78,-68v-43,-2,-63,-63,-35,-98v9,-11,21,-17,35,-19r0,117","w":152},"\u00a3":{"d":"23,0v38,-44,100,35,138,-18r-9,-9v-27,31,-57,3,-85,-3v13,-13,27,-33,26,-58r41,0r0,-15r-41,0v-9,-36,-48,-61,-49,-101v0,-27,16,-40,47,-40v28,-1,47,12,47,37r14,0v0,-34,-25,-52,-61,-52v-46,0,-76,37,-57,83v10,24,37,50,43,73r-37,0r0,15r38,0v0,19,-9,39,-29,59v-13,0,-29,11,-35,19","w":170},"\u20ac":{"d":"244,-45v-43,41,-131,48,-175,1v-15,-15,-24,-33,-29,-54r199,0r0,-15r-202,0v-1,-10,0,-19,0,-29r202,0r0,-15r-200,0v9,-51,56,-90,115,-89v36,0,69,13,90,31r0,-18v-22,-19,-52,-27,-90,-28v-68,-2,-120,44,-130,104r-24,0r0,15r22,0r0,29r-22,0r0,15r24,0v8,91,150,136,220,70r0,-17","w":252},"\u00a5":{"d":"173,-257r-17,0r-64,112r-63,-112r-17,0r72,127r-35,0r0,14r36,0r0,17r-36,0r0,14r36,0r0,85r15,0r0,-85r36,0r0,-14r-36,0r0,-17r36,0r0,-14r-35,0","w":185},"\u00a6":{"d":"32,-157r0,-115r-13,0r0,115r13,0xm32,0r0,-118r-13,0r0,118r13,0","w":47},"\u00a7":{"d":"17,-18v10,49,101,47,101,-11v0,-22,-8,-38,-24,-47v51,-26,37,-103,-25,-107v-43,-2,-43,-66,-2,-65v15,0,26,7,35,23r11,-7v-16,-46,-94,-36,-92,15v0,18,8,31,25,41v-33,12,-44,60,-18,88v22,24,74,13,74,59v0,20,-15,33,-35,33v-22,0,-31,-13,-37,-28xm30,-126v0,-22,15,-38,36,-38v28,0,42,14,42,40v0,22,-17,36,-39,36v-21,0,-39,-16,-39,-38","w":136},"\u00a8":{"d":"104,-199v-17,1,-14,24,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12xm54,-199v-17,1,-13,23,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12","w":154},"\u00a9":{"d":"107,-45v51,0,95,-45,95,-95v0,-51,-45,-95,-95,-95v-51,0,-95,44,-95,95v0,51,44,95,95,95xm107,-228v47,0,88,40,88,88v0,47,-41,87,-88,87v-47,0,-87,-40,-87,-87v0,-48,39,-88,87,-88xm60,-142v0,40,55,58,81,31r0,-9v-20,26,-74,16,-74,-22v0,-36,51,-46,74,-24v0,-18,-17,-18,-34,-19v-25,-2,-47,16,-47,43","w":211},"\u00aa":{"d":"21,-197v0,42,58,63,81,29r0,15r9,0r0,-89r-9,0r0,16v-24,-34,-81,-13,-81,29xm120,-121r0,-10r-102,0r0,10r102,0xm67,-235v20,0,37,18,37,38v0,20,-17,37,-37,37v-20,0,-37,-16,-37,-37v0,-20,17,-38,37,-38","w":134},"\u00ab":{"d":"141,-152r-7,-8r-68,68r66,67r8,-8r-60,-59xm89,-152r-7,-8r-68,68r66,67r7,-8r-59,-59","w":158},"\u00ac":{"d":"74,-151r0,-116v-11,0,-25,-3,-26,7r19,0r0,109r7,0xm114,-127r0,-10r-91,0r0,10r91,0xm70,3v37,0,47,-54,11,-63v26,-6,22,-61,-11,-56v-33,-4,-40,47,-12,56v-34,10,-26,63,12,63xm70,-110v11,-1,23,11,23,23v1,12,-10,23,-23,23v-12,0,-24,-11,-24,-23v0,-12,12,-23,24,-23xm70,-57v15,0,27,13,27,27v1,14,-14,27,-27,27v-16,0,-28,-11,-28,-27v0,-13,14,-27,28,-27"},"\u00ae":{"d":"72,-137v31,0,57,-26,57,-57v0,-31,-26,-57,-57,-57v-31,0,-57,25,-57,57v0,32,26,57,57,57xm72,-246v27,0,51,25,51,52v0,27,-24,51,-51,51v-27,0,-52,-24,-52,-51v0,-27,25,-52,52,-52xm95,-211v0,-20,-23,-17,-43,-17r0,65r5,0r0,-30v26,-3,17,28,38,30r-21,-30v14,1,21,-5,21,-18xm90,-211v0,16,-18,13,-33,13r0,-25v14,0,33,-4,33,12","w":143},"\u00af":{"d":"123,-171r0,-13r-102,0r0,13r102,0"},"\u00b0":{"d":"38,-192v15,0,30,-14,30,-29v1,-15,-15,-30,-30,-30v-15,0,-31,15,-30,30v0,15,15,29,30,29xm38,-244v11,0,23,11,22,22v1,12,-11,23,-22,23v-11,0,-22,-12,-22,-23v0,-10,12,-22,22,-22","w":76},"\u00b1":{"d":"114,-116r0,-15r-37,0r0,-37r-16,0r0,37r-37,0r0,15r37,0r0,36r16,0r0,-36r37,0xm117,-51r0,-15r-93,0r0,15r93,0","w":139},"\u00b2":{"d":"46,-240v7,-31,53,-25,54,4v-9,38,-44,57,-63,86r70,0r0,-7r-56,0v18,-26,52,-42,56,-79v4,-38,-63,-40,-68,-4r7,0"},"\u00b3":{"d":"40,-176v6,38,67,31,65,-7v0,-16,-8,-26,-23,-30v34,-6,25,-60,-9,-57v-16,0,-31,11,-31,28r7,0v2,-30,49,-26,47,2v-1,15,-10,24,-29,22v-2,17,31,7,31,35v0,30,-46,33,-51,7r-7,0"},"\u00b4":{"d":"113,-217r-9,-8r-48,48r9,8","w":146},"\u00b5":{"d":"44,-198v7,-65,120,-58,119,7v0,16,-4,32,-15,45r-126,146r155,0r0,-15r-123,0r100,-114v48,-50,18,-130,-51,-130v-39,0,-70,30,-76,61r17,0xm92,-130v15,0,30,-15,30,-30v0,-15,-15,-30,-30,-30v-15,0,-30,15,-30,30v0,15,15,30,30,30xm92,-183v11,0,23,11,22,22v1,12,-11,23,-22,23v-11,0,-22,-12,-22,-23v0,-10,12,-22,22,-22xm222,-130v15,0,30,-15,30,-30v0,-15,-15,-30,-30,-30v-15,0,-30,15,-30,30v0,15,15,30,30,30xm222,-183v10,0,22,12,22,22v0,11,-11,23,-22,23v-11,0,-23,-12,-23,-23v0,-11,12,-22,23,-22xm96,-162v-4,-1,-9,4,-8,8v-1,4,5,8,8,7v3,1,8,-4,8,-7v0,-3,-4,-9,-8,-8xm226,-161v-4,-1,-9,4,-8,8v0,11,15,9,16,0v0,-3,-4,-9,-8,-8xm211,46r-7,-7v-17,19,-46,16,-63,-1r-7,8v17,22,60,21,77,0","w":282},"\u00b6":{"d":"161,22r0,-279r-15,0r0,279r15,0xm18,-193v0,48,39,70,94,64r0,151r14,0r0,-279v-60,-6,-108,11,-108,64","w":181},"\u00b7":{"d":"37,-129v-17,1,-15,25,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12","w":99},"\u2219":{"d":"37,-129v-17,1,-15,25,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12","w":99},"\u00b8":{"d":"26,45v14,14,45,12,44,-11v0,-10,-4,-16,-13,-19r5,-15r-17,0r-5,18v16,3,18,20,2,21v-5,-3,-13,-3,-16,-8r0,14","w":93},"\u00b9":{"d":"79,-151r0,-116v-11,0,-25,-3,-26,7r19,0r0,109r7,0"},"\u00ba":{"d":"67,-153v25,0,46,-21,46,-46v0,-25,-21,-46,-46,-46v-24,0,-46,22,-46,46v0,25,21,46,46,46xm118,-121r0,-10r-101,0r0,10r101,0xm67,-236v20,0,38,17,38,37v0,20,-17,39,-38,38v-20,0,-37,-18,-37,-38v0,-20,17,-37,37,-37","w":134},"\u00bb":{"d":"149,-92r-68,-68r-8,8r61,60r-59,59r7,8xm95,-92r-68,-68r-8,8r61,60r-59,59r7,8","w":158},"\u00bc":{"d":"79,-151r0,-116v-11,0,-25,-3,-26,7r19,0r0,109r7,0xm120,-127r0,-10r-92,0r0,10r92,0xm94,-22v5,0,12,1,10,-6r-10,0r0,-89r-67,95r60,0r0,22r7,0r0,-22xm87,-28r-48,0r48,-67r0,67"},"\u00bd":{"d":"81,-151r0,-116v-11,0,-25,-3,-26,7r20,0r0,109r6,0xm121,-127r0,-10r-92,0r0,10r92,0xm48,-89v7,-31,52,-25,54,3v-9,38,-45,57,-64,86r70,0r0,-6r-55,0v17,-26,52,-42,55,-80v3,-38,-64,-41,-67,-3r7,0"},"\u00be":{"d":"40,-176v6,38,67,31,65,-7v0,-16,-8,-26,-23,-30v34,-6,25,-60,-9,-57v-16,0,-31,11,-31,28r7,0v2,-30,49,-26,47,2v-1,15,-10,24,-29,22v-2,17,31,7,31,35v0,30,-46,33,-51,7r-7,0xm118,-127r0,-10r-92,0r0,10r92,0xm95,-22v5,0,12,1,10,-6r-10,0r0,-89r-66,95r59,0r0,22r7,0r0,-22xm88,-28r-47,0r47,-67r0,67"},"\u00bf":{"d":"101,-220v0,-17,-26,-16,-25,0v1,8,5,12,12,12v8,0,13,-5,13,-12xm39,-75v-47,33,-26,104,41,104v35,0,59,-16,72,-48r-13,-6v-12,45,-111,57,-111,-1v0,-56,90,-61,95,-117v3,-34,-48,-44,-68,-23r9,12v10,-13,46,-11,44,11v-2,34,-52,49,-69,68","w":168},"\u00c0":{"d":"123,-278r-43,-43r-7,7r42,43xm217,0r-103,-265r-103,265r15,0r29,-77r117,0r30,77r15,0xm166,-92r-105,0r53,-136","w":227},"\u00c1":{"d":"153,-311r-7,-8r-40,41r7,7xm217,0r-103,-265r-103,265r15,0r29,-77r117,0r30,77r15,0xm166,-92r-105,0r53,-136","w":227},"\u00c2":{"d":"158,-273r-44,-43r-43,43r7,8r36,-36r36,36xm217,0r-103,-265r-103,265r15,0r29,-77r117,0r30,77r15,0xm166,-92r-105,0r53,-136","w":227},"\u00c3":{"d":"161,-296v-20,25,-47,-3,-71,-2v-16,0,-27,6,-34,18r10,8v26,-35,77,29,105,-16xm217,0r-103,-265r-103,265r15,0r29,-77r117,0r30,77r15,0xm166,-92r-105,0r53,-136","w":226},"\u00c4":{"d":"137,-298v-17,0,-14,23,0,23v8,0,12,-4,12,-12v-2,-8,-6,-11,-12,-11xm88,-298v-17,0,-14,23,0,23v8,0,12,-4,12,-12v-2,-8,-6,-11,-12,-11xm217,0r-103,-265r-103,265r15,0r29,-77r117,0r30,77r15,0xm166,-92r-105,0r53,-136","w":226,"k":{"\u00fc":21,"\u00fb":22,"\u00fa":9,"\u00f9":22,"\u00f6":21,"\u00f5":21,"\u00f4":22,"\u00f3":8,"\u00f2":22,"\u00ee":9,"\u00eb":20,"\u00ea":21,"\u00e9":7,"\u00e8":22,"\u00e7":19,"\u00e5":21,"\u00e4":21,"\u00e3":21,"\u00e2":22,"\u00e1":8,"\u00e0":22,"\u00dc":16,"\u00d6":27,"\u00d1":18,"\u00c7":24,"~":23,"}":18,"y":28,"w":29,"v":28,"u":17,"t":17,"f":7,"d":17,"c":19,"`":80,"_":142,"^":37,"]":19,"\\":45,"Y":53,"W":56,"V":56,"U":13,"T":44,"S":10,"Q":27,"O":24,"G":24,"C":24,"9":37,"8":13,"6":21,"5":11,"4":19,"3":26,"2":23,"1":77,"0":9}},"\u00c5":{"d":"114,-268v13,0,24,-12,24,-25v0,-13,-11,-24,-24,-24v-13,0,-25,11,-25,24v0,14,11,25,25,25xm217,0r-103,-265r-103,265r15,0r29,-77r117,0r30,77r15,0xm114,-311v9,0,18,9,18,18v0,9,-9,18,-18,18v-12,0,-17,-8,-18,-18v-1,-10,8,-18,18,-18xm166,-92r-105,0r53,-136","w":227,"k":{"\u00fc":7,"\u00fb":8,"\u00fa":11,"\u00f9":8,"\u00f6":23,"\u00f5":22,"\u00f4":8,"\u00f3":10,"\u00f2":8,"\u00ee":10,"\u00ed":16,"\u00eb":22,"\u00ea":7,"\u00e9":9,"\u00e8":8,"\u00e7":21,"\u00e5":7,"\u00e4":22,"\u00e3":22,"\u00e2":8,"\u00e1":10,"\u00e0":8,"\u00dc":18,"\u00d6":29,"\u00d1":20,"\u00c9":19,"\u00c7":26,"~":25,"}":20,"y":30,"w":31,"v":30,"u":18,"t":18,"o":17,"l":17,"h":16,"g":17,"f":9,"d":19,"c":21,"a":17,"`":81,"_":144,"^":39,"]":21,"\\":46,"Z":17,"Y":54,"W":58,"V":58,"U":15,"T":46,"S":12,"R":17,"Q":28,"P":17,"O":26,"N":17,"L":17,"J":17,"I":17,"H":17,"G":26,"F":17,"D":17,"C":26,"B":17,"9":39,"8":15,"6":22,"5":13,"4":21,"3":27,"2":9,"1":79,"0":11}},"\u00c6":{"d":"247,0r0,-15r-109,0r0,-119r109,0r0,-15r-109,0r0,-93r109,0r0,-15r-122,0r-115,257r15,0r52,-118r46,0r0,118r124,0xm123,-132r-39,0r39,-88r0,88","w":266},"\u00c7":{"d":"134,17v11,0,20,23,2,22v-6,0,-10,-2,-14,-7r-6,12v12,15,48,14,46,-11v2,-11,-17,-18,-7,-29v37,0,65,-14,85,-32r0,-17v-28,21,-48,33,-90,34v-67,1,-117,-51,-117,-118v0,-67,50,-118,117,-117v36,0,69,13,90,31r0,-18v-22,-19,-52,-27,-90,-28v-76,-1,-132,55,-132,132v0,73,57,133,122,133","w":252,"k":{"\u00fc":21,"\u00fb":20,"\u00fa":22,"\u00f9":19,"\u00f6":19,"\u00f5":18,"\u00f4":18,"\u00f3":19,"\u00f2":17,"\u00f1":22,"\u00ef":22,"\u00ee":33,"\u00ed":22,"\u00eb":18,"\u00ea":17,"\u00e9":18,"\u00e8":17,"\u00e7":15,"\u00e5":17,"\u00e4":19,"\u00e3":18,"\u00e2":18,"\u00e1":19,"\u00e0":17,"\u00dc":19,"\u00d6":35,"\u00d1":19,"\u00c9":17,"\u00c7":36,"\u00c5":19,"\u00c4":19,"~":186,"}":25,"|":9,"{":9,"z":32,"y":45,"x":16,"w":46,"v":46,"u":16,"t":26,"s":8,"r":17,"q":14,"p":13,"o":12,"n":17,"m":17,"l":18,"k":15,"j":19,"i":22,"h":17,"g":11,"f":26,"e":12,"d":23,"c":17,"b":10,"a":12,"`":28,"_":145,"^":39,"]":37,"\\":11,"[":11,"Z":30,"Y":23,"X":21,"W":16,"V":17,"U":19,"T":28,"S":17,"R":18,"Q":40,"P":18,"O":35,"N":19,"M":10,"L":18,"K":15,"J":15,"I":19,"H":18,"G":35,"F":18,"E":17,"D":18,"C":35,"B":18,"A":19,"9":18,"8":20,"7":22,"6":12,"5":18,"4":115,"3":32,"2":34,"1":72,"0":15}},"\u00c8":{"d":"95,-278r-43,-43r-7,7r42,43xm149,0r0,-15r-109,0r0,-118r109,0r0,-16r-109,0r0,-93r109,0r0,-15r-123,0r0,257r123,0","w":170},"\u00c9":{"d":"127,-311r-7,-8r-40,41r7,7xm149,0r0,-15r-109,0r0,-118r109,0r0,-16r-109,0r0,-93r109,0r0,-15r-123,0r0,257r123,0","w":170,"k":{"\u00fc":17,"\u00fb":17,"\u00fa":19,"\u00f9":17,"\u00f6":29,"\u00f5":28,"\u00f4":29,"\u00f3":31,"\u00f2":30,"\u00f1":18,"\u00ef":18,"\u00ee":30,"\u00ed":20,"\u00ec":17,"\u00eb":27,"\u00ea":28,"\u00e9":30,"\u00e8":28,"\u00e7":27,"\u00e5":28,"\u00e4":28,"\u00e3":28,"\u00e2":29,"\u00e1":31,"\u00e0":29,"\u00dc":20,"\u00d6":15,"\u00d1":19,"\u00c9":18,"\u00c7":14,"\u00c5":12,"\u00c4":12,"~":21,"}":18,"|":10,"z":15,"y":22,"w":23,"v":22,"u":12,"t":22,"s":12,"r":13,"q":22,"p":13,"o":23,"n":13,"m":13,"l":19,"k":15,"j":18,"i":18,"h":18,"g":23,"f":10,"e":22,"d":38,"c":27,"b":11,"a":23,"`":118,"_":145,"^":11,"]":38,"\\":22,"[":12,"Z":18,"Y":13,"X":10,"W":11,"V":12,"U":18,"T":17,"S":31,"R":18,"Q":17,"P":18,"O":14,"N":18,"M":22,"L":18,"K":14,"J":15,"I":18,"H":18,"G":14,"F":18,"E":16,"D":18,"C":14,"B":18,"A":12,"9":12,"8":33,"7":13,"6":13,"5":34,"4":68,"3":46,"2":26,"1":62,"0":17}},"\u00ca":{"d":"132,-280r-43,-43r-44,43r8,8r36,-36r36,36xm149,0r0,-15r-109,0r0,-118r109,0r0,-16r-109,0r0,-93r109,0r0,-15r-123,0r0,257r123,0","w":170},"\u00cb":{"d":"113,-298v-17,0,-14,24,0,23v8,0,12,-4,12,-12v-2,-8,-6,-11,-12,-11xm63,-298v-17,0,-14,23,0,23v8,0,12,-4,12,-12v-2,-8,-6,-11,-12,-11xm149,0r0,-15r-109,0r0,-118r109,0r0,-16r-109,0r0,-93r109,0r0,-15r-123,0r0,257r123,0","w":170},"\u00cc":{"d":"46,-278r-43,-43r-7,7r43,43xm42,0r0,-257r-14,0r0,257r14,0","w":69},"\u00cd":{"d":"72,-311r-6,-8r-41,41r7,7xm42,0r0,-257r-14,0r0,257r14,0","w":69},"\u00ce":{"d":"78,-273r-43,-43r-44,43r8,8r36,-36r36,36xm42,0r0,-257r-14,0r0,257r14,0","w":69},"\u00cf":{"d":"59,-298v-17,0,-14,23,0,23v8,0,12,-4,12,-12v-2,-8,-6,-11,-12,-11xm10,-298v-17,0,-14,24,0,23v8,0,12,-4,12,-12v-2,-8,-6,-11,-12,-11xm42,0r0,-257r-14,0r0,257r14,0","w":69},"\u00d0":{"d":"113,0v68,1,115,-58,115,-129v0,-69,-48,-128,-115,-128r-86,0r0,120r-15,0r0,15r15,0r0,122r86,0xm113,-243v58,-1,100,52,100,114v0,63,-42,115,-100,114r-71,0r0,-107r45,0r0,-15r-45,0r0,-106r71,0","w":247},"\u00d1":{"d":"177,-296v-20,25,-48,-3,-71,-2v-16,0,-27,6,-34,18r10,8v27,-35,77,28,106,-16xm234,4r0,-261r-14,0r0,223r-192,-225r0,259r14,0r0,-218","w":257,"k":{"\u00fc":17,"\u00fb":17,"\u00fa":19,"\u00f9":17,"\u00f1":17,"\u00ed":19,"\u00dc":8,"\u00d6":20,"\u00d1":9,"\u00c9":22,"\u00c5":16,"z":16,"l":21,"k":17,"h":20,"d":22,"`":12,"_":156,"]":20,"Z":19,"U":19,"T":18,"R":19,"P":19,"N":21,"L":19,"I":19,"H":19,"F":19,"E":17,"D":19,"B":19,"8":19,"5":16,"4":9,"3":16,"2":12,"1":46}},"\u00d2":{"d":"156,-278r-44,-43r-7,7r42,43xm150,4v77,0,133,-56,133,-133v0,-77,-57,-132,-133,-132v-76,0,-132,55,-132,132v0,77,55,133,132,133xm150,-246v68,0,118,49,118,117v0,68,-50,118,-118,118v-67,0,-117,-51,-117,-118v0,-67,50,-117,117,-117","w":295},"\u00d3":{"d":"184,-311r-7,-8r-40,41r7,7xm150,4v77,0,133,-56,133,-133v0,-77,-57,-132,-133,-132v-76,0,-132,55,-132,132v0,77,55,133,132,133xm150,-246v68,0,118,49,118,117v0,68,-50,118,-118,118v-67,0,-117,-51,-117,-118v0,-67,50,-117,117,-117","w":295},"\u00d4":{"d":"193,-282r-44,-43r-44,43r8,8r36,-36r36,36xm150,4v77,0,133,-56,133,-133v0,-77,-57,-132,-133,-132v-76,0,-132,55,-132,132v0,77,55,133,132,133xm150,-246v68,0,118,49,118,117v0,68,-50,118,-118,118v-67,0,-117,-51,-117,-118v0,-67,50,-117,117,-117","w":295},"\u00d5":{"d":"193,-300v-20,24,-46,-2,-71,-3v-16,0,-27,7,-34,19r10,8v27,-35,77,28,106,-16xm150,4v77,0,133,-56,133,-133v0,-77,-57,-132,-133,-132v-76,0,-132,55,-132,132v0,77,55,133,132,133xm150,-246v68,0,118,49,118,117v0,68,-50,118,-118,118v-67,0,-117,-51,-117,-118v0,-67,50,-117,117,-117","w":295},"\u00d6":{"d":"174,-298v-17,0,-14,24,0,23v8,0,11,-4,11,-12v-2,-8,-5,-11,-11,-11xm124,-298v-17,0,-14,23,0,23v8,0,12,-4,12,-12v-2,-8,-6,-11,-12,-11xm150,4v77,0,133,-56,133,-133v0,-77,-57,-132,-133,-132v-76,0,-132,55,-132,132v0,77,55,133,132,133xm150,-246v68,0,118,49,118,117v0,68,-50,118,-118,118v-67,0,-117,-51,-117,-118v0,-67,50,-117,117,-117","w":295,"k":{"\u00dc":19,"\u00d1":19,"\u00c9":17,"\u00c5":24,"\u00c4":24,"}":10,"d":21,"`":27,"_":146,"]":19,"\\":9,"Z":37,"Y":31,"X":28,"W":17,"V":17,"T":42,"S":10,"M":8,"J":30,"A":22,"8":19,"7":31,"5":11,"4":19,"3":26,"2":23,"1":76}},"\u00d7":{"d":"233,-128v3,7,-7,11,-2,2v0,-1,2,-2,2,-2xm258,-167v2,3,-2,5,-3,7xm262,-134v-2,-1,1,-5,1,-6xm326,-135v-9,16,-33,7,-49,2v0,-11,14,1,18,-5v-3,-1,-11,-1,-9,-3v15,1,29,0,40,6xm262,-132r-1,0r1,0xm275,-128v6,-7,18,7,28,6xm305,-124r11,3xm279,-144r5,-26r-2,26r-3,0xm264,-129v7,1,8,3,3,9v-2,3,-4,5,-5,7xm264,-131v1,-3,5,-1,9,0v-1,4,-6,0,-9,0xm264,-134v-1,-8,6,-7,12,-5v0,4,-5,6,-12,5xm264,-169v1,2,-4,12,-3,4xm244,-126v-1,-18,9,-26,15,-36v1,15,-11,25,-15,36xm235,-127v-3,-3,3,-11,2,-3v0,1,-1,2,-2,3xm237,-127r0,5v-1,-2,-1,-4,0,-5xm231,-129r0,-1r0,1xm93,-188v-5,1,-6,-5,-2,-2v1,0,2,1,2,2xm100,-186r1,0r-1,0xm21,-113v24,1,46,6,69,9r0,4v-24,3,-46,7,-69,12r0,-25xm41,-144v18,0,34,3,49,7r0,7v-19,-2,-41,-1,-49,-14xm130,-127v-8,4,-19,7,-25,0v-2,-10,7,-3,12,-3v4,1,9,2,13,3xm98,-103r0,0r0,0xm81,-119v3,1,10,-2,9,3xm105,-125v4,2,8,4,0,3r0,-3xm116,-108r-9,0v1,0,2,0,2,-1v-5,0,-4,-6,-4,-11v9,-2,10,5,11,12xm90,-82v-21,3,-49,5,-69,0r0,-4v22,-5,45,-9,69,-12r0,16xm112,-93v-3,5,-10,6,-6,-2v-3,-2,-1,-7,4,-5v8,-2,5,4,2,7xm107,-105v3,1,8,-1,9,1xm128,-102v-1,-3,-10,1,-10,-4v11,0,22,-1,32,-2v-15,7,-32,19,-45,23v9,-5,10,-17,23,-17xm92,-156r1,1xm77,-157r5,0r-5,0xm105,-157r3,0r-3,0xm127,-153v0,0,-7,1,-2,0r2,0xm117,-150r1,0r-1,0xm88,-159v1,-1,2,-3,2,0r-2,0xm21,-153v-3,-32,40,-44,60,-24v-5,2,-18,0,-16,5r19,-1v2,5,7,11,1,14v-12,-4,-14,5,-2,5v9,-2,7,8,7,15v-15,-2,-37,-12,-51,-5v4,15,34,14,51,16v4,12,-12,5,-21,8v6,5,21,1,21,12v-23,-1,-45,-7,-69,-7r0,-38xm96,-186v-1,3,-6,0,-2,0r2,0xm100,-184v0,3,-4,4,-5,2v0,0,3,-3,5,-2xm114,-175v0,0,-2,0,-2,-1xm99,-179r0,0r0,0xm87,-193v-3,0,-6,-1,-3,-3xm52,-272r2,0r-2,0xm130,-149v2,1,4,1,0,1r0,-1xm105,-51r0,-15v5,2,9,4,12,7v-3,4,-7,7,-12,8xm82,-8v5,-2,11,-1,17,0r-17,0xm112,-9r20,-1xm84,-202v-23,4,-56,-3,-63,18r0,-15r-15,0r0,115r-3,0v6,6,2,23,3,34r15,0r0,-30v23,5,46,6,69,0v-1,10,0,19,0,30r13,0v-7,2,-17,-1,-21,4v5,2,17,4,5,5v5,8,17,7,27,11r-20,7v2,2,10,6,1,5v-1,9,-22,-1,-28,6v4,1,14,0,9,5v10,-2,23,7,29,3r-5,-1v13,-2,26,1,36,-5v-7,-5,-22,2,-28,-3v9,-4,25,1,31,-5r-39,2v3,-1,8,1,8,-3r-12,-3v5,-5,18,-2,22,-9v-9,-2,-18,-5,-27,-9v3,-1,8,1,8,-3r-10,-3v12,-2,26,-2,31,-13v-8,-5,-18,-7,-15,-22r51,-27r-1,-3r-37,3r-3,-13v6,-1,15,-1,17,-8r-27,-6v-5,-23,24,-3,34,-10r-2,-1v2,-1,8,1,7,-3r-15,-2v3,0,6,0,6,-2v-10,-4,-20,-2,-30,-6v2,-4,2,-10,5,-13r22,1v-7,-2,-16,-2,-19,-7v20,-19,62,-6,62,25r0,153r15,0v2,-40,-4,-88,2,-124r124,124r20,0r-132,-132v5,-1,8,-1,8,5r5,-5v0,2,-2,4,0,5r5,-4v0,3,-2,8,2,8r4,-7v1,5,-1,13,1,16v3,-5,6,-11,7,-2v4,0,3,-4,4,-6v0,3,-1,7,3,6v3,-12,12,-25,16,-35v-1,7,3,19,-5,19v15,-1,2,19,8,25v2,-2,5,-12,6,-6r6,-13r50,10v-7,4,-5,6,3,8v-5,2,-14,1,-16,6v3,0,9,6,10,2r-6,-3v5,-2,14,-1,16,-6v-7,-2,-12,-3,-4,-7v3,-1,10,3,10,-1v-9,0,-16,-1,-21,-6v1,-6,10,-9,12,-14v-10,-6,-24,-7,-40,-7v1,-3,6,-7,2,-8v-2,2,-3,7,-6,8v-1,-10,7,-31,1,-39r-8,39r-12,0v0,-3,2,-7,-1,-8v-1,2,-2,11,-3,6v-1,-12,10,-23,6,-30v-3,3,-5,11,-9,5v-4,13,-14,21,-17,35v0,-6,-2,-6,-4,-1v-2,2,-2,3,-4,5v-2,-3,-1,-9,-5,-9v1,6,-1,10,-4,13v1,-7,-3,-8,-5,-3v0,-3,5,-8,1,-9r-8,9v3,-3,-2,-14,-1,-4r-9,1r123,-123r-20,0r-115,114r0,-114r-15,0r0,67v-17,-18,-55,-10,-71,2v-13,-6,-19,-8,-31,-10v5,-2,15,0,17,-5r-14,-3v7,-1,16,2,18,-4r-26,-8v27,0,56,2,66,-16v-27,0,-53,4,-76,-4v4,-3,16,-4,15,-9r-27,2v11,-9,46,1,59,-7v-13,-2,-25,-4,-37,-8v19,-11,46,-11,64,-21v-16,-2,-32,1,-48,0r6,-5r-11,-3v3,-7,14,-16,11,-22v-4,6,-13,16,-14,27v4,-1,8,-1,11,0v-3,2,-14,3,-4,5v14,2,28,-2,42,0v-21,10,-47,-4,-67,0v6,4,17,6,29,6r-38,2r35,2v-6,4,-16,4,-19,10v9,4,19,6,30,7v-18,1,-44,-2,-51,9r21,-1v-3,3,-10,2,-11,7v20,8,50,5,77,6v-15,13,-46,10,-71,12v8,4,23,5,31,10v-11,3,-22,-1,-32,-2v3,9,18,5,25,9xm96,-11v4,-1,9,-3,11,0r-11,0xm93,-13v-4,1,-10,3,-15,1v5,0,10,0,15,-1xm130,-148r1,0r-1,0","w":339},"\u00d8":{"d":"81,-14v91,51,202,-11,202,-115v0,-44,-16,-79,-48,-104r15,-22r-13,-8r-15,21v-89,-52,-210,8,-204,113v2,46,20,86,50,107r-14,21r13,8xm226,-221v82,61,36,210,-76,210v-22,0,-42,-5,-60,-15xm33,-129v0,-91,99,-147,180,-101r-136,195v-27,-19,-44,-50,-44,-94","w":295},"\u00d9":{"d":"113,-278r-43,-43r-8,7r43,43xm102,3v43,0,74,-26,74,-67r0,-193r-14,0r0,193v0,30,-27,52,-60,52v-34,0,-60,-19,-60,-52r0,-193r-15,0r0,193v-1,42,33,67,75,67","w":199},"\u00da":{"d":"143,-311r-7,-8r-40,41r7,7xm102,3v43,0,74,-26,74,-67r0,-193r-14,0r0,193v0,30,-27,52,-60,52v-34,0,-60,-19,-60,-52r0,-193r-15,0r0,193v-1,42,33,67,75,67","w":199},"\u00db":{"d":"145,-282r-43,-43r-44,43r8,8r36,-36r36,36xm102,3v43,0,74,-26,74,-67r0,-193r-14,0r0,193v0,30,-27,52,-60,52v-34,0,-60,-19,-60,-52r0,-193r-15,0r0,193v-1,42,33,67,75,67","w":199},"\u00dc":{"d":"126,-298v-17,0,-14,24,0,23v8,0,12,-4,12,-12v-2,-8,-6,-11,-12,-11xm76,-298v-17,0,-14,23,0,23v8,0,12,-4,12,-12v-2,-8,-6,-11,-12,-11xm102,3v43,0,74,-26,74,-67r0,-193r-14,0r0,193v0,30,-27,52,-60,52v-34,0,-60,-19,-60,-52r0,-193r-15,0r0,193v-1,42,33,67,75,67","w":199,"k":{"\u00fc":18,"\u00fb":18,"\u00fa":20,"\u00f9":18,"\u00f1":18,"\u00ed":21,"\u00dc":8,"\u00d6":20,"\u00d1":9,"\u00c9":22,"\u00c5":14,"\u00c4":14,"z":22,"r":16,"n":16,"m":16,"l":21,"k":17,"h":21,"d":22,"`":12,"_":156,"]":25,"Z":11,"U":21,"T":19,"S":17,"R":19,"P":19,"N":22,"M":19,"L":19,"J":9,"I":20,"H":19,"F":19,"E":18,"D":19,"B":19,"A":13,"8":20,"7":17,"5":18,"4":11,"3":17,"2":16,"1":47}},"\u00dd":{"d":"136,-311r-7,-8r-40,41r7,7xm173,-257r-17,0r-64,111r-63,-111r-17,0r73,128r0,129r15,0r0,-129","w":183},"\u00de":{"d":"42,-66v64,6,118,-7,118,-65v0,-56,-55,-69,-118,-63r0,-63r-15,0r0,257r15,0r0,-66xm42,-180v52,-3,103,0,103,49v0,49,-50,54,-103,50r0,-99","w":176},"\u00df":{"d":"71,0v67,7,111,-16,111,-76v0,-38,-26,-65,-61,-69v50,-29,27,-112,-33,-112v-54,0,-65,49,-60,108r-20,0r0,15r20,0r0,134r15,0r0,-193v0,-33,15,-49,45,-49v25,-1,47,19,47,43v0,25,-19,51,-45,50r0,15v51,0,77,19,77,58v0,49,-40,69,-96,61r0,15","w":194},"\u00e0":{"d":"102,-177r-48,-48r-8,8r47,48xm13,-74v0,71,95,105,136,48r0,26r14,0r0,-149r-14,0r0,26v-42,-56,-136,-22,-136,49xm89,-136v34,0,63,29,63,62v0,33,-29,62,-63,62v-33,0,-62,-29,-62,-62v0,-33,29,-62,62,-62","w":183,"k":{"\u00fc":19,"\u00fb":20,"\u00fa":23,"\u00f9":21,"\u00f3":16,"\u00f1":20,"\u00ef":19,"\u00ee":17,"\u00ed":7,"\u00ec":20,"\u00e1":16,"\u00dc":7,"\u00d6":17,"\u00d1":8,"\u00c9":21,"\u00c7":17,"}":10,"l":23,"k":19,"j":20,"i":20,"h":22,"d":22,"`":101,"_":153,"^":23,"]":27,"\\":19,"[":16,"Z":23,"Y":51,"W":27,"V":28,"U":7,"T":52,"S":19,"R":22,"Q":17,"P":22,"O":17,"N":8,"L":22,"K":19,"J":17,"I":23,"H":22,"G":17,"F":22,"E":21,"D":22,"C":17,"B":22,"8":22,"7":17,"5":21,"4":10,"3":20,"2":15,"1":85}},"\u00e1":{"d":"134,-217r-8,-8r-48,48r9,8xm13,-74v0,71,95,105,136,48r0,26r14,0r0,-149r-14,0r0,26v-42,-56,-136,-22,-136,49xm89,-136v34,0,63,29,63,62v0,33,-29,62,-63,62v-33,0,-62,-29,-62,-62v0,-33,29,-62,62,-62","w":183,"k":{"\u00fc":18,"\u00fb":19,"\u00fa":21,"\u00f9":19,"\u00f1":19,"\u00ef":19,"\u00ee":15,"\u00ed":21,"\u00dc":21,"\u00d1":22,"\u00c9":19,"}":8,"l":21,"k":17,"j":20,"i":19,"h":20,"d":20,"`":42,"_":153,"^":18,"]":25,"\\":18,"Z":21,"Y":41,"W":25,"V":26,"U":21,"T":50,"S":18,"R":21,"P":21,"N":22,"L":21,"K":17,"I":21,"H":21,"F":21,"E":19,"D":21,"B":21,"8":19,"5":19,"4":9,"3":18,"2":13,"1":84}},"\u00e2":{"d":"131,-179r-43,-43r-44,43r8,8r36,-35r36,35xm13,-74v0,71,95,105,136,48r0,26r14,0r0,-149r-14,0r0,26v-42,-56,-136,-22,-136,49xm89,-136v34,0,63,29,63,62v0,33,-29,62,-63,62v-33,0,-62,-29,-62,-62v0,-33,29,-62,62,-62","w":183,"k":{"\u00fc":18,"\u00fb":19,"\u00fa":21,"\u00f9":19,"\u00f1":19,"\u00ef":19,"\u00ee":13,"\u00ed":21,"\u00ec":18,"\u00dc":21,"\u00d1":22,"\u00c9":19,"}":8,"l":21,"k":17,"j":19,"i":19,"h":20,"d":19,"`":70,"_":153,"^":18,"]":25,"\\":18,"Z":21,"Y":49,"W":25,"V":26,"U":21,"T":50,"S":18,"R":21,"P":21,"N":22,"L":21,"K":17,"I":21,"H":21,"F":21,"E":19,"D":21,"B":21,"8":19,"5":19,"4":8,"3":18,"2":13,"1":84}},"\u00e3":{"d":"42,-177v28,-34,76,28,106,-16r-10,-8v-28,31,-82,-29,-105,16xm13,-74v0,71,95,105,136,48r0,26r14,0r0,-149r-14,0r0,26v-42,-56,-136,-22,-136,49xm89,-136v34,0,63,29,63,62v0,33,-29,62,-63,62v-33,0,-62,-29,-62,-62v0,-33,29,-62,62,-62","w":183,"k":{"\u00fc":18,"\u00fb":18,"\u00fa":19,"\u00f9":18,"\u00f1":19,"\u00ee":21,"\u00ed":20,"\u00dc":21,"\u00d1":22,"\u00c9":18,"}":8,"l":20,"k":17,"j":19,"i":19,"h":20,"d":18,"`":48,"_":153,"^":18,"]":24,"\\":18,"Z":19,"Y":41,"W":26,"V":26,"U":21,"T":50,"S":18,"R":20,"P":20,"N":22,"L":20,"K":16,"I":20,"H":20,"F":20,"E":18,"D":20,"B":20,"8":19,"5":19,"4":7,"3":19,"2":14,"1":83}},"\u00e4":{"d":"111,-199v-17,1,-13,23,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12xm62,-199v-17,1,-14,24,0,24v8,0,11,-4,11,-12v-2,-8,-5,-12,-11,-12xm13,-74v0,71,95,105,136,48r0,26r14,0r0,-149r-14,0r0,26v-42,-56,-136,-22,-136,49xm89,-136v34,0,63,29,63,62v0,33,-29,62,-63,62v-33,0,-62,-29,-62,-62v0,-33,29,-62,62,-62","w":183,"k":{"\u00fc":18,"\u00fb":18,"\u00fa":19,"\u00f9":18,"\u00f1":19,"\u00ef":19,"\u00ee":15,"\u00ed":20,"\u00ec":19,"\u00dc":21,"\u00d1":22,"\u00c9":18,"}":8,"l":21,"k":17,"j":20,"i":19,"h":20,"d":17,"`":71,"_":153,"^":19,"]":24,"\\":18,"Z":19,"Y":50,"W":26,"V":27,"U":21,"T":50,"S":18,"R":20,"P":20,"N":22,"L":20,"K":17,"I":21,"H":20,"F":20,"E":18,"D":20,"B":20,"8":19,"5":20,"4":7,"3":20,"2":14,"1":83}},"\u00e5":{"d":"88,-164v15,0,30,-15,30,-30v0,-15,-15,-30,-30,-30v-15,0,-30,15,-30,30v0,15,15,30,30,30xm13,-74v0,71,95,105,136,48r0,26r14,0r0,-149r-14,0r0,26v-42,-56,-136,-22,-136,49xm88,-216v11,-1,22,11,22,22v0,10,-12,22,-22,22v-11,0,-23,-11,-22,-22v-2,-11,11,-24,22,-22xm89,-136v34,0,63,29,63,62v0,33,-29,62,-63,62v-33,0,-62,-29,-62,-62v0,-33,29,-62,62,-62","w":183,"k":{"\u00fc":18,"\u00fb":18,"\u00fa":20,"\u00f9":18,"\u00f1":19,"\u00ef":18,"\u00ee":15,"\u00ed":21,"\u00ec":18,"\u00dc":21,"\u00d1":22,"\u00c9":18,"}":8,"l":20,"k":17,"j":19,"i":19,"h":20,"d":19,"`":61,"_":153,"^":17,"]":24,"\\":17,"Z":20,"Y":49,"W":25,"V":26,"U":21,"T":50,"S":17,"R":20,"P":20,"N":22,"L":20,"K":16,"I":20,"H":20,"F":20,"E":18,"D":20,"B":20,"8":19,"5":19,"4":8,"3":18,"2":13,"1":83}},"\u00e6":{"d":"282,-43v-26,54,-128,32,-118,-34r139,0v7,-73,-105,-98,-140,-43r0,-29r-14,0r0,26v-42,-56,-136,-22,-136,49v0,71,95,105,136,48r0,26r14,0r0,-28v28,46,113,38,132,-9xm287,-91r-121,0v12,-62,112,-56,121,0xm89,-136v34,0,63,29,63,62v0,33,-29,62,-63,62v-33,0,-62,-29,-62,-62v0,-33,29,-62,62,-62","w":316},"\u00e7":{"d":"81,17v8,2,17,21,3,21v-7,0,-9,-4,-13,-7v-8,11,2,21,14,21v21,0,29,-30,12,-37r5,-12v14,0,27,-7,37,-13r0,-20v-34,37,-113,12,-107,-44v-6,-55,71,-84,107,-45r0,-19v-49,-34,-122,2,-122,64v0,42,30,73,69,77","w":157,"k":{"\u00fc":21,"\u00fb":21,"\u00fa":21,"\u00f9":21,"\u00f6":22,"\u00f5":22,"\u00f4":22,"\u00f3":22,"\u00f2":22,"\u00f1":22,"\u00ef":9,"\u00ee":21,"\u00ed":9,"\u00ec":9,"\u00eb":21,"\u00ea":21,"\u00e9":21,"\u00e8":21,"\u00e7":11,"\u00e5":22,"\u00e4":22,"\u00e3":22,"\u00e2":22,"\u00e1":22,"\u00e0":22,"\u00dc":10,"\u00d6":20,"\u00d1":11,"\u00c9":8,"\u00c7":8,"\u00c5":17,"\u00c4":17,"}":9,"|":17,"z":11,"y":17,"w":17,"v":17,"u":21,"r":22,"q":9,"p":20,"o":22,"n":22,"m":22,"l":10,"k":22,"j":8,"i":9,"h":9,"g":22,"f":17,"e":21,"d":9,"c":10,"b":18,"a":22,"`":107,"_":141,"]":25,"\\":27,"[":19,"Z":8,"Y":62,"X":21,"W":35,"V":36,"U":10,"T":55,"S":16,"R":10,"Q":12,"P":10,"O":20,"N":11,"L":10,"K":22,"J":19,"I":10,"H":10,"G":20,"F":10,"E":8,"D":10,"C":20,"B":10,"A":17,"9":9,"8":15,"5":19,"4":50,"3":28,"2":21,"1":89}},"\u00e8":{"d":"105,-177r-48,-48r-8,8r47,48xm144,-43v-25,55,-128,31,-117,-34r139,0v1,-43,-33,-74,-77,-74v-43,0,-77,34,-77,77v0,51,48,90,102,73v19,-6,35,-18,44,-36xm149,-91r-120,0v11,-62,112,-59,120,0","w":176,"k":{"\u00fa":18,"\u00ee":13,"\u00ed":18,"\u00dc":18,"\u00d1":19,"\u00c5":11,"\u00c4":11,"}":12,"z":17,"y":21,"x":19,"w":21,"v":20,"t":21,"l":18,"h":17,"f":10,"d":17,"`":91,"_":143,"^":20,"]":22,"\\":28,"Z":24,"Y":57,"X":15,"W":36,"V":37,"U":18,"T":48,"S":9,"R":18,"P":18,"N":19,"M":18,"L":18,"J":10,"I":18,"H":18,"F":18,"D":18,"B":18,"A":11,"9":13,"8":17,"7":17,"5":11,"4":19,"3":26,"2":36,"1":81}},"\u00e9":{"d":"128,-217r-8,-8r-48,48r9,8xm144,-43v-25,55,-128,31,-117,-34r139,0v1,-43,-33,-74,-77,-74v-43,0,-77,34,-77,77v0,51,48,90,102,73v19,-6,35,-18,44,-36xm149,-91r-120,0v11,-62,112,-59,120,0","w":176,"k":{"\u00fa":17,"\u00ee":11,"\u00ed":17,"\u00dc":17,"\u00d1":17,"\u00c5":9,"\u00c4":9,"}":10,"z":17,"y":21,"x":19,"w":21,"v":20,"t":20,"l":17,"f":8,"`":40,"_":143,"^":17,"]":20,"\\":26,"Z":22,"Y":44,"X":14,"W":34,"V":35,"U":17,"T":46,"S":8,"R":16,"P":16,"N":17,"M":17,"L":16,"J":8,"I":17,"H":16,"F":16,"D":16,"B":16,"A":9,"9":12,"7":15,"5":10,"4":18,"3":24,"2":35,"1":79}},"\u00ea":{"d":"134,-179r-43,-43r-44,43r8,8r36,-35r36,35xm144,-43v-25,55,-128,31,-117,-34r139,0v1,-43,-33,-74,-77,-74v-43,0,-77,34,-77,77v0,51,48,90,102,73v19,-6,35,-18,44,-36xm149,-91r-120,0v11,-62,112,-59,120,0","w":176,"k":{"\u00ee":8,"\u00ed":17,"\u00dc":17,"\u00d1":17,"\u00c5":9,"\u00c4":9,"}":10,"z":17,"y":21,"x":19,"w":21,"v":20,"t":19,"l":16,"f":8,"`":60,"_":143,"^":16,"]":20,"\\":26,"Z":22,"Y":55,"X":13,"W":35,"V":36,"U":17,"T":46,"S":8,"N":17,"M":16,"J":8,"I":16,"A":9,"9":11,"7":14,"5":9,"4":17,"3":24,"2":35,"1":79}},"\u00eb":{"d":"113,-199v-16,1,-12,24,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12xm64,-199v-17,1,-13,23,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12xm144,-43v-25,55,-128,31,-117,-34r139,0v1,-43,-33,-74,-77,-74v-43,0,-77,34,-77,77v0,51,48,90,102,73v19,-6,35,-18,44,-36xm149,-91r-120,0v11,-62,112,-59,120,0","w":176,"k":{"\u00ee":12,"\u00ed":16,"\u00dc":17,"\u00d1":18,"\u00c5":8,"\u00c4":8,"}":10,"z":17,"y":21,"x":19,"w":21,"v":20,"t":20,"l":17,"f":8,"`":61,"_":143,"^":17,"]":21,"\\":27,"Z":21,"Y":56,"X":14,"W":36,"V":37,"U":17,"T":46,"S":9,"R":16,"P":16,"N":18,"M":16,"L":16,"J":8,"I":17,"H":16,"F":16,"D":16,"B":16,"A":8,"9":13,"7":13,"5":10,"4":17,"3":26,"2":36,"1":79}},"\u00ec":{"d":"42,-177r-47,-48r-9,8r48,48xm41,0r0,-149r-15,0r0,149r15,0","w":66,"k":{"\u00fc":20,"\u00fb":21,"\u00fa":23,"\u00f9":21,"\u00f3":16,"\u00f1":21,"\u00ed":22,"\u00e1":16,"\u00dc":22,"\u00d6":17,"\u00d1":22,"\u00c9":19,"\u00c7":17,"}":10,"z":18,"r":17,"p":17,"n":17,"m":17,"l":22,"k":18,"j":19,"i":19,"h":21,"d":22,"`":43,"_":80,"^":16,"]":26,"\\":12,"Z":7,"Y":37,"W":19,"V":20,"U":22,"T":98,"S":19,"R":21,"Q":17,"P":21,"O":17,"N":22,"L":21,"K":18,"J":17,"I":22,"H":21,"G":17,"F":21,"E":19,"D":21,"C":17,"B":21,"8":22,"7":18,"5":21,"4":11,"3":20,"2":15,"1":84}},"\u00ed":{"d":"83,-217r-8,-8r-49,48r9,8xm41,0r0,-149r-15,0r0,149r15,0","w":66,"k":{"\u00fb":18,"\u00fa":20,"\u00ef":-37,"\u00ec":-63,"|":-37,"{":-38,"z":18,"r":17,"p":17,"n":17,"m":17,"k":-32,"d":19,"b":-37,"_":40,"[":-35,"Z":20,"T":63,"K":-33,"5":18,"4":8,"1":49,"0":-33}},"\u00ee":{"d":"90,-179r-43,-43r-44,43r8,8r36,-35r36,35xm53,0r0,-149r-14,0r0,149r14,0","w":91,"k":{"\u00fc":19,"\u00fa":18,"\u00f9":16,"\u00f6":10,"\u00f4":22,"\u00f3":11,"\u00f2":10,"\u00ef":-34,"\u00eb":9,"\u00ea":8,"\u00e9":11,"\u00e8":10,"\u00e7":10,"\u00e5":9,"\u00e4":10,"\u00e2":22,"\u00e1":12,"\u00e0":10,"\u00c5":10,"\u00c4":10,"~":21,"z":16,"y":7,"x":17,"w":8,"v":23,"u":13,"s":22,"r":15,"q":20,"p":14,"o":22,"n":15,"m":15,"g":22,"e":22,"d":17,"c":10,"a":22,"`":19,"_":89,"]":9,"Z":18,"Y":19,"X":11,"W":18,"V":18,"T":34,"M":20,"J":13,"A":10,"7":13,"6":18,"5":17,"4":22,"3":24,"2":17,"1":67}},"\u00ef":{"d":"58,-199v-17,1,-14,24,0,24v8,0,11,-4,11,-12v-2,-8,-5,-12,-11,-12xm20,-187v-1,-17,-25,-13,-24,0v0,16,25,16,24,0xm41,0r0,-149r-15,0r0,149r15,0","w":66,"k":{"\u00fa":20,"\u00f9":19,"\u00ef":-42,"\u00ee":-33,"\u00ec":-35,"z":18,"r":17,"p":17,"n":17,"m":17,"d":18,"`":21,"_":70,"]":18,"Z":19,"Y":8,"T":28,"5":21,"4":8,"3":21,"2":17,"1":61}},"\u00f0":{"d":"89,3v42,0,78,-35,77,-77v0,-69,-14,-101,-51,-134r33,-20r-15,-10r-31,20v-12,-9,-25,-14,-38,-18r-13,12r34,16r-31,20r14,9r31,-19v24,18,40,41,46,71v-44,-50,-132,-15,-132,53v0,42,34,77,76,77xm89,-136v34,0,63,29,63,62v0,33,-29,62,-63,62v-33,0,-62,-29,-62,-62v0,-33,29,-62,62,-62","w":179},"\u00f1":{"d":"128,-201v-27,33,-82,-29,-105,16r10,8v26,-35,77,29,106,-16xm39,0v4,-55,-18,-136,42,-136v60,0,40,81,43,136r15,0v-1,-68,15,-150,-58,-150v-22,0,-35,6,-42,19r0,-18r-15,0r0,149r15,0","w":162,"k":{"\u00fc":21,"\u00fb":21,"\u00fa":22,"\u00f9":21,"\u00f1":22,"\u00ed":7,"\u00dc":8,"\u00d6":18,"\u00d1":7,"\u00c9":21,"\u00c7":18,"}":11,"z":18,"y":22,"w":23,"v":22,"t":19,"r":16,"n":16,"m":16,"l":7,"k":19,"j":19,"i":19,"h":22,"f":7,"d":20,"`":36,"_":139,"^":15,"]":27,"\\":10,"[":17,"Z":22,"Y":32,"W":17,"V":18,"U":8,"T":53,"S":21,"R":23,"Q":18,"P":23,"O":18,"N":7,"L":23,"K":19,"J":18,"I":7,"H":23,"G":18,"F":23,"E":21,"D":23,"C":18,"B":23,"9":17,"8":22,"7":17,"5":22,"4":10,"3":22,"2":17,"1":86}},"\u00f2":{"d":"105,-177r-48,-48r-8,8r47,48xm89,3v42,0,77,-35,77,-77v0,-43,-35,-77,-77,-77v-42,0,-76,36,-76,77v0,42,34,77,76,77xm89,-137v34,0,64,28,63,63v0,33,-29,62,-63,62v-33,0,-62,-29,-62,-62v0,-33,29,-63,62,-63","w":179,"k":{"\u00fa":18,"\u00ee":12,"\u00ed":18,"\u00dc":18,"\u00d1":19,"\u00c5":10,"\u00c4":10,"}":11,"z":17,"y":20,"x":19,"w":21,"v":19,"t":20,"l":18,"h":17,"f":9,"d":17,"`":94,"_":146,"^":25,"]":22,"\\":28,"Z":24,"Y":56,"X":15,"W":37,"V":38,"U":18,"T":47,"R":17,"P":17,"N":19,"M":16,"L":17,"J":11,"I":18,"H":17,"F":17,"D":17,"B":17,"A":10,"9":14,"8":16,"7":17,"5":18,"4":8,"3":17,"2":37,"1":80}},"\u00f3":{"d":"130,-217r-8,-8r-49,48r9,8xm89,3v42,0,77,-35,77,-77v0,-43,-35,-77,-77,-77v-42,0,-76,36,-76,77v0,42,34,77,76,77xm89,-137v34,0,64,28,63,63v0,33,-29,62,-63,62v-33,0,-62,-29,-62,-62v0,-33,29,-63,62,-63","w":179,"k":{"\u00fa":16,"\u00ee":11,"\u00ed":17,"\u00dc":17,"\u00d1":17,"\u00c5":9,"\u00c4":9,"}":10,"z":17,"y":20,"x":19,"w":21,"v":19,"t":19,"f":8,"`":42,"_":146,"^":22,"]":20,"\\":27,"Z":23,"Y":42,"X":14,"W":32,"V":33,"U":17,"T":46,"N":17,"J":9,"A":9,"9":13,"7":15,"5":16,"4":22,"3":15,"2":36,"1":79}},"\u00f4":{"d":"131,-179r-43,-43r-44,43r8,8r36,-35r36,35xm89,3v42,0,77,-35,77,-77v0,-43,-35,-77,-77,-77v-42,0,-76,36,-76,77v0,42,34,77,76,77xm89,-137v34,0,64,28,63,63v0,33,-29,62,-63,62v-33,0,-62,-29,-62,-62v0,-33,29,-63,62,-63","w":179,"k":{"\u00ee":10,"\u00ed":16,"\u00dc":17,"\u00d1":17,"\u00c5":8,"\u00c4":8,"}":9,"z":17,"y":20,"x":19,"w":21,"v":19,"t":19,"f":8,"`":66,"_":146,"^":21,"]":20,"\\":27,"Z":22,"Y":55,"X":14,"W":35,"V":36,"U":17,"T":45,"N":17,"J":9,"A":8,"9":13,"7":15,"5":16,"4":22,"3":15,"2":36,"1":78}},"\u00f5":{"d":"135,-201v-28,33,-82,-29,-105,16r10,8v26,-35,76,29,105,-16xm89,3v42,0,77,-35,77,-77v0,-43,-35,-77,-77,-77v-42,0,-76,36,-76,77v0,42,34,77,76,77xm89,-137v34,0,64,28,63,63v0,33,-29,62,-63,62v-33,0,-62,-29,-62,-62v0,-33,29,-63,62,-63","w":179,"k":{"\u00ee":21,"\u00dc":16,"\u00d1":17,"\u00c5":8,"\u00c4":8,"}":9,"z":17,"y":20,"x":19,"w":21,"v":19,"t":19,"f":7,"`":47,"_":146,"^":22,"]":20,"\\":19,"Z":21,"Y":41,"X":14,"W":26,"V":27,"U":16,"T":45,"N":17,"J":9,"A":8,"9":11,"7":14,"5":17,"4":21,"3":16,"2":35,"1":78}},"\u00f6":{"d":"112,-199v-17,1,-13,23,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12xm63,-199v-17,1,-13,23,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12xm89,3v42,0,77,-35,77,-77v0,-43,-35,-77,-77,-77v-42,0,-76,36,-76,77v0,42,34,77,76,77xm89,-137v34,0,64,28,63,63v0,33,-29,62,-63,62v-33,0,-62,-29,-62,-62v0,-33,29,-63,62,-63","w":179,"k":{"\u00ee":11,"\u00dc":17,"\u00d1":17,"\u00c5":8,"\u00c4":8,"}":9,"z":17,"y":20,"x":19,"w":21,"v":19,"t":19,"f":8,"`":65,"_":146,"^":22,"]":20,"\\":27,"Z":21,"Y":55,"X":14,"W":36,"V":37,"U":17,"T":45,"N":17,"J":9,"A":8,"9":13,"7":14,"5":17,"4":21,"3":17,"2":37,"1":78}},"\u00f7":{"d":"67,-149v-17,1,-14,24,0,24v8,0,11,-4,11,-12v-2,-8,-5,-12,-11,-12xm113,-86r0,-18r-92,0r0,18r92,0xm67,-64v-17,0,-14,24,0,23v8,0,11,-4,11,-12v-2,-8,-5,-11,-11,-11","w":130},"\u00f8":{"d":"53,-6v52,28,115,-13,113,-68v0,-23,-8,-42,-25,-57r15,-21r-13,-9r-15,21v-51,-32,-115,9,-115,66v0,24,9,44,27,59r-13,19r13,9xm132,-119v51,41,-4,133,-70,101xm49,-27v-55,-42,3,-139,71,-102","w":179},"\u00f9":{"d":"88,-177r-48,-48r-8,8r47,48xm77,3v71,0,55,-85,56,-152r-15,0v-5,54,20,137,-41,137v-61,0,-34,-83,-40,-137r-15,0v2,67,-16,152,55,152","w":154,"k":{"\u00fc":19,"\u00fb":21,"\u00fa":7,"\u00f9":21,"\u00f3":16,"\u00f1":21,"\u00ef":20,"\u00ee":17,"\u00ed":8,"\u00ec":21,"\u00e1":17,"\u00dc":8,"\u00d6":17,"\u00d1":8,"\u00c9":21,"\u00c7":17,"\u00c5":10,"\u00c4":10,"}":17,"z":20,"l":7,"k":19,"j":21,"i":21,"h":22,"d":22,"`":86,"_":132,"^":21,"]":27,"\\":20,"[":17,"Z":21,"Y":51,"X":13,"W":27,"V":28,"U":8,"T":53,"S":19,"R":23,"Q":17,"P":23,"O":17,"N":8,"M":18,"L":23,"K":19,"J":8,"I":7,"H":23,"G":17,"F":23,"E":21,"D":23,"C":17,"B":23,"A":10,"9":16,"8":22,"7":14,"5":21,"4":11,"3":20,"2":32,"1":86}},"\u00fa":{"d":"126,-217r-8,-8r-48,48r9,8xm77,3v71,0,55,-85,56,-152r-15,0v-5,54,20,137,-41,137v-61,0,-34,-83,-40,-137r-15,0v2,67,-16,152,55,152","w":154,"k":{"\u00fc":19,"\u00fb":19,"\u00fa":21,"\u00f9":18,"\u00f1":19,"\u00ef":17,"\u00ee":15,"\u00ed":21,"\u00dc":21,"\u00d1":22,"\u00c9":18,"\u00c5":8,"\u00c4":8,"}":14,"z":20,"l":21,"k":17,"j":20,"i":20,"h":20,"d":20,"`":20,"_":132,"]":24,"\\":7,"Z":19,"Y":23,"X":11,"W":13,"V":14,"U":21,"T":50,"S":17,"R":20,"P":20,"N":22,"L":20,"K":17,"J":21,"I":21,"H":20,"F":20,"E":18,"D":20,"B":20,"A":8,"8":19,"7":12,"5":19,"4":9,"3":18,"2":26,"1":83}},"\u00fb":{"d":"121,-179r-44,-43r-43,43r7,8r36,-35r36,35xm77,3v71,0,55,-85,56,-152r-15,0v-5,54,20,137,-41,137v-61,0,-34,-83,-40,-137r-15,0v2,67,-16,152,55,152","w":154,"k":{"\u00fc":18,"\u00fb":19,"\u00fa":21,"\u00f9":19,"\u00f1":19,"\u00ed":21,"\u00ec":19,"\u00dc":22,"\u00d1":22,"\u00c9":19,"\u00c5":8,"\u00c4":8,"}":14,"z":20,"l":21,"k":17,"j":20,"i":19,"h":21,"d":19,"`":51,"_":132,"]":25,"\\":18,"Z":19,"Y":45,"X":11,"W":26,"V":26,"U":22,"T":50,"S":18,"R":21,"P":21,"N":22,"L":21,"K":17,"J":21,"I":21,"H":21,"F":21,"E":19,"D":21,"B":21,"A":8,"8":20,"7":11,"5":19,"4":9,"3":18,"2":30,"1":84}},"\u00fc":{"d":"102,-199v-17,1,-14,24,0,24v8,0,11,-4,11,-12v-2,-8,-5,-12,-11,-12xm52,-199v-17,1,-13,23,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12xm77,3v71,0,55,-85,56,-152r-15,0v-5,54,20,137,-41,137v-61,0,-34,-83,-40,-137r-15,0v2,67,-16,152,55,152","w":154,"k":{"\u00fc":19,"\u00fb":18,"\u00fa":19,"\u00f9":19,"\u00f1":19,"\u00ee":20,"\u00ed":21,"\u00ec":18,"\u00dc":22,"\u00d1":22,"\u00c9":19,"\u00c5":23,"\u00c4":23,"}":14,"z":20,"l":21,"k":17,"j":20,"i":20,"h":21,"d":18,"`":50,"_":132,"^":16,"]":25,"\\":19,"Z":18,"Y":46,"X":12,"W":26,"V":27,"U":22,"T":50,"S":18,"R":21,"P":21,"N":22,"L":21,"K":17,"J":21,"I":21,"H":21,"F":21,"E":19,"D":21,"B":21,"A":23,"8":20,"7":10,"5":20,"4":8,"3":20,"2":31,"1":84}},"\u00fd":{"d":"81,-14v91,51,202,-11,202,-115v0,-44,-16,-79,-48,-104r15,-22r-13,-8r-15,21v-89,-52,-210,8,-204,113v2,46,20,86,50,107r-14,21r13,8xm33,-129v0,-91,98,-147,180,-101r-136,195v-27,-19,-44,-50,-44,-94xm212,-149v0,29,43,39,56,15v8,95,-95,152,-178,108r136,-195v17,13,29,30,35,49v-18,-17,-49,0,-49,23xm242,-172v11,0,23,11,23,22v0,11,-12,23,-23,23v-11,0,-22,-12,-22,-23v0,-10,12,-22,22,-22xm113,-120v15,0,30,-14,30,-29v1,-15,-15,-30,-30,-30v-15,0,-31,15,-30,30v0,15,15,29,30,29xm113,-172v10,0,22,12,22,22v0,11,-11,23,-22,23v-11,0,-23,-12,-23,-23v0,-11,12,-22,23,-22xm124,-144v0,-11,-15,-9,-16,0v0,3,4,9,8,8v4,1,9,-4,8,-8xm246,-150v-3,-1,-8,4,-8,7v0,3,4,9,8,8v4,1,9,-4,8,-8v1,-4,-5,-8,-8,-7xm222,-54r-7,-8v-17,19,-46,16,-63,-1r-8,9v18,21,61,20,78,0","w":295},"\u00fe":{"d":"38,-28v39,59,138,26,138,-46v0,-71,-99,-106,-138,-47r0,-145r-15,0r0,336r15,0r0,-98xm99,-136v33,0,62,29,62,62v0,33,-29,62,-62,62v-33,0,-62,-29,-62,-62v0,-33,29,-62,62,-62","w":184},"\u00ff":{"d":"107,-199v-17,1,-13,23,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12xm58,-199v-17,1,-13,23,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12xm152,-149r-16,0r-55,118r-55,-118r-16,0r63,135r-39,84r17,0","w":160},"\ue000":{"d":"96,-88r0,-15r-75,0r0,15r75,0","w":114},"\ue001":{"d":"121,0r0,-257r-49,0r-9,15r43,0r0,242r15,0xm49,-156v15,0,30,-14,30,-29v1,-15,-15,-30,-30,-30v-15,0,-31,15,-30,30v0,15,15,29,30,29xm49,-208v10,0,22,12,22,22v0,11,-11,23,-22,23v-11,0,-24,-11,-22,-23v-1,-11,11,-22,22,-22xm179,-156v15,0,29,-14,29,-29v0,-15,-14,-30,-29,-30v-15,-1,-31,15,-30,30v0,15,15,29,30,29xm179,-208v10,0,22,12,22,22v0,11,-11,23,-22,23v-11,0,-23,-12,-23,-23v0,-11,12,-22,23,-22xm53,-188v-3,0,-9,4,-8,8v-1,4,4,9,8,8v4,1,8,-5,7,-8v1,-3,-4,-8,-7,-8xm183,-186v-3,-1,-9,3,-8,7v-1,4,4,9,8,8v4,1,8,-5,7,-8v1,-3,-4,-8,-7,-7xm158,26r-8,-8r-36,35r-36,-35r-7,8r43,43","w":220},"\ue002":{"d":"81,-151r0,-116v-11,0,-25,-3,-26,7r20,0r0,109r6,0xm121,-127r0,-10r-92,0r0,10r92,0xm48,-89v7,-30,52,-25,54,3v-9,38,-45,57,-64,86r70,0r0,-6r-55,0v17,-26,52,-42,55,-80v3,-38,-64,-41,-67,-3r7,0"},"\ue003":{"d":"79,-151r0,-116v-11,0,-25,-3,-26,7r19,0r0,109r7,0xm120,-127r0,-10r-92,0r0,10r92,0xm94,-22v5,0,12,1,10,-6r-10,0r0,-89r-67,95r60,0r0,22r7,0r0,-22xm87,-28r-48,0r48,-67r0,67"},"\ue004":{"d":"79,-151r0,-116v-11,0,-25,-3,-26,7r19,0r0,109r7,0"},"\ue005":{"d":"40,-176v6,38,67,31,65,-7v0,-16,-8,-26,-23,-30v34,-6,25,-60,-9,-57v-16,0,-31,11,-31,28r7,0v2,-30,49,-26,47,2v-1,15,-10,24,-29,22v-2,17,31,7,31,35v0,30,-46,33,-51,7r-7,0xm118,-127r0,-10r-92,0r0,10r92,0xm95,-22v5,0,12,1,10,-6r-10,0r0,-89r-66,95r59,0r0,22r7,0r0,-22xm88,-28r-47,0r47,-67r0,67"},"\ue006":{"d":"40,-176v6,38,67,31,65,-7v0,-16,-8,-26,-23,-30v34,-6,25,-60,-9,-57v-16,0,-31,11,-31,28r7,0v2,-30,49,-26,47,2v-1,15,-10,24,-29,22v-2,17,31,7,31,35v0,30,-46,33,-51,7r-7,0"},"\ue007":{"d":"46,-240v7,-31,53,-25,54,4v-9,38,-44,57,-63,86r70,0r0,-7r-56,0v18,-26,52,-42,56,-79v4,-38,-63,-40,-68,-4r7,0"},"\ue008":{"d":"110,-51r0,-206r-15,0r0,205v4,44,-38,51,-54,24r-12,7v20,40,81,30,81,-30xm38,-192v15,0,30,-14,30,-29v1,-15,-15,-30,-30,-30v-15,0,-31,15,-30,30v0,15,15,29,30,29xm38,-244v11,0,23,11,22,22v1,12,-11,23,-22,23v-11,0,-22,-12,-22,-23v0,-10,12,-22,22,-22xm168,-192v15,0,30,-14,30,-29v1,-15,-15,-30,-30,-30v-15,0,-31,15,-30,30v0,15,15,29,30,29xm168,-244v10,0,22,12,22,22v0,11,-11,23,-22,23v-11,0,-23,-12,-23,-23v0,-11,12,-22,23,-22xm42,-224v-3,0,-9,4,-8,8v-1,4,4,9,8,8v11,0,9,-15,0,-16xm172,-222v-3,-1,-9,3,-8,7v-1,4,4,9,8,8v4,1,8,-5,8,-8v0,-3,-5,-8,-8,-7","w":205},"\ue009":{"d":"9,4r180,0r0,-15r-153,0r156,-237r-12,-9xm74,-156v15,0,30,-14,30,-29v1,-15,-15,-30,-30,-30v-15,0,-31,15,-30,30v0,15,15,29,30,29xm74,-208v11,0,23,11,22,22v1,12,-11,23,-22,23v-11,0,-22,-12,-22,-23v0,-10,12,-22,22,-22xm204,-156v15,0,30,-14,30,-29v1,-15,-15,-30,-30,-30v-15,0,-31,15,-30,30v0,15,15,29,30,29xm204,-208v10,0,22,12,22,22v0,11,-11,23,-22,23v-11,0,-23,-12,-23,-23v0,-11,12,-22,23,-22xm78,-188v-3,0,-9,4,-8,8v-1,4,4,9,8,8v11,0,9,-15,0,-16xm208,-186v-3,-1,-9,3,-8,7v-1,4,4,9,8,8v4,1,8,-5,8,-8v0,-3,-5,-8,-8,-7xm175,50r-7,-8v-17,19,-46,16,-63,-1r-7,9v17,22,60,21,77,0","w":269},"\ue00a":{"w":99},"\ue00b":{"d":"38,-192v15,0,30,-14,30,-29v1,-15,-15,-30,-30,-30v-15,0,-31,15,-30,30v0,15,15,29,30,29xm38,-244v11,0,23,11,22,22v1,12,-11,23,-22,23v-11,0,-22,-12,-22,-23v0,-10,12,-22,22,-22xm168,-192v15,0,30,-14,30,-29v1,-15,-15,-30,-30,-30v-15,0,-31,15,-30,30v0,15,15,29,30,29xm168,-244v10,0,22,12,22,22v0,11,-11,23,-22,23v-11,0,-23,-12,-23,-23v0,-11,12,-22,23,-22xm42,-224v-3,0,-9,4,-8,8v-1,4,4,9,8,8v11,0,9,-15,0,-16xm172,-222v-3,-1,-9,3,-8,7v-1,4,4,9,8,8v4,1,8,-5,8,-8v0,-3,-5,-8,-8,-7","w":205},"\u00a0":{"w":91}}}); diff --git a/www/static/js/jquery.js b/www/static/js/jquery.js new file mode 100644 index 0000000..b1ae21d --- /dev/null +++ b/www/static/js/jquery.js @@ -0,0 +1,19 @@ +/* + * jQuery JavaScript Library v1.3.2 + * http://jquery.com/ + * + * Copyright (c) 2009 John Resig + * Dual licensed under the MIT and GPL licenses. + * http://docs.jquery.com/License + * + * Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009) + * Revision: 6246 + */ +(function(){var l=this,g,y=l.jQuery,p=l.$,o=l.jQuery=l.$=function(E,F){return new o.fn.init(E,F)},D=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,f=/^.[^:#\[\.,]*$/;o.fn=o.prototype={init:function(E,H){E=E||document;if(E.nodeType){this[0]=E;this.length=1;this.context=E;return this}if(typeof E==="string"){var G=D.exec(E);if(G&&(G[1]||!H)){if(G[1]){E=o.clean([G[1]],H)}else{var I=document.getElementById(G[3]);if(I&&I.id!=G[3]){return o().find(E)}var F=o(I||[]);F.context=document;F.selector=E;return F}}else{return o(H).find(E)}}else{if(o.isFunction(E)){return o(document).ready(E)}}if(E.selector&&E.context){this.selector=E.selector;this.context=E.context}return this.setArray(o.isArray(E)?E:o.makeArray(E))},selector:"",jquery:"1.3.2",size:function(){return this.length},get:function(E){return E===g?Array.prototype.slice.call(this):this[E]},pushStack:function(F,H,E){var G=o(F);G.prevObject=this;G.context=this.context;if(H==="find"){G.selector=this.selector+(this.selector?" ":"")+E}else{if(H){G.selector=this.selector+"."+H+"("+E+")"}}return G},setArray:function(E){this.length=0;Array.prototype.push.apply(this,E);return this},each:function(F,E){return o.each(this,F,E)},index:function(E){return o.inArray(E&&E.jquery?E[0]:E,this)},attr:function(F,H,G){var E=F;if(typeof F==="string"){if(H===g){return this[0]&&o[G||"attr"](this[0],F)}else{E={};E[F]=H}}return this.each(function(I){for(F in E){o.attr(G?this.style:this,F,o.prop(this,E[F],G,I,F))}})},css:function(E,F){if((E=="width"||E=="height")&&parseFloat(F)<0){F=g}return this.attr(E,F,"curCSS")},text:function(F){if(typeof F!=="object"&&F!=null){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(F))}var E="";o.each(F||this,function(){o.each(this.childNodes,function(){if(this.nodeType!=8){E+=this.nodeType!=1?this.nodeValue:o.fn.text([this])}})});return E},wrapAll:function(E){if(this[0]){var F=o(E,this[0].ownerDocument).clone();if(this[0].parentNode){F.insertBefore(this[0])}F.map(function(){var G=this;while(G.firstChild){G=G.firstChild}return G}).append(this)}return this},wrapInner:function(E){return this.each(function(){o(this).contents().wrapAll(E)})},wrap:function(E){return this.each(function(){o(this).wrapAll(E)})},append:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.appendChild(E)}})},prepend:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.insertBefore(E,this.firstChild)}})},before:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this)})},after:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this.nextSibling)})},end:function(){return this.prevObject||o([])},push:[].push,sort:[].sort,splice:[].splice,find:function(E){if(this.length===1){var F=this.pushStack([],"find",E);F.length=0;o.find(E,this[0],F);return F}else{return this.pushStack(o.unique(o.map(this,function(G){return o.find(E,G)})),"find",E)}},clone:function(G){var E=this.map(function(){if(!o.support.noCloneEvent&&!o.isXMLDoc(this)){var I=this.outerHTML;if(!I){var J=this.ownerDocument.createElement("div");J.appendChild(this.cloneNode(true));I=J.innerHTML}return o.clean([I.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0]}else{return this.cloneNode(true)}});if(G===true){var H=this.find("*").andSelf(),F=0;E.find("*").andSelf().each(function(){if(this.nodeName!==H[F].nodeName){return}var I=o.data(H[F],"events");for(var K in I){for(var J in I[K]){o.event.add(this,K,I[K][J],I[K][J].data)}}F++})}return E},filter:function(E){return this.pushStack(o.isFunction(E)&&o.grep(this,function(G,F){return E.call(G,F)})||o.multiFilter(E,o.grep(this,function(F){return F.nodeType===1})),"filter",E)},closest:function(E){var G=o.expr.match.POS.test(E)?o(E):null,F=0;return this.map(function(){var H=this;while(H&&H.ownerDocument){if(G?G.index(H)>-1:o(H).is(E)){o.data(H,"closest",F);return H}H=H.parentNode;F++}})},not:function(E){if(typeof E==="string"){if(f.test(E)){return this.pushStack(o.multiFilter(E,this,true),"not",E)}else{E=o.multiFilter(E,this)}}var F=E.length&&E[E.length-1]!==g&&!E.nodeType;return this.filter(function(){return F?o.inArray(this,E)<0:this!=E})},add:function(E){return this.pushStack(o.unique(o.merge(this.get(),typeof E==="string"?o(E):o.makeArray(E))))},is:function(E){return !!E&&o.multiFilter(E,this).length>0},hasClass:function(E){return !!E&&this.is("."+E)},val:function(K){if(K===g){var E=this[0];if(E){if(o.nodeName(E,"option")){return(E.attributes.value||{}).specified?E.value:E.text}if(o.nodeName(E,"select")){var I=E.selectedIndex,L=[],M=E.options,H=E.type=="select-one";if(I<0){return null}for(var F=H?I:0,J=H?I+1:M.length;F=0||o.inArray(this.name,K)>=0)}else{if(o.nodeName(this,"select")){var N=o.makeArray(K);o("option",this).each(function(){this.selected=(o.inArray(this.value,N)>=0||o.inArray(this.text,N)>=0)});if(!N.length){this.selectedIndex=-1}}else{this.value=K}}})},html:function(E){return E===g?(this[0]?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):null):this.empty().append(E)},replaceWith:function(E){return this.after(E).remove()},eq:function(E){return this.slice(E,+E+1)},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","))},map:function(E){return this.pushStack(o.map(this,function(G,F){return E.call(G,F,G)}))},andSelf:function(){return this.add(this.prevObject)},domManip:function(J,M,L){if(this[0]){var I=(this[0].ownerDocument||this[0]).createDocumentFragment(),F=o.clean(J,(this[0].ownerDocument||this[0]),I),H=I.firstChild;if(H){for(var G=0,E=this.length;G1||G>0?I.cloneNode(true):I)}}if(F){o.each(F,z)}}return this;function K(N,O){return M&&o.nodeName(N,"table")&&o.nodeName(O,"tr")?(N.getElementsByTagName("tbody")[0]||N.appendChild(N.ownerDocument.createElement("tbody"))):N}}};o.fn.init.prototype=o.fn;function z(E,F){if(F.src){o.ajax({url:F.src,async:false,dataType:"script"})}else{o.globalEval(F.text||F.textContent||F.innerHTML||"")}if(F.parentNode){F.parentNode.removeChild(F)}}function e(){return +new Date}o.extend=o.fn.extend=function(){var J=arguments[0]||{},H=1,I=arguments.length,E=false,G;if(typeof J==="boolean"){E=J;J=arguments[1]||{};H=2}if(typeof J!=="object"&&!o.isFunction(J)){J={}}if(I==H){J=this;--H}for(;H-1}},swap:function(H,G,I){var E={};for(var F in G){E[F]=H.style[F];H.style[F]=G[F]}I.call(H);for(var F in G){H.style[F]=E[F]}},css:function(H,F,J,E){if(F=="width"||F=="height"){var L,G={position:"absolute",visibility:"hidden",display:"block"},K=F=="width"?["Left","Right"]:["Top","Bottom"];function I(){L=F=="width"?H.offsetWidth:H.offsetHeight;if(E==="border"){return}o.each(K,function(){if(!E){L-=parseFloat(o.curCSS(H,"padding"+this,true))||0}if(E==="margin"){L+=parseFloat(o.curCSS(H,"margin"+this,true))||0}else{L-=parseFloat(o.curCSS(H,"border"+this+"Width",true))||0}})}if(H.offsetWidth!==0){I()}else{o.swap(H,G,I)}return Math.max(0,Math.round(L))}return o.curCSS(H,F,J)},curCSS:function(I,F,G){var L,E=I.style;if(F=="opacity"&&!o.support.opacity){L=o.attr(E,"opacity");return L==""?"1":L}if(F.match(/float/i)){F=w}if(!G&&E&&E[F]){L=E[F]}else{if(q.getComputedStyle){if(F.match(/float/i)){F="float"}F=F.replace(/([A-Z])/g,"-$1").toLowerCase();var M=q.getComputedStyle(I,null);if(M){L=M.getPropertyValue(F)}if(F=="opacity"&&L==""){L="1"}}else{if(I.currentStyle){var J=F.replace(/\-(\w)/g,function(N,O){return O.toUpperCase()});L=I.currentStyle[F]||I.currentStyle[J];if(!/^\d+(px)?$/i.test(L)&&/^\d/.test(L)){var H=E.left,K=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;E.left=L||0;L=E.pixelLeft+"px";E.left=H;I.runtimeStyle.left=K}}}}return L},clean:function(F,K,I){K=K||document;if(typeof K.createElement==="undefined"){K=K.ownerDocument||K[0]&&K[0].ownerDocument||document}if(!I&&F.length===1&&typeof F[0]==="string"){var H=/^<(\w+)\s*\/?>$/.exec(F[0]);if(H){return[K.createElement(H[1])]}}var G=[],E=[],L=K.createElement("div");o.each(F,function(P,S){if(typeof S==="number"){S+=""}if(!S){return}if(typeof S==="string"){S=S.replace(/(<(\w+)[^>]*?)\/>/g,function(U,V,T){return T.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?U:V+">"});var O=S.replace(/^\s+/,"").substring(0,10).toLowerCase();var Q=!O.indexOf("",""]||!O.indexOf("",""]||O.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"","
"]||!O.indexOf("",""]||(!O.indexOf("",""]||!O.indexOf("",""]||!o.support.htmlSerialize&&[1,"div
","
"]||[0,"",""];L.innerHTML=Q[1]+S+Q[2];while(Q[0]--){L=L.lastChild}if(!o.support.tbody){var R=/"&&!R?L.childNodes:[];for(var M=N.length-1;M>=0;--M){if(o.nodeName(N[M],"tbody")&&!N[M].childNodes.length){N[M].parentNode.removeChild(N[M])}}}if(!o.support.leadingWhitespace&&/^\s/.test(S)){L.insertBefore(K.createTextNode(S.match(/^\s*/)[0]),L.firstChild)}S=o.makeArray(L.childNodes)}if(S.nodeType){G.push(S)}else{G=o.merge(G,S)}});if(I){for(var J=0;G[J];J++){if(o.nodeName(G[J],"script")&&(!G[J].type||G[J].type.toLowerCase()==="text/javascript")){E.push(G[J].parentNode?G[J].parentNode.removeChild(G[J]):G[J])}else{if(G[J].nodeType===1){G.splice.apply(G,[J+1,0].concat(o.makeArray(G[J].getElementsByTagName("script"))))}I.appendChild(G[J])}}return E}return G},attr:function(J,G,K){if(!J||J.nodeType==3||J.nodeType==8){return g}var H=!o.isXMLDoc(J),L=K!==g;G=H&&o.props[G]||G;if(J.tagName){var F=/href|src|style/.test(G);if(G=="selected"&&J.parentNode){J.parentNode.selectedIndex}if(G in J&&H&&!F){if(L){if(G=="type"&&o.nodeName(J,"input")&&J.parentNode){throw"type property can't be changed"}J[G]=K}if(o.nodeName(J,"form")&&J.getAttributeNode(G)){return J.getAttributeNode(G).nodeValue}if(G=="tabIndex"){var I=J.getAttributeNode("tabIndex");return I&&I.specified?I.value:J.nodeName.match(/(button|input|object|select|textarea)/i)?0:J.nodeName.match(/^(a|area)$/i)&&J.href?0:g}return J[G]}if(!o.support.style&&H&&G=="style"){return o.attr(J.style,"cssText",K)}if(L){J.setAttribute(G,""+K)}var E=!o.support.hrefNormalized&&H&&F?J.getAttribute(G,2):J.getAttribute(G);return E===null?g:E}if(!o.support.opacity&&G=="opacity"){if(L){J.zoom=1;J.filter=(J.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(K)+""=="NaN"?"":"alpha(opacity="+K*100+")")}return J.filter&&J.filter.indexOf("opacity=")>=0?(parseFloat(J.filter.match(/opacity=([^)]*)/)[1])/100)+"":""}G=G.replace(/-([a-z])/ig,function(M,N){return N.toUpperCase()});if(L){J[G]=K}return J[G]},trim:function(E){return(E||"").replace(/^\s+|\s+$/g,"")},makeArray:function(G){var E=[];if(G!=null){var F=G.length;if(F==null||typeof G==="string"||o.isFunction(G)||G.setInterval){E[0]=G}else{while(F){E[--F]=G[F]}}}return E},inArray:function(G,H){for(var E=0,F=H.length;E0?this.clone(true):this).get();o.fn[F].apply(o(L[K]),I);J=J.concat(I)}return this.pushStack(J,E,G)}});o.each({removeAttr:function(E){o.attr(this,E,"");if(this.nodeType==1){this.removeAttribute(E)}},addClass:function(E){o.className.add(this,E)},removeClass:function(E){o.className.remove(this,E)},toggleClass:function(F,E){if(typeof E!=="boolean"){E=!o.className.has(this,F)}o.className[E?"add":"remove"](this,F)},remove:function(E){if(!E||o.filter(E,[this]).length){o("*",this).add([this]).each(function(){o.event.remove(this);o.removeData(this)});if(this.parentNode){this.parentNode.removeChild(this)}}},empty:function(){o(this).children().remove();while(this.firstChild){this.removeChild(this.firstChild)}}},function(E,F){o.fn[E]=function(){return this.each(F,arguments)}});function j(E,F){return E[0]&&parseInt(o.curCSS(E[0],F,true),10)||0}var h="jQuery"+e(),v=0,A={};o.extend({cache:{},data:function(F,E,G){F=F==l?A:F;var H=F[h];if(!H){H=F[h]=++v}if(E&&!o.cache[H]){o.cache[H]={}}if(G!==g){o.cache[H][E]=G}return E?o.cache[H][E]:H},removeData:function(F,E){F=F==l?A:F;var H=F[h];if(E){if(o.cache[H]){delete o.cache[H][E];E="";for(E in o.cache[H]){break}if(!E){o.removeData(F)}}}else{try{delete F[h]}catch(G){if(F.removeAttribute){F.removeAttribute(h)}}delete o.cache[H]}},queue:function(F,E,H){if(F){E=(E||"fx")+"queue";var G=o.data(F,E);if(!G||o.isArray(H)){G=o.data(F,E,o.makeArray(H))}else{if(H){G.push(H)}}}return G},dequeue:function(H,G){var E=o.queue(H,G),F=E.shift();if(!G||G==="fx"){F=E[0]}if(F!==g){F.call(H)}}});o.fn.extend({data:function(E,G){var H=E.split(".");H[1]=H[1]?"."+H[1]:"";if(G===g){var F=this.triggerHandler("getData"+H[1]+"!",[H[0]]);if(F===g&&this.length){F=o.data(this[0],E)}return F===g&&H[1]?this.data(H[0]):F}else{return this.trigger("setData"+H[1]+"!",[H[0],G]).each(function(){o.data(this,E,G)})}},removeData:function(E){return this.each(function(){o.removeData(this,E)})},queue:function(E,F){if(typeof E!=="string"){F=E;E="fx"}if(F===g){return o.queue(this[0],E)}return this.each(function(){var G=o.queue(this,E,F);if(E=="fx"&&G.length==1){G[0].call(this)}})},dequeue:function(E){return this.each(function(){o.dequeue(this,E)})}}); +/* + * Sizzle CSS Selector Engine - v0.9.3 + * Copyright 2009, The Dojo Foundation + * Released under the MIT, BSD, and GPL Licenses. + * More information: http://sizzlejs.com/ + */ +(function(){var R=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,L=0,H=Object.prototype.toString;var F=function(Y,U,ab,ac){ab=ab||[];U=U||document;if(U.nodeType!==1&&U.nodeType!==9){return[]}if(!Y||typeof Y!=="string"){return ab}var Z=[],W,af,ai,T,ad,V,X=true;R.lastIndex=0;while((W=R.exec(Y))!==null){Z.push(W[1]);if(W[2]){V=RegExp.rightContext;break}}if(Z.length>1&&M.exec(Y)){if(Z.length===2&&I.relative[Z[0]]){af=J(Z[0]+Z[1],U)}else{af=I.relative[Z[0]]?[U]:F(Z.shift(),U);while(Z.length){Y=Z.shift();if(I.relative[Y]){Y+=Z.shift()}af=J(Y,af)}}}else{var ae=ac?{expr:Z.pop(),set:E(ac)}:F.find(Z.pop(),Z.length===1&&U.parentNode?U.parentNode:U,Q(U));af=F.filter(ae.expr,ae.set);if(Z.length>0){ai=E(af)}else{X=false}while(Z.length){var ah=Z.pop(),ag=ah;if(!I.relative[ah]){ah=""}else{ag=Z.pop()}if(ag==null){ag=U}I.relative[ah](ai,ag,Q(U))}}if(!ai){ai=af}if(!ai){throw"Syntax error, unrecognized expression: "+(ah||Y)}if(H.call(ai)==="[object Array]"){if(!X){ab.push.apply(ab,ai)}else{if(U.nodeType===1){for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&(ai[aa]===true||ai[aa].nodeType===1&&K(U,ai[aa]))){ab.push(af[aa])}}}else{for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&ai[aa].nodeType===1){ab.push(af[aa])}}}}}else{E(ai,ab)}if(V){F(V,U,ab,ac);if(G){hasDuplicate=false;ab.sort(G);if(hasDuplicate){for(var aa=1;aa":function(Z,U,aa){var X=typeof U==="string";if(X&&!/\W/.test(U)){U=aa?U:U.toUpperCase();for(var V=0,T=Z.length;V=0)){if(!V){T.push(Y)}}else{if(V){U[X]=false}}}}return false},ID:function(T){return T[1].replace(/\\/g,"")},TAG:function(U,T){for(var V=0;T[V]===false;V++){}return T[V]&&Q(T[V])?U[1]:U[1].toUpperCase()},CHILD:function(T){if(T[1]=="nth"){var U=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(T[2]=="even"&&"2n"||T[2]=="odd"&&"2n+1"||!/\D/.test(T[2])&&"0n+"+T[2]||T[2]);T[2]=(U[1]+(U[2]||1))-0;T[3]=U[3]-0}T[0]=L++;return T},ATTR:function(X,U,V,T,Y,Z){var W=X[1].replace(/\\/g,"");if(!Z&&I.attrMap[W]){X[1]=I.attrMap[W]}if(X[2]==="~="){X[4]=" "+X[4]+" "}return X},PSEUDO:function(X,U,V,T,Y){if(X[1]==="not"){if(X[3].match(R).length>1||/^\w/.test(X[3])){X[3]=F(X[3],null,null,U)}else{var W=F.filter(X[3],U,V,true^Y);if(!V){T.push.apply(T,W)}return false}}else{if(I.match.POS.test(X[0])||I.match.CHILD.test(X[0])){return true}}return X},POS:function(T){T.unshift(true);return T}},filters:{enabled:function(T){return T.disabled===false&&T.type!=="hidden"},disabled:function(T){return T.disabled===true},checked:function(T){return T.checked===true},selected:function(T){T.parentNode.selectedIndex;return T.selected===true},parent:function(T){return !!T.firstChild},empty:function(T){return !T.firstChild},has:function(V,U,T){return !!F(T[3],V).length},header:function(T){return/h\d/i.test(T.nodeName)},text:function(T){return"text"===T.type},radio:function(T){return"radio"===T.type},checkbox:function(T){return"checkbox"===T.type},file:function(T){return"file"===T.type},password:function(T){return"password"===T.type},submit:function(T){return"submit"===T.type},image:function(T){return"image"===T.type},reset:function(T){return"reset"===T.type},button:function(T){return"button"===T.type||T.nodeName.toUpperCase()==="BUTTON"},input:function(T){return/input|select|textarea|button/i.test(T.nodeName)}},setFilters:{first:function(U,T){return T===0},last:function(V,U,T,W){return U===W.length-1},even:function(U,T){return T%2===0},odd:function(U,T){return T%2===1},lt:function(V,U,T){return UT[3]-0},nth:function(V,U,T){return T[3]-0==U},eq:function(V,U,T){return T[3]-0==U}},filter:{PSEUDO:function(Z,V,W,aa){var U=V[1],X=I.filters[U];if(X){return X(Z,W,V,aa)}else{if(U==="contains"){return(Z.textContent||Z.innerText||"").indexOf(V[3])>=0}else{if(U==="not"){var Y=V[3];for(var W=0,T=Y.length;W=0)}}},ID:function(U,T){return U.nodeType===1&&U.getAttribute("id")===T},TAG:function(U,T){return(T==="*"&&U.nodeType===1)||U.nodeName===T},CLASS:function(U,T){return(" "+(U.className||U.getAttribute("class"))+" ").indexOf(T)>-1},ATTR:function(Y,W){var V=W[1],T=I.attrHandle[V]?I.attrHandle[V](Y):Y[V]!=null?Y[V]:Y.getAttribute(V),Z=T+"",X=W[2],U=W[4];return T==null?X==="!=":X==="="?Z===U:X==="*="?Z.indexOf(U)>=0:X==="~="?(" "+Z+" ").indexOf(U)>=0:!U?Z&&T!==false:X==="!="?Z!=U:X==="^="?Z.indexOf(U)===0:X==="$="?Z.substr(Z.length-U.length)===U:X==="|="?Z===U||Z.substr(0,U.length+1)===U+"-":false},POS:function(X,U,V,Y){var T=U[2],W=I.setFilters[T];if(W){return W(X,V,U,Y)}}}};var M=I.match.POS;for(var O in I.match){I.match[O]=RegExp(I.match[O].source+/(?![^\[]*\])(?![^\(]*\))/.source)}var E=function(U,T){U=Array.prototype.slice.call(U);if(T){T.push.apply(T,U);return T}return U};try{Array.prototype.slice.call(document.documentElement.childNodes)}catch(N){E=function(X,W){var U=W||[];if(H.call(X)==="[object Array]"){Array.prototype.push.apply(U,X)}else{if(typeof X.length==="number"){for(var V=0,T=X.length;V";var T=document.documentElement;T.insertBefore(U,T.firstChild);if(!!document.getElementById(V)){I.find.ID=function(X,Y,Z){if(typeof Y.getElementById!=="undefined"&&!Z){var W=Y.getElementById(X[1]);return W?W.id===X[1]||typeof W.getAttributeNode!=="undefined"&&W.getAttributeNode("id").nodeValue===X[1]?[W]:g:[]}};I.filter.ID=function(Y,W){var X=typeof Y.getAttributeNode!=="undefined"&&Y.getAttributeNode("id");return Y.nodeType===1&&X&&X.nodeValue===W}}T.removeChild(U)})();(function(){var T=document.createElement("div");T.appendChild(document.createComment(""));if(T.getElementsByTagName("*").length>0){I.find.TAG=function(U,Y){var X=Y.getElementsByTagName(U[1]);if(U[1]==="*"){var W=[];for(var V=0;X[V];V++){if(X[V].nodeType===1){W.push(X[V])}}X=W}return X}}T.innerHTML="";if(T.firstChild&&typeof T.firstChild.getAttribute!=="undefined"&&T.firstChild.getAttribute("href")!=="#"){I.attrHandle.href=function(U){return U.getAttribute("href",2)}}})();if(document.querySelectorAll){(function(){var T=F,U=document.createElement("div");U.innerHTML="

";if(U.querySelectorAll&&U.querySelectorAll(".TEST").length===0){return}F=function(Y,X,V,W){X=X||document;if(!W&&X.nodeType===9&&!Q(X)){try{return E(X.querySelectorAll(Y),V)}catch(Z){}}return T(Y,X,V,W)};F.find=T.find;F.filter=T.filter;F.selectors=T.selectors;F.matches=T.matches})()}if(document.getElementsByClassName&&document.documentElement.getElementsByClassName){(function(){var T=document.createElement("div");T.innerHTML="
";if(T.getElementsByClassName("e").length===0){return}T.lastChild.className="e";if(T.getElementsByClassName("e").length===1){return}I.order.splice(1,0,"CLASS");I.find.CLASS=function(U,V,W){if(typeof V.getElementsByClassName!=="undefined"&&!W){return V.getElementsByClassName(U[1])}}})()}function P(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W0){X=T;break}}}T=T[U]}ad[W]=X}}}var K=document.compareDocumentPosition?function(U,T){return U.compareDocumentPosition(T)&16}:function(U,T){return U!==T&&(U.contains?U.contains(T):true)};var Q=function(T){return T.nodeType===9&&T.documentElement.nodeName!=="HTML"||!!T.ownerDocument&&Q(T.ownerDocument)};var J=function(T,aa){var W=[],X="",Y,V=aa.nodeType?[aa]:aa;while((Y=I.match.PSEUDO.exec(T))){X+=Y[0];T=T.replace(I.match.PSEUDO,"")}T=I.relative[T]?T+"*":T;for(var Z=0,U=V.length;Z0||T.offsetHeight>0};F.selectors.filters.animated=function(T){return o.grep(o.timers,function(U){return T===U.elem}).length};o.multiFilter=function(V,T,U){if(U){V=":not("+V+")"}return F.matches(V,T)};o.dir=function(V,U){var T=[],W=V[U];while(W&&W!=document){if(W.nodeType==1){T.push(W)}W=W[U]}return T};o.nth=function(X,T,V,W){T=T||1;var U=0;for(;X;X=X[V]){if(X.nodeType==1&&++U==T){break}}return X};o.sibling=function(V,U){var T=[];for(;V;V=V.nextSibling){if(V.nodeType==1&&V!=U){T.push(V)}}return T};return;l.Sizzle=F})();o.event={add:function(I,F,H,K){if(I.nodeType==3||I.nodeType==8){return}if(I.setInterval&&I!=l){I=l}if(!H.guid){H.guid=this.guid++}if(K!==g){var G=H;H=this.proxy(G);H.data=K}var E=o.data(I,"events")||o.data(I,"events",{}),J=o.data(I,"handle")||o.data(I,"handle",function(){return typeof o!=="undefined"&&!o.event.triggered?o.event.handle.apply(arguments.callee.elem,arguments):g});J.elem=I;o.each(F.split(/\s+/),function(M,N){var O=N.split(".");N=O.shift();H.type=O.slice().sort().join(".");var L=E[N];if(o.event.specialAll[N]){o.event.specialAll[N].setup.call(I,K,O)}if(!L){L=E[N]={};if(!o.event.special[N]||o.event.special[N].setup.call(I,K,O)===false){if(I.addEventListener){I.addEventListener(N,J,false)}else{if(I.attachEvent){I.attachEvent("on"+N,J)}}}}L[H.guid]=H;o.event.global[N]=true});I=null},guid:1,global:{},remove:function(K,H,J){if(K.nodeType==3||K.nodeType==8){return}var G=o.data(K,"events"),F,E;if(G){if(H===g||(typeof H==="string"&&H.charAt(0)==".")){for(var I in G){this.remove(K,I+(H||""))}}else{if(H.type){J=H.handler;H=H.type}o.each(H.split(/\s+/),function(M,O){var Q=O.split(".");O=Q.shift();var N=RegExp("(^|\\.)"+Q.slice().sort().join(".*\\.")+"(\\.|$)");if(G[O]){if(J){delete G[O][J.guid]}else{for(var P in G[O]){if(N.test(G[O][P].type)){delete G[O][P]}}}if(o.event.specialAll[O]){o.event.specialAll[O].teardown.call(K,Q)}for(F in G[O]){break}if(!F){if(!o.event.special[O]||o.event.special[O].teardown.call(K,Q)===false){if(K.removeEventListener){K.removeEventListener(O,o.data(K,"handle"),false)}else{if(K.detachEvent){K.detachEvent("on"+O,o.data(K,"handle"))}}}F=null;delete G[O]}}})}for(F in G){break}if(!F){var L=o.data(K,"handle");if(L){L.elem=null}o.removeData(K,"events");o.removeData(K,"handle")}}},trigger:function(I,K,H,E){var G=I.type||I;if(!E){I=typeof I==="object"?I[h]?I:o.extend(o.Event(G),I):o.Event(G);if(G.indexOf("!")>=0){I.type=G=G.slice(0,-1);I.exclusive=true}if(!H){I.stopPropagation();if(this.global[G]){o.each(o.cache,function(){if(this.events&&this.events[G]){o.event.trigger(I,K,this.handle.elem)}})}}if(!H||H.nodeType==3||H.nodeType==8){return g}I.result=g;I.target=H;K=o.makeArray(K);K.unshift(I)}I.currentTarget=H;var J=o.data(H,"handle");if(J){J.apply(H,K)}if((!H[G]||(o.nodeName(H,"a")&&G=="click"))&&H["on"+G]&&H["on"+G].apply(H,K)===false){I.result=false}if(!E&&H[G]&&!I.isDefaultPrevented()&&!(o.nodeName(H,"a")&&G=="click")){this.triggered=true;try{H[G]()}catch(L){}}this.triggered=false;if(!I.isPropagationStopped()){var F=H.parentNode||H.ownerDocument;if(F){o.event.trigger(I,K,F,true)}}},handle:function(K){var J,E;K=arguments[0]=o.event.fix(K||l.event);K.currentTarget=this;var L=K.type.split(".");K.type=L.shift();J=!L.length&&!K.exclusive;var I=RegExp("(^|\\.)"+L.slice().sort().join(".*\\.")+"(\\.|$)");E=(o.data(this,"events")||{})[K.type];for(var G in E){var H=E[G];if(J||I.test(H.type)){K.handler=H;K.data=H.data;var F=H.apply(this,arguments);if(F!==g){K.result=F;if(F===false){K.preventDefault();K.stopPropagation()}}if(K.isImmediatePropagationStopped()){break}}}},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(H){if(H[h]){return H}var F=H;H=o.Event(F);for(var G=this.props.length,J;G;){J=this.props[--G];H[J]=F[J]}if(!H.target){H.target=H.srcElement||document}if(H.target.nodeType==3){H.target=H.target.parentNode}if(!H.relatedTarget&&H.fromElement){H.relatedTarget=H.fromElement==H.target?H.toElement:H.fromElement}if(H.pageX==null&&H.clientX!=null){var I=document.documentElement,E=document.body;H.pageX=H.clientX+(I&&I.scrollLeft||E&&E.scrollLeft||0)-(I.clientLeft||0);H.pageY=H.clientY+(I&&I.scrollTop||E&&E.scrollTop||0)-(I.clientTop||0)}if(!H.which&&((H.charCode||H.charCode===0)?H.charCode:H.keyCode)){H.which=H.charCode||H.keyCode}if(!H.metaKey&&H.ctrlKey){H.metaKey=H.ctrlKey}if(!H.which&&H.button){H.which=(H.button&1?1:(H.button&2?3:(H.button&4?2:0)))}return H},proxy:function(F,E){E=E||function(){return F.apply(this,arguments)};E.guid=F.guid=F.guid||E.guid||this.guid++;return E},special:{ready:{setup:B,teardown:function(){}}},specialAll:{live:{setup:function(E,F){o.event.add(this,F[0],c)},teardown:function(G){if(G.length){var E=0,F=RegExp("(^|\\.)"+G[0]+"(\\.|$)");o.each((o.data(this,"events").live||{}),function(){if(F.test(this.type)){E++}});if(E<1){o.event.remove(this,G[0],c)}}}}}};o.Event=function(E){if(!this.preventDefault){return new o.Event(E)}if(E&&E.type){this.originalEvent=E;this.type=E.type}else{this.type=E}this.timeStamp=e();this[h]=true};function k(){return false}function u(){return true}o.Event.prototype={preventDefault:function(){this.isDefaultPrevented=u;var E=this.originalEvent;if(!E){return}if(E.preventDefault){E.preventDefault()}E.returnValue=false},stopPropagation:function(){this.isPropagationStopped=u;var E=this.originalEvent;if(!E){return}if(E.stopPropagation){E.stopPropagation()}E.cancelBubble=true},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=u;this.stopPropagation()},isDefaultPrevented:k,isPropagationStopped:k,isImmediatePropagationStopped:k};var a=function(F){var E=F.relatedTarget;while(E&&E!=this){try{E=E.parentNode}catch(G){E=this}}if(E!=this){F.type=F.data;o.event.handle.apply(this,arguments)}};o.each({mouseover:"mouseenter",mouseout:"mouseleave"},function(F,E){o.event.special[E]={setup:function(){o.event.add(this,F,a,E)},teardown:function(){o.event.remove(this,F,a)}}});o.fn.extend({bind:function(F,G,E){return F=="unload"?this.one(F,G,E):this.each(function(){o.event.add(this,F,E||G,E&&G)})},one:function(G,H,F){var E=o.event.proxy(F||H,function(I){o(this).unbind(I,E);return(F||H).apply(this,arguments)});return this.each(function(){o.event.add(this,G,E,F&&H)})},unbind:function(F,E){return this.each(function(){o.event.remove(this,F,E)})},trigger:function(E,F){return this.each(function(){o.event.trigger(E,F,this)})},triggerHandler:function(E,G){if(this[0]){var F=o.Event(E);F.preventDefault();F.stopPropagation();o.event.trigger(F,G,this[0]);return F.result}},toggle:function(G){var E=arguments,F=1;while(F=0){var E=G.slice(I,G.length);G=G.slice(0,I)}var H="GET";if(J){if(o.isFunction(J)){K=J;J=null}else{if(typeof J==="object"){J=o.param(J);H="POST"}}}var F=this;o.ajax({url:G,type:H,dataType:"html",data:J,complete:function(M,L){if(L=="success"||L=="notmodified"){F.html(E?o("
").append(M.responseText.replace(//g,"")).find(E):M.responseText)}if(K){F.each(K,[M.responseText,L,M])}}});return this},serialize:function(){return o.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?o.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|search/i.test(this.type))}).map(function(E,F){var G=o(this).val();return G==null?null:o.isArray(G)?o.map(G,function(I,H){return{name:F.name,value:I}}):{name:F.name,value:G}}).get()}});o.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(E,F){o.fn[F]=function(G){return this.bind(F,G)}});var r=e();o.extend({get:function(E,G,H,F){if(o.isFunction(G)){H=G;G=null}return o.ajax({type:"GET",url:E,data:G,success:H,dataType:F})},getScript:function(E,F){return o.get(E,null,F,"script")},getJSON:function(E,F,G){return o.get(E,F,G,"json")},post:function(E,G,H,F){if(o.isFunction(G)){H=G;G={}}return o.ajax({type:"POST",url:E,data:G,success:H,dataType:F})},ajaxSetup:function(E){o.extend(o.ajaxSettings,E)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return l.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest()},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(M){M=o.extend(true,M,o.extend(true,{},o.ajaxSettings,M));var W,F=/=\?(&|$)/g,R,V,G=M.type.toUpperCase();if(M.data&&M.processData&&typeof M.data!=="string"){M.data=o.param(M.data)}if(M.dataType=="jsonp"){if(G=="GET"){if(!M.url.match(F)){M.url+=(M.url.match(/\?/)?"&":"?")+(M.jsonp||"callback")+"=?"}}else{if(!M.data||!M.data.match(F)){M.data=(M.data?M.data+"&":"")+(M.jsonp||"callback")+"=?"}}M.dataType="json"}if(M.dataType=="json"&&(M.data&&M.data.match(F)||M.url.match(F))){W="jsonp"+r++;if(M.data){M.data=(M.data+"").replace(F,"="+W+"$1")}M.url=M.url.replace(F,"="+W+"$1");M.dataType="script";l[W]=function(X){V=X;I();L();l[W]=g;try{delete l[W]}catch(Y){}if(H){H.removeChild(T)}}}if(M.dataType=="script"&&M.cache==null){M.cache=false}if(M.cache===false&&G=="GET"){var E=e();var U=M.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+E+"$2");M.url=U+((U==M.url)?(M.url.match(/\?/)?"&":"?")+"_="+E:"")}if(M.data&&G=="GET"){M.url+=(M.url.match(/\?/)?"&":"?")+M.data;M.data=null}if(M.global&&!o.active++){o.event.trigger("ajaxStart")}var Q=/^(\w+:)?\/\/([^\/?#]+)/.exec(M.url);if(M.dataType=="script"&&G=="GET"&&Q&&(Q[1]&&Q[1]!=location.protocol||Q[2]!=location.host)){var H=document.getElementsByTagName("head")[0];var T=document.createElement("script");T.src=M.url;if(M.scriptCharset){T.charset=M.scriptCharset}if(!W){var O=false;T.onload=T.onreadystatechange=function(){if(!O&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){O=true;I();L();T.onload=T.onreadystatechange=null;H.removeChild(T)}}}H.appendChild(T);return g}var K=false;var J=M.xhr();if(M.username){J.open(G,M.url,M.async,M.username,M.password)}else{J.open(G,M.url,M.async)}try{if(M.data){J.setRequestHeader("Content-Type",M.contentType)}if(M.ifModified){J.setRequestHeader("If-Modified-Since",o.lastModified[M.url]||"Thu, 01 Jan 1970 00:00:00 GMT")}J.setRequestHeader("X-Requested-With","XMLHttpRequest");J.setRequestHeader("Accept",M.dataType&&M.accepts[M.dataType]?M.accepts[M.dataType]+", */*":M.accepts._default)}catch(S){}if(M.beforeSend&&M.beforeSend(J,M)===false){if(M.global&&!--o.active){o.event.trigger("ajaxStop")}J.abort();return false}if(M.global){o.event.trigger("ajaxSend",[J,M])}var N=function(X){if(J.readyState==0){if(P){clearInterval(P);P=null;if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}}else{if(!K&&J&&(J.readyState==4||X=="timeout")){K=true;if(P){clearInterval(P);P=null}R=X=="timeout"?"timeout":!o.httpSuccess(J)?"error":M.ifModified&&o.httpNotModified(J,M.url)?"notmodified":"success";if(R=="success"){try{V=o.httpData(J,M.dataType,M)}catch(Z){R="parsererror"}}if(R=="success"){var Y;try{Y=J.getResponseHeader("Last-Modified")}catch(Z){}if(M.ifModified&&Y){o.lastModified[M.url]=Y}if(!W){I()}}else{o.handleError(M,J,R)}L();if(X){J.abort()}if(M.async){J=null}}}};if(M.async){var P=setInterval(N,13);if(M.timeout>0){setTimeout(function(){if(J&&!K){N("timeout")}},M.timeout)}}try{J.send(M.data)}catch(S){o.handleError(M,J,null,S)}if(!M.async){N()}function I(){if(M.success){M.success(V,R)}if(M.global){o.event.trigger("ajaxSuccess",[J,M])}}function L(){if(M.complete){M.complete(J,R)}if(M.global){o.event.trigger("ajaxComplete",[J,M])}if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}return J},handleError:function(F,H,E,G){if(F.error){F.error(H,E,G)}if(F.global){o.event.trigger("ajaxError",[H,F,G])}},active:0,httpSuccess:function(F){try{return !F.status&&location.protocol=="file:"||(F.status>=200&&F.status<300)||F.status==304||F.status==1223}catch(E){}return false},httpNotModified:function(G,E){try{var H=G.getResponseHeader("Last-Modified");return G.status==304||H==o.lastModified[E]}catch(F){}return false},httpData:function(J,H,G){var F=J.getResponseHeader("content-type"),E=H=="xml"||!H&&F&&F.indexOf("xml")>=0,I=E?J.responseXML:J.responseText;if(E&&I.documentElement.tagName=="parsererror"){throw"parsererror"}if(G&&G.dataFilter){I=G.dataFilter(I,H)}if(typeof I==="string"){if(H=="script"){o.globalEval(I)}if(H=="json"){I=l["eval"]("("+I+")")}}return I},param:function(E){var G=[];function H(I,J){G[G.length]=encodeURIComponent(I)+"="+encodeURIComponent(J)}if(o.isArray(E)||E.jquery){o.each(E,function(){H(this.name,this.value)})}else{for(var F in E){if(o.isArray(E[F])){o.each(E[F],function(){H(F,this)})}else{H(F,o.isFunction(E[F])?E[F]():E[F])}}}return G.join("&").replace(/%20/g,"+")}});var m={},n,d=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function t(F,E){var G={};o.each(d.concat.apply([],d.slice(0,E)),function(){G[this]=F});return G}o.fn.extend({show:function(J,L){if(J){return this.animate(t("show",3),J,L)}else{for(var H=0,F=this.length;H").appendTo("body");K=I.css("display");if(K==="none"){K="block"}I.remove();m[G]=K}o.data(this[H],"olddisplay",K)}}for(var H=0,F=this.length;H=0;H--){if(G[H].elem==this){if(E){G[H](true)}G.splice(H,1)}}});if(!E){this.dequeue()}return this}});o.each({slideDown:t("show",1),slideUp:t("hide",1),slideToggle:t("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(E,F){o.fn[E]=function(G,H){return this.animate(F,G,H)}});o.extend({speed:function(G,H,F){var E=typeof G==="object"?G:{complete:F||!F&&H||o.isFunction(G)&&G,duration:G,easing:F&&H||H&&!o.isFunction(H)&&H};E.duration=o.fx.off?0:typeof E.duration==="number"?E.duration:o.fx.speeds[E.duration]||o.fx.speeds._default;E.old=E.complete;E.complete=function(){if(E.queue!==false){o(this).dequeue()}if(o.isFunction(E.old)){E.old.call(this)}};return E},easing:{linear:function(G,H,E,F){return E+F*G},swing:function(G,H,E,F){return((-Math.cos(G*Math.PI)/2)+0.5)*F+E}},timers:[],fx:function(F,E,G){this.options=E;this.elem=F;this.prop=G;if(!E.orig){E.orig={}}}});o.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this)}(o.fx.step[this.prop]||o.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style){this.elem.style.display="block"}},cur:function(F){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop]}var E=parseFloat(o.css(this.elem,this.prop,F));return E&&E>-10000?E:parseFloat(o.curCSS(this.elem,this.prop))||0},custom:function(I,H,G){this.startTime=e();this.start=I;this.end=H;this.unit=G||this.unit||"px";this.now=this.start;this.pos=this.state=0;var E=this;function F(J){return E.step(J)}F.elem=this.elem;if(F()&&o.timers.push(F)&&!n){n=setInterval(function(){var K=o.timers;for(var J=0;J=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var E=true;for(var F in this.options.curAnim){if(this.options.curAnim[F]!==true){E=false}}if(E){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(o.css(this.elem,"display")=="none"){this.elem.style.display="block"}}if(this.options.hide){o(this.elem).hide()}if(this.options.hide||this.options.show){for(var I in this.options.curAnim){o.attr(this.elem.style,I,this.options.orig[I])}}this.options.complete.call(this.elem)}return false}else{var J=G-this.startTime;this.state=J/this.options.duration;this.pos=o.easing[this.options.easing||(o.easing.swing?"swing":"linear")](this.state,J,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update()}return true}};o.extend(o.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(E){o.attr(E.elem.style,"opacity",E.now)},_default:function(E){if(E.elem.style&&E.elem.style[E.prop]!=null){E.elem.style[E.prop]=E.now+E.unit}else{E.elem[E.prop]=E.now}}}});if(document.documentElement.getBoundingClientRect){o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}var G=this[0].getBoundingClientRect(),J=this[0].ownerDocument,F=J.body,E=J.documentElement,L=E.clientTop||F.clientTop||0,K=E.clientLeft||F.clientLeft||0,I=G.top+(self.pageYOffset||o.boxModel&&E.scrollTop||F.scrollTop)-L,H=G.left+(self.pageXOffset||o.boxModel&&E.scrollLeft||F.scrollLeft)-K;return{top:I,left:H}}}else{o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}o.offset.initialized||o.offset.initialize();var J=this[0],G=J.offsetParent,F=J,O=J.ownerDocument,M,H=O.documentElement,K=O.body,L=O.defaultView,E=L.getComputedStyle(J,null),N=J.offsetTop,I=J.offsetLeft;while((J=J.parentNode)&&J!==K&&J!==H){M=L.getComputedStyle(J,null);N-=J.scrollTop,I-=J.scrollLeft;if(J===G){N+=J.offsetTop,I+=J.offsetLeft;if(o.offset.doesNotAddBorder&&!(o.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(J.tagName))){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}F=G,G=J.offsetParent}if(o.offset.subtractsBorderForOverflowNotVisible&&M.overflow!=="visible"){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}E=M}if(E.position==="relative"||E.position==="static"){N+=K.offsetTop,I+=K.offsetLeft}if(E.position==="fixed"){N+=Math.max(H.scrollTop,K.scrollTop),I+=Math.max(H.scrollLeft,K.scrollLeft)}return{top:N,left:I}}}o.offset={initialize:function(){if(this.initialized){return}var L=document.body,F=document.createElement("div"),H,G,N,I,M,E,J=L.style.marginTop,K='
';M={position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"};for(E in M){F.style[E]=M[E]}F.innerHTML=K;L.insertBefore(F,L.firstChild);H=F.firstChild,G=H.firstChild,I=H.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(G.offsetTop!==5);this.doesAddBorderForTableAndCells=(I.offsetTop===5);H.style.overflow="hidden",H.style.position="relative";this.subtractsBorderForOverflowNotVisible=(G.offsetTop===-5);L.style.marginTop="1px";this.doesNotIncludeMarginInBodyOffset=(L.offsetTop===0);L.style.marginTop=J;L.removeChild(F);this.initialized=true},bodyOffset:function(E){o.offset.initialized||o.offset.initialize();var G=E.offsetTop,F=E.offsetLeft;if(o.offset.doesNotIncludeMarginInBodyOffset){G+=parseInt(o.curCSS(E,"marginTop",true),10)||0,F+=parseInt(o.curCSS(E,"marginLeft",true),10)||0}return{top:G,left:F}}};o.fn.extend({position:function(){var I=0,H=0,F;if(this[0]){var G=this.offsetParent(),J=this.offset(),E=/^body|html$/i.test(G[0].tagName)?{top:0,left:0}:G.offset();J.top-=j(this,"marginTop");J.left-=j(this,"marginLeft");E.top+=j(G,"borderTopWidth");E.left+=j(G,"borderLeftWidth");F={top:J.top-E.top,left:J.left-E.left}}return F},offsetParent:function(){var E=this[0].offsetParent||document.body;while(E&&(!/^body|html$/i.test(E.tagName)&&o.css(E,"position")=="static")){E=E.offsetParent}return o(E)}});o.each(["Left","Top"],function(F,E){var G="scroll"+E;o.fn[G]=function(H){if(!this[0]){return null}return H!==g?this.each(function(){this==l||this==document?l.scrollTo(!F?H:o(l).scrollLeft(),F?H:o(l).scrollTop()):this[G]=H}):this[0]==l||this[0]==document?self[F?"pageYOffset":"pageXOffset"]||o.boxModel&&document.documentElement[G]||document.body[G]:this[0][G]}});o.each(["Height","Width"],function(I,G){var E=I?"Left":"Top",H=I?"Right":"Bottom",F=G.toLowerCase();o.fn["inner"+G]=function(){return this[0]?o.css(this[0],F,false,"padding"):null};o.fn["outer"+G]=function(K){return this[0]?o.css(this[0],F,false,K?"margin":"border"):null};var J=G.toLowerCase();o.fn[J]=function(K){return this[0]==l?document.compatMode=="CSS1Compat"&&document.documentElement["client"+G]||document.body["client"+G]:this[0]==document?Math.max(document.documentElement["client"+G],document.body["scroll"+G],document.documentElement["scroll"+G],document.body["offset"+G],document.documentElement["offset"+G]):K===g?(this.length?o.css(this[0],J):null):this.css(J,typeof K==="string"?K:K+"px")}})})(); \ No newline at end of file diff --git a/www/static/js/prettyPhoto/css/prettyPhoto.css b/www/static/js/prettyPhoto/css/prettyPhoto.css new file mode 100644 index 0000000..06267af --- /dev/null +++ b/www/static/js/prettyPhoto/css/prettyPhoto.css @@ -0,0 +1 @@ + div.light_rounded .pp_top .pp_left{background: url(../images/prettyPhoto/light_rounded/sprite.png) -88px -53px no-repeat;}div.light_rounded .pp_top .pp_middle{background:#fff;}div.light_rounded .pp_top .pp_right{background: url(../images/prettyPhoto/light_rounded/sprite.png) -110px -53px no-repeat;}div.light_rounded .pp_content .ppt{color:#000;}div.light_rounded .pp_content_container .pp_left,div.light_rounded .pp_content_container .pp_right{background:#fff;}div.light_rounded .pp_content{background-color:#fff;}div.light_rounded .pp_next:hover{background: url(../images/prettyPhoto/light_rounded/btnNext.png) center right no-repeat;cursor: pointer;}div.light_rounded .pp_previous:hover{background: url(../images/prettyPhoto/light_rounded/btnPrevious.png) center left no-repeat;cursor: pointer;}div.light_rounded .pp_expand{background: url(../images/prettyPhoto/light_rounded/sprite.png) -31px -26px no-repeat;cursor: pointer;}div.light_rounded .pp_expand:hover{background: url(../images/prettyPhoto/light_rounded/sprite.png) -31px -47px no-repeat;cursor: pointer;}div.light_rounded .pp_contract{background: url(../images/prettyPhoto/light_rounded/sprite.png) 0 -26px no-repeat;cursor: pointer;}div.light_rounded .pp_contract:hover{background: url(../images/prettyPhoto/light_rounded/sprite.png) 0 -47px no-repeat;cursor: pointer;}div.light_rounded .pp_close{width:75px;height:22px;background: url(../images/prettyPhoto/light_rounded/sprite.png) -1px -1px no-repeat;cursor: pointer;}div.light_rounded #pp_full_res .pp_inline{color:#000;}div.light_rounded .pp_arrow_previous{background: url(../images/prettyPhoto/light_rounded/sprite.png) 0 -71px no-repeat;}div.light_rounded .pp_arrow_previous.disabled{background-position:0 -87px;cursor:default;}div.light_rounded .pp_arrow_next{background: url(../images/prettyPhoto/light_rounded/sprite.png) -22px -71px no-repeat;}div.light_rounded .pp_arrow_next.disabled{background-position: -22px -87px;cursor:default;}div.light_rounded .pp_bottom .pp_left{background: url(../images/prettyPhoto/light_rounded/sprite.png) -88px -80px no-repeat;}div.light_rounded .pp_bottom .pp_middle{background:#fff;}div.light_rounded .pp_bottom .pp_right{background: url(../images/prettyPhoto/light_rounded/sprite.png) -110px -80px no-repeat;}div.light_rounded .pp_loaderIcon{background: url(http://www.kriesi.at/demos/elementia/water/js/prettyPhoto/images/prettyPhoto/light_rounded/loader.gif) center center no-repeat;}div.dark_rounded .pp_top .pp_left{background: url(../images/prettyPhoto/dark_rounded/sprite.png) -88px -53px no-repeat;}div.dark_rounded .pp_top .pp_middle{background: url(../images/prettyPhoto/dark_rounded/contentPattern.png) top left repeat;}div.dark_rounded .pp_top .pp_right{background: url(../images/prettyPhoto/dark_rounded/sprite.png) -110px -53px no-repeat;}div.dark_rounded .pp_content_container .pp_left{background: url(../images/prettyPhoto/dark_rounded/contentPattern.png) top left repeat-y;}div.dark_rounded .pp_content_container .pp_right{background: url(../images/prettyPhoto/dark_rounded/contentPattern.png) top right repeat-y;}div.dark_rounded .pp_content{background: url(../images/prettyPhoto/dark_rounded/contentPattern.png) top left repeat;}div.dark_rounded .pp_next:hover{background: url(../images/prettyPhoto/dark_rounded/btnNext.png) center right no-repeat;cursor: pointer;}div.dark_rounded .pp_previous:hover{background: url(../images/prettyPhoto/dark_rounded/btnPrevious.png) center left no-repeat;cursor: pointer;}div.dark_rounded .pp_expand{background: url(../images/prettyPhoto/dark_rounded/sprite.png) -31px -26px no-repeat;cursor: pointer;}div.dark_rounded .pp_expand:hover{background: url(../images/prettyPhoto/dark_rounded/sprite.png) -31px -47px no-repeat;cursor: pointer;}div.dark_rounded .pp_contract{background: url(../images/prettyPhoto/dark_rounded/sprite.png) 0 -26px no-repeat;cursor: pointer;}div.dark_rounded .pp_contract:hover{background: url(../images/prettyPhoto/dark_rounded/sprite.png) 0 -47px no-repeat;cursor: pointer;}div.dark_rounded .pp_close{width:75px;height:22px;background: url(../images/prettyPhoto/dark_rounded/sprite.png) -1px -1px no-repeat;cursor: pointer;}div.dark_rounded .currentTextHolder{color:#c4c4c4;}div.dark_rounded .pp_description{color:#fff;}div.dark_rounded #pp_full_res .pp_inline{color:#fff;}div.dark_rounded .pp_arrow_previous{background: url(../images/prettyPhoto/dark_rounded/sprite.png) 0 -71px no-repeat;}div.dark_rounded .pp_arrow_previous.disabled{background-position:0 -87px;cursor:default;}div.dark_rounded .pp_arrow_next{background: url(../images/prettyPhoto/dark_rounded/sprite.png) -22px -71px no-repeat;}div.dark_rounded .pp_arrow_next.disabled{background-position: -22px -87px;cursor:default;}div.dark_rounded .pp_bottom .pp_left{background: url(../images/prettyPhoto/dark_rounded/sprite.png) -88px -80px no-repeat;}div.dark_rounded .pp_bottom .pp_middle{background: url(../images/prettyPhoto/dark_rounded/contentPattern.png) top left repeat;}div.dark_rounded .pp_bottom .pp_right{background: url(../images/prettyPhoto/dark_rounded/sprite.png) -110px -80px no-repeat;}div.dark_rounded .pp_loaderIcon{background: url(../images/prettyPhoto/dark_rounded/loader.gif) center center no-repeat;}div.dark_square .pp_left ,div.dark_square .pp_middle,div.dark_square .pp_right,div.dark_square .pp_content{background: url(../images/prettyPhoto/dark_square/contentPattern.png) top left repeat;}div.dark_square .currentTextHolder{color:#c4c4c4;}div.dark_square .pp_description{color:#fff;}div.dark_square .pp_loaderIcon{background: url(../images/prettyPhoto/dark_rounded/loader.gif) center center no-repeat;}div.dark_square .pp_content_container .pp_left{background: url(../images/prettyPhoto/dark_rounded/contentPattern.png) top left repeat-y;}div.dark_square .pp_content_container .pp_right{background: url(../images/prettyPhoto/dark_rounded/contentPattern.png) top right repeat-y;}div.dark_square .pp_expand{background: url(../images/prettyPhoto/dark_square/sprite.png) -31px -26px no-repeat;cursor: pointer;}div.dark_square .pp_expand:hover{background: url(../images/prettyPhoto/dark_square/sprite.png) -31px -47px no-repeat;cursor: pointer;}div.dark_square .pp_contract{background: url(../images/prettyPhoto/dark_square/sprite.png) 0 -26px no-repeat;cursor: pointer;}div.dark_square .pp_contract:hover{background: url(../images/prettyPhoto/dark_square/sprite.png) 0 -47px no-repeat;cursor: pointer;}div.dark_square .pp_close{width:75px;height:22px;background: url(../images/prettyPhoto/dark_square/sprite.png) -1px -1px no-repeat;cursor: pointer;}div.dark_square #pp_full_res .pp_inline{color:#fff;}div.dark_square .pp_arrow_previous{background: url(../images/prettyPhoto/dark_square/sprite.png) 0 -71px no-repeat;}div.dark_square .pp_arrow_previous.disabled{background-position:0 -87px;cursor:default;}div.dark_square .pp_arrow_next{background: url(../images/prettyPhoto/dark_square/sprite.png) -22px -71px no-repeat;}div.dark_square .pp_arrow_next.disabled{background-position: -22px -87px;cursor:default;}div.dark_square .pp_next:hover{background: url(../images/prettyPhoto/dark_square/btnNext.png) center right no-repeat;cursor: pointer;}div.dark_square .pp_previous:hover{background: url(../images/prettyPhoto/dark_square/btnPrevious.png) center left no-repeat;cursor: pointer;}div.light_square .pp_left ,div.light_square .pp_middle,div.light_square .pp_right,div.light_square .pp_content{background:#fff;}div.light_square .pp_content .ppt{color:#000;}div.light_square .pp_expand{background: url(../images/prettyPhoto/light_square/sprite.png) -31px -26px no-repeat;cursor: pointer;}div.light_square .pp_expand:hover{background: url(../images/prettyPhoto/light_square/sprite.png) -31px -47px no-repeat;cursor: pointer;}div.light_square .pp_contract{background: url(../images/prettyPhoto/light_square/sprite.png) 0 -26px no-repeat;cursor: pointer;}div.light_square .pp_contract:hover{background: url(../images/prettyPhoto/light_square/sprite.png) 0 -47px no-repeat;cursor: pointer;}div.light_square .pp_close{width:75px;height:22px;background: url(../images/prettyPhoto/light_square/sprite.png) -1px -1px no-repeat;cursor: pointer;}div.light_square #pp_full_res .pp_inline{color:#000;}div.light_square .pp_arrow_previous{background: url(../images/prettyPhoto/light_square/sprite.png) 0 -71px no-repeat;}div.light_square .pp_arrow_previous.disabled{background-position:0 -87px;cursor:default;}div.light_square .pp_arrow_next{background: url(../images/prettyPhoto/light_square/sprite.png) -22px -71px no-repeat;}div.light_square .pp_arrow_next.disabled{background-position: -22px -87px;cursor:default;}div.light_square .pp_next:hover{background: url(../images/prettyPhoto/light_square/btnNext.png) center right no-repeat;cursor: pointer;}div.light_square .pp_previous:hover{background: url(../images/prettyPhoto/light_square/btnPrevious.png) center left no-repeat;cursor: pointer;}div.facebook .pp_top .pp_left{background: url(../images/prettyPhoto/facebook/sprite.png) -88px -53px no-repeat;}div.facebook .pp_top .pp_middle{background: url(../images/prettyPhoto/facebook/contentPatternTop.png) top left repeat-x;}div.facebook .pp_top .pp_right{background: url(../images/prettyPhoto/facebook/sprite.png) -110px -53px no-repeat;}div.facebook .pp_content .ppt{color:#000;}div.facebook .pp_content_container .pp_left{background: url(../images/prettyPhoto/facebook/contentPatternLeft.png) top left repeat-y;}div.facebook .pp_content_container .pp_right{background: url(../images/prettyPhoto/facebook/contentPatternRight.png) top right repeat-y;}div.facebook .pp_content{background:#fff;}div.facebook .pp_expand{background: url(../images/prettyPhoto/facebook/sprite.png) -31px -26px no-repeat;cursor: pointer;}div.facebook .pp_expand:hover{background: url(../images/prettyPhoto/facebook/sprite.png) -31px -47px no-repeat;cursor: pointer;}div.facebook .pp_contract{background: url(../images/prettyPhoto/facebook/sprite.png) 0 -26px no-repeat;cursor: pointer;}div.facebook .pp_contract:hover{background: url(../images/prettyPhoto/facebook/sprite.png) 0 -47px no-repeat;cursor: pointer;}div.facebook .pp_close{width:22px;height:22px;background: url(../images/prettyPhoto/facebook/sprite.png) -1px -1px no-repeat;cursor: pointer;}div.facebook #pp_full_res .pp_inline{color:#000;}div.facebook .pp_loaderIcon{background: url(../images/prettyPhoto/facebook/loader.gif) center center no-repeat;}div.facebook .pp_nav .pp_arrow_previous{background: url(../images/prettyPhoto/facebook/sprite.png) 0 -71px no-repeat;height:22px;margin-top:0;width:22px;}div.facebook .pp_arrow_previous.disabled{background-position:0 -96px;cursor:default;}div.facebook .pp_nav .pp_arrow_next{background: url(../images/prettyPhoto/facebook/sprite.png) -32px -71px no-repeat;height:22px;margin-top:0;width:22px;}div.facebook .pp_arrow_next.disabled{background-position: -32px -96px;cursor:default;}div.facebook .pp_nav{margin-top:0;}div.facebook .pp_nav p{font-size:15px;padding:0 3px 0 4px;}div.facebook .pp_next:hover{background: url(../images/prettyPhoto/facebook/btnNext.png) center right no-repeat;cursor: pointer;}div.facebook .pp_previous:hover{background: url(../images/prettyPhoto/facebook/btnPrevious.png) center left no-repeat;cursor: pointer;}div.facebook .pp_bottom .pp_left{background: url(../images/prettyPhoto/facebook/sprite.png) -88px -80px no-repeat;}div.facebook .pp_bottom .pp_middle{background: url(../images/prettyPhoto/facebook/contentPatternBottom.png) top left repeat-x;}div.facebook .pp_bottom .pp_right{background: url(../images/prettyPhoto/facebook/sprite.png) -110px -80px no-repeat;}div.pp_pic_holder a:focus{outline:none;}div.pp_overlay{background:#000;display: none;left:0;position:absolute;top:0;width:100%;z-index:9500;}div.pp_pic_holder{display: none;position:absolute;width:100px;z-index:10000;}.pp_top{height:20px;position: relative;}* html .pp_top{padding:0 20px;}.pp_top .pp_left{height:20px;left:0;position:absolute;width:20px;}.pp_top .pp_middle{height:20px;left:20px;position:absolute;right:20px;}* html .pp_top .pp_middle{left:0;position: static;}.pp_top .pp_right{height:20px;left:auto;position:absolute;right:0;top:0;width:20px;}.pp_content{height:40px;}.pp_content .ppt{left:auto;margin-bottom:5px;position: relative;top:auto;}.pp_fade{display: none;}.pp_content_container{position: relative;text-align: left;width:100%;}.pp_content_container .pp_left{padding-left:20px;}.pp_content_container .pp_right{padding-right:20px;}.pp_content_container .pp_details{margin:10px 0 2px 0;}.pp_description{display: none;margin:0 0 5px 0;}.pp_nav{clear: left;float: left;margin:3px 0 0 0;}.pp_nav p{float: left;margin:2px 4px;}.pp_nav a.pp_arrow_previous,.pp_nav a.pp_arrow_next{display:block;float: left;height:15px;margin-top:3px;overflow: hidden;text-indent: -10000px;width:14px;}.pp_hoverContainer{position:absolute;top:0;width:100%;z-index:2000;}a.pp_next{background: url(../images/prettyPhoto/light_rounded/btnNext.png) 10000px 10000px no-repeat;display:block;float: right;height:100%;text-indent: -10000px;width:49%;}a.pp_previous{background: url(../images/prettyPhoto/light_rounded/btnNext.png) 10000px 10000px no-repeat;display:block;float: left;height:100%;text-indent: -10000px;width:49%;}a.pp_expand,a.pp_contract{cursor: pointer;display: none;height:20px;position:absolute;right:30px;text-indent: -10000px;top:10px;width:20px;z-index:20000;}a.pp_close{display:block;float: right;text-indent: -10000px;}.pp_bottom{height:20px;position: relative;}* html .pp_bottom{padding:0 20px;}.pp_bottom .pp_left{height:20px;left:0;position:absolute;width:20px;}.pp_bottom .pp_middle{height:20px;left:20px;position:absolute;right:20px;}* html .pp_bottom .pp_middle{left:0;position: static;}.pp_bottom .pp_right{height:20px;left:auto;position:absolute;right:0;top:0;width:20px;}.pp_loaderIcon{display:block;height:24px;left:50%;margin: -12px 0 0 -12px;position:absolute;top:50%;width:24px;}#pp_full_res{line-height:1 !important;}#pp_full_res .pp_inline{text-align: left;}#pp_full_res .pp_inline p{margin:0 0 15px 0;}div.ppt{color:#fff;display: none;font-size:17px;left:0;position:absolute;top:0;z-index:9999;}.clearfix:after{content: ".";display:block;height:0;clear:both;visibility: hidden;}.clearfix {display: inline-block;}* html .clearfix {height:1%;}.clearfix {display:block;} \ No newline at end of file diff --git a/www/static/js/prettyPhoto/images/prettyPhoto/dark_rounded/btnNext.png b/www/static/js/prettyPhoto/images/prettyPhoto/dark_rounded/btnNext.png new file mode 100644 index 0000000..b28c1ef Binary files /dev/null and b/www/static/js/prettyPhoto/images/prettyPhoto/dark_rounded/btnNext.png differ diff --git a/www/static/js/prettyPhoto/images/prettyPhoto/dark_rounded/btnPrevious.png b/www/static/js/prettyPhoto/images/prettyPhoto/dark_rounded/btnPrevious.png new file mode 100644 index 0000000..e0cd9c4 Binary files /dev/null and b/www/static/js/prettyPhoto/images/prettyPhoto/dark_rounded/btnPrevious.png differ diff --git a/www/static/js/prettyPhoto/images/prettyPhoto/dark_rounded/contentPattern.png b/www/static/js/prettyPhoto/images/prettyPhoto/dark_rounded/contentPattern.png new file mode 100644 index 0000000..7b50aff Binary files /dev/null and b/www/static/js/prettyPhoto/images/prettyPhoto/dark_rounded/contentPattern.png differ diff --git a/www/static/js/prettyPhoto/images/prettyPhoto/dark_rounded/loader.gif b/www/static/js/prettyPhoto/images/prettyPhoto/dark_rounded/loader.gif new file mode 100644 index 0000000..50820ee Binary files /dev/null and b/www/static/js/prettyPhoto/images/prettyPhoto/dark_rounded/loader.gif differ diff --git a/www/static/js/prettyPhoto/images/prettyPhoto/dark_rounded/sprite.png b/www/static/js/prettyPhoto/images/prettyPhoto/dark_rounded/sprite.png new file mode 100644 index 0000000..22d839d Binary files /dev/null and b/www/static/js/prettyPhoto/images/prettyPhoto/dark_rounded/sprite.png differ diff --git a/www/static/js/prettyPhoto/images/prettyPhoto/dark_square/btnNext.png b/www/static/js/prettyPhoto/images/prettyPhoto/dark_square/btnNext.png new file mode 100644 index 0000000..b28c1ef Binary files /dev/null and b/www/static/js/prettyPhoto/images/prettyPhoto/dark_square/btnNext.png differ diff --git a/www/static/js/prettyPhoto/images/prettyPhoto/dark_square/btnPrevious.png b/www/static/js/prettyPhoto/images/prettyPhoto/dark_square/btnPrevious.png new file mode 100644 index 0000000..e0cd9c4 Binary files /dev/null and b/www/static/js/prettyPhoto/images/prettyPhoto/dark_square/btnPrevious.png differ diff --git a/www/static/js/prettyPhoto/images/prettyPhoto/dark_square/contentPattern.png b/www/static/js/prettyPhoto/images/prettyPhoto/dark_square/contentPattern.png new file mode 100644 index 0000000..7b50aff Binary files /dev/null and b/www/static/js/prettyPhoto/images/prettyPhoto/dark_square/contentPattern.png differ diff --git a/www/static/js/prettyPhoto/images/prettyPhoto/dark_square/sprite.png b/www/static/js/prettyPhoto/images/prettyPhoto/dark_square/sprite.png new file mode 100644 index 0000000..856aa49 Binary files /dev/null and b/www/static/js/prettyPhoto/images/prettyPhoto/dark_square/sprite.png differ diff --git a/www/static/js/prettyPhoto/images/prettyPhoto/facebook/btnNext.png b/www/static/js/prettyPhoto/images/prettyPhoto/facebook/btnNext.png new file mode 100644 index 0000000..e809c3b Binary files /dev/null and b/www/static/js/prettyPhoto/images/prettyPhoto/facebook/btnNext.png differ diff --git a/www/static/js/prettyPhoto/images/prettyPhoto/facebook/btnPrevious.png b/www/static/js/prettyPhoto/images/prettyPhoto/facebook/btnPrevious.png new file mode 100644 index 0000000..0812542 Binary files /dev/null and b/www/static/js/prettyPhoto/images/prettyPhoto/facebook/btnPrevious.png differ diff --git a/www/static/js/prettyPhoto/images/prettyPhoto/facebook/contentPatternBottom.png b/www/static/js/prettyPhoto/images/prettyPhoto/facebook/contentPatternBottom.png new file mode 100644 index 0000000..a9be3b2 Binary files /dev/null and b/www/static/js/prettyPhoto/images/prettyPhoto/facebook/contentPatternBottom.png differ diff --git a/www/static/js/prettyPhoto/images/prettyPhoto/facebook/contentPatternLeft.png b/www/static/js/prettyPhoto/images/prettyPhoto/facebook/contentPatternLeft.png new file mode 100644 index 0000000..277c87a Binary files /dev/null and b/www/static/js/prettyPhoto/images/prettyPhoto/facebook/contentPatternLeft.png differ diff --git a/www/static/js/prettyPhoto/images/prettyPhoto/facebook/contentPatternRight.png b/www/static/js/prettyPhoto/images/prettyPhoto/facebook/contentPatternRight.png new file mode 100644 index 0000000..76e50d0 Binary files /dev/null and b/www/static/js/prettyPhoto/images/prettyPhoto/facebook/contentPatternRight.png differ diff --git a/www/static/js/prettyPhoto/images/prettyPhoto/facebook/contentPatternTop.png b/www/static/js/prettyPhoto/images/prettyPhoto/facebook/contentPatternTop.png new file mode 100644 index 0000000..8b110ba Binary files /dev/null and b/www/static/js/prettyPhoto/images/prettyPhoto/facebook/contentPatternTop.png differ diff --git a/www/static/js/prettyPhoto/images/prettyPhoto/facebook/loader.gif b/www/static/js/prettyPhoto/images/prettyPhoto/facebook/loader.gif new file mode 100644 index 0000000..7ac990c Binary files /dev/null and b/www/static/js/prettyPhoto/images/prettyPhoto/facebook/loader.gif differ diff --git a/www/static/js/prettyPhoto/images/prettyPhoto/facebook/sprite.png b/www/static/js/prettyPhoto/images/prettyPhoto/facebook/sprite.png new file mode 100644 index 0000000..cc5e782 Binary files /dev/null and b/www/static/js/prettyPhoto/images/prettyPhoto/facebook/sprite.png differ diff --git a/www/static/js/prettyPhoto/images/prettyPhoto/light_rounded/btnNext.png b/www/static/js/prettyPhoto/images/prettyPhoto/light_rounded/btnNext.png new file mode 100644 index 0000000..b28c1ef Binary files /dev/null and b/www/static/js/prettyPhoto/images/prettyPhoto/light_rounded/btnNext.png differ diff --git a/www/static/js/prettyPhoto/images/prettyPhoto/light_rounded/btnPrevious.png b/www/static/js/prettyPhoto/images/prettyPhoto/light_rounded/btnPrevious.png new file mode 100644 index 0000000..e0cd9c4 Binary files /dev/null and b/www/static/js/prettyPhoto/images/prettyPhoto/light_rounded/btnPrevious.png differ diff --git a/www/static/js/prettyPhoto/images/prettyPhoto/light_rounded/sprite.png b/www/static/js/prettyPhoto/images/prettyPhoto/light_rounded/sprite.png new file mode 100644 index 0000000..a775741 Binary files /dev/null and b/www/static/js/prettyPhoto/images/prettyPhoto/light_rounded/sprite.png differ diff --git a/www/static/js/prettyPhoto/images/prettyPhoto/light_square/btnNext.png b/www/static/js/prettyPhoto/images/prettyPhoto/light_square/btnNext.png new file mode 100644 index 0000000..1d178db Binary files /dev/null and b/www/static/js/prettyPhoto/images/prettyPhoto/light_square/btnNext.png differ diff --git a/www/static/js/prettyPhoto/images/prettyPhoto/light_square/btnPrevious.png b/www/static/js/prettyPhoto/images/prettyPhoto/light_square/btnPrevious.png new file mode 100644 index 0000000..6c20249 Binary files /dev/null and b/www/static/js/prettyPhoto/images/prettyPhoto/light_square/btnPrevious.png differ diff --git a/www/static/js/prettyPhoto/images/prettyPhoto/light_square/sprite.png b/www/static/js/prettyPhoto/images/prettyPhoto/light_square/sprite.png new file mode 100644 index 0000000..b5fc6a4 Binary files /dev/null and b/www/static/js/prettyPhoto/images/prettyPhoto/light_square/sprite.png differ diff --git a/www/static/js/prettyPhoto/js/jquery.prettyPhoto.js b/www/static/js/prettyPhoto/js/jquery.prettyPhoto.js new file mode 100644 index 0000000..3b3a532 --- /dev/null +++ b/www/static/js/prettyPhoto/js/jquery.prettyPhoto.js @@ -0,0 +1,58 @@ +/* ------------------------------------------------------------------------ + * Class: prettyPhoto + * Use: Lightbox clone for jQuery + * Author: Stephane Caron (http://www.no-margin-for-errors.com) + * Version: 2.5.6 + ------------------------------------------------------------------------- */ + +(function($){$.prettyPhoto={version:'2.5.6'};$.fn.prettyPhoto=function(settings){settings=jQuery.extend({animationSpeed:'normal',opacity:0.80,showTitle:true,allowresize:true,default_width:500,default_height:344,counter_separator_label:'/',theme:'light_rounded',hideflash:false,wmode:'opaque',autoplay:true,modal:false,changepicturecallback:function(){},callback:function(){},markup:'
\ +
\ +
\ +
\ +
\ +
\ +
\ +
\ +
\ +
\ +
\ +
\ + Expand \ +
\ + next \ + previous \ +
\ +
\ +
\ + Close \ +

\ +
\ + Previous \ +

0/0

\ + Next \ +
\ +
\ +
\ +
\ +
\ +
\ +
\ +
\ +
\ +
\ +
\ +
\ +
\ +
\ +
',image_markup:'',flash_markup:'',quicktime_markup:'',iframe_markup:'',inline_markup:'
{content}
'},settings);if($.browser.msie&&parseInt($.browser.version)==6){settings.theme="light_square";} +if($('.pp_overlay').size()==0)_buildOverlay();var doresize=true,percentBased=false,correctSizes,$pp_pic_holder,$ppt,$pp_overlay,pp_contentHeight,pp_contentWidth,pp_containerHeight,pp_containerWidth,windowHeight=$(window).height(),windowWidth=$(window).width(),setPosition=0,scrollPos=_getScroll();$(window).scroll(function(){scrollPos=_getScroll();_centerOverlay();_resizeOverlay();});$(window).resize(function(){_centerOverlay();_resizeOverlay();});$(document).keydown(function(e){if($pp_pic_holder.is(':visible')) +switch(e.keyCode){case 37:$.prettyPhoto.changePage('previous');break;case 39:$.prettyPhoto.changePage('next');break;case 27:if(!settings.modal) +$.prettyPhoto.close();break;};});$(this).each(function(){$(this).bind('click',function(){_self=this;theRel=$(this).attr('rel');galleryRegExp=/\[(?:.*)\]/;theGallery=galleryRegExp.exec(theRel);var images=new Array(),titles=new Array(),descriptions=new Array();if(theGallery){$('a[rel*='+theGallery+']').each(function(i){if($(this)[0]===$(_self)[0])setPosition=i;images.push($(this).attr('href'));titles.push($(this).find('img').attr('alt'));descriptions.push($(this).attr('title'));});}else{images=$(this).attr('href');titles=($(this).find('img').attr('alt'))?$(this).find('img').attr('alt'):'';descriptions=($(this).attr('title'))?$(this).attr('title'):'';} +$.prettyPhoto.open(images,titles,descriptions);return false;});});$.prettyPhoto.open=function(gallery_images,gallery_titles,gallery_descriptions){if($.browser.msie&&$.browser.version==6){$('select').css('visibility','hidden');};if(settings.hideflash)$('object,embed').css('visibility','hidden');images=$.makeArray(gallery_images);titles=$.makeArray(gallery_titles);descriptions=$.makeArray(gallery_descriptions);image_set=($(images).size()>0)?true:false;_checkPosition($(images).size());$('.pp_loaderIcon').show();$pp_overlay.show().fadeTo(settings.animationSpeed,settings.opacity);$pp_pic_holder.find('.currentTextHolder').text((setPosition+1)+settings.counter_separator_label+$(images).size());if(descriptions[setPosition]){$pp_pic_holder.find('.pp_description').show().html(unescape(descriptions[setPosition]));}else{$pp_pic_holder.find('.pp_description').hide().text('');};if(titles[setPosition]&&settings.showTitle){hasTitle=true;$ppt.html(unescape(titles[setPosition]));}else{hasTitle=false;};movie_width=(parseFloat(grab_param('width',images[setPosition])))?grab_param('width',images[setPosition]):settings.default_width.toString();movie_height=(parseFloat(grab_param('height',images[setPosition])))?grab_param('height',images[setPosition]):settings.default_height.toString();if(movie_width.indexOf('%')!=-1||movie_height.indexOf('%')!=-1){movie_height=parseFloat(($(window).height()*parseFloat(movie_height)/100)-100);movie_width=parseFloat(($(window).width()*parseFloat(movie_width)/100)-100);percentBased=true;} +$pp_pic_holder.fadeIn(function(){imgPreloader="";switch(_getFileType(images[setPosition])){case'image':imgPreloader=new Image();nextImage=new Image();if(image_set&&setPosition>$(images).size())nextImage.src=images[setPosition+1];prevImage=new Image();if(image_set&&images[setPosition-1])prevImage.src=images[setPosition-1];$pp_pic_holder.find('#pp_full_res')[0].innerHTML=settings.image_markup;$pp_pic_holder.find('#fullResImage').attr('src',images[setPosition]);imgPreloader.onload=function(){correctSizes=_fitToViewport(imgPreloader.width,imgPreloader.height);_showContent();};imgPreloader.onerror=function(){alert('Image cannot be loaded. Make sure the path is correct and image exist.');$.prettyPhoto.close();};imgPreloader.src=images[setPosition];break;case'youtube':correctSizes=_fitToViewport(movie_width,movie_height);movie='http://www.youtube.com/v/'+grab_param('v',images[setPosition]);if(settings.autoplay)movie+="&autoplay=1";toInject=settings.flash_markup.replace(/{width}/g,correctSizes['width']).replace(/{height}/g,correctSizes['height']).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,movie);break;case'vimeo':correctSizes=_fitToViewport(movie_width,movie_height);movie_id=images[setPosition];movie='http://vimeo.com/moogaloop.swf?clip_id='+movie_id.replace('http://vimeo.com/','');if(settings.autoplay)movie+="&autoplay=1";toInject=settings.flash_markup.replace(/{width}/g,correctSizes['width']).replace(/{height}/g,correctSizes['height']).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,movie);break;case'quicktime':correctSizes=_fitToViewport(movie_width,movie_height);correctSizes['height']+=15;correctSizes['contentHeight']+=15;correctSizes['containerHeight']+=15;toInject=settings.quicktime_markup.replace(/{width}/g,correctSizes['width']).replace(/{height}/g,correctSizes['height']).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,images[setPosition]).replace(/{autoplay}/g,settings.autoplay);break;case'flash':correctSizes=_fitToViewport(movie_width,movie_height);flash_vars=images[setPosition];flash_vars=flash_vars.substring(images[setPosition].indexOf('flashvars')+10,images[setPosition].length);filename=images[setPosition];filename=filename.substring(0,filename.indexOf('?'));toInject=settings.flash_markup.replace(/{width}/g,correctSizes['width']).replace(/{height}/g,correctSizes['height']).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,filename+'?'+flash_vars);break;case'iframe':correctSizes=_fitToViewport(movie_width,movie_height);frame_url=images[setPosition];frame_url=frame_url.substr(0,frame_url.indexOf('iframe')-1);toInject=settings.iframe_markup.replace(/{width}/g,correctSizes['width']).replace(/{height}/g,correctSizes['height']).replace(/{path}/g,frame_url);break;case'inline':myClone=$(images[setPosition]).clone().css({'width':settings.default_width}).wrapInner('
').appendTo($('body'));correctSizes=_fitToViewport($(myClone).width(),$(myClone).height());$(myClone).remove();toInject=settings.inline_markup.replace(/{content}/g,$(images[setPosition]).html());break;};if(!imgPreloader){$pp_pic_holder.find('#pp_full_res')[0].innerHTML=toInject;_showContent();};});};$.prettyPhoto.changePage=function(direction){if(direction=='previous'){setPosition--;if(setPosition<0){setPosition=0;return;};}else{if($('.pp_arrow_next').is('.disabled'))return;setPosition++;};if(!doresize)doresize=true;_hideContent(function(){$.prettyPhoto.open(images,titles,descriptions)});$('a.pp_expand,a.pp_contract').fadeOut(settings.animationSpeed);};$.prettyPhoto.close=function(){$pp_pic_holder.find('object,embed').css('visibility','hidden');$('div.pp_pic_holder,div.ppt,.pp_fade').fadeOut(settings.animationSpeed);$pp_overlay.fadeOut(settings.animationSpeed,function(){$('#pp_full_res').html('');$pp_pic_holder.attr('style','').find('div:not(.pp_hoverContainer)').attr('style','');_centerOverlay();if($.browser.msie&&$.browser.version==6){$('select').css('visibility','visible');};if(settings.hideflash)$('object,embed').css('visibility','visible');setPosition=0;settings.callback();});doresize=true;};_showContent=function(){$('.pp_loaderIcon').hide();projectedTop=scrollPos['scrollTop']+((windowHeight/2)-(correctSizes['containerHeight']/2));if(projectedTop<0)projectedTop=0+$ppt.height();$pp_pic_holder.find('.pp_content').animate({'height':correctSizes['contentHeight']},settings.animationSpeed);$pp_pic_holder.animate({'top':projectedTop,'left':(windowWidth/2)-(correctSizes['containerWidth']/2),'width':correctSizes['containerWidth']},settings.animationSpeed,function(){$pp_pic_holder.find('.pp_hoverContainer,#fullResImage').height(correctSizes['height']).width(correctSizes['width']);$pp_pic_holder.find('.pp_fade').fadeIn(settings.animationSpeed);if(image_set&&_getFileType(images[setPosition])=="image"){$pp_pic_holder.find('.pp_hoverContainer').show();}else{$pp_pic_holder.find('.pp_hoverContainer').hide();} +if(settings.showTitle&&hasTitle){$ppt.css({'top':$pp_pic_holder.offset().top-25,'left':$pp_pic_holder.offset().left+20,'display':'none'});$ppt.fadeIn(settings.animationSpeed);};if(correctSizes['resized'])$('a.pp_expand,a.pp_contract').fadeIn(settings.animationSpeed);settings.changepicturecallback();});};function _hideContent(callback){$pp_pic_holder.find('#pp_full_res object,#pp_full_res embed').css('visibility','hidden');$pp_pic_holder.find('.pp_fade').fadeOut(settings.animationSpeed,function(){$('.pp_loaderIcon').show();if(callback)callback();});$ppt.fadeOut(settings.animationSpeed);} +function _checkPosition(setCount){if(setPosition==setCount-1){$pp_pic_holder.find('a.pp_next').css('visibility','hidden');$pp_pic_holder.find('a.pp_arrow_next').addClass('disabled').unbind('click');}else{$pp_pic_holder.find('a.pp_next').css('visibility','visible');$pp_pic_holder.find('a.pp_arrow_next.disabled').removeClass('disabled').bind('click',function(){$.prettyPhoto.changePage('next');return false;});};if(setPosition==0){$pp_pic_holder.find('a.pp_previous').css('visibility','hidden');$pp_pic_holder.find('a.pp_arrow_previous').addClass('disabled').unbind('click');}else{$pp_pic_holder.find('a.pp_previous').css('visibility','visible');$pp_pic_holder.find('a.pp_arrow_previous.disabled').removeClass('disabled').bind('click',function(){$.prettyPhoto.changePage('previous');return false;});};if(setCount>1){$('.pp_nav').show();}else{$('.pp_nav').hide();}};function _fitToViewport(width,height){hasBeenResized=false;_getDimensions(width,height);imageWidth=width;imageHeight=height;if(((pp_containerWidth>windowWidth)||(pp_containerHeight>windowHeight))&&doresize&&settings.allowresize&&!percentBased){hasBeenResized=true;notFitting=true;while(notFitting){if((pp_containerWidth>windowWidth)){imageWidth=(windowWidth-200);imageHeight=(height/width)*imageWidth;}else if((pp_containerHeight>windowHeight)){imageHeight=(windowHeight-200);imageWidth=(width/height)*imageHeight;}else{notFitting=false;};pp_containerHeight=imageHeight;pp_containerWidth=imageWidth;};_getDimensions(imageWidth,imageHeight);};return{width:Math.floor(imageWidth),height:Math.floor(imageHeight),containerHeight:Math.floor(pp_containerHeight),containerWidth:Math.floor(pp_containerWidth)+40,contentHeight:Math.floor(pp_contentHeight),contentWidth:Math.floor(pp_contentWidth),resized:hasBeenResized};};function _getDimensions(width,height){width=parseFloat(width);height=parseFloat(height);$pp_details=$pp_pic_holder.find('.pp_details');$pp_details.width(width);detailsHeight=parseFloat($pp_details.css('marginTop'))+parseFloat($pp_details.css('marginBottom'));$pp_details=$pp_details.clone().appendTo($('body')).css({'position':'absolute','top':-10000});detailsHeight+=$pp_details.height();detailsHeight=(detailsHeight<=34)?36:detailsHeight;if($.browser.msie&&$.browser.version==7)detailsHeight+=8;$pp_details.remove();pp_contentHeight=height+detailsHeight;pp_contentWidth=width;pp_containerHeight=pp_contentHeight+$ppt.height()+$pp_pic_holder.find('.pp_top').height()+$pp_pic_holder.find('.pp_bottom').height();pp_containerWidth=width;} +function _getFileType(itemSrc){if(itemSrc.match(/youtube\.com\/watch/i)){return'youtube';}else if(itemSrc.match(/vimeo\.com/i)){return'vimeo';}else if(itemSrc.indexOf('.mov')!=-1){return'quicktime';}else if(itemSrc.indexOf('.swf')!=-1){return'flash';}else if(itemSrc.indexOf('iframe')!=-1){return'iframe'}else if(itemSrc.substr(0,1)=='#'){return'inline';}else{return'image';};};function _centerOverlay(){if(doresize){titleHeight=$ppt.height();contentHeight=$pp_pic_holder.height();contentwidth=$pp_pic_holder.width();projectedTop=(windowHeight/2)+scrollPos['scrollTop']-((contentHeight+titleHeight)/2);$pp_pic_holder.css({'top':projectedTop,'left':(windowWidth/2)+scrollPos['scrollLeft']-(contentwidth/2)});$ppt.css({'top':projectedTop-titleHeight,'left':(windowWidth/2)+scrollPos['scrollLeft']-(contentwidth/2)+20});};};function _getScroll(){if(self.pageYOffset){return{scrollTop:self.pageYOffset,scrollLeft:self.pageXOffset};}else if(document.documentElement&&document.documentElement.scrollTop){return{scrollTop:document.documentElement.scrollTop,scrollLeft:document.documentElement.scrollLeft};}else if(document.body){return{scrollTop:document.body.scrollTop,scrollLeft:document.body.scrollLeft};};};function _resizeOverlay(){windowHeight=$(window).height();windowWidth=$(window).width();$pp_overlay.css({'height':$(document).height()});};function _buildOverlay(){$('body').append(settings.markup);$pp_pic_holder=$('.pp_pic_holder');$ppt=$('.ppt');$pp_overlay=$('div.pp_overlay');$pp_pic_holder.attr('class','pp_pic_holder '+settings.theme);$pp_overlay.css({'opacity':0,'height':$(document).height()}).bind('click',function(){if(!settings.modal) +$.prettyPhoto.close();});$('a.pp_close').bind('click',function(){$.prettyPhoto.close();return false;});$('a.pp_expand').bind('click',function(){$this=$(this);if($this.hasClass('pp_expand')){$this.removeClass('pp_expand').addClass('pp_contract');doresize=false;}else{$this.removeClass('pp_contract').addClass('pp_expand');doresize=true;};_hideContent(function(){$.prettyPhoto.open(images,titles,descriptions)});$pp_pic_holder.find('.pp_fade').fadeOut(settings.animationSpeed);return false;});$pp_pic_holder.find('.pp_previous, .pp_arrow_previous').bind('click',function(){$.prettyPhoto.changePage('previous');return false;});$pp_pic_holder.find('.pp_next, .pp_arrow_next').bind('click',function(){$.prettyPhoto.changePage('next');return false;});};_centerOverlay();};function grab_param(name,url){name=name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");var regexS="[\\?&]"+name+"=([^&#]*)";var regex=new RegExp(regexS);var results=regex.exec(url);if(results==null) +return"";else +return results[1];}})(jQuery); diff --git a/www/templates/index_accordion.html b/www/templates/index_accordion.html new file mode 100644 index 0000000..cd332d3 --- /dev/null +++ b/www/templates/index_accordion.html @@ -0,0 +1,391 @@ + + + + + + + PersonalCar - Home + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+

A mais nova oficina mecânica da cidade. Venha nos visitar e conhecer Paulinho Dez e Fabiano Barbosa "O pepiteiro".

+ + Latest Work: + Show portfolio + + +
+ +
+
+ + +

Ut enim ad minim veniam

+
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labolore magna aliqua. Ut enim ad minim veniam.
+ Web Design, Webworks + Dec. 03. 09 + + +
+ +
+ +
+
+ + +

Ut enim ad minim veniam

+
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labolore magna aliqua. Ut enim ad minim veniam.
+ Web Design, Webworks + Dec. 03. 09 + + +
+ +
+ +
+
+ + +

Ut enim ad minim veniam

+
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labolore magna aliqua. Ut enim ad minim veniam.
+ Web Design, Webworks + Dec. 03. 09 + + +
+ +
+ +
+ + +
+ +
+

HTML Template „Elementia“

+

Lorem ipsum dolor sit amet, consectetur adipisicing elit, +sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo conse. +

+
+ +
+

Working Contact Form

+

Consectetur adipisicing elit, +sed do eiusmod tempor incididunt ut labore et dolore im veniam.
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo cem ipsum dolor sit amet. +

+
+ +
+

Rising Stats with this theme

+

Lorem ipsum dolor sit amet, consectetur adipisicing elit, +sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo conse. +

+
+ +
+

Screen, Browser & OS

+

Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo conse. Lorem ipsum dolor sit amet.
+Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

+
+ + +
+ + +
+ + +
+ + + + + + + + + + \ No newline at end of file diff --git a/www/tests.py b/www/tests.py new file mode 100644 index 0000000..501deb7 --- /dev/null +++ b/www/tests.py @@ -0,0 +1,16 @@ +""" +This file demonstrates writing tests using the unittest module. These will pass +when you run "manage.py test". + +Replace this with more appropriate tests for your application. +""" + +from django.test import TestCase + + +class SimpleTest(TestCase): + def test_basic_addition(self): + """ + Tests that 1 + 1 always equals 2. + """ + self.assertEqual(1 + 1, 2) diff --git a/www/urls.py b/www/urls.py new file mode 100644 index 0000000..31fef2c --- /dev/null +++ b/www/urls.py @@ -0,0 +1,8 @@ +from django.conf.urls.defaults import patterns, include, url +from django.contrib.auth import views + +urlpatterns = patterns('www', + # client + # (r'^add_client/$', 'views.add_client'), + # (r'^list_client/$', 'views.list_client'), +) diff --git a/www/views.py b/www/views.py new file mode 100644 index 0000000..60f00ef --- /dev/null +++ b/www/views.py @@ -0,0 +1 @@ +# Create your views here.