
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_25771356948a78ddec8ad581.woff')format("woff");}.ff1{font-family:ff1;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_154f375f0f9b7750734c7397.woff')format("woff");}.ff2{font-family:ff2;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8197b58d6dc62e7497019440.woff')format("woff");}.ff3{font-family:ff3;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3a6da6ccd8aa5718f227b7a2.woff')format("woff");}.ff4{font-family:ff4;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b30ef84beaa2cafd3ad3ff58.woff')format("woff");}.ff5{font-family:ff5;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f6076a7425f1124aff625709.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_722f46e27098b0a85e092327.woff')format("woff");}.ff7{font-family:ff7;line-height:0.696000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a434420262d090b412deb7d4.woff')format("woff");}.ff8{font-family:ff8;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.034000px;}
.ls1{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000472px;}
.ls2{letter-spacing:0.001473px;}
.ls5{letter-spacing:2.984915px;}
.lsc{letter-spacing:7.658523px;}
.ls11{letter-spacing:19.151123px;}
.ls8{letter-spacing:19.919518px;}
.lsb{letter-spacing:19.925518px;}
.ls9{letter-spacing:21.740915px;}
.lsf{letter-spacing:23.405123px;}
.lsa{letter-spacing:23.412472px;}
.ls7{letter-spacing:24.131226px;}
.lse{letter-spacing:24.798472px;}
.ls10{letter-spacing:26.898472px;}
.ls3{letter-spacing:26.899200px;}
.lsd{letter-spacing:29.681464px;}
.ls6{letter-spacing:30.554915px;}
.ls0{letter-spacing:35.117518px;}
.ls4{letter-spacing:35.119200px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6d{word-spacing:-49.315200px;}
.wsb7{word-spacing:-45.664082px;}
.wsb8{word-spacing:-33.756703px;}
.wsba{word-spacing:-33.684972px;}
.ws47{word-spacing:-22.416000px;}
.ws2c{word-spacing:-19.510886px;}
.ws32{word-spacing:-5.379825px;}
.wsa0{word-spacing:-4.932778px;}
.wsd7{word-spacing:-4.888128px;}
.wsb0{word-spacing:-4.196275px;}
.wsa5{word-spacing:-3.945216px;}
.wsad{word-spacing:-3.909350px;}
.ws8c{word-spacing:-3.873485px;}
.ws24{word-spacing:-3.730022px;}
.wsb1{word-spacing:-3.658291px;}
.wsae{word-spacing:-3.443098px;}
.ws43{word-spacing:-3.371366px;}
.ws20{word-spacing:-3.299635px;}
.ws74{word-spacing:-3.120307px;}
.ws83{word-spacing:-3.012710px;}
.ws75{word-spacing:-2.725786px;}
.ws2a{word-spacing:-2.582323px;}
.ws4a{word-spacing:-2.510592px;}
.wsdd{word-spacing:-2.438861px;}
.wsd8{word-spacing:-2.151936px;}
.wsa1{word-spacing:-2.008474px;}
.ws87{word-spacing:-1.398758px;}
.ws82{word-spacing:-1.219430px;}
.wsd3{word-spacing:-0.919033px;}
.ws9b{word-spacing:-0.896640px;}
.ws9c{word-spacing:-0.789043px;}
.ws79{word-spacing:-0.717312px;}
.wsbf{word-spacing:-0.645581px;}
.wsc1{word-spacing:-0.363723px;}
.wsc0{word-spacing:-0.358656px;}
.wsd5{word-spacing:-0.322790px;}
.wsd6{word-spacing:-0.286925px;}
.ws28{word-spacing:-0.071731px;}
.ws1b{word-spacing:0.000000px;}
.wsc7{word-spacing:0.018403px;}
.wsc8{word-spacing:0.143462px;}
.ws63{word-spacing:0.430387px;}
.wscc{word-spacing:0.473425px;}
.ws2d{word-spacing:0.502118px;}
.wscd{word-spacing:0.717312px;}
.ws35{word-spacing:0.789043px;}
.wsd1{word-spacing:0.932246px;}
.ws22{word-spacing:0.932506px;}
.ws1d{word-spacing:0.973987px;}
.wscf{word-spacing:0.992784px;}
.wsd0{word-spacing:0.995184px;}
.ws1a{word-spacing:1.013798px;}
.wsa4{word-spacing:1.015517px;}
.wsa2{word-spacing:1.015718px;}
.ws1c{word-spacing:1.032758px;}
.wsca{word-spacing:1.219430px;}
.wsd2{word-spacing:1.223618px;}
.ws1e{word-spacing:1.242144px;}
.ws93{word-spacing:1.362893px;}
.ws25{word-spacing:1.506355px;}
.ws92{word-spacing:1.613952px;}
.ws33{word-spacing:1.649818px;}
.wsdc{word-spacing:1.665988px;}
.ws16{word-spacing:1.721549px;}
.ws14{word-spacing:1.793280px;}
.ws10{word-spacing:1.865011px;}
.ws3a{word-spacing:2.008474px;}
.ws6f{word-spacing:2.080205px;}
.ws95{word-spacing:2.108891px;}
.ws11{word-spacing:2.116070px;}
.wsd4{word-spacing:2.128696px;}
.ws36{word-spacing:2.151936px;}
.ws73{word-spacing:2.187802px;}
.ws5f{word-spacing:2.259533px;}
.wsf{word-spacing:2.367130px;}
.ws4f{word-spacing:2.438861px;}
.wsc6{word-spacing:2.487957px;}
.wsce{word-spacing:2.562991px;}
.wsbd{word-spacing:2.725786px;}
.ws96{word-spacing:2.797517px;}
.ws78{word-spacing:2.869248px;}
.ws3d{word-spacing:2.940979px;}
.ws8a{word-spacing:3.012710px;}
.ws59{word-spacing:3.156173px;}
.ws3{word-spacing:3.227904px;}
.ws5{word-spacing:3.278327px;}
.ws86{word-spacing:3.299635px;}
.ws23{word-spacing:3.371366px;}
.ws34{word-spacing:3.443098px;}
.ws89{word-spacing:3.478963px;}
.ws44{word-spacing:3.514829px;}
.ws53{word-spacing:3.586560px;}
.ws50{word-spacing:3.658291px;}
.ws88{word-spacing:3.694157px;}
.ws4{word-spacing:3.765888px;}
.wsdb{word-spacing:3.797618px;}
.ws5a{word-spacing:3.801754px;}
.ws85{word-spacing:3.837619px;}
.wscb{word-spacing:3.860738px;}
.wsb{word-spacing:3.873485px;}
.wsb9{word-spacing:3.904823px;}
.ws8{word-spacing:3.945216px;}
.ws48{word-spacing:4.016947px;}
.ws3b{word-spacing:4.232141px;}
.ws7c{word-spacing:4.375603px;}
.wsab{word-spacing:4.411469px;}
.ws8d{word-spacing:4.447334px;}
.ws13{word-spacing:4.483200px;}
.ws21{word-spacing:4.519066px;}
.wsb3{word-spacing:4.626662px;}
.ws1{word-spacing:4.648169px;}
.ws45{word-spacing:4.734259px;}
.ws4b{word-spacing:4.805990px;}
.ws76{word-spacing:4.877722px;}
.ws8b{word-spacing:4.882260px;}
.ws7b{word-spacing:4.913587px;}
.ws2b{word-spacing:4.949453px;}
.ws84{word-spacing:5.021184px;}
.ws52{word-spacing:5.164646px;}
.wsbc{word-spacing:5.308109px;}
.ws2{word-spacing:5.379825px;}
.wsde{word-spacing:5.379840px;}
.ws3e{word-spacing:5.595034px;}
.ws7d{word-spacing:5.630899px;}
.ws6c{word-spacing:5.666765px;}
.ws55{word-spacing:5.738496px;}
.wsa9{word-spacing:5.774362px;}
.ws91{word-spacing:5.881958px;}
.ws17{word-spacing:5.953690px;}
.ws9d{word-spacing:5.989555px;}
.ws6e{word-spacing:6.097152px;}
.ws8e{word-spacing:6.168883px;}
.ws58{word-spacing:6.240614px;}
.ws31{word-spacing:6.527539px;}
.ws99{word-spacing:6.671002px;}
.ws72{word-spacing:6.814464px;}
.ws29{word-spacing:6.886195px;}
.wsc{word-spacing:6.957926px;}
.ws18{word-spacing:7.029658px;}
.ws4d{word-spacing:7.101389px;}
.wsaa{word-spacing:7.244851px;}
.ws51{word-spacing:7.316582px;}
.ws40{word-spacing:7.388314px;}
.wsac{word-spacing:7.531776px;}
.ws65{word-spacing:7.603507px;}
.ws9a{word-spacing:7.675238px;}
.ws98{word-spacing:7.711104px;}
.wsd{word-spacing:7.746970px;}
.ws71{word-spacing:7.854566px;}
.ws5e{word-spacing:7.890432px;}
.ws39{word-spacing:8.033894px;}
.ws41{word-spacing:8.105626px;}
.ws9{word-spacing:8.249088px;}
.ws9e{word-spacing:8.356685px;}
.ws57{word-spacing:8.392550px;}
.ws68{word-spacing:8.464282px;}
.ws54{word-spacing:8.536013px;}
.ws5d{word-spacing:8.607744px;}
.ws3c{word-spacing:8.679475px;}
.wsa3{word-spacing:8.818013px;}
.ws46{word-spacing:8.966400px;}
.ws2f{word-spacing:9.181594px;}
.wse{word-spacing:9.396787px;}
.ws90{word-spacing:9.468518px;}
.ws94{word-spacing:9.540250px;}
.wsb5{word-spacing:9.683712px;}
.ws4c{word-spacing:9.755443px;}
.ws7{word-spacing:9.827174px;}
.wsa8{word-spacing:10.114099px;}
.ws56{word-spacing:10.185830px;}
.ws67{word-spacing:10.401024px;}
.ws5b{word-spacing:10.544486px;}
.ws1f{word-spacing:10.687949px;}
.ws69{word-spacing:10.759680px;}
.ws4e{word-spacing:10.831411px;}
.ws8f{word-spacing:10.867277px;}
.wsaf{word-spacing:10.974874px;}
.wsb6{word-spacing:11.154202px;}
.ws64{word-spacing:11.225933px;}
.ws37{word-spacing:11.261798px;}
.ws9f{word-spacing:11.288419px;}
.wsda{word-spacing:11.476992px;}
.wsa7{word-spacing:11.584589px;}
.ws38{word-spacing:11.692186px;}
.wsd9{word-spacing:11.763917px;}
.ws66{word-spacing:11.943245px;}
.ws97{word-spacing:12.194304px;}
.wsc9{word-spacing:12.266035px;}
.wsa6{word-spacing:12.301901px;}
.ws30{word-spacing:12.409498px;}
.ws7f{word-spacing:12.481229px;}
.ws6a{word-spacing:12.696422px;}
.ws81{word-spacing:13.040696px;}
.ws42{word-spacing:13.126810px;}
.ws77{word-spacing:13.449600px;}
.ws7a{word-spacing:13.557197px;}
.ws80{word-spacing:13.700659px;}
.ws62{word-spacing:13.772390px;}
.ws49{word-spacing:13.987584px;}
.wsc5{word-spacing:14.131046px;}
.ws60{word-spacing:14.202778px;}
.ws7e{word-spacing:14.310374px;}
.ws5c{word-spacing:14.704896px;}
.ws6b{word-spacing:15.422208px;}
.ws61{word-spacing:15.816730px;}
.ws70{word-spacing:15.996058px;}
.ws3f{word-spacing:20.959798px;}
.ws15{word-spacing:23.097446px;}
.ws6{word-spacing:24.460339px;}
.wsa{word-spacing:25.034189px;}
.wsc2{word-spacing:25.832429px;}
.ws19{word-spacing:27.903437px;}
.wsc4{word-spacing:29.338061px;}
.wsbe{word-spacing:32.814989px;}
.wsb2{word-spacing:33.018989px;}
.wsc3{word-spacing:33.139814px;}
.wsbb{word-spacing:35.586989px;}
.ws0{word-spacing:37.316475px;}
.wsb4{word-spacing:44.454989px;}
.ws12{word-spacing:69.937725px;}
.ws26{word-spacing:112.625518px;}
.ws27{word-spacing:126.288413px;}
.ws2e{word-spacing:207.122327px;}
._4{margin-left:-42.177828px;}
._80{margin-left:-26.899200px;}
._7f{margin-left:-24.675533px;}
._0{margin-left:-9.794025px;}
._16{margin-left:-8.072485px;}
._10{margin-left:-6.427122px;}
._c{margin-left:-5.351154px;}
._6{margin-left:-4.351073px;}
._2{margin-left:-3.347325px;}
._3{margin-left:-2.324084px;}
._9{margin-left:-1.018596px;}
._5{width:2.008474px;}
._1{width:3.223350px;}
._84{width:4.272779px;}
._7{width:5.905118px;}
._82{width:16.694855px;}
._48{width:17.932800px;}
._81{width:19.998646px;}
._6f{width:21.404584px;}
._e{width:22.425932px;}
._17{width:24.388608px;}
._b{width:26.750558px;}
._76{width:28.165831px;}
._11{width:29.257549px;}
._8{width:31.236403px;}
._14{width:32.766799px;}
._13{width:34.276724px;}
._71{width:35.966017px;}
._12{width:37.587149px;}
._72{width:38.950042px;}
._77{width:41.685998px;}
._d{width:43.210868px;}
._a{width:44.674178px;}
._70{width:45.979699px;}
._75{width:48.920678px;}
._7b{width:50.527451px;}
._7c{width:52.076851px;}
._63{width:57.054990px;}
._7e{width:58.303106px;}
._7d{width:63.180860px;}
._83{width:70.626226px;}
._18{width:71.959565px;}
._5d{width:73.426227px;}
._f{width:80.697600px;}
._61{width:83.596974px;}
._15{width:96.836850px;}
._2e{width:98.704431px;}
._94{width:108.178079px;}
._33{width:114.989433px;}
._5f{width:120.057371px;}
._85{width:121.976237px;}
._34{width:124.333989px;}
._38{width:126.371155px;}
._28{width:133.135839px;}
._49{width:135.842998px;}
._92{width:140.568865px;}
._59{width:141.670604px;}
._21{width:145.758607px;}
._6c{width:147.109407px;}
._88{width:149.736225px;}
._25{width:152.512404px;}
._87{width:153.772867px;}
._89{width:155.116065px;}
._90{width:157.077406px;}
._1b{width:159.458540px;}
._5b{width:162.382058px;}
._8f{width:166.312334px;}
._8e{width:168.658903px;}
._8c{width:172.790632px;}
._51{width:174.055889px;}
._24{width:178.387213px;}
._1e{width:180.412404px;}
._6e{width:187.038475px;}
._1f{width:193.586273px;}
._54{width:196.708595px;}
._4e{width:205.874001px;}
._26{width:208.865025px;}
._3e{width:209.912358px;}
._52{width:211.840433px;}
._32{width:213.508404px;}
._3a{width:216.357479px;}
._2a{width:220.131698px;}
._42{width:230.560561px;}
._4f{width:234.741151px;}
._5a{width:235.906292px;}
._4d{width:238.005351px;}
._1d{width:241.402404px;}
._57{width:242.824050px;}
._45{width:246.469955px;}
._6d{width:250.291041px;}
._40{width:251.766498px;}
._35{width:253.676045px;}
._4a{width:254.954494px;}
._43{width:258.421530px;}
._8b{width:264.914382px;}
._60{width:273.212546px;}
._41{width:275.393640px;}
._5c{width:276.436307px;}
._19{width:282.066775px;}
._86{width:310.753642px;}
._23{width:312.136973px;}
._50{width:318.907638px;}
._20{width:322.837144px;}
._2f{width:324.966775px;}
._3d{width:326.121945px;}
._58{width:327.440888px;}
._44{width:334.039085px;}
._2b{width:337.757768px;}
._36{width:342.276913px;}
._4c{width:354.382699px;}
._56{width:357.850224px;}
._39{width:359.019503px;}
._1a{width:360.632314px;}
._27{width:363.781313px;}
._2c{width:370.991877px;}
._46{width:374.993428px;}
._47{width:376.948686px;}
._74{width:379.924604px;}
._93{width:387.023400px;}
._1c{width:394.052401px;}
._31{width:395.455946px;}
._2d{width:396.978513px;}
._8a{width:399.450131px;}
._55{width:406.888431px;}
._3f{width:408.240833px;}
._30{width:415.262314px;}
._37{width:418.411313px;}
._95{width:420.622313px;}
._53{width:422.643090px;}
._22{width:426.884835px;}
._91{width:430.506859px;}
._29{width:443.532589px;}
._4b{width:446.347682px;}
._3b{width:451.067553px;}
._62{width:457.047938px;}
._3c{width:469.952908px;}
._73{width:506.659288px;}
._5e{width:533.680431px;}
._8d{width:555.565914px;}
._68{width:684.013778px;}
._65{width:708.445778px;}
._67{width:711.716367px;}
._66{width:726.001778px;}
._64{width:753.704367px;}
._6b{width:838.885778px;}
._6a{width:856.441778px;}
._69{width:884.144367px;}
._7a{width:939.979778px;}
._79{width:957.535778px;}
._78{width:985.238367px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.820600px;}
.fs2{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:63.168000px;}
.yde{bottom:106.132500px;}
.y1bb{bottom:108.000000px;}
.y114{bottom:108.520500px;}
.y1e{bottom:108.705000px;}
.y169{bottom:120.363000px;}
.y2d7{bottom:122.059500px;}
.yc2{bottom:122.070000px;}
.ya2{bottom:125.745000px;}
.ydd{bottom:127.801500px;}
.y5e{bottom:128.782500px;}
.y1ba{bottom:129.669000px;}
.y1ce{bottom:134.710500px;}
.y183{bottom:136.951500px;}
.y28a{bottom:137.377500px;}
.y3c{bottom:138.121500px;}
.y2d6{bottom:143.728500px;}
.yc1{bottom:143.739000px;}
.y204{bottom:143.859000px;}
.y1e8{bottom:144.051000px;}
.y113{bottom:145.134000px;}
.y1d{bottom:145.317000px;}
.yf7{bottom:145.993500px;}
.ya1{bottom:147.412500px;}
.ydc{bottom:149.469000px;}
.y5d{bottom:150.451500px;}
.y26c{bottom:151.338000px;}
.y168{bottom:156.976500px;}
.y2a6{bottom:156.990000px;}
.y1a0{bottom:158.371500px;}
.y2d5{bottom:165.397500px;}
.yc0{bottom:165.408000px;}
.y1b9{bottom:165.861000px;}
.y23c{bottom:166.236000px;}
.y1c{bottom:166.986000px;}
.yf6{bottom:167.661000px;}
.y7e{bottom:170.328000px;}
.ydb{bottom:171.138000px;}
.y289{bottom:171.577500px;}
.y5c{bottom:172.120500px;}
.y182{bottom:173.565000px;}
.y3b{bottom:174.735000px;}
.y1cd{bottom:175.806000px;}
.y203{bottom:179.716500px;}
.y19f{bottom:180.040500px;}
.y1e7{bottom:180.100500px;}
.ya0{bottom:180.663000px;}
.y112{bottom:181.746000px;}
.y26b{bottom:184.195500px;}
.y23b{bottom:187.905000px;}
.y1b{bottom:188.655000px;}
.y7d{bottom:191.995500px;}
.yda{bottom:193.404000px;}
.y167{bottom:193.588500px;}
.y2a5{bottom:193.602000px;}
.y5b{bottom:193.789500px;}
.y2d4{bottom:198.646500px;}
.ybf{bottom:198.658500px;}
.yf5{bottom:200.911500px;}
.y202{bottom:201.385500px;}
.y19e{bottom:201.709500px;}
.y1b8{bottom:202.333500px;}
.y288{bottom:205.779000px;}
.y26a{bottom:205.864500px;}
.y14b{bottom:206.775000px;}
.y23a{bottom:209.572500px;}
.y181{bottom:210.177000px;}
.y1a{bottom:210.324000px;}
.y3a{bottom:211.347000px;}
.y1cc{bottom:212.418000px;}
.y7c{bottom:213.664500px;}
.y24c{bottom:213.988500px;}
.y111{bottom:214.996500px;}
.y1e6{bottom:215.026500px;}
.y166{bottom:215.257500px;}
.y5a{bottom:215.457000px;}
.y21d{bottom:221.497500px;}
.y19d{bottom:223.377000px;}
.y12c{bottom:223.938000px;}
.y9f{bottom:227.425500px;}
.y14a{bottom:228.444000px;}
.yd9{bottom:228.747000px;}
.y2a4{bottom:230.214000px;}
.y19{bottom:231.993000px;}
.y287{bottom:235.155000px;}
.y7b{bottom:235.333500px;}
.y24b{bottom:235.656000px;}
.y59{bottom:237.126000px;}
.y201{bottom:237.244500px;}
.y1b7{bottom:238.806000px;}
.y269{bottom:241.225500px;}
.y21c{bottom:243.166500px;}
.y2d3{bottom:245.409000px;}
.ybe{bottom:245.419500px;}
.y12b{bottom:245.607000px;}
.y239{bottom:246.139500px;}
.y180{bottom:246.790500px;}
.y39{bottom:247.960500px;}
.y1e5{bottom:248.277000px;}
.y165{bottom:248.508000px;}
.y1cb{bottom:249.031500px;}
.y9e{bottom:249.094500px;}
.yf4{bottom:249.766500px;}
.y149{bottom:250.113000px;}
.y24a{bottom:257.325000px;}
.y58{bottom:258.795000px;}
.y110{bottom:261.759000px;}
.y19c{bottom:262.804500px;}
.y18{bottom:265.243500px;}
.y2a3{bottom:266.827500px;}
.y2d2{bottom:267.078000px;}
.ybd{bottom:267.088500px;}
.y12a{bottom:267.276000px;}
.y238{bottom:267.808500px;}
.y286{bottom:268.405500px;}
.y17f{bottom:268.458000px;}
.y9d{bottom:270.763500px;}
.yf3{bottom:271.435500px;}
.y200{bottom:271.594500px;}
.y7a{bottom:274.761000px;}
.y1b6{bottom:274.998000px;}
.yd8{bottom:275.508000px;}
.y268{bottom:276.586500px;}
.y21b{bottom:279.778500px;}
.y57{bottom:280.464000px;}
.y1ca{bottom:282.282000px;}
.y38{bottom:284.572500px;}
.y2d1{bottom:288.747000px;}
.ybc{bottom:288.757500px;}
.y237{bottom:289.477500px;}
.y17e{bottom:290.127000px;}
.y148{bottom:290.661000px;}
.y9c{bottom:292.432500px;}
.yf2{bottom:293.103000px;}
.y1e4{bottom:294.748500px;}
.y164{bottom:295.269000px;}
.yd7{bottom:297.177000px;}
.y10f{bottom:298.371000px;}
.y249{bottom:298.420500px;}
.y129{bottom:300.526500px;}
.y21a{bottom:301.447500px;}
.y56{bottom:302.133000px;}
.y2a2{bottom:303.439500px;}
.y1ff{bottom:304.845000px;}
.y17{bottom:307.734000px;}
.y1b5{bottom:308.248500px;}
.ybb{bottom:310.426500px;}
.y267{bottom:311.947500px;}
.y147{bottom:312.330000px;}
.y285{bottom:313.921500px;}
.yf1{bottom:315.370500px;}
.y19b{bottom:316.728000px;}
.y163{bottom:316.938000px;}
.y248{bottom:320.089500px;}
.y2bf{bottom:320.604000px;}
.y37{bottom:321.186000px;}
.y17d{bottom:323.377500px;}
.y55{bottom:323.802000px;}
.y2bc{bottom:324.610500px;}
.y1c9{bottom:329.043000px;}
.y79{bottom:329.206500px;}
.y2d0{bottom:329.842500px;}
.y236{bottom:330.391500px;}
.yd6{bottom:330.427500px;}
.y1e3{bottom:330.799500px;}
.y9b{bottom:331.858500px;}
.yba{bottom:332.095500px;}
.y146{bottom:333.999000px;}
.y10e{bottom:334.984500px;}
.y2a1{bottom:336.690000px;}
.y219{bottom:338.059500px;}
.y19a{bottom:338.397000px;}
.y2be{bottom:342.273000px;}
.y284{bottom:343.299000px;}
.y54{bottom:346.068000px;}
.y2bb{bottom:346.279500px;}
.y128{bottom:347.287500px;}
.y266{bottom:347.307000px;}
.y247{bottom:349.230000px;}
.yf0{bottom:350.712000px;}
.y1b4{bottom:350.739000px;}
.y78{bottom:350.875500px;}
.y1fe{bottom:351.217500px;}
.y2cf{bottom:351.511500px;}
.y235{bottom:352.059000px;}
.y162{bottom:353.551500px;}
.y145{bottom:355.668000px;}
.y36{bottom:357.798000px;}
.y9a{bottom:358.758000px;}
.y218{bottom:359.728500px;}
.y199{bottom:360.064500px;}
.y16{bottom:361.656000px;}
.y283{bottom:364.968000px;}
.y1e2{bottom:366.850500px;}
.y2ba{bottom:367.948500px;}
.y10d{bottom:368.235000px;}
.y127{bottom:368.956500px;}
.y17c{bottom:370.140000px;}
.yb9{bottom:371.521500px;}
.y1c8{bottom:372.381000px;}
.y1fd{bottom:372.886500px;}
.y77{bottom:373.141500px;}
.y234{bottom:373.728000px;}
.y161{bottom:375.220500px;}
.y2bd{bottom:375.523500px;}
.yd5{bottom:377.190000px;}
.y144{bottom:377.335500px;}
.y246{bottom:378.372000px;}
.y265{bottom:380.166000px;}
.y2a0{bottom:385.545000px;}
.y2ce{bottom:388.123500px;}
.y2b9{bottom:389.616000px;}
.y17b{bottom:391.809000px;}
.y35{bottom:394.411500px;}
.y217{bottom:396.342000px;}
.yef{bottom:397.474500px;}
.y15{bottom:398.269500px;}
.yb8{bottom:398.421000px;}
.y282{bottom:399.168000px;}
.y143{bottom:399.603000px;}
.y198{bottom:401.161500px;}
.y1e1{bottom:401.776500px;}
.y264{bottom:401.833500px;}
.y126{bottom:402.207000px;}
.y53{bottom:404.424000px;}
.y1b3{bottom:404.589000px;}
.y233{bottom:406.978500px;}
.y29f{bottom:407.214000px;}
.y245{bottom:407.512500px;}
.y1fc{bottom:408.745500px;}
.y2b8{bottom:411.285000px;}
.y1c7{bottom:411.808500px;}
.y160{bottom:411.832500px;}
.y99{bottom:413.203500px;}
.y17a{bottom:413.476500px;}
.yd4{bottom:413.800500px;}
.y10c{bottom:414.996000px;}
.y216{bottom:418.009500px;}
.y197{bottom:422.829000px;}
.y263{bottom:423.502500px;}
.y2cd{bottom:424.737000px;}
.y52{bottom:426.093000px;}
.y1b2{bottom:426.258000px;}
.y34{bottom:427.662000px;}
.y29e{bottom:428.881500px;}
.y76{bottom:431.497500px;}
.y2b7{bottom:432.954000px;}
.y281{bottom:433.369500px;}
.yee{bottom:434.088000px;}
.y98{bottom:434.872500px;}
.y14{bottom:434.881500px;}
.y142{bottom:434.944500px;}
.y1e0{bottom:435.027000px;}
.y10b{bottom:436.665000px;}
.y244{bottom:444.124500px;}
.y196{bottom:444.498000px;}
.y1fb{bottom:444.604500px;}
.y262{bottom:445.171500px;}
.y2cc{bottom:446.406000px;}
.y179{bottom:446.727000px;}
.y15f{bottom:448.446000px;}
.y125{bottom:448.969500px;}
.y232{bottom:449.469000px;}
.yd3{bottom:450.409500px;}
.y29d{bottom:450.550500px;}
.yb7{bottom:452.344500px;}
.y75{bottom:453.166500px;}
.y215{bottom:454.623000px;}
.y97{bottom:456.541500px;}
.y51{bottom:459.343500px;}
.y1b1{bottom:459.508500px;}
.y280{bottom:462.745500px;}
.y1c6{bottom:465.730500px;}
.y15e{bottom:470.113500px;}
.yed{bottom:470.700000px;}
.y13{bottom:471.495000px;}
.y29c{bottom:472.219500px;}
.yb6{bottom:474.012000px;}
.y33{bottom:474.423000px;}
.y10a{bottom:476.092500px;}
.y214{bottom:476.292000px;}
.y96{bottom:478.210500px;}
.y261{bottom:478.422000px;}
.y1fa{bottom:480.462000px;}
.y243{bottom:480.738000px;}
.y195{bottom:481.111500px;}
.y1df{bottom:481.498500px;}
.y141{bottom:481.707000px;}
.y2cb{bottom:483.018000px;}
.yd2{bottom:483.660000px;}
.y27f{bottom:484.414500px;}
.y124{bottom:485.581500px;}
.y74{bottom:486.417000px;}
.y12{bottom:493.164000px;}
.y178{bottom:493.489500px;}
.y29b{bottom:493.888500px;}
.yb5{bottom:495.681000px;}
.y32{bottom:496.092000px;}
.y2b6{bottom:497.961000px;}
.y95{bottom:499.879500px;}
.y1f9{bottom:502.131000px;}
.y1c5{bottom:502.344000px;}
.y242{bottom:502.407000px;}
.y194{bottom:502.780500px;}
.y109{bottom:502.992000px;}
.y1de{bottom:503.167500px;}
.y15d{bottom:503.364000px;}
.y231{bottom:503.368500px;}
.y140{bottom:503.376000px;}
.y2ca{bottom:504.687000px;}
.y1b0{bottom:506.197500px;}
.yec{bottom:507.313500px;}
.y50{bottom:508.197000px;}
.y213{bottom:509.542500px;}
.y11{bottom:514.831500px;}
.y177{bottom:515.158500px;}
.y29a{bottom:516.154500px;}
.yb4{bottom:517.350000px;}
.y27e{bottom:517.665000px;}
.y260{bottom:520.912500px;}
.y94{bottom:522.145500px;}
.y123{bottom:522.195000px;}
.y193{bottom:524.448000px;}
.y230{bottom:525.037500px;}
.y4f{bottom:529.866000px;}
.yd1{bottom:530.422500px;}
.y2b5{bottom:531.210000px;}
.y31{bottom:532.705500px;}
.y73{bottom:535.270500px;}
.y10{bottom:536.500500px;}
.y176{bottom:536.827500px;}
.y1f8{bottom:537.990000px;}
.y1c4{bottom:538.956000px;}
.yb3{bottom:539.019000px;}
.yeb{bottom:540.562500px;}
.y2c9{bottom:541.299000px;}
.y1dd{bottom:542.595000px;}
.y1af{bottom:542.670000px;}
.y13f{bottom:543.925500px;}
.y22f{bottom:546.706500px;}
.y25f{bottom:547.812000px;}
.y15c{bottom:550.126500px;}
.y4e{bottom:551.535000px;}
.yd0{bottom:552.090000px;}
.y212{bottom:556.303500px;}
.y108{bottom:556.914000px;}
.y72{bottom:556.939500px;}
.y93{bottom:557.487000px;}
.yf{bottom:558.169500px;}
.y122{bottom:558.807000px;}
.y1f7{bottom:559.659000px;}
.yb2{bottom:560.688000px;}
.y192{bottom:561.061500px;}
.y27d{bottom:563.181000px;}
.y13e{bottom:565.593000px;}
.y299{bottom:566.665500px;}
.y30{bottom:569.317500px;}
.y1dc{bottom:569.493000px;}
.y175{bottom:570.078000px;}
.y15b{bottom:571.795500px;}
.y1c3{bottom:572.206500px;}
.y4d{bottom:573.204000px;}
.y2b4{bottom:573.702000px;}
.ycf{bottom:573.759000px;}
.y211{bottom:577.972500px;}
.y71{bottom:578.608500px;}
.y1ae{bottom:579.142500px;}
.ye{bottom:579.838500px;}
.y22e{bottom:579.957000px;}
.y2c8{bottom:582.396000px;}
.y191{bottom:582.730500px;}
.y27c{bottom:584.850000px;}
.y13d{bottom:587.262000px;}
.yea{bottom:587.325000px;}
.y121{bottom:592.057500px;}
.y1f6{bottom:592.909500px;}
.y15a{bottom:593.464500px;}
.y107{bottom:593.527500px;}
.yb1{bottom:593.938500px;}
.y4c{bottom:594.871500px;}
.y241{bottom:597.300000px;}
.y210{bottom:599.641500px;}
.y70{bottom:600.277500px;}
.y2b3{bottom:600.600000px;}
.y25e{bottom:601.087500px;}
.yd{bottom:601.507500px;}
.y190{bottom:604.399500px;}
.y2f{bottom:605.931000px;}
.y92{bottom:606.342000px;}
.y13c{bottom:608.931000px;}
.ye9{bottom:608.994000px;}
.y27b{bottom:612.613500px;}
.yce{bottom:613.186500px;}
.y298{bottom:613.428000px;}
.y159{bottom:615.132000px;}
.y2c7{bottom:615.646500px;}
.y174{bottom:616.839000px;}
.y4b{bottom:617.139000px;}
.y1c2{bottom:618.969000px;}
.y1ad{bottom:619.677000px;}
.y6f{bottom:621.946500px;}
.y25d{bottom:622.756500px;}
.y1db{bottom:623.125500px;}
.y22d{bottom:626.695500px;}
.y2e{bottom:627.598500px;}
.y91{bottom:628.011000px;}
.y106{bottom:630.139500px;}
.y13b{bottom:630.600000px;}
.y20f{bottom:636.255000px;}
.y158{bottom:636.801000px;}
.y173{bottom:638.508000px;}
.y120{bottom:638.820000px;}
.y1f5{bottom:639.282000px;}
.yb0{bottom:640.699500px;}
.yc{bottom:640.933500px;}
.y18f{bottom:641.011500px;}
.y1ac{bottom:641.346000px;}
.y6e{bottom:644.212500px;}
.y25c{bottom:644.425500px;}
.ye8{bottom:645.606000px;}
.y22c{bottom:648.363000px;}
.y90{bottom:649.680000px;}
.y297{bottom:650.040000px;}
.y13a{bottom:652.866000px;}
.y2b2{bottom:654.523500px;}
.y1c1{bottom:655.582500px;}
.y20e{bottom:657.922500px;}
.y157{bottom:658.470000px;}
.y1da{bottom:659.176500px;}
.y172{bottom:660.177000px;}
.y2d{bottom:660.849000px;}
.y1f4{bottom:660.951000px;}
.y18e{bottom:662.680500px;}
.y105{bottom:663.390000px;}
.y27a{bottom:663.660000px;}
.y2c6{bottom:664.500000px;}
.ycd{bottom:667.108500px;}
.y8f{bottom:671.347500px;}
.y296{bottom:671.709000px;}
.y1ab{bottom:674.596500px;}
.y11f{bottom:675.432000px;}
.y4a{bottom:675.495000px;}
.y240{bottom:677.250000px;}
.yaf{bottom:677.313000px;}
.y22b{bottom:677.458500px;}
.y156{bottom:680.139000px;}
.y25b{bottom:680.514000px;}
.ye7{bottom:682.219500px;}
.y1f3{bottom:682.618500px;}
.y18d{bottom:684.349500px;}
.y2c5{bottom:686.169000px;}
.y139{bottom:688.209000px;}
.y2b1{bottom:691.135500px;}
.y1c0{bottom:692.194500px;}
.y8e{bottom:693.016500px;}
.y20d{bottom:694.536000px;}
.yb{bottom:694.857000px;}
.y1d9{bottom:695.227500px;}
.y49{bottom:697.164000px;}
.y279{bottom:697.860000px;}
.y171{bottom:699.604500px;}
.y155{bottom:701.808000px;}
.y25a{bottom:702.183000px;}
.y6d{bottom:702.568500px;}
.y2c{bottom:703.339500px;}
.ycc{bottom:703.720500px;}
.y22a{bottom:706.554000px;}
.y2c4{bottom:707.838000px;}
.y295{bottom:708.321000px;}
.y104{bottom:710.152500px;}
.y23f{bottom:710.500500px;}
.y11e{bottom:712.045500px;}
.yae{bottom:713.925000px;}
.y8d{bottom:715.284000px;}
.y1f2{bottom:715.869000px;}
.y20c{bottom:716.205000px;}
.ya{bottom:716.526000px;}
.ye6{bottom:718.831500px;}
.y1aa{bottom:721.285500px;}
.y259{bottom:723.852000px;}
.y6c{bottom:724.237500px;}
.y18c{bottom:725.445000px;}
.y170{bottom:726.504000px;}
.y278{bottom:727.237500px;}
.y2b0{bottom:727.749000px;}
.y1bf{bottom:728.806500px;}
.y2c3{bottom:729.507000px;}
.y1d8{bottom:730.153500px;}
.y48{bottom:730.413000px;}
.y138{bottom:734.971500px;}
.y9{bottom:738.195000px;}
.ycb{bottom:740.332500px;}
.y154{bottom:741.235500px;}
.y229{bottom:743.121000px;}
.y294{bottom:744.934500px;}
.y258{bottom:745.521000px;}
.y103{bottom:746.764500px;}
.y18b{bottom:747.114000px;}
.y11d{bottom:748.657500px;}
.y277{bottom:748.906500px;}
.yad{bottom:750.538500px;}
.y8c{bottom:750.625500px;}
.y2c2{bottom:751.174500px;}
.y20b{bottom:752.817000px;}
.ye5{bottom:755.445000px;}
.y137{bottom:756.639000px;}
.y2b{bottom:757.263000px;}
.y6b{bottom:757.488000px;}
.y1a9{bottom:757.758000px;}
.y1f1{bottom:758.359500px;}
.y8{bottom:759.862500px;}
.y1be{bottom:762.057000px;}
.y1d7{bottom:763.404000px;}
.y2af{bottom:764.361000px;}
.y257{bottom:767.188500px;}
.y153{bottom:768.133500px;}
.y18a{bottom:768.783000px;}
.yac{bottom:772.207500px;}
.y2c1{bottom:773.442000px;}
.y20a{bottom:774.486000px;}
.y2e1{bottom:776.005500px;}
.yca{bottom:776.941500px;}
.y47{bottom:777.175500px;}
.y228{bottom:779.688000px;}
.y16f{bottom:780.426000px;}
.y7{bottom:781.531500px;}
.y293{bottom:781.546500px;}
.y11c{bottom:781.908000px;}
.y276{bottom:782.155500px;}
.y102{bottom:783.378000px;}
.y2ae{bottom:786.030000px;}
.ye4{bottom:788.695500px;}
.y2a{bottom:793.876500px;}
.y1a8{bottom:794.230500px;}
.y136{bottom:797.188500px;}
.y2e0{bottom:797.674500px;}
.y46{bottom:798.844500px;}
.y8b{bottom:799.480500px;}
.y227{bottom:801.357000px;}
.y189{bottom:802.032000px;}
.y16e{bottom:802.095000px;}
.y256{bottom:802.549500px;}
.y292{bottom:803.215500px;}
.y6a{bottom:806.341500px;}
.y2ad{bottom:807.699000px;}
.yab{bottom:808.819500px;}
.y2c0{bottom:809.133000px;}
.y1d6{bottom:809.875500px;}
.yc9{bottom:810.192000px;}
.y1f0{bottom:811.893000px;}
.y209{bottom:815.581500px;}
.y135{bottom:818.857500px;}
.y101{bottom:819.990000px;}
.y45{bottom:820.513500px;}
.y6{bottom:820.959000px;}
.y8a{bottom:821.149500px;}
.y152{bottom:822.057000px;}
.y226{bottom:823.024500px;}
.y16d{bottom:823.764000px;}
.y255{bottom:824.218500px;}
.y291{bottom:824.884500px;}
.y275{bottom:827.671500px;}
.y69{bottom:828.010500px;}
.y11b{bottom:828.670500px;}
.y2ac{bottom:829.368000px;}
.y1a7{bottom:830.422500px;}
.y29{bottom:830.488500px;}
.ye3{bottom:835.458000px;}
.y208{bottom:837.250500px;}
.y2df{bottom:838.770000px;}
.y134{bottom:840.526500px;}
.y89{bottom:842.817000px;}
.y151{bottom:843.726000px;}
.yaa{bottom:845.433000px;}
.y254{bottom:845.887500px;}
.y1d5{bottom:845.925000px;}
.y1ef{bottom:847.752000px;}
.y188{bottom:848.794500px;}
.y274{bottom:849.340500px;}
.y68{bottom:849.679500px;}
.y11a{bottom:850.339500px;}
.y1a6{bottom:852.091500px;}
.y100{bottom:853.240500px;}
.yc8{bottom:856.953000px;}
.ye2{bottom:857.125500px;}
.y290{bottom:858.135000px;}
.y225{bottom:859.591500px;}
.y44{bottom:859.941000px;}
.y2de{bottom:860.439000px;}
.y133{bottom:862.194000px;}
.y2ab{bottom:862.618500px;}
.y88{bottom:864.486000px;}
.y150{bottom:865.393500px;}
.y28{bottom:867.100500px;}
.y253{bottom:867.556500px;}
.y207{bottom:870.501000px;}
.y67{bottom:871.348500px;}
.yc7{bottom:878.622000px;}
.y273{bottom:878.718000px;}
.ye1{bottom:878.794500px;}
.y224{bottom:881.260500px;}
.y1d4{bottom:881.976000px;}
.ya9{bottom:882.045000px;}
.y2dd{bottom:882.108000px;}
.y1ee{bottom:883.611000px;}
.y132{bottom:883.863000px;}
.y1a5{bottom:885.342000px;}
.y187{bottom:885.408000px;}
.y87{bottom:886.155000px;}
.y14f{bottom:887.062500px;}
.y16c{bottom:888.769500px;}
.y119{bottom:889.765500px;}
.y66{bottom:893.016000px;}
.y5{bottom:894.309000px;}
.yff{bottom:900.003000px;}
.y252{bottom:902.917500px;}
.y223{bottom:902.929500px;}
.y27{bottom:903.714000px;}
.y28f{bottom:904.897500px;}
.y131{bottom:906.130500px;}
.y86{bottom:908.421000px;}
.y14e{bottom:908.731500px;}
.y2aa{bottom:909.379500px;}
.yc6{bottom:911.872500px;}
.y272{bottom:912.918000px;}
.y206{bottom:912.991500px;}
.y43{bottom:913.863000px;}
.y65{bottom:914.685000px;}
.y1d3{bottom:916.902000px;}
.y1ed{bottom:917.961000px;}
.ye0{bottom:918.222000px;}
.ya8{bottom:918.658500px;}
.y2dc{bottom:918.720000px;}
.y16b{bottom:922.020000px;}
.y251{bottom:924.586500px;}
.y26{bottom:925.383000px;}
.y28e{bottom:926.565000px;}
.y14d{bottom:930.400500px;}
.y1a4{bottom:932.031000px;}
.y42{bottom:935.532000px;}
.y64{bottom:936.354000px;}
.y4{bottom:936.466500px;}
.yfe{bottom:936.615000px;}
.y222{bottom:939.496500px;}
.y205{bottom:939.891000px;}
.ya7{bottom:940.326000px;}
.y2db{bottom:940.389000px;}
.y130{bottom:941.472000px;}
.y118{bottom:943.689000px;}
.y85{bottom:943.764000px;}
.y2a9{bottom:945.993000px;}
.y250{bottom:946.254000px;}
.y271{bottom:947.119500px;}
.y1d2{bottom:950.152500px;}
.y1ec{bottom:951.211500px;}
.y14c{bottom:952.069500px;}
.y41{bottom:957.201000px;}
.y63{bottom:958.023000px;}
.y25{bottom:958.633500px;}
.y221{bottom:961.165500px;}
.y117{bottom:965.358000px;}
.y28d{bottom:967.662000px;}
.y1a3{bottom:968.503500px;}
.y16a{bottom:968.782500px;}
.ydf{bottom:972.144000px;}
.yfd{bottom:973.228500px;}
.ya6{bottom:973.576500px;}
.y23e{bottom:976.939500px;}
.y2da{bottom:977.001000px;}
.y62{bottom:979.692000px;}
.yc5{bottom:980.302500px;}
.y270{bottom:981.319500px;}
.y24f{bottom:981.615000px;}
.y2a8{bottom:982.605000px;}
.y12f{bottom:988.234500px;}
.y3{bottom:989.704500px;}
.y186{bottom:991.882500px;}
.y84{bottom:992.617500px;}
.y40{bottom:993.813000px;}
.y1d1{bottom:996.624000px;}
.y1eb{bottom:997.584000px;}
.y220{bottom:997.732500px;}
.y116{bottom:998.608500px;}
.y2d9{bottom:998.670000px;}
.y61{bottom:1001.361000px;}
.yc4{bottom:1001.971500px;}
.y24e{bottom:1003.284000px;}
.y28c{bottom:1004.274000px;}
.y1a2{bottom:1004.976000px;}
.y24{bottom:1005.394500px;}
.yfc{bottom:1006.479000px;}
.y12e{bottom:1009.903500px;}
.y23d{bottom:1010.190000px;}
.y26f{bottom:1010.697000px;}
.y83{bottom:1014.286500px;}
.y21f{bottom:1019.401500px;}
.ya5{bottom:1020.339000px;}
.y60{bottom:1023.627000px;}
.y2a7{bottom:1023.702000px;}
.y24d{bottom:1024.953000px;}
.y23{bottom:1027.063500px;}
.y2{bottom:1027.065000px;}
.y3f{bottom:1030.426500px;}
.y12d{bottom:1031.572500px;}
.y1d0{bottom:1032.675000px;}
.y1ea{bottom:1033.443000px;}
.yc3{bottom:1035.222000px;}
.y2d8{bottom:1035.283500px;}
.y82{bottom:1035.955500px;}
.y185{bottom:1038.645000px;}
.y26e{bottom:1040.074500px;}
.y28b{bottom:1040.887500px;}
.y21e{bottom:1041.070500px;}
.y1a1{bottom:1041.448500px;}
.ya4{bottom:1042.008000px;}
.y115{bottom:1045.369500px;}
.yfb{bottom:1053.240000px;}
.y1bd{bottom:1056.951000px;}
.y81{bottom:1057.624500px;}
.y184{bottom:1060.314000px;}
.y22{bottom:1063.677000px;}
.y1{bottom:1064.424000px;}
.y3e{bottom:1067.038500px;}
.y1cf{bottom:1068.726000px;}
.y1e9{bottom:1069.300500px;}
.y26d{bottom:1074.274500px;}
.yfa{bottom:1074.909000px;}
.ya3{bottom:1078.620000px;}
.y80{bottom:1079.293500px;}
.y5f{bottom:1081.983000px;}
.yf9{bottom:1096.578000px;}
.y21{bottom:1100.289000px;}
.y7f{bottom:1101.559500px;}
.y3d{bottom:1103.652000px;}
.y1bc{bottom:1115.233500px;}
.yf8{bottom:1136.005500px;}
.y20{bottom:1136.902500px;}
.h4{height:53.798400px;}
.h6{height:58.306905px;}
.h5{height:58.312905px;}
.h3{height:64.557900px;}
.h2{height:87.650325px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:108.000000px;}
.xb{left:116.967000px;}
.x2{left:120.594000px;}
.x8{left:129.460500px;}
.xe{left:132.075000px;}
.x7{left:134.338500px;}
.xd{left:135.487500px;}
.xc{left:138.898500px;}
.x1d{left:141.226500px;}
.x14{left:144.313500px;}
.x18{left:148.099500px;}
.x15{left:150.490500px;}
.xa{left:151.897500px;}
.x20{left:160.582500px;}
.x1{left:162.232500px;}
.x23{left:163.749000px;}
.x17{left:164.995500px;}
.x24{left:169.602000px;}
.x1b{left:171.660000px;}
.x22{left:177.651000px;}
.x21{left:181.920000px;}
.x1f{left:184.768500px;}
.x1c{left:190.527000px;}
.x1e{left:196.467000px;}
.x3{left:208.233000px;}
.x13{left:217.362000px;}
.x1a{left:218.736000px;}
.x12{left:244.009500px;}
.x16{left:259.566000px;}
.x10{left:276.619500px;}
.x11{left:287.116500px;}
.xf{left:308.484000px;}
.x4{left:322.452000px;}
.x5{left:401.685000px;}
.x19{left:437.677500px;}
.x9{left:442.066500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.141333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000420pt;}
.ls2{letter-spacing:0.001309pt;}
.ls5{letter-spacing:2.653258pt;}
.lsc{letter-spacing:6.807576pt;}
.ls11{letter-spacing:17.023220pt;}
.ls8{letter-spacing:17.706238pt;}
.lsb{letter-spacing:17.711572pt;}
.ls9{letter-spacing:19.325258pt;}
.lsf{letter-spacing:20.804553pt;}
.lsa{letter-spacing:20.811087pt;}
.ls7{letter-spacing:21.449979pt;}
.lse{letter-spacing:22.043087pt;}
.ls10{letter-spacing:23.909753pt;}
.ls3{letter-spacing:23.910400pt;}
.lsd{letter-spacing:26.383524pt;}
.ls6{letter-spacing:27.159925pt;}
.ls0{letter-spacing:31.215572pt;}
.ls4{letter-spacing:31.217067pt;}
.ws6d{word-spacing:-43.835733pt;}
.wsb7{word-spacing:-40.590295pt;}
.wsb8{word-spacing:-30.005958pt;}
.wsba{word-spacing:-29.942197pt;}
.ws47{word-spacing:-19.925333pt;}
.ws2c{word-spacing:-17.343010pt;}
.ws32{word-spacing:-4.782067pt;}
.wsa0{word-spacing:-4.384691pt;}
.wsd7{word-spacing:-4.345003pt;}
.wsb0{word-spacing:-3.730022pt;}
.wsa5{word-spacing:-3.506859pt;}
.wsad{word-spacing:-3.474978pt;}
.ws8c{word-spacing:-3.443098pt;}
.ws24{word-spacing:-3.315575pt;}
.wsb1{word-spacing:-3.251814pt;}
.wsae{word-spacing:-3.060531pt;}
.ws43{word-spacing:-2.996770pt;}
.ws20{word-spacing:-2.933009pt;}
.ws74{word-spacing:-2.773606pt;}
.ws83{word-spacing:-2.677965pt;}
.ws75{word-spacing:-2.422921pt;}
.ws2a{word-spacing:-2.295398pt;}
.ws4a{word-spacing:-2.231637pt;}
.wsdd{word-spacing:-2.167876pt;}
.wsd8{word-spacing:-1.912832pt;}
.wsa1{word-spacing:-1.785310pt;}
.ws87{word-spacing:-1.243341pt;}
.ws82{word-spacing:-1.083938pt;}
.wsd3{word-spacing:-0.816918pt;}
.ws9b{word-spacing:-0.797013pt;}
.ws9c{word-spacing:-0.701372pt;}
.ws79{word-spacing:-0.637611pt;}
.wsbf{word-spacing:-0.573850pt;}
.wsc1{word-spacing:-0.323309pt;}
.wsc0{word-spacing:-0.318805pt;}
.wsd5{word-spacing:-0.286925pt;}
.wsd6{word-spacing:-0.255044pt;}
.ws28{word-spacing:-0.063761pt;}
.ws1b{word-spacing:0.000000pt;}
.wsc7{word-spacing:0.016358pt;}
.wsc8{word-spacing:0.127522pt;}
.ws63{word-spacing:0.382566pt;}
.wscc{word-spacing:0.420822pt;}
.ws2d{word-spacing:0.446327pt;}
.wscd{word-spacing:0.637611pt;}
.ws35{word-spacing:0.701372pt;}
.wsd1{word-spacing:0.828663pt;}
.ws22{word-spacing:0.828894pt;}
.ws1d{word-spacing:0.865766pt;}
.wscf{word-spacing:0.882475pt;}
.wsd0{word-spacing:0.884608pt;}
.ws1a{word-spacing:0.901154pt;}
.wsa4{word-spacing:0.902682pt;}
.wsa2{word-spacing:0.902861pt;}
.ws1c{word-spacing:0.918007pt;}
.wsca{word-spacing:1.083938pt;}
.wsd2{word-spacing:1.087660pt;}
.ws1e{word-spacing:1.104128pt;}
.ws93{word-spacing:1.211460pt;}
.ws25{word-spacing:1.338982pt;}
.ws92{word-spacing:1.434624pt;}
.ws33{word-spacing:1.466505pt;}
.wsdc{word-spacing:1.480878pt;}
.ws16{word-spacing:1.530266pt;}
.ws14{word-spacing:1.594027pt;}
.ws10{word-spacing:1.657788pt;}
.ws3a{word-spacing:1.785310pt;}
.ws6f{word-spacing:1.849071pt;}
.ws95{word-spacing:1.874570pt;}
.ws11{word-spacing:1.880951pt;}
.wsd4{word-spacing:1.892175pt;}
.ws36{word-spacing:1.912832pt;}
.ws73{word-spacing:1.944713pt;}
.ws5f{word-spacing:2.008474pt;}
.wsf{word-spacing:2.104115pt;}
.ws4f{word-spacing:2.167876pt;}
.wsc6{word-spacing:2.211517pt;}
.wsce{word-spacing:2.278214pt;}
.wsbd{word-spacing:2.422921pt;}
.ws96{word-spacing:2.486682pt;}
.ws78{word-spacing:2.550443pt;}
.ws3d{word-spacing:2.614204pt;}
.ws8a{word-spacing:2.677965pt;}
.ws59{word-spacing:2.805487pt;}
.ws3{word-spacing:2.869248pt;}
.ws5{word-spacing:2.914068pt;}
.ws86{word-spacing:2.933009pt;}
.ws23{word-spacing:2.996770pt;}
.ws34{word-spacing:3.060531pt;}
.ws89{word-spacing:3.092412pt;}
.ws44{word-spacing:3.124292pt;}
.ws53{word-spacing:3.188053pt;}
.ws50{word-spacing:3.251814pt;}
.ws88{word-spacing:3.283695pt;}
.ws4{word-spacing:3.347456pt;}
.wsdb{word-spacing:3.375660pt;}
.ws5a{word-spacing:3.379337pt;}
.ws85{word-spacing:3.411217pt;}
.wscb{word-spacing:3.431767pt;}
.wsb{word-spacing:3.443098pt;}
.wsb9{word-spacing:3.470954pt;}
.ws8{word-spacing:3.506859pt;}
.ws48{word-spacing:3.570620pt;}
.ws3b{word-spacing:3.761903pt;}
.ws7c{word-spacing:3.889425pt;}
.wsab{word-spacing:3.921306pt;}
.ws8d{word-spacing:3.953186pt;}
.ws13{word-spacing:3.985067pt;}
.ws21{word-spacing:4.016947pt;}
.wsb3{word-spacing:4.112589pt;}
.ws1{word-spacing:4.131706pt;}
.ws45{word-spacing:4.208230pt;}
.ws4b{word-spacing:4.271991pt;}
.ws76{word-spacing:4.335753pt;}
.ws8b{word-spacing:4.339787pt;}
.ws7b{word-spacing:4.367633pt;}
.ws2b{word-spacing:4.399514pt;}
.ws84{word-spacing:4.463275pt;}
.ws52{word-spacing:4.590797pt;}
.wsbc{word-spacing:4.718319pt;}
.ws2{word-spacing:4.782067pt;}
.wsde{word-spacing:4.782080pt;}
.ws3e{word-spacing:4.973363pt;}
.ws7d{word-spacing:5.005244pt;}
.ws6c{word-spacing:5.037124pt;}
.ws55{word-spacing:5.100885pt;}
.wsa9{word-spacing:5.132766pt;}
.ws91{word-spacing:5.228407pt;}
.ws17{word-spacing:5.292169pt;}
.ws9d{word-spacing:5.324049pt;}
.ws6e{word-spacing:5.419691pt;}
.ws8e{word-spacing:5.483452pt;}
.ws58{word-spacing:5.547213pt;}
.ws31{word-spacing:5.802257pt;}
.ws99{word-spacing:5.929779pt;}
.ws72{word-spacing:6.057301pt;}
.ws29{word-spacing:6.121062pt;}
.wsc{word-spacing:6.184823pt;}
.ws18{word-spacing:6.248585pt;}
.ws4d{word-spacing:6.312346pt;}
.wsaa{word-spacing:6.439868pt;}
.ws51{word-spacing:6.503629pt;}
.ws40{word-spacing:6.567390pt;}
.wsac{word-spacing:6.694912pt;}
.ws65{word-spacing:6.758673pt;}
.ws9a{word-spacing:6.822434pt;}
.ws98{word-spacing:6.854315pt;}
.wsd{word-spacing:6.886195pt;}
.ws71{word-spacing:6.981837pt;}
.ws5e{word-spacing:7.013717pt;}
.ws39{word-spacing:7.141239pt;}
.ws41{word-spacing:7.205001pt;}
.ws9{word-spacing:7.332523pt;}
.ws9e{word-spacing:7.428164pt;}
.ws57{word-spacing:7.460045pt;}
.ws68{word-spacing:7.523806pt;}
.ws54{word-spacing:7.587567pt;}
.ws5d{word-spacing:7.651328pt;}
.ws3c{word-spacing:7.715089pt;}
.wsa3{word-spacing:7.838234pt;}
.ws46{word-spacing:7.970133pt;}
.ws2f{word-spacing:8.161417pt;}
.wse{word-spacing:8.352700pt;}
.ws90{word-spacing:8.416461pt;}
.ws94{word-spacing:8.480222pt;}
.wsb5{word-spacing:8.607744pt;}
.ws4c{word-spacing:8.671505pt;}
.ws7{word-spacing:8.735266pt;}
.wsa8{word-spacing:8.990310pt;}
.ws56{word-spacing:9.054071pt;}
.ws67{word-spacing:9.245355pt;}
.ws5b{word-spacing:9.372877pt;}
.ws1f{word-spacing:9.500399pt;}
.ws69{word-spacing:9.564160pt;}
.ws4e{word-spacing:9.627921pt;}
.ws8f{word-spacing:9.659802pt;}
.wsaf{word-spacing:9.755443pt;}
.wsb6{word-spacing:9.914846pt;}
.ws64{word-spacing:9.978607pt;}
.ws37{word-spacing:10.010487pt;}
.ws9f{word-spacing:10.034150pt;}
.wsda{word-spacing:10.201771pt;}
.wsa7{word-spacing:10.297412pt;}
.ws38{word-spacing:10.393054pt;}
.wsd9{word-spacing:10.456815pt;}
.ws66{word-spacing:10.616218pt;}
.ws97{word-spacing:10.839381pt;}
.wsc9{word-spacing:10.903142pt;}
.wsa6{word-spacing:10.935023pt;}
.ws30{word-spacing:11.030665pt;}
.ws7f{word-spacing:11.094426pt;}
.ws6a{word-spacing:11.285709pt;}
.ws81{word-spacing:11.591730pt;}
.ws42{word-spacing:11.668275pt;}
.ws77{word-spacing:11.955200pt;}
.ws7a{word-spacing:12.050842pt;}
.ws80{word-spacing:12.178364pt;}
.ws62{word-spacing:12.242125pt;}
.ws49{word-spacing:12.433408pt;}
.wsc5{word-spacing:12.560930pt;}
.ws60{word-spacing:12.624691pt;}
.ws7e{word-spacing:12.720333pt;}
.ws5c{word-spacing:13.071019pt;}
.ws6b{word-spacing:13.708629pt;}
.ws61{word-spacing:14.059315pt;}
.ws70{word-spacing:14.218718pt;}
.ws3f{word-spacing:18.630932pt;}
.ws15{word-spacing:20.531063pt;}
.ws6{word-spacing:21.742524pt;}
.wsa{word-spacing:22.252612pt;}
.wsc2{word-spacing:22.962159pt;}
.ws19{word-spacing:24.803055pt;}
.wsc4{word-spacing:26.078276pt;}
.wsbe{word-spacing:29.168879pt;}
.wsb2{word-spacing:29.350212pt;}
.wsc3{word-spacing:29.457613pt;}
.wsbb{word-spacing:31.632879pt;}
.ws0{word-spacing:33.170200pt;}
.wsb4{word-spacing:39.515546pt;}
.ws12{word-spacing:62.166867pt;}
.ws26{word-spacing:100.111572pt;}
.ws27{word-spacing:112.256367pt;}
.ws2e{word-spacing:184.108735pt;}
._4{margin-left:-37.491403pt;}
._80{margin-left:-23.910400pt;}
._7f{margin-left:-21.933807pt;}
._0{margin-left:-8.705800pt;}
._16{margin-left:-7.175542pt;}
._10{margin-left:-5.712997pt;}
._c{margin-left:-4.756581pt;}
._6{margin-left:-3.867620pt;}
._2{margin-left:-2.975400pt;}
._3{margin-left:-2.065853pt;}
._9{margin-left:-0.905419pt;}
._5{width:1.785310pt;}
._1{width:2.865200pt;}
._84{width:3.798025pt;}
._7{width:5.248994pt;}
._82{width:14.839871pt;}
._48{width:15.940267pt;}
._81{width:17.776574pt;}
._6f{width:19.026297pt;}
._e{width:19.934162pt;}
._17{width:21.678763pt;}
._b{width:23.778274pt;}
._76{width:25.036294pt;}
._11{width:26.006710pt;}
._8{width:27.765691pt;}
._14{width:29.126044pt;}
._13{width:30.468199pt;}
._71{width:31.969793pt;}
._12{width:33.410799pt;}
._72{width:34.622259pt;}
._77{width:37.054221pt;}
._d{width:38.409661pt;}
._a{width:39.710381pt;}
._70{width:40.870844pt;}
._75{width:43.485047pt;}
._7b{width:44.913290pt;}
._7c{width:46.290534pt;}
._63{width:50.715547pt;}
._7e{width:51.824983pt;}
._7d{width:56.160765pt;}
._83{width:62.778868pt;}
._18{width:63.964058pt;}
._5d{width:65.267758pt;}
._f{width:71.731200pt;}
._61{width:74.308421pt;}
._15{width:86.077200pt;}
._2e{width:87.737272pt;}
._94{width:96.158293pt;}
._33{width:102.212829pt;}
._5f{width:106.717663pt;}
._85{width:108.423322pt;}
._34{width:110.519101pt;}
._38{width:112.329916pt;}
._28{width:118.342968pt;}
._49{width:120.749332pt;}
._92{width:124.950102pt;}
._59{width:125.929426pt;}
._21{width:129.563206pt;}
._6c{width:130.763918pt;}
._88{width:133.098866pt;}
._25{width:135.566582pt;}
._87{width:136.686993pt;}
._89{width:137.880946pt;}
._90{width:139.624361pt;}
._1b{width:141.740925pt;}
._5b{width:144.339607pt;}
._8f{width:147.833186pt;}
._8e{width:149.919025pt;}
._8c{width:153.591673pt;}
._51{width:154.716346pt;}
._24{width:158.566412pt;}
._1e{width:160.366582pt;}
._6e{width:166.256422pt;}
._1f{width:172.076687pt;}
._54{width:174.852085pt;}
._4e{width:182.999112pt;}
._26{width:185.657800pt;}
._3e{width:186.588762pt;}
._52{width:188.302607pt;}
._32{width:189.785248pt;}
._3a{width:192.317759pt;}
._2a{width:195.672620pt;}
._42{width:204.942721pt;}
._4f{width:208.658801pt;}
._5a{width:209.694482pt;}
._4d{width:211.560312pt;}
._1d{width:214.579915pt;}
._57{width:215.843600pt;}
._45{width:219.084404pt;}
._6d{width:222.480925pt;}
._40{width:223.792443pt;}
._35{width:225.489818pt;}
._4a{width:226.626217pt;}
._43{width:229.708026pt;}
._8b{width:235.479450pt;}
._60{width:242.855596pt;}
._41{width:244.794347pt;}
._5c{width:245.721161pt;}
._19{width:250.726022pt;}
._86{width:276.225460pt;}
._23{width:277.455087pt;}
._50{width:283.473456pt;}
._20{width:286.966351pt;}
._2f{width:288.859356pt;}
._3d{width:289.886173pt;}
._58{width:291.058567pt;}
._44{width:296.923631pt;}
._2b{width:300.229127pt;}
._36{width:304.246145pt;}
._4c{width:315.006844pt;}
._56{width:318.089088pt;}
._39{width:319.128447pt;}
._1a{width:320.562057pt;}
._27{width:323.361167pt;}
._2c{width:329.770557pt;}
._46{width:333.327491pt;}
._47{width:335.065498pt;}
._74{width:337.710759pt;}
._93{width:344.020800pt;}
._1c{width:350.268801pt;}
._31{width:351.516396pt;}
._2d{width:352.869789pt;}
._8a{width:355.066783pt;}
._55{width:361.678606pt;}
._3f{width:362.880740pt;}
._30{width:369.122057pt;}
._37{width:371.921167pt;}
._95{width:373.886500pt;}
._53{width:375.682747pt;}
._22{width:379.453186pt;}
._91{width:382.672764pt;}
._29{width:394.251191pt;}
._4b{width:396.753495pt;}
._3b{width:400.948936pt;}
._62{width:406.264834pt;}
._3c{width:417.735918pt;}
._73{width:450.363812pt;}
._5e{width:474.382606pt;}
._8d{width:493.836368pt;}
._68{width:608.012247pt;}
._65{width:629.729580pt;}
._67{width:632.636771pt;}
._66{width:645.334914pt;}
._64{width:669.959438pt;}
._6b{width:745.676247pt;}
._6a{width:761.281580pt;}
._69{width:785.906104pt;}
._7a{width:835.537580pt;}
._79{width:851.142914pt;}
._78{width:875.767438pt;}
.fs3{font-size:42.507200pt;}
.fs2{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:56.149333pt;}
.yde{bottom:94.340000pt;}
.y1bb{bottom:96.000000pt;}
.y114{bottom:96.462667pt;}
.y1e{bottom:96.626667pt;}
.y169{bottom:106.989333pt;}
.y2d7{bottom:108.497333pt;}
.yc2{bottom:108.506667pt;}
.ya2{bottom:111.773333pt;}
.ydd{bottom:113.601333pt;}
.y5e{bottom:114.473333pt;}
.y1ba{bottom:115.261333pt;}
.y1ce{bottom:119.742667pt;}
.y183{bottom:121.734667pt;}
.y28a{bottom:122.113333pt;}
.y3c{bottom:122.774667pt;}
.y2d6{bottom:127.758667pt;}
.yc1{bottom:127.768000pt;}
.y204{bottom:127.874667pt;}
.y1e8{bottom:128.045333pt;}
.y113{bottom:129.008000pt;}
.y1d{bottom:129.170667pt;}
.yf7{bottom:129.772000pt;}
.ya1{bottom:131.033333pt;}
.ydc{bottom:132.861333pt;}
.y5d{bottom:133.734667pt;}
.y26c{bottom:134.522667pt;}
.y168{bottom:139.534667pt;}
.y2a6{bottom:139.546667pt;}
.y1a0{bottom:140.774667pt;}
.y2d5{bottom:147.020000pt;}
.yc0{bottom:147.029333pt;}
.y1b9{bottom:147.432000pt;}
.y23c{bottom:147.765333pt;}
.y1c{bottom:148.432000pt;}
.yf6{bottom:149.032000pt;}
.y7e{bottom:151.402667pt;}
.ydb{bottom:152.122667pt;}
.y289{bottom:152.513333pt;}
.y5c{bottom:152.996000pt;}
.y182{bottom:154.280000pt;}
.y3b{bottom:155.320000pt;}
.y1cd{bottom:156.272000pt;}
.y203{bottom:159.748000pt;}
.y19f{bottom:160.036000pt;}
.y1e7{bottom:160.089333pt;}
.ya0{bottom:160.589333pt;}
.y112{bottom:161.552000pt;}
.y26b{bottom:163.729333pt;}
.y23b{bottom:167.026667pt;}
.y1b{bottom:167.693333pt;}
.y7d{bottom:170.662667pt;}
.yda{bottom:171.914667pt;}
.y167{bottom:172.078667pt;}
.y2a5{bottom:172.090667pt;}
.y5b{bottom:172.257333pt;}
.y2d4{bottom:176.574667pt;}
.ybf{bottom:176.585333pt;}
.yf5{bottom:178.588000pt;}
.y202{bottom:179.009333pt;}
.y19e{bottom:179.297333pt;}
.y1b8{bottom:179.852000pt;}
.y288{bottom:182.914667pt;}
.y26a{bottom:182.990667pt;}
.y14b{bottom:183.800000pt;}
.y23a{bottom:186.286667pt;}
.y181{bottom:186.824000pt;}
.y1a{bottom:186.954667pt;}
.y3a{bottom:187.864000pt;}
.y1cc{bottom:188.816000pt;}
.y7c{bottom:189.924000pt;}
.y24c{bottom:190.212000pt;}
.y111{bottom:191.108000pt;}
.y1e6{bottom:191.134667pt;}
.y166{bottom:191.340000pt;}
.y5a{bottom:191.517333pt;}
.y21d{bottom:196.886667pt;}
.y19d{bottom:198.557333pt;}
.y12c{bottom:199.056000pt;}
.y9f{bottom:202.156000pt;}
.y14a{bottom:203.061333pt;}
.yd9{bottom:203.330667pt;}
.y2a4{bottom:204.634667pt;}
.y19{bottom:206.216000pt;}
.y287{bottom:209.026667pt;}
.y7b{bottom:209.185333pt;}
.y24b{bottom:209.472000pt;}
.y59{bottom:210.778667pt;}
.y201{bottom:210.884000pt;}
.y1b7{bottom:212.272000pt;}
.y269{bottom:214.422667pt;}
.y21c{bottom:216.148000pt;}
.y2d3{bottom:218.141333pt;}
.ybe{bottom:218.150667pt;}
.y12b{bottom:218.317333pt;}
.y239{bottom:218.790667pt;}
.y180{bottom:219.369333pt;}
.y39{bottom:220.409333pt;}
.y1e5{bottom:220.690667pt;}
.y165{bottom:220.896000pt;}
.y1cb{bottom:221.361333pt;}
.y9e{bottom:221.417333pt;}
.yf4{bottom:222.014667pt;}
.y149{bottom:222.322667pt;}
.y24a{bottom:228.733333pt;}
.y58{bottom:230.040000pt;}
.y110{bottom:232.674667pt;}
.y19c{bottom:233.604000pt;}
.y18{bottom:235.772000pt;}
.y2a3{bottom:237.180000pt;}
.y2d2{bottom:237.402667pt;}
.ybd{bottom:237.412000pt;}
.y12a{bottom:237.578667pt;}
.y238{bottom:238.052000pt;}
.y286{bottom:238.582667pt;}
.y17f{bottom:238.629333pt;}
.y9d{bottom:240.678667pt;}
.yf3{bottom:241.276000pt;}
.y200{bottom:241.417333pt;}
.y7a{bottom:244.232000pt;}
.y1b6{bottom:244.442667pt;}
.yd8{bottom:244.896000pt;}
.y268{bottom:245.854667pt;}
.y21b{bottom:248.692000pt;}
.y57{bottom:249.301333pt;}
.y1ca{bottom:250.917333pt;}
.y38{bottom:252.953333pt;}
.y2d1{bottom:256.664000pt;}
.ybc{bottom:256.673333pt;}
.y237{bottom:257.313333pt;}
.y17e{bottom:257.890667pt;}
.y148{bottom:258.365333pt;}
.y9c{bottom:259.940000pt;}
.yf2{bottom:260.536000pt;}
.y1e4{bottom:261.998667pt;}
.y164{bottom:262.461333pt;}
.yd7{bottom:264.157333pt;}
.y10f{bottom:265.218667pt;}
.y249{bottom:265.262667pt;}
.y129{bottom:267.134667pt;}
.y21a{bottom:267.953333pt;}
.y56{bottom:268.562667pt;}
.y2a2{bottom:269.724000pt;}
.y1ff{bottom:270.973333pt;}
.y17{bottom:273.541333pt;}
.y1b5{bottom:273.998667pt;}
.ybb{bottom:275.934667pt;}
.y267{bottom:277.286667pt;}
.y147{bottom:277.626667pt;}
.y285{bottom:279.041333pt;}
.yf1{bottom:280.329333pt;}
.y19b{bottom:281.536000pt;}
.y163{bottom:281.722667pt;}
.y248{bottom:284.524000pt;}
.y2bf{bottom:284.981333pt;}
.y37{bottom:285.498667pt;}
.y17d{bottom:287.446667pt;}
.y55{bottom:287.824000pt;}
.y2bc{bottom:288.542667pt;}
.y1c9{bottom:292.482667pt;}
.y79{bottom:292.628000pt;}
.y2d0{bottom:293.193333pt;}
.y236{bottom:293.681333pt;}
.yd6{bottom:293.713333pt;}
.y1e3{bottom:294.044000pt;}
.y9b{bottom:294.985333pt;}
.yba{bottom:295.196000pt;}
.y146{bottom:296.888000pt;}
.y10e{bottom:297.764000pt;}
.y2a1{bottom:299.280000pt;}
.y219{bottom:300.497333pt;}
.y19a{bottom:300.797333pt;}
.y2be{bottom:304.242667pt;}
.y284{bottom:305.154667pt;}
.y54{bottom:307.616000pt;}
.y2bb{bottom:307.804000pt;}
.y128{bottom:308.700000pt;}
.y266{bottom:308.717333pt;}
.y247{bottom:310.426667pt;}
.yf0{bottom:311.744000pt;}
.y1b4{bottom:311.768000pt;}
.y78{bottom:311.889333pt;}
.y1fe{bottom:312.193333pt;}
.y2cf{bottom:312.454667pt;}
.y235{bottom:312.941333pt;}
.y162{bottom:314.268000pt;}
.y145{bottom:316.149333pt;}
.y36{bottom:318.042667pt;}
.y9a{bottom:318.896000pt;}
.y218{bottom:319.758667pt;}
.y199{bottom:320.057333pt;}
.y16{bottom:321.472000pt;}
.y283{bottom:324.416000pt;}
.y1e2{bottom:326.089333pt;}
.y2ba{bottom:327.065333pt;}
.y10d{bottom:327.320000pt;}
.y127{bottom:327.961333pt;}
.y17c{bottom:329.013333pt;}
.yb9{bottom:330.241333pt;}
.y1c8{bottom:331.005333pt;}
.y1fd{bottom:331.454667pt;}
.y77{bottom:331.681333pt;}
.y234{bottom:332.202667pt;}
.y161{bottom:333.529333pt;}
.y2bd{bottom:333.798667pt;}
.yd5{bottom:335.280000pt;}
.y144{bottom:335.409333pt;}
.y246{bottom:336.330667pt;}
.y265{bottom:337.925333pt;}
.y2a0{bottom:342.706667pt;}
.y2ce{bottom:344.998667pt;}
.y2b9{bottom:346.325333pt;}
.y17b{bottom:348.274667pt;}
.y35{bottom:350.588000pt;}
.y217{bottom:352.304000pt;}
.yef{bottom:353.310667pt;}
.y15{bottom:354.017333pt;}
.yb8{bottom:354.152000pt;}
.y282{bottom:354.816000pt;}
.y143{bottom:355.202667pt;}
.y198{bottom:356.588000pt;}
.y1e1{bottom:357.134667pt;}
.y264{bottom:357.185333pt;}
.y126{bottom:357.517333pt;}
.y53{bottom:359.488000pt;}
.y1b3{bottom:359.634667pt;}
.y233{bottom:361.758667pt;}
.y29f{bottom:361.968000pt;}
.y245{bottom:362.233333pt;}
.y1fc{bottom:363.329333pt;}
.y2b8{bottom:365.586667pt;}
.y1c7{bottom:366.052000pt;}
.y160{bottom:366.073333pt;}
.y99{bottom:367.292000pt;}
.y17a{bottom:367.534667pt;}
.yd4{bottom:367.822667pt;}
.y10c{bottom:368.885333pt;}
.y216{bottom:371.564000pt;}
.y197{bottom:375.848000pt;}
.y263{bottom:376.446667pt;}
.y2cd{bottom:377.544000pt;}
.y52{bottom:378.749333pt;}
.y1b2{bottom:378.896000pt;}
.y34{bottom:380.144000pt;}
.y29e{bottom:381.228000pt;}
.y76{bottom:383.553333pt;}
.y2b7{bottom:384.848000pt;}
.y281{bottom:385.217333pt;}
.yee{bottom:385.856000pt;}
.y98{bottom:386.553333pt;}
.y14{bottom:386.561333pt;}
.y142{bottom:386.617333pt;}
.y1e0{bottom:386.690667pt;}
.y10b{bottom:388.146667pt;}
.y244{bottom:394.777333pt;}
.y196{bottom:395.109333pt;}
.y1fb{bottom:395.204000pt;}
.y262{bottom:395.708000pt;}
.y2cc{bottom:396.805333pt;}
.y179{bottom:397.090667pt;}
.y15f{bottom:398.618667pt;}
.y125{bottom:399.084000pt;}
.y232{bottom:399.528000pt;}
.yd3{bottom:400.364000pt;}
.y29d{bottom:400.489333pt;}
.yb7{bottom:402.084000pt;}
.y75{bottom:402.814667pt;}
.y215{bottom:404.109333pt;}
.y97{bottom:405.814667pt;}
.y51{bottom:408.305333pt;}
.y1b1{bottom:408.452000pt;}
.y280{bottom:411.329333pt;}
.y1c6{bottom:413.982667pt;}
.y15e{bottom:417.878667pt;}
.yed{bottom:418.400000pt;}
.y13{bottom:419.106667pt;}
.y29c{bottom:419.750667pt;}
.yb6{bottom:421.344000pt;}
.y33{bottom:421.709333pt;}
.y10a{bottom:423.193333pt;}
.y214{bottom:423.370667pt;}
.y96{bottom:425.076000pt;}
.y261{bottom:425.264000pt;}
.y1fa{bottom:427.077333pt;}
.y243{bottom:427.322667pt;}
.y195{bottom:427.654667pt;}
.y1df{bottom:427.998667pt;}
.y141{bottom:428.184000pt;}
.y2cb{bottom:429.349333pt;}
.yd2{bottom:429.920000pt;}
.y27f{bottom:430.590667pt;}
.y124{bottom:431.628000pt;}
.y74{bottom:432.370667pt;}
.y12{bottom:438.368000pt;}
.y178{bottom:438.657333pt;}
.y29b{bottom:439.012000pt;}
.yb5{bottom:440.605333pt;}
.y32{bottom:440.970667pt;}
.y2b6{bottom:442.632000pt;}
.y95{bottom:444.337333pt;}
.y1f9{bottom:446.338667pt;}
.y1c5{bottom:446.528000pt;}
.y242{bottom:446.584000pt;}
.y194{bottom:446.916000pt;}
.y109{bottom:447.104000pt;}
.y1de{bottom:447.260000pt;}
.y15d{bottom:447.434667pt;}
.y231{bottom:447.438667pt;}
.y140{bottom:447.445333pt;}
.y2ca{bottom:448.610667pt;}
.y1b0{bottom:449.953333pt;}
.yec{bottom:450.945333pt;}
.y50{bottom:451.730667pt;}
.y213{bottom:452.926667pt;}
.y11{bottom:457.628000pt;}
.y177{bottom:457.918667pt;}
.y29a{bottom:458.804000pt;}
.yb4{bottom:459.866667pt;}
.y27e{bottom:460.146667pt;}
.y260{bottom:463.033333pt;}
.y94{bottom:464.129333pt;}
.y123{bottom:464.173333pt;}
.y193{bottom:466.176000pt;}
.y230{bottom:466.700000pt;}
.y4f{bottom:470.992000pt;}
.yd1{bottom:471.486667pt;}
.y2b5{bottom:472.186667pt;}
.y31{bottom:473.516000pt;}
.y73{bottom:475.796000pt;}
.y10{bottom:476.889333pt;}
.y176{bottom:477.180000pt;}
.y1f8{bottom:478.213333pt;}
.y1c4{bottom:479.072000pt;}
.yb3{bottom:479.128000pt;}
.yeb{bottom:480.500000pt;}
.y2c9{bottom:481.154667pt;}
.y1dd{bottom:482.306667pt;}
.y1af{bottom:482.373333pt;}
.y13f{bottom:483.489333pt;}
.y22f{bottom:485.961333pt;}
.y25f{bottom:486.944000pt;}
.y15c{bottom:489.001333pt;}
.y4e{bottom:490.253333pt;}
.yd0{bottom:490.746667pt;}
.y212{bottom:494.492000pt;}
.y108{bottom:495.034667pt;}
.y72{bottom:495.057333pt;}
.y93{bottom:495.544000pt;}
.yf{bottom:496.150667pt;}
.y122{bottom:496.717333pt;}
.y1f7{bottom:497.474667pt;}
.yb2{bottom:498.389333pt;}
.y192{bottom:498.721333pt;}
.y27d{bottom:500.605333pt;}
.y13e{bottom:502.749333pt;}
.y299{bottom:503.702667pt;}
.y30{bottom:506.060000pt;}
.y1dc{bottom:506.216000pt;}
.y175{bottom:506.736000pt;}
.y15b{bottom:508.262667pt;}
.y1c3{bottom:508.628000pt;}
.y4d{bottom:509.514667pt;}
.y2b4{bottom:509.957333pt;}
.ycf{bottom:510.008000pt;}
.y211{bottom:513.753333pt;}
.y71{bottom:514.318667pt;}
.y1ae{bottom:514.793333pt;}
.ye{bottom:515.412000pt;}
.y22e{bottom:515.517333pt;}
.y2c8{bottom:517.685333pt;}
.y191{bottom:517.982667pt;}
.y27c{bottom:519.866667pt;}
.y13d{bottom:522.010667pt;}
.yea{bottom:522.066667pt;}
.y121{bottom:526.273333pt;}
.y1f6{bottom:527.030667pt;}
.y15a{bottom:527.524000pt;}
.y107{bottom:527.580000pt;}
.yb1{bottom:527.945333pt;}
.y4c{bottom:528.774667pt;}
.y241{bottom:530.933333pt;}
.y210{bottom:533.014667pt;}
.y70{bottom:533.580000pt;}
.y2b3{bottom:533.866667pt;}
.y25e{bottom:534.300000pt;}
.yd{bottom:534.673333pt;}
.y190{bottom:537.244000pt;}
.y2f{bottom:538.605333pt;}
.y92{bottom:538.970667pt;}
.y13c{bottom:541.272000pt;}
.ye9{bottom:541.328000pt;}
.y27b{bottom:544.545333pt;}
.yce{bottom:545.054667pt;}
.y298{bottom:545.269333pt;}
.y159{bottom:546.784000pt;}
.y2c7{bottom:547.241333pt;}
.y174{bottom:548.301333pt;}
.y4b{bottom:548.568000pt;}
.y1c2{bottom:550.194667pt;}
.y1ad{bottom:550.824000pt;}
.y6f{bottom:552.841333pt;}
.y25d{bottom:553.561333pt;}
.y1db{bottom:553.889333pt;}
.y22d{bottom:557.062667pt;}
.y2e{bottom:557.865333pt;}
.y91{bottom:558.232000pt;}
.y106{bottom:560.124000pt;}
.y13b{bottom:560.533333pt;}
.y20f{bottom:565.560000pt;}
.y158{bottom:566.045333pt;}
.y173{bottom:567.562667pt;}
.y120{bottom:567.840000pt;}
.y1f5{bottom:568.250667pt;}
.yb0{bottom:569.510667pt;}
.yc{bottom:569.718667pt;}
.y18f{bottom:569.788000pt;}
.y1ac{bottom:570.085333pt;}
.y6e{bottom:572.633333pt;}
.y25c{bottom:572.822667pt;}
.ye8{bottom:573.872000pt;}
.y22c{bottom:576.322667pt;}
.y90{bottom:577.493333pt;}
.y297{bottom:577.813333pt;}
.y13a{bottom:580.325333pt;}
.y2b2{bottom:581.798667pt;}
.y1c1{bottom:582.740000pt;}
.y20e{bottom:584.820000pt;}
.y157{bottom:585.306667pt;}
.y1da{bottom:585.934667pt;}
.y172{bottom:586.824000pt;}
.y2d{bottom:587.421333pt;}
.y1f4{bottom:587.512000pt;}
.y18e{bottom:589.049333pt;}
.y105{bottom:589.680000pt;}
.y27a{bottom:589.920000pt;}
.y2c6{bottom:590.666667pt;}
.ycd{bottom:592.985333pt;}
.y8f{bottom:596.753333pt;}
.y296{bottom:597.074667pt;}
.y1ab{bottom:599.641333pt;}
.y11f{bottom:600.384000pt;}
.y4a{bottom:600.440000pt;}
.y240{bottom:602.000000pt;}
.yaf{bottom:602.056000pt;}
.y22b{bottom:602.185333pt;}
.y156{bottom:604.568000pt;}
.y25b{bottom:604.901333pt;}
.ye7{bottom:606.417333pt;}
.y1f3{bottom:606.772000pt;}
.y18d{bottom:608.310667pt;}
.y2c5{bottom:609.928000pt;}
.y139{bottom:611.741333pt;}
.y2b1{bottom:614.342667pt;}
.y1c0{bottom:615.284000pt;}
.y8e{bottom:616.014667pt;}
.y20d{bottom:617.365333pt;}
.yb{bottom:617.650667pt;}
.y1d9{bottom:617.980000pt;}
.y49{bottom:619.701333pt;}
.y279{bottom:620.320000pt;}
.y171{bottom:621.870667pt;}
.y155{bottom:623.829333pt;}
.y25a{bottom:624.162667pt;}
.y6d{bottom:624.505333pt;}
.y2c{bottom:625.190667pt;}
.ycc{bottom:625.529333pt;}
.y22a{bottom:628.048000pt;}
.y2c4{bottom:629.189333pt;}
.y295{bottom:629.618667pt;}
.y104{bottom:631.246667pt;}
.y23f{bottom:631.556000pt;}
.y11e{bottom:632.929333pt;}
.yae{bottom:634.600000pt;}
.y8d{bottom:635.808000pt;}
.y1f2{bottom:636.328000pt;}
.y20c{bottom:636.626667pt;}
.ya{bottom:636.912000pt;}
.ye6{bottom:638.961333pt;}
.y1aa{bottom:641.142667pt;}
.y259{bottom:643.424000pt;}
.y6c{bottom:643.766667pt;}
.y18c{bottom:644.840000pt;}
.y170{bottom:645.781333pt;}
.y278{bottom:646.433333pt;}
.y2b0{bottom:646.888000pt;}
.y1bf{bottom:647.828000pt;}
.y2c3{bottom:648.450667pt;}
.y1d8{bottom:649.025333pt;}
.y48{bottom:649.256000pt;}
.y138{bottom:653.308000pt;}
.y9{bottom:656.173333pt;}
.ycb{bottom:658.073333pt;}
.y154{bottom:658.876000pt;}
.y229{bottom:660.552000pt;}
.y294{bottom:662.164000pt;}
.y258{bottom:662.685333pt;}
.y103{bottom:663.790667pt;}
.y18b{bottom:664.101333pt;}
.y11d{bottom:665.473333pt;}
.y277{bottom:665.694667pt;}
.yad{bottom:667.145333pt;}
.y8c{bottom:667.222667pt;}
.y2c2{bottom:667.710667pt;}
.y20b{bottom:669.170667pt;}
.ye5{bottom:671.506667pt;}
.y137{bottom:672.568000pt;}
.y2b{bottom:673.122667pt;}
.y6b{bottom:673.322667pt;}
.y1a9{bottom:673.562667pt;}
.y1f1{bottom:674.097333pt;}
.y8{bottom:675.433333pt;}
.y1be{bottom:677.384000pt;}
.y1d7{bottom:678.581333pt;}
.y2af{bottom:679.432000pt;}
.y257{bottom:681.945333pt;}
.y153{bottom:682.785333pt;}
.y18a{bottom:683.362667pt;}
.yac{bottom:686.406667pt;}
.y2c1{bottom:687.504000pt;}
.y20a{bottom:688.432000pt;}
.y2e1{bottom:689.782667pt;}
.yca{bottom:690.614667pt;}
.y47{bottom:690.822667pt;}
.y228{bottom:693.056000pt;}
.y16f{bottom:693.712000pt;}
.y7{bottom:694.694667pt;}
.y293{bottom:694.708000pt;}
.y11c{bottom:695.029333pt;}
.y276{bottom:695.249333pt;}
.y102{bottom:696.336000pt;}
.y2ae{bottom:698.693333pt;}
.ye4{bottom:701.062667pt;}
.y2a{bottom:705.668000pt;}
.y1a8{bottom:705.982667pt;}
.y136{bottom:708.612000pt;}
.y2e0{bottom:709.044000pt;}
.y46{bottom:710.084000pt;}
.y8b{bottom:710.649333pt;}
.y227{bottom:712.317333pt;}
.y189{bottom:712.917333pt;}
.y16e{bottom:712.973333pt;}
.y256{bottom:713.377333pt;}
.y292{bottom:713.969333pt;}
.y6a{bottom:716.748000pt;}
.y2ad{bottom:717.954667pt;}
.yab{bottom:718.950667pt;}
.y2c0{bottom:719.229333pt;}
.y1d6{bottom:719.889333pt;}
.yc9{bottom:720.170667pt;}
.y1f0{bottom:721.682667pt;}
.y209{bottom:724.961333pt;}
.y135{bottom:727.873333pt;}
.y101{bottom:728.880000pt;}
.y45{bottom:729.345333pt;}
.y6{bottom:729.741333pt;}
.y8a{bottom:729.910667pt;}
.y152{bottom:730.717333pt;}
.y226{bottom:731.577333pt;}
.y16d{bottom:732.234667pt;}
.y255{bottom:732.638667pt;}
.y291{bottom:733.230667pt;}
.y275{bottom:735.708000pt;}
.y69{bottom:736.009333pt;}
.y11b{bottom:736.596000pt;}
.y2ac{bottom:737.216000pt;}
.y1a7{bottom:738.153333pt;}
.y29{bottom:738.212000pt;}
.ye3{bottom:742.629333pt;}
.y208{bottom:744.222667pt;}
.y2df{bottom:745.573333pt;}
.y134{bottom:747.134667pt;}
.y89{bottom:749.170667pt;}
.y151{bottom:749.978667pt;}
.yaa{bottom:751.496000pt;}
.y254{bottom:751.900000pt;}
.y1d5{bottom:751.933333pt;}
.y1ef{bottom:753.557333pt;}
.y188{bottom:754.484000pt;}
.y274{bottom:754.969333pt;}
.y68{bottom:755.270667pt;}
.y11a{bottom:755.857333pt;}
.y1a6{bottom:757.414667pt;}
.y100{bottom:758.436000pt;}
.yc8{bottom:761.736000pt;}
.ye2{bottom:761.889333pt;}
.y290{bottom:762.786667pt;}
.y225{bottom:764.081333pt;}
.y44{bottom:764.392000pt;}
.y2de{bottom:764.834667pt;}
.y133{bottom:766.394667pt;}
.y2ab{bottom:766.772000pt;}
.y88{bottom:768.432000pt;}
.y150{bottom:769.238667pt;}
.y28{bottom:770.756000pt;}
.y253{bottom:771.161333pt;}
.y207{bottom:773.778667pt;}
.y67{bottom:774.532000pt;}
.yc7{bottom:780.997333pt;}
.y273{bottom:781.082667pt;}
.ye1{bottom:781.150667pt;}
.y224{bottom:783.342667pt;}
.y1d4{bottom:783.978667pt;}
.ya9{bottom:784.040000pt;}
.y2dd{bottom:784.096000pt;}
.y1ee{bottom:785.432000pt;}
.y132{bottom:785.656000pt;}
.y1a5{bottom:786.970667pt;}
.y187{bottom:787.029333pt;}
.y87{bottom:787.693333pt;}
.y14f{bottom:788.500000pt;}
.y16c{bottom:790.017333pt;}
.y119{bottom:790.902667pt;}
.y66{bottom:793.792000pt;}
.y5{bottom:794.941333pt;}
.yff{bottom:800.002667pt;}
.y252{bottom:802.593333pt;}
.y223{bottom:802.604000pt;}
.y27{bottom:803.301333pt;}
.y28f{bottom:804.353333pt;}
.y131{bottom:805.449333pt;}
.y86{bottom:807.485333pt;}
.y14e{bottom:807.761333pt;}
.y2aa{bottom:808.337333pt;}
.yc6{bottom:810.553333pt;}
.y272{bottom:811.482667pt;}
.y206{bottom:811.548000pt;}
.y43{bottom:812.322667pt;}
.y65{bottom:813.053333pt;}
.y1d3{bottom:815.024000pt;}
.y1ed{bottom:815.965333pt;}
.ye0{bottom:816.197333pt;}
.ya8{bottom:816.585333pt;}
.y2dc{bottom:816.640000pt;}
.y16b{bottom:819.573333pt;}
.y251{bottom:821.854667pt;}
.y26{bottom:822.562667pt;}
.y28e{bottom:823.613333pt;}
.y14d{bottom:827.022667pt;}
.y1a4{bottom:828.472000pt;}
.y42{bottom:831.584000pt;}
.y64{bottom:832.314667pt;}
.y4{bottom:832.414667pt;}
.yfe{bottom:832.546667pt;}
.y222{bottom:835.108000pt;}
.y205{bottom:835.458667pt;}
.ya7{bottom:835.845333pt;}
.y2db{bottom:835.901333pt;}
.y130{bottom:836.864000pt;}
.y118{bottom:838.834667pt;}
.y85{bottom:838.901333pt;}
.y2a9{bottom:840.882667pt;}
.y250{bottom:841.114667pt;}
.y271{bottom:841.884000pt;}
.y1d2{bottom:844.580000pt;}
.y1ec{bottom:845.521333pt;}
.y14c{bottom:846.284000pt;}
.y41{bottom:850.845333pt;}
.y63{bottom:851.576000pt;}
.y25{bottom:852.118667pt;}
.y221{bottom:854.369333pt;}
.y117{bottom:858.096000pt;}
.y28d{bottom:860.144000pt;}
.y1a3{bottom:860.892000pt;}
.y16a{bottom:861.140000pt;}
.ydf{bottom:864.128000pt;}
.yfd{bottom:865.092000pt;}
.ya6{bottom:865.401333pt;}
.y23e{bottom:868.390667pt;}
.y2da{bottom:868.445333pt;}
.y62{bottom:870.837333pt;}
.yc5{bottom:871.380000pt;}
.y270{bottom:872.284000pt;}
.y24f{bottom:872.546667pt;}
.y2a8{bottom:873.426667pt;}
.y12f{bottom:878.430667pt;}
.y3{bottom:879.737333pt;}
.y186{bottom:881.673333pt;}
.y84{bottom:882.326667pt;}
.y40{bottom:883.389333pt;}
.y1d1{bottom:885.888000pt;}
.y1eb{bottom:886.741333pt;}
.y220{bottom:886.873333pt;}
.y116{bottom:887.652000pt;}
.y2d9{bottom:887.706667pt;}
.y61{bottom:890.098667pt;}
.yc4{bottom:890.641333pt;}
.y24e{bottom:891.808000pt;}
.y28c{bottom:892.688000pt;}
.y1a2{bottom:893.312000pt;}
.y24{bottom:893.684000pt;}
.yfc{bottom:894.648000pt;}
.y12e{bottom:897.692000pt;}
.y23d{bottom:897.946667pt;}
.y26f{bottom:898.397333pt;}
.y83{bottom:901.588000pt;}
.y21f{bottom:906.134667pt;}
.ya5{bottom:906.968000pt;}
.y60{bottom:909.890667pt;}
.y2a7{bottom:909.957333pt;}
.y24d{bottom:911.069333pt;}
.y23{bottom:912.945333pt;}
.y2{bottom:912.946667pt;}
.y3f{bottom:915.934667pt;}
.y12d{bottom:916.953333pt;}
.y1d0{bottom:917.933333pt;}
.y1ea{bottom:918.616000pt;}
.yc3{bottom:920.197333pt;}
.y2d8{bottom:920.252000pt;}
.y82{bottom:920.849333pt;}
.y185{bottom:923.240000pt;}
.y26e{bottom:924.510667pt;}
.y28b{bottom:925.233333pt;}
.y21e{bottom:925.396000pt;}
.y1a1{bottom:925.732000pt;}
.ya4{bottom:926.229333pt;}
.y115{bottom:929.217333pt;}
.yfb{bottom:936.213333pt;}
.y1bd{bottom:939.512000pt;}
.y81{bottom:940.110667pt;}
.y184{bottom:942.501333pt;}
.y22{bottom:945.490667pt;}
.y1{bottom:946.154667pt;}
.y3e{bottom:948.478667pt;}
.y1cf{bottom:949.978667pt;}
.y1e9{bottom:950.489333pt;}
.y26d{bottom:954.910667pt;}
.yfa{bottom:955.474667pt;}
.ya3{bottom:958.773333pt;}
.y80{bottom:959.372000pt;}
.y5f{bottom:961.762667pt;}
.yf9{bottom:974.736000pt;}
.y21{bottom:978.034667pt;}
.y7f{bottom:979.164000pt;}
.y3d{bottom:981.024000pt;}
.y1bc{bottom:991.318667pt;}
.yf8{bottom:1009.782667pt;}
.y20{bottom:1010.580000pt;}
.h4{height:47.820800pt;}
.h6{height:51.828360pt;}
.h5{height:51.833693pt;}
.h3{height:57.384800pt;}
.h2{height:77.911400pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:96.000000pt;}
.xb{left:103.970667pt;}
.x2{left:107.194667pt;}
.x8{left:115.076000pt;}
.xe{left:117.400000pt;}
.x7{left:119.412000pt;}
.xd{left:120.433333pt;}
.xc{left:123.465333pt;}
.x1d{left:125.534667pt;}
.x14{left:128.278667pt;}
.x18{left:131.644000pt;}
.x15{left:133.769333pt;}
.xa{left:135.020000pt;}
.x20{left:142.740000pt;}
.x1{left:144.206667pt;}
.x23{left:145.554667pt;}
.x17{left:146.662667pt;}
.x24{left:150.757333pt;}
.x1b{left:152.586667pt;}
.x22{left:157.912000pt;}
.x21{left:161.706667pt;}
.x1f{left:164.238667pt;}
.x1c{left:169.357333pt;}
.x1e{left:174.637333pt;}
.x3{left:185.096000pt;}
.x13{left:193.210667pt;}
.x1a{left:194.432000pt;}
.x12{left:216.897333pt;}
.x16{left:230.725333pt;}
.x10{left:245.884000pt;}
.x11{left:255.214667pt;}
.xf{left:274.208000pt;}
.x4{left:286.624000pt;}
.x5{left:357.053333pt;}
.x19{left:389.046667pt;}
.x9{left:392.948000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  