
    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_9fb411f9f4509e8949694597.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_3d954e61109f3facc9b6b549.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.075000;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_63a73097468acc07632fbdfa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_ceca8c5fe507682c3547063b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_5bb9afb68aa7f24602bb7559.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_055250f03c7309f479825d88.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_503caa291c852cf4b214ed07.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.966000;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_00150b23ece5fa236bbb3fde.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.699707;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);}
.v1{vertical-align:-3.543000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:45.243000px;}
.v3{vertical-align:57.982200px;}
.ls2{letter-spacing:-6.552000px;}
.lsa{letter-spacing:-6.468000px;}
.ls4{letter-spacing:-3.552000px;}
.ls6{letter-spacing:-2.340000px;}
.ls1{letter-spacing:-2.100000px;}
.lse{letter-spacing:-1.296000px;}
.lsb{letter-spacing:-1.254000px;}
.ls8{letter-spacing:-1.140000px;}
.lsc{letter-spacing:-0.792000px;}
.lsd{letter-spacing:-0.462000px;}
.ls7{letter-spacing:-0.240000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.009600px;}
.ls9{letter-spacing:0.300000px;}
.ls3{letter-spacing:1.851000px;}
.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;}
}
.ws83{word-spacing:-21.000000px;}
.ws1{word-spacing:-19.068000px;}
.ws4{word-spacing:-18.000000px;}
.ws70{word-spacing:-17.177680px;}
.ws2{word-spacing:-16.968000px;}
.ws97{word-spacing:-16.704000px;}
.ws71{word-spacing:-15.150000px;}
.ws72{word-spacing:-14.188650px;}
.ws73{word-spacing:-14.048100px;}
.ws7c{word-spacing:-13.920000px;}
.ws76{word-spacing:-13.909050px;}
.ws77{word-spacing:-13.771350px;}
.ws7a{word-spacing:-13.740000px;}
.ws78{word-spacing:-13.620000px;}
.ws27{word-spacing:-13.500000px;}
.ws7b{word-spacing:-12.480000px;}
.ws15{word-spacing:-12.000000px;}
.ws57{word-spacing:-4.320000px;}
.ws96{word-spacing:-3.960000px;}
.wsc{word-spacing:-3.528000px;}
.ws23{word-spacing:-3.384000px;}
.ws41{word-spacing:-3.240000px;}
.ws4d{word-spacing:-3.096000px;}
.ws2a{word-spacing:-2.952000px;}
.ws42{word-spacing:-2.880000px;}
.wsa{word-spacing:-2.520000px;}
.ws3d{word-spacing:-2.448000px;}
.ws5d{word-spacing:-2.304000px;}
.ws56{word-spacing:-2.232000px;}
.ws5e{word-spacing:-2.088000px;}
.ws36{word-spacing:-2.016000px;}
.ws63{word-spacing:-1.998000px;}
.ws52{word-spacing:-1.944000px;}
.ws54{word-spacing:-1.872000px;}
.ws26{word-spacing:-1.800000px;}
.ws53{word-spacing:-1.728000px;}
.ws8{word-spacing:-1.584000px;}
.ws3{word-spacing:-1.512000px;}
.ws48{word-spacing:-1.440000px;}
.ws69{word-spacing:-1.368000px;}
.ws2d{word-spacing:-1.296000px;}
.ws7d{word-spacing:-1.260000px;}
.ws30{word-spacing:-1.152000px;}
.ws74{word-spacing:-1.090800px;}
.ws47{word-spacing:-1.080000px;}
.ws75{word-spacing:-1.021583px;}
.ws4f{word-spacing:-1.008000px;}
.ws6c{word-spacing:-0.972000px;}
.ws25{word-spacing:-0.936000px;}
.ws67{word-spacing:-0.864000px;}
.ws13{word-spacing:-0.720000px;}
.wsd{word-spacing:-0.648000px;}
.ws1a{word-spacing:-0.576000px;}
.ws35{word-spacing:-0.504000px;}
.ws5a{word-spacing:-0.432000px;}
.ws55{word-spacing:-0.360000px;}
.ws24{word-spacing:-0.288000px;}
.ws2e{word-spacing:-0.216000px;}
.ws32{word-spacing:-0.144000px;}
.wsf{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.ws6e{word-spacing:0.072000px;}
.wsb{word-spacing:0.144000px;}
.ws37{word-spacing:0.288000px;}
.ws59{word-spacing:0.360000px;}
.ws43{word-spacing:0.432000px;}
.ws7e{word-spacing:0.600000px;}
.ws1c{word-spacing:0.720000px;}
.ws16{word-spacing:0.792000px;}
.ws12{word-spacing:0.864000px;}
.ws9{word-spacing:0.936000px;}
.ws28{word-spacing:1.008000px;}
.ws6a{word-spacing:1.152000px;}
.ws50{word-spacing:1.224000px;}
.ws5c{word-spacing:1.368000px;}
.ws61{word-spacing:1.512000px;}
.ws68{word-spacing:1.584000px;}
.ws1f{word-spacing:1.656000px;}
.ws6b{word-spacing:1.728000px;}
.ws4c{word-spacing:1.800000px;}
.ws2f{word-spacing:1.872000px;}
.ws5{word-spacing:1.944000px;}
.ws1b{word-spacing:2.088000px;}
.ws18{word-spacing:2.160000px;}
.ws5f{word-spacing:2.232000px;}
.ws82{word-spacing:2.340000px;}
.ws62{word-spacing:2.376000px;}
.ws51{word-spacing:2.448000px;}
.ws22{word-spacing:2.592000px;}
.ws44{word-spacing:2.736000px;}
.ws3b{word-spacing:2.880000px;}
.ws1e{word-spacing:3.024000px;}
.wse{word-spacing:3.096000px;}
.ws49{word-spacing:3.168000px;}
.ws21{word-spacing:3.240000px;}
.ws1d{word-spacing:3.312000px;}
.ws64{word-spacing:3.384000px;}
.ws39{word-spacing:3.456000px;}
.ws60{word-spacing:3.552000px;}
.ws3c{word-spacing:3.600000px;}
.ws20{word-spacing:3.672000px;}
.ws31{word-spacing:3.960000px;}
.ws5b{word-spacing:4.104000px;}
.ws2b{word-spacing:4.176000px;}
.ws4a{word-spacing:4.320000px;}
.ws29{word-spacing:4.392000px;}
.ws19{word-spacing:4.464000px;}
.ws2c{word-spacing:4.536000px;}
.ws14{word-spacing:4.752000px;}
.ws10{word-spacing:4.896000px;}
.ws11{word-spacing:5.256000px;}
.ws3f{word-spacing:5.328000px;}
.ws4e{word-spacing:6.336000px;}
.ws7{word-spacing:6.408000px;}
.ws95{word-spacing:6.468000px;}
.ws3a{word-spacing:6.480000px;}
.ws34{word-spacing:6.552000px;}
.ws17{word-spacing:6.624000px;}
.ws7f{word-spacing:6.660000px;}
.ws6{word-spacing:6.840000px;}
.ws66{word-spacing:6.912000px;}
.ws40{word-spacing:7.056000px;}
.ws65{word-spacing:7.632000px;}
.ws58{word-spacing:7.992000px;}
.ws3e{word-spacing:8.208000px;}
.ws38{word-spacing:8.424000px;}
.ws4b{word-spacing:9.576000px;}
.ws46{word-spacing:10.224000px;}
.ws6f{word-spacing:10.296000px;}
.ws45{word-spacing:11.592000px;}
.ws33{word-spacing:12.888000px;}
.ws81{word-spacing:14.400000px;}
.ws6d{word-spacing:15.264000px;}
.ws80{word-spacing:26.580000px;}
.ws79{word-spacing:149.233200px;}
.ws8a{word-spacing:313.817400px;}
.ws84{word-spacing:323.987400px;}
.ws8e{word-spacing:340.519800px;}
.ws86{word-spacing:353.522400px;}
.ws90{word-spacing:359.191200px;}
.ws8b{word-spacing:365.065800px;}
.ws85{word-spacing:368.032200px;}
.ws87{word-spacing:370.023000px;}
.ws8f{word-spacing:370.866600px;}
.ws91{word-spacing:375.691800px;}
.ws93{word-spacing:399.711600px;}
.ws88{word-spacing:399.712200px;}
.ws8d{word-spacing:401.212200px;}
.ws8c{word-spacing:405.524400px;}
.ws89{word-spacing:413.055000px;}
.ws94{word-spacing:413.055600px;}
.ws92{word-spacing:418.724400px;}
._11{margin-left:-19.198800px;}
._16{margin-left:-17.308800px;}
._14{margin-left:-9.034800px;}
._f{margin-left:-7.461600px;}
._8{margin-left:-5.812800px;}
._0{margin-left:-4.670400px;}
._2{margin-left:-2.965200px;}
._1{margin-left:-1.570800px;}
._4{width:1.008000px;}
._3{width:2.100000px;}
._7{width:3.136800px;}
._5{width:5.047200px;}
._d{width:6.415200px;}
._13{width:7.488000px;}
._e{width:8.568000px;}
._1b{width:118.258800px;}
._19{width:164.138400px;}
._1c{width:172.062000px;}
._28{width:174.897000px;}
._25{width:229.822800px;}
._1a{width:232.533000px;}
._32{width:235.491600px;}
._27{width:238.202400px;}
._2b{width:252.492000px;}
._1f{width:262.662000px;}
._21{width:266.991000px;}
._2d{width:272.660400px;}
._c{width:339.565200px;}
._2a{width:370.009200px;}
._1e{width:383.014200px;}
._29{width:384.830400px;}
._2c{width:386.389200px;}
._23{width:392.101800px;}
._31{width:397.771200px;}
._24{width:399.303000px;}
._1d{width:400.671000px;}
._30{width:401.814000px;}
._26{width:414.694200px;}
._20{width:416.194200px;}
._2f{width:417.624600px;}
._17{width:588.898800px;}
._12{width:593.745000px;}
._b{width:628.033200px;}
._18{width:651.130200px;}
._22{width:846.728400px;}
._2e{width:849.562800px;}
._15{width:1047.237600px;}
._a{width:1054.559400px;}
._10{width:1169.295600px;}
._9{width:1196.143800px;}
._6{width:1309.529400px;}
.fc1{color:rgb(145,143,143);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fsa{font-size:55.085400px;}
.fs9{font-size:55.636200px;}
.fs8{font-size:56.192400px;}
.fs6{font-size:56.754600px;}
.fs1{font-size:60.000000px;}
.fs7{font-size:60.600000px;}
.fsb{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:75.672600px;}
.fs0{font-size:84.000000px;}
.fsc{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y15{bottom:20.929950px;}
.y155{bottom:34.471650px;}
.y187{bottom:42.467400px;}
.y13e{bottom:46.022400px;}
.y16d{bottom:51.718050px;}
.ya4{bottom:51.915900px;}
.y66{bottom:51.938850px;}
.y154{bottom:52.471650px;}
.y4d{bottom:52.624500px;}
.y10f{bottom:55.872750px;}
.y186{bottom:60.467400px;}
.y13d{bottom:64.022400px;}
.y1f9{bottom:66.951600px;}
.yd4{bottom:67.282200px;}
.y12f{bottom:69.490650px;}
.y83{bottom:70.716450px;}
.y10e{bottom:73.872750px;}
.y79{bottom:73.976250px;}
.y127{bottom:75.148350px;}
.y8d{bottom:79.220250px;}
.y100{bottom:79.270200px;}
.yec{bottom:79.308750px;}
.y1a7{bottom:81.130200px;}
.y13c{bottom:82.022400px;}
.yd3{bottom:85.282200px;}
.y12e{bottom:87.490650px;}
.y153{bottom:88.421700px;}
.y1f7{bottom:92.429850px;}
.y126{bottom:93.148350px;}
.yff{bottom:97.270200px;}
.yeb{bottom:97.308750px;}
.ya3{bottom:97.698750px;}
.y82{bottom:97.716450px;}
.y78{bottom:100.976250px;}
.yd2{bottom:103.282200px;}
.y12d{bottom:105.490650px;}
.y8c{bottom:106.220250px;}
.y125{bottom:111.148350px;}
.yea{bottom:115.308750px;}
.y1a6{bottom:118.966500px;}
.y12c{bottom:123.490650px;}
.ya2{bottom:124.698750px;}
.y185{bottom:125.637600px;}
.y51{bottom:127.621950px;}
.y77{bottom:127.976250px;}
.y152{bottom:129.044100px;}
.y124{bottom:129.148350px;}
.y8b{bottom:133.220250px;}
.y1f6{bottom:139.115550px;}
.y16c{bottom:139.314750px;}
.y123{bottom:147.148350px;}
.y144{bottom:149.923800px;}
.y7d{bottom:150.797100px;}
.ya1{bottom:151.698750px;}
.y184{bottom:152.637600px;}
.y7c{bottom:153.631800px;}
.y50{bottom:154.621950px;}
.y76{bottom:154.976250px;}
.y151{bottom:156.044100px;}
.y8e{bottom:156.466350px;}
.y1a5{bottom:156.802950px;}
.y8a{bottom:160.220250px;}
.y1f5{bottom:163.110900px;}
.y122{bottom:165.148350px;}
.y16b{bottom:166.314750px;}
.yd0{bottom:166.935000px;}
.y10d{bottom:171.700650px;}
.yfe{bottom:176.721000px;}
.y143{bottom:176.923800px;}
.y129{bottom:178.421700px;}
.ya0{bottom:178.698750px;}
.y183{bottom:179.637600px;}
.y4f{bottom:181.621950px;}
.y75{bottom:181.976250px;}
.y150{bottom:183.044100px;}
.y121{bottom:183.148350px;}
.ye4{bottom:185.732100px;}
.y1f4{bottom:187.106250px;}
.y89{bottom:187.220250px;}
.yfc{bottom:192.595050px;}
.y16a{bottom:193.314750px;}
.ycf{bottom:193.935000px;}
.y1a4{bottom:194.639250px;}
.yfd{bottom:194.721000px;}
.y10c{bottom:198.700650px;}
.y120{bottom:201.148350px;}
.yd1{bottom:202.161900px;}
.y9f{bottom:205.698750px;}
.y182{bottom:206.637600px;}
.y24c{bottom:208.156050px;}
.y4e{bottom:208.621950px;}
.y74{bottom:208.976250px;}
.y14f{bottom:210.044100px;}
.y1f3{bottom:211.101600px;}
.y254{bottom:212.552700px;}
.ye3{bottom:212.732100px;}
.y11f{bottom:219.148350px;}
.y169{bottom:220.314750px;}
.yce{bottom:220.935000px;}
.y10b{bottom:225.700650px;}
.y24b{bottom:229.756050px;}
.y142{bottom:230.923800px;}
.y1a3{bottom:232.475700px;}
.y181{bottom:233.637600px;}
.y253{bottom:234.152700px;}
.y1f2{bottom:235.096950px;}
.y73{bottom:235.976250px;}
.y14e{bottom:237.044100px;}
.ye2{bottom:239.732100px;}
.y88{bottom:241.220250px;}
.ycd{bottom:247.935000px;}
.y258{bottom:247.977600px;}
.y240{bottom:249.040500px;}
.y23c{bottom:250.103550px;}
.y24a{bottom:251.356050px;}
.y10a{bottom:252.700650px;}
.y252{bottom:255.752700px;}
.y141{bottom:257.923800px;}
.y1f1{bottom:259.092300px;}
.y9e{bottom:259.698750px;}
.y180{bottom:260.637600px;}
.y72{bottom:262.976250px;}
.y4c{bottom:263.119950px;}
.ye1{bottom:266.732100px;}
.y2b{bottom:267.494100px;}
.y87{bottom:268.220250px;}
.y257{bottom:269.577600px;}
.y1a2{bottom:270.312000px;}
.y23f{bottom:270.640500px;}
.y23b{bottom:271.703550px;}
.y249{bottom:272.956050px;}
.y14d{bottom:273.322650px;}
.y168{bottom:274.314750px;}
.y20a{bottom:274.527600px;}
.ycc{bottom:274.935000px;}
.y251{bottom:277.352700px;}
.y109{bottom:279.700650px;}
.y1f0{bottom:283.087650px;}
.y140{bottom:284.923800px;}
.y9d{bottom:286.698750px;}
.y17f{bottom:287.637600px;}
.y71{bottom:289.976250px;}
.y256{bottom:291.177600px;}
.y23e{bottom:292.240500px;}
.y250{bottom:292.623150px;}
.y23a{bottom:293.303550px;}
.y2a{bottom:294.494100px;}
.y86{bottom:295.220250px;}
.y14c{bottom:300.322650px;}
.y167{bottom:301.314750px;}
.ycb{bottom:301.935000px;}
.y108{bottom:306.700650px;}
.y1ef{bottom:307.083000px;}
.y1a1{bottom:308.148450px;}
.ye9{bottom:308.399550px;}
.y13f{bottom:311.923800px;}
.y255{bottom:312.777600px;}
.y64{bottom:312.795150px;}
.y23d{bottom:313.840500px;}
.y24f{bottom:314.223150px;}
.y17e{bottom:314.637600px;}
.y239{bottom:314.903550px;}
.y70{bottom:316.976250px;}
.y29{bottom:321.494100px;}
.y11e{bottom:321.571350px;}
.y14b{bottom:327.322650px;}
.y166{bottom:328.314750px;}
.y209{bottom:328.527600px;}
.yca{bottom:328.935000px;}
.y107{bottom:333.700650px;}
.y244{bottom:335.142900px;}
.ye8{bottom:335.399550px;}
.y24e{bottom:335.823150px;}
.y248{bottom:336.205950px;}
.y63{bottom:339.795150px;}
.y9c{bottom:340.698750px;}
.y17d{bottom:341.637600px;}
.y6f{bottom:343.976250px;}
.y1a0{bottom:345.984750px;}
.y28{bottom:348.494100px;}
.y85{bottom:349.220250px;}
.y1d3{bottom:349.762500px;}
.y1ee{bottom:355.073550px;}
.y165{bottom:355.314750px;}
.y208{bottom:355.527600px;}
.y13b{bottom:355.587150px;}
.yc9{bottom:355.935000px;}
.y243{bottom:356.742900px;}
.y24d{bottom:357.423150px;}
.y247{bottom:357.805950px;}
.ye7{bottom:362.399550px;}
.y62{bottom:366.795150px;}
.y9b{bottom:367.698750px;}
.y17c{bottom:368.637600px;}
.y27{bottom:375.494100px;}
.y84{bottom:376.220250px;}
.y242{bottom:378.342900px;}
.y246{bottom:379.405950px;}
.y14a{bottom:381.322650px;}
.y1f8{bottom:381.993000px;}
.yc8{bottom:382.935000px;}
.y19f{bottom:383.821050px;}
.y1d2{bottom:388.030200px;}
.y106{bottom:389.248500px;}
.ye6{bottom:389.399550px;}
.y61{bottom:393.795150px;}
.y17b{bottom:395.637600px;}
.y164{bottom:396.883200px;}
.y241{bottom:399.942900px;}
.y245{bottom:401.005950px;}
.y26{bottom:402.494100px;}
.y7b{bottom:403.669800px;}
.y149{bottom:408.322650px;}
.y207{bottom:409.527600px;}
.yc7{bottom:409.935000px;}
.y163{bottom:414.883200px;}
.ye5{bottom:416.399550px;}
.y238{bottom:418.056300px;}
.y234{bottom:420.182250px;}
.y60{bottom:420.795150px;}
.y1eb{bottom:421.205100px;}
.y19e{bottom:421.657500px;}
.yb1{bottom:422.221500px;}
.y7a{bottom:422.555700px;}
.y17a{bottom:422.637600px;}
.y1d1{bottom:422.754600px;}
.y25{bottom:429.494100px;}
.y9a{bottom:432.135750px;}
.y148{bottom:435.322650px;}
.yc6{bottom:436.935000px;}
.y237{bottom:439.656300px;}
.y233{bottom:441.782250px;}
.y1ea{bottom:445.200450px;}
.y5f{bottom:447.795150px;}
.yb0{bottom:449.221500px;}
.y24{bottom:456.494100px;}
.y19d{bottom:458.575650px;}
.y22d{bottom:459.257850px;}
.y236{bottom:461.256300px;}
.y147{bottom:462.322650px;}
.y232{bottom:463.382250px;}
.y206{bottom:463.527600px;}
.yc5{bottom:463.935000px;}
.y1e9{bottom:469.195800px;}
.ye0{bottom:471.186450px;}
.y1d0{bottom:472.951500px;}
.yaf{bottom:476.221500px;}
.y1c4{bottom:477.307800px;}
.y235{bottom:482.856300px;}
.y23{bottom:483.494100px;}
.y231{bottom:484.982250px;}
.y65{bottom:487.765650px;}
.y1cf{bottom:487.951500px;}
.y21d{bottom:488.383800px;}
.y146{bottom:489.949350px;}
.yc4{bottom:490.935000px;}
.y179{bottom:491.952600px;}
.y1e8{bottom:493.191150px;}
.y19c{bottom:494.575650px;}
.y13{bottom:497.470950px;}
.yb{bottom:505.906500px;}
.y145{bottom:507.949350px;}
.y22{bottom:510.494100px;}
.y22c{bottom:513.257850px;}
.y21c{bottom:515.383800px;}
.y1e7{bottom:517.186500px;}
.y205{bottom:517.527600px;}
.yc3{bottom:517.935000px;}
.y7e{bottom:524.261700px;}
.y7f{bottom:527.096400px;}
.yae{bottom:530.221500px;}
.y1ce{bottom:530.353050px;}
.y19b{bottom:532.411950px;}
.y1ca{bottom:532.833300px;}
.y4b{bottom:538.131900px;}
.y128{bottom:540.193500px;}
.y22b{bottom:540.257850px;}
.y1e6{bottom:541.181700px;}
.yf5{bottom:542.047050px;}
.y1cd{bottom:545.353050px;}
.y1c9{bottom:547.833300px;}
.y230{bottom:556.578000px;}
.yad{bottom:557.221500px;}
.y1c8{bottom:562.833300px;}
.y4a{bottom:565.131900px;}
.y1e5{bottom:565.177050px;}
.yc2{bottom:568.338450px;}
.yf4{bottom:569.047050px;}
.y21b{bottom:569.383800px;}
.y19a{bottom:570.248400px;}
.y1c3{bottom:572.977200px;}
.y204{bottom:573.777600px;}
.y1c7{bottom:577.833300px;}
.y1cc{bottom:578.337750px;}
.y22f{bottom:581.778000px;}
.yac{bottom:584.221500px;}
.y1e4{bottom:589.172400px;}
.y2{bottom:591.302400px;}
.y49{bottom:592.131900px;}
.y1c6{bottom:592.833300px;}
.y1cb{bottom:593.337750px;}
.y22a{bottom:594.257850px;}
.yc1{bottom:595.338450px;}
.yf3{bottom:596.047050px;}
.y21a{bottom:596.383800px;}
.y38{bottom:603.116250px;}
.y199{bottom:608.084700px;}
.y12{bottom:611.470950px;}
.y1e3{bottom:613.167750px;}
.ya{bottom:613.906500px;}
.y1{bottom:616.502400px;}
.y48{bottom:619.131900px;}
.yab{bottom:620.008950px;}
.yc0{bottom:622.338450px;}
.y198{bottom:627.002850px;}
.y203{bottom:627.777600px;}
.y37{bottom:630.116250px;}
.y1e2{bottom:637.163100px;}
.y197{bottom:645.921000px;}
.y47{bottom:646.131900px;}
.yaa{bottom:647.008950px;}
.y229{bottom:648.257850px;}
.ybf{bottom:649.338450px;}
.yf2{bottom:650.047050px;}
.y219{bottom:650.383800px;}
.y11d{bottom:654.990150px;}
.y1c5{bottom:655.181850px;}
.y36{bottom:657.116250px;}
.y1e1{bottom:661.158450px;}
.y6d{bottom:665.921100px;}
.y9{bottom:667.906500px;}
.y11{bottom:668.470950px;}
.y46{bottom:673.131900px;}
.ya9{bottom:674.008950px;}
.y228{bottom:675.257850px;}
.ybe{bottom:676.338450px;}
.yf1{bottom:677.047050px;}
.y218{bottom:677.383800px;}
.y202{bottom:681.777600px;}
.y11c{bottom:681.990150px;}
.y21{bottom:682.698900px;}
.y196{bottom:683.757450px;}
.y35{bottom:684.116250px;}
.y1e0{bottom:685.153800px;}
.y22e{bottom:686.587500px;}
.y105{bottom:692.212500px;}
.y6c{bottom:692.921100px;}
.y13a{bottom:698.218500px;}
.y45{bottom:700.131900px;}
.ya8{bottom:701.008950px;}
.yf0{bottom:704.047050px;}
.y1c2{bottom:704.788200px;}
.y201{bottom:708.777600px;}
.y11b{bottom:708.990150px;}
.y20{bottom:709.698900px;}
.y104{bottom:719.212500px;}
.y195{bottom:719.757450px;}
.y8{bottom:724.906500px;}
.y139{bottom:725.218500px;}
.y10{bottom:725.470950px;}
.y44{bottom:727.131900px;}
.ya7{bottom:728.008950px;}
.y227{bottom:729.257850px;}
.ybd{bottom:730.338450px;}
.y217{bottom:731.383800px;}
.y130{bottom:731.886300px;}
.y1df{bottom:733.144350px;}
.y1f{bottom:736.698900px;}
.y194{bottom:737.757450px;}
.y34{bottom:738.116250px;}
.y6e{bottom:743.224800px;}
.y5e{bottom:744.795150px;}
.y103{bottom:746.212500px;}
.y138{bottom:752.218500px;}
.y43{bottom:754.131900px;}
.ya6{bottom:755.008950px;}
.y193{bottom:755.757450px;}
.y226{bottom:756.257850px;}
.ybc{bottom:757.338450px;}
.yef{bottom:758.047050px;}
.y216{bottom:758.383800px;}
.y1ed{bottom:760.418100px;}
.y200{bottom:762.777600px;}
.y11a{bottom:762.990150px;}
.y1e{bottom:763.698900px;}
.y33{bottom:765.116250px;}
.y162{bottom:771.653400px;}
.y5d{bottom:771.795150px;}
.y137{bottom:779.218500px;}
.y7{bottom:781.906500px;}
.yf{bottom:782.470950px;}
.yee{bottom:785.047050px;}
.y119{bottom:789.990150px;}
.y1d{bottom:790.698900px;}
.y192{bottom:791.757450px;}
.y32{bottom:792.116250px;}
.y161{bottom:798.653400px;}
.y5c{bottom:798.795150px;}
.ydf{bottom:800.212500px;}
.y1de{bottom:803.571600px;}
.y42{bottom:808.131900px;}
.ya5{bottom:810.215550px;}
.y225{bottom:810.257850px;}
.ybb{bottom:811.338450px;}
.yed{bottom:812.047050px;}
.y215{bottom:812.383800px;}
.y1ff{bottom:816.777600px;}
.y118{bottom:816.990150px;}
.y1c{bottom:817.698900px;}
.y31{bottom:819.116250px;}
.y160{bottom:825.653400px;}
.y5b{bottom:825.795150px;}
.y99{bottom:826.503900px;}
.yde{bottom:827.212500px;}
.y1b0{bottom:827.725350px;}
.y191{bottom:827.757450px;}
.y178{bottom:828.629850px;}
.y136{bottom:833.218500px;}
.y41{bottom:835.131900px;}
.y224{bottom:837.257850px;}
.yba{bottom:838.338450px;}
.y6{bottom:838.906500px;}
.y214{bottom:839.383800px;}
.ye{bottom:839.470950px;}
.y1b{bottom:844.698900px;}
.y30{bottom:846.116250px;}
.y1dd{bottom:850.257450px;}
.y15f{bottom:852.653400px;}
.y5a{bottom:852.795150px;}
.y98{bottom:853.503900px;}
.y102{bottom:854.212500px;}
.y177{bottom:855.629850px;}
.yfb{bottom:858.028050px;}
.y135{bottom:860.218500px;}
.y1b6{bottom:861.256500px;}
.y40{bottom:862.131900px;}
.y1af{bottom:863.725350px;}
.y190{bottom:863.757450px;}
.y1b5{bottom:864.945750px;}
.y213{bottom:866.383800px;}
.y1fe{bottom:870.777600px;}
.y117{bottom:870.990150px;}
.y1a{bottom:871.698900px;}
.y2f{bottom:873.116250px;}
.y1dc{bottom:874.252650px;}
.y1c1{bottom:874.756500px;}
.y15e{bottom:879.653400px;}
.y81{bottom:879.795150px;}
.y97{bottom:880.503900px;}
.ydd{bottom:881.212500px;}
.y176{bottom:882.629850px;}
.y134{bottom:887.218500px;}
.y223{bottom:891.257850px;}
.yb9{bottom:892.338450px;}
.y5{bottom:895.906500px;}
.yd{bottom:896.470950px;}
.y116{bottom:897.990150px;}
.y1db{bottom:898.248000px;}
.y19{bottom:898.698900px;}
.y1ae{bottom:899.725350px;}
.y18f{bottom:899.757450px;}
.yfa{bottom:901.652400px;}
.y15d{bottom:906.653400px;}
.y59{bottom:906.795150px;}
.y96{bottom:907.503900px;}
.ydc{bottom:908.212500px;}
.y175{bottom:909.629850px;}
.y12b{bottom:912.942900px;}
.y3f{bottom:916.131900px;}
.y222{bottom:918.257850px;}
.yb8{bottom:919.338450px;}
.y212{bottom:920.383800px;}
.y1da{bottom:922.243350px;}
.y1fd{bottom:924.777600px;}
.y18{bottom:925.698900px;}
.y2e{bottom:927.116250px;}
.yf9{bottom:928.652400px;}
.y58{bottom:933.795150px;}
.y95{bottom:934.503900px;}
.ydb{bottom:935.212500px;}
.y18e{bottom:935.757450px;}
.y174{bottom:936.629850px;}
.y1ad{bottom:937.187100px;}
.y12a{bottom:939.942900px;}
.y133{bottom:941.218500px;}
.y3e{bottom:943.131900px;}
.y15c{bottom:946.076250px;}
.y1d9{bottom:946.238700px;}
.yb7{bottom:946.338450px;}
.y211{bottom:947.383800px;}
.y1ba{bottom:948.731550px;}
.y1fc{bottom:951.777600px;}
.y115{bottom:951.990150px;}
.y17{bottom:952.698900px;}
.y4{bottom:952.906500px;}
.yc{bottom:953.470950px;}
.y2d{bottom:954.116250px;}
.yf8{bottom:955.652400px;}
.y57{bottom:960.795150px;}
.y101{bottom:962.212500px;}
.y1bd{bottom:963.227100px;}
.y173{bottom:963.629850px;}
.y1b9{bottom:963.731550px;}
.y1c0{bottom:964.481550px;}
.y132{bottom:968.218500px;}
.y3d{bottom:970.131900px;}
.y1d8{bottom:970.234050px;}
.y18d{bottom:971.757450px;}
.y221{bottom:972.257850px;}
.y1b4{bottom:972.662250px;}
.yb6{bottom:973.338450px;}
.y210{bottom:974.383800px;}
.y1ac{bottom:974.648850px;}
.y1bc{bottom:978.227100px;}
.y1b8{bottom:978.731550px;}
.y1bf{bottom:979.481550px;}
.yf7{bottom:982.652400px;}
.y15b{bottom:985.253400px;}
.y56{bottom:987.795150px;}
.y94{bottom:988.503900px;}
.yda{bottom:989.212500px;}
.y18c{bottom:989.757450px;}
.y6b{bottom:989.921100px;}
.y172{bottom:990.629850px;}
.y1bb{bottom:993.227100px;}
.y1b7{bottom:993.731550px;}
.y1d7{bottom:994.229400px;}
.y1be{bottom:994.481550px;}
.y131{bottom:995.218500px;}
.y1fb{bottom:1005.777600px;}
.y18b{bottom:1007.757450px;}
.yf6{bottom:1009.652400px;}
.y15a{bottom:1012.253400px;}
.y1ab{bottom:1012.485150px;}
.y114{bottom:1014.795000px;}
.y80{bottom:1014.795150px;}
.y93{bottom:1015.503900px;}
.yd9{bottom:1016.212500px;}
.y6a{bottom:1016.921100px;}
.y171{bottom:1017.629850px;}
.y1d6{bottom:1018.224750px;}
.y3c{bottom:1024.131900px;}
.y220{bottom:1026.257850px;}
.yb5{bottom:1027.338450px;}
.y20f{bottom:1028.383800px;}
.y1fa{bottom:1032.777600px;}
.y1b2{bottom:1032.795150px;}
.y159{bottom:1039.253400px;}
.y113{bottom:1041.795000px;}
.y55{bottom:1041.795150px;}
.y92{bottom:1042.503900px;}
.yd8{bottom:1043.212500px;}
.y18a{bottom:1043.757450px;}
.y69{bottom:1043.921100px;}
.y1aa{bottom:1050.321600px;}
.y3b{bottom:1051.131900px;}
.yb4{bottom:1054.338450px;}
.y20e{bottom:1055.383800px;}
.y1d5{bottom:1066.215300px;}
.y158{bottom:1066.253400px;}
.y112{bottom:1068.795000px;}
.y54{bottom:1068.795150px;}
.y91{bottom:1069.503900px;}
.yd7{bottom:1070.212500px;}
.y170{bottom:1071.629850px;}
.y1b3{bottom:1075.418100px;}
.y3a{bottom:1078.131900px;}
.y189{bottom:1079.757450px;}
.y21f{bottom:1080.257850px;}
.y20b{bottom:1080.753000px;}
.yb3{bottom:1081.338450px;}
.y20d{bottom:1082.383800px;}
.y1a9{bottom:1087.601550px;}
.y157{bottom:1093.253400px;}
.y111{bottom:1095.795000px;}
.y53{bottom:1095.795150px;}
.y90{bottom:1096.503900px;}
.yd6{bottom:1097.212500px;}
.y68{bottom:1097.921100px;}
.y16f{bottom:1098.629850px;}
.y1ec{bottom:1099.512600px;}
.y156{bottom:1120.253400px;}
.y188{bottom:1120.459200px;}
.y110{bottom:1122.795000px;}
.y52{bottom:1122.795150px;}
.y21e{bottom:1123.085100px;}
.y8f{bottom:1123.503900px;}
.yd5{bottom:1124.212500px;}
.y67{bottom:1124.921100px;}
.y20c{bottom:1125.211050px;}
.y1a8{bottom:1125.437850px;}
.y16e{bottom:1125.629850px;}
.y16{bottom:1139.848950px;}
.y2c{bottom:1140.911850px;}
.y1b1{bottom:1141.266300px;}
.y3{bottom:1141.974750px;}
.y1d4{bottom:1141.974900px;}
.y39{bottom:1141.975050px;}
.yb2{bottom:1143.449550px;}
.y14{bottom:1200.333000px;}
.h4{height:41.660156px;}
.h8{height:42.117188px;}
.h11{height:42.720000px;}
.h7{height:47.381836px;}
.hf{height:49.080000px;}
.h14{height:49.289062px;}
.hd{height:49.305538px;}
.hb{height:49.798836px;}
.h9{height:49.992188px;}
.h10{height:52.646484px;}
.hc{height:53.172949px;}
.h13{height:53.988000px;}
.h5{height:58.896000px;}
.ha{height:61.900187px;}
.h6{height:63.175781px;}
.h3{height:68.712000px;}
.h2{height:73.705078px;}
.he{height:94.323000px;}
.h15{height:99.984375px;}
.h12{height:107.062200px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:62.149200px;}
.x18{left:66.968550px;}
.x3{left:68.031450px;}
.x28{left:69.700950px;}
.x1d{left:96.753450px;}
.x16{left:108.425250px;}
.x15{left:110.551200px;}
.x2b{left:122.502450px;}
.xc{left:147.296700px;}
.x1a{left:150.093600px;}
.x29{left:166.020300px;}
.x1e{left:173.636850px;}
.x1f{left:174.761400px;}
.x19{left:180.650700px;}
.xb{left:187.086600px;}
.x25{left:206.898600px;}
.x42{left:213.923700px;}
.x4a{left:218.175750px;}
.x3c{left:221.983800px;}
.x3d{left:223.056450px;}
.x45{left:226.235700px;}
.x46{left:227.308350px;}
.x2{left:233.811150px;}
.x32{left:238.818900px;}
.x3b{left:241.057800px;}
.x33{left:243.112200px;}
.x44{left:245.309700px;}
.x8{left:247.314300px;}
.x3f{left:248.490600px;}
.x1{left:250.217400px;}
.x40{left:251.988450px;}
.x3e{left:254.380950px;}
.x48{left:256.240500px;}
.xa{left:257.952750px;}
.x41{left:262.977450px;}
.x47{left:264.094350px;}
.x49{left:267.229350px;}
.x2d{left:268.582650px;}
.x2e{left:272.167350px;}
.x11{left:276.378000px;}
.xf{left:278.503950px;}
.x22{left:308.856150px;}
.x34{left:345.159450px;}
.x4c{left:354.786600px;}
.x21{left:361.346700px;}
.x4b{left:363.267300px;}
.x20{left:371.086050px;}
.x24{left:373.703400px;}
.x9{left:417.401550px;}
.x14{left:421.653600px;}
.x31{left:425.196900px;}
.x7{left:438.639300px;}
.x5a{left:491.416050px;}
.x30{left:494.393400px;}
.x2a{left:498.098700px;}
.x35{left:509.568900px;}
.x4e{left:519.081150px;}
.x17{left:531.251100px;}
.x23{left:537.262050px;}
.x37{left:540.223500px;}
.x6e{left:547.818450px;}
.x64{left:551.987700px;}
.x62{left:555.863700px;}
.x1b{left:558.222450px;}
.x2c{left:567.981150px;}
.x1c{left:570.334350px;}
.x6d{left:581.647500px;}
.x63{left:585.816750px;}
.x2f{left:588.939000px;}
.x43{left:591.362850px;}
.x38{left:593.075250px;}
.x5f{left:599.905050px;}
.x27{left:603.114900px;}
.x10{left:608.031450px;}
.xe{left:609.094500px;}
.x26{left:611.539800px;}
.x39{left:618.048300px;}
.x68{left:621.127650px;}
.x67{left:625.003650px;}
.x6c{left:626.791650px;}
.x6a{left:630.667650px;}
.x5e{left:633.734100px;}
.x52{left:634.983900px;}
.x56{left:636.755550px;}
.x50{left:638.859900px;}
.x54{left:640.631400px;}
.x61{left:645.828450px;}
.x71{left:647.412600px;}
.x36{left:648.466500px;}
.x6f{left:651.288600px;}
.x51{left:653.818800px;}
.x55{left:655.590450px;}
.x13{left:658.346400px;}
.x6b{left:660.620850px;}
.x65{left:668.733150px;}
.x58{left:673.938600px;}
.x70{left:681.241650px;}
.x5d{left:692.735100px;}
.x60{left:696.734100px;}
.x59{left:700.059600px;}
.x66{left:702.953850px;}
.xd{left:708.690900px;}
.x4d{left:712.996050px;}
.x53{left:728.574900px;}
.x69{left:729.615000px;}
.x4f{left:731.804100px;}
.x3a{left:750.513750px;}
.x5c{left:751.888800px;}
.x5b{left:753.883800px;}
.x6{left:757.724850px;}
.x57{left:761.899500px;}
.x5{left:804.722100px;}
.x4{left:814.381950px;}
@media print{
.v1{vertical-align:-3.149333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:40.216000pt;}
.v3{vertical-align:51.539733pt;}
.ls2{letter-spacing:-5.824000pt;}
.lsa{letter-spacing:-5.749333pt;}
.ls4{letter-spacing:-3.157333pt;}
.ls6{letter-spacing:-2.080000pt;}
.ls1{letter-spacing:-1.866667pt;}
.lse{letter-spacing:-1.152000pt;}
.lsb{letter-spacing:-1.114667pt;}
.ls8{letter-spacing:-1.013333pt;}
.lsc{letter-spacing:-0.704000pt;}
.lsd{letter-spacing:-0.410667pt;}
.ls7{letter-spacing:-0.213333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.008533pt;}
.ls9{letter-spacing:0.266667pt;}
.ls3{letter-spacing:1.645333pt;}
.ws83{word-spacing:-18.666667pt;}
.ws1{word-spacing:-16.949333pt;}
.ws4{word-spacing:-16.000000pt;}
.ws70{word-spacing:-15.269049pt;}
.ws2{word-spacing:-15.082667pt;}
.ws97{word-spacing:-14.848000pt;}
.ws71{word-spacing:-13.466667pt;}
.ws72{word-spacing:-12.612133pt;}
.ws73{word-spacing:-12.487200pt;}
.ws7c{word-spacing:-12.373333pt;}
.ws76{word-spacing:-12.363600pt;}
.ws77{word-spacing:-12.241200pt;}
.ws7a{word-spacing:-12.213333pt;}
.ws78{word-spacing:-12.106667pt;}
.ws27{word-spacing:-12.000000pt;}
.ws7b{word-spacing:-11.093333pt;}
.ws15{word-spacing:-10.666667pt;}
.ws57{word-spacing:-3.840000pt;}
.ws96{word-spacing:-3.520000pt;}
.wsc{word-spacing:-3.136000pt;}
.ws23{word-spacing:-3.008000pt;}
.ws41{word-spacing:-2.880000pt;}
.ws4d{word-spacing:-2.752000pt;}
.ws2a{word-spacing:-2.624000pt;}
.ws42{word-spacing:-2.560000pt;}
.wsa{word-spacing:-2.240000pt;}
.ws3d{word-spacing:-2.176000pt;}
.ws5d{word-spacing:-2.048000pt;}
.ws56{word-spacing:-1.984000pt;}
.ws5e{word-spacing:-1.856000pt;}
.ws36{word-spacing:-1.792000pt;}
.ws63{word-spacing:-1.776000pt;}
.ws52{word-spacing:-1.728000pt;}
.ws54{word-spacing:-1.664000pt;}
.ws26{word-spacing:-1.600000pt;}
.ws53{word-spacing:-1.536000pt;}
.ws8{word-spacing:-1.408000pt;}
.ws3{word-spacing:-1.344000pt;}
.ws48{word-spacing:-1.280000pt;}
.ws69{word-spacing:-1.216000pt;}
.ws2d{word-spacing:-1.152000pt;}
.ws7d{word-spacing:-1.120000pt;}
.ws30{word-spacing:-1.024000pt;}
.ws74{word-spacing:-0.969600pt;}
.ws47{word-spacing:-0.960000pt;}
.ws75{word-spacing:-0.908074pt;}
.ws4f{word-spacing:-0.896000pt;}
.ws6c{word-spacing:-0.864000pt;}
.ws25{word-spacing:-0.832000pt;}
.ws67{word-spacing:-0.768000pt;}
.ws13{word-spacing:-0.640000pt;}
.wsd{word-spacing:-0.576000pt;}
.ws1a{word-spacing:-0.512000pt;}
.ws35{word-spacing:-0.448000pt;}
.ws5a{word-spacing:-0.384000pt;}
.ws55{word-spacing:-0.320000pt;}
.ws24{word-spacing:-0.256000pt;}
.ws2e{word-spacing:-0.192000pt;}
.ws32{word-spacing:-0.128000pt;}
.wsf{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.ws6e{word-spacing:0.064000pt;}
.wsb{word-spacing:0.128000pt;}
.ws37{word-spacing:0.256000pt;}
.ws59{word-spacing:0.320000pt;}
.ws43{word-spacing:0.384000pt;}
.ws7e{word-spacing:0.533333pt;}
.ws1c{word-spacing:0.640000pt;}
.ws16{word-spacing:0.704000pt;}
.ws12{word-spacing:0.768000pt;}
.ws9{word-spacing:0.832000pt;}
.ws28{word-spacing:0.896000pt;}
.ws6a{word-spacing:1.024000pt;}
.ws50{word-spacing:1.088000pt;}
.ws5c{word-spacing:1.216000pt;}
.ws61{word-spacing:1.344000pt;}
.ws68{word-spacing:1.408000pt;}
.ws1f{word-spacing:1.472000pt;}
.ws6b{word-spacing:1.536000pt;}
.ws4c{word-spacing:1.600000pt;}
.ws2f{word-spacing:1.664000pt;}
.ws5{word-spacing:1.728000pt;}
.ws1b{word-spacing:1.856000pt;}
.ws18{word-spacing:1.920000pt;}
.ws5f{word-spacing:1.984000pt;}
.ws82{word-spacing:2.080000pt;}
.ws62{word-spacing:2.112000pt;}
.ws51{word-spacing:2.176000pt;}
.ws22{word-spacing:2.304000pt;}
.ws44{word-spacing:2.432000pt;}
.ws3b{word-spacing:2.560000pt;}
.ws1e{word-spacing:2.688000pt;}
.wse{word-spacing:2.752000pt;}
.ws49{word-spacing:2.816000pt;}
.ws21{word-spacing:2.880000pt;}
.ws1d{word-spacing:2.944000pt;}
.ws64{word-spacing:3.008000pt;}
.ws39{word-spacing:3.072000pt;}
.ws60{word-spacing:3.157333pt;}
.ws3c{word-spacing:3.200000pt;}
.ws20{word-spacing:3.264000pt;}
.ws31{word-spacing:3.520000pt;}
.ws5b{word-spacing:3.648000pt;}
.ws2b{word-spacing:3.712000pt;}
.ws4a{word-spacing:3.840000pt;}
.ws29{word-spacing:3.904000pt;}
.ws19{word-spacing:3.968000pt;}
.ws2c{word-spacing:4.032000pt;}
.ws14{word-spacing:4.224000pt;}
.ws10{word-spacing:4.352000pt;}
.ws11{word-spacing:4.672000pt;}
.ws3f{word-spacing:4.736000pt;}
.ws4e{word-spacing:5.632000pt;}
.ws7{word-spacing:5.696000pt;}
.ws95{word-spacing:5.749333pt;}
.ws3a{word-spacing:5.760000pt;}
.ws34{word-spacing:5.824000pt;}
.ws17{word-spacing:5.888000pt;}
.ws7f{word-spacing:5.920000pt;}
.ws6{word-spacing:6.080000pt;}
.ws66{word-spacing:6.144000pt;}
.ws40{word-spacing:6.272000pt;}
.ws65{word-spacing:6.784000pt;}
.ws58{word-spacing:7.104000pt;}
.ws3e{word-spacing:7.296000pt;}
.ws38{word-spacing:7.488000pt;}
.ws4b{word-spacing:8.512000pt;}
.ws46{word-spacing:9.088000pt;}
.ws6f{word-spacing:9.152000pt;}
.ws45{word-spacing:10.304000pt;}
.ws33{word-spacing:11.456000pt;}
.ws81{word-spacing:12.800000pt;}
.ws6d{word-spacing:13.568000pt;}
.ws80{word-spacing:23.626667pt;}
.ws79{word-spacing:132.651733pt;}
.ws8a{word-spacing:278.948800pt;}
.ws84{word-spacing:287.988800pt;}
.ws8e{word-spacing:302.684267pt;}
.ws86{word-spacing:314.242133pt;}
.ws90{word-spacing:319.281067pt;}
.ws8b{word-spacing:324.502933pt;}
.ws85{word-spacing:327.139733pt;}
.ws87{word-spacing:328.909333pt;}
.ws8f{word-spacing:329.659200pt;}
.ws91{word-spacing:333.948267pt;}
.ws93{word-spacing:355.299200pt;}
.ws88{word-spacing:355.299733pt;}
.ws8d{word-spacing:356.633067pt;}
.ws8c{word-spacing:360.466133pt;}
.ws89{word-spacing:367.160000pt;}
.ws94{word-spacing:367.160533pt;}
.ws92{word-spacing:372.199467pt;}
._11{margin-left:-17.065600pt;}
._16{margin-left:-15.385600pt;}
._14{margin-left:-8.030933pt;}
._f{margin-left:-6.632533pt;}
._8{margin-left:-5.166933pt;}
._0{margin-left:-4.151467pt;}
._2{margin-left:-2.635733pt;}
._1{margin-left:-1.396267pt;}
._4{width:0.896000pt;}
._3{width:1.866667pt;}
._7{width:2.788267pt;}
._5{width:4.486400pt;}
._d{width:5.702400pt;}
._13{width:6.656000pt;}
._e{width:7.616000pt;}
._1b{width:105.118933pt;}
._19{width:145.900800pt;}
._1c{width:152.944000pt;}
._28{width:155.464000pt;}
._25{width:204.286933pt;}
._1a{width:206.696000pt;}
._32{width:209.325867pt;}
._27{width:211.735467pt;}
._2b{width:224.437333pt;}
._1f{width:233.477333pt;}
._21{width:237.325333pt;}
._2d{width:242.364800pt;}
._c{width:301.835733pt;}
._2a{width:328.897067pt;}
._1e{width:340.457067pt;}
._29{width:342.071467pt;}
._2c{width:343.457067pt;}
._23{width:348.534933pt;}
._31{width:353.574400pt;}
._24{width:354.936000pt;}
._1d{width:356.152000pt;}
._30{width:357.168000pt;}
._26{width:368.617067pt;}
._20{width:369.950400pt;}
._2f{width:371.221867pt;}
._17{width:523.465600pt;}
._12{width:527.773333pt;}
._b{width:558.251733pt;}
._18{width:578.782400pt;}
._22{width:752.647467pt;}
._2e{width:755.166933pt;}
._15{width:930.877867pt;}
._a{width:937.386133pt;}
._10{width:1039.373867pt;}
._9{width:1063.238933pt;}
._6{width:1164.026133pt;}
.fs3{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fsa{font-size:48.964800pt;}
.fs9{font-size:49.454400pt;}
.fs8{font-size:49.948800pt;}
.fs6{font-size:50.448533pt;}
.fs1{font-size:53.333333pt;}
.fs7{font-size:53.866667pt;}
.fsb{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:67.264533pt;}
.fs0{font-size:74.666667pt;}
.fsc{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:18.604400pt;}
.y155{bottom:30.641467pt;}
.y187{bottom:37.748800pt;}
.y13e{bottom:40.908800pt;}
.y16d{bottom:45.971600pt;}
.ya4{bottom:46.147467pt;}
.y66{bottom:46.167867pt;}
.y154{bottom:46.641467pt;}
.y4d{bottom:46.777333pt;}
.y10f{bottom:49.664667pt;}
.y186{bottom:53.748800pt;}
.y13d{bottom:56.908800pt;}
.y1f9{bottom:59.512533pt;}
.yd4{bottom:59.806400pt;}
.y12f{bottom:61.769467pt;}
.y83{bottom:62.859067pt;}
.y10e{bottom:65.664667pt;}
.y79{bottom:65.756667pt;}
.y127{bottom:66.798533pt;}
.y8d{bottom:70.418000pt;}
.y100{bottom:70.462400pt;}
.yec{bottom:70.496667pt;}
.y1a7{bottom:72.115733pt;}
.y13c{bottom:72.908800pt;}
.yd3{bottom:75.806400pt;}
.y12e{bottom:77.769467pt;}
.y153{bottom:78.597067pt;}
.y1f7{bottom:82.159867pt;}
.y126{bottom:82.798533pt;}
.yff{bottom:86.462400pt;}
.yeb{bottom:86.496667pt;}
.ya3{bottom:86.843333pt;}
.y82{bottom:86.859067pt;}
.y78{bottom:89.756667pt;}
.yd2{bottom:91.806400pt;}
.y12d{bottom:93.769467pt;}
.y8c{bottom:94.418000pt;}
.y125{bottom:98.798533pt;}
.yea{bottom:102.496667pt;}
.y1a6{bottom:105.748000pt;}
.y12c{bottom:109.769467pt;}
.ya2{bottom:110.843333pt;}
.y185{bottom:111.677867pt;}
.y51{bottom:113.441733pt;}
.y77{bottom:113.756667pt;}
.y152{bottom:114.705867pt;}
.y124{bottom:114.798533pt;}
.y8b{bottom:118.418000pt;}
.y1f6{bottom:123.658267pt;}
.y16c{bottom:123.835333pt;}
.y123{bottom:130.798533pt;}
.y144{bottom:133.265600pt;}
.y7d{bottom:134.041867pt;}
.ya1{bottom:134.843333pt;}
.y184{bottom:135.677867pt;}
.y7c{bottom:136.561600pt;}
.y50{bottom:137.441733pt;}
.y76{bottom:137.756667pt;}
.y151{bottom:138.705867pt;}
.y8e{bottom:139.081200pt;}
.y1a5{bottom:139.380400pt;}
.y8a{bottom:142.418000pt;}
.y1f5{bottom:144.987467pt;}
.y122{bottom:146.798533pt;}
.y16b{bottom:147.835333pt;}
.yd0{bottom:148.386667pt;}
.y10d{bottom:152.622800pt;}
.yfe{bottom:157.085333pt;}
.y143{bottom:157.265600pt;}
.y129{bottom:158.597067pt;}
.ya0{bottom:158.843333pt;}
.y183{bottom:159.677867pt;}
.y4f{bottom:161.441733pt;}
.y75{bottom:161.756667pt;}
.y150{bottom:162.705867pt;}
.y121{bottom:162.798533pt;}
.ye4{bottom:165.095200pt;}
.y1f4{bottom:166.316667pt;}
.y89{bottom:166.418000pt;}
.yfc{bottom:171.195600pt;}
.y16a{bottom:171.835333pt;}
.ycf{bottom:172.386667pt;}
.y1a4{bottom:173.012667pt;}
.yfd{bottom:173.085333pt;}
.y10c{bottom:176.622800pt;}
.y120{bottom:178.798533pt;}
.yd1{bottom:179.699467pt;}
.y9f{bottom:182.843333pt;}
.y182{bottom:183.677867pt;}
.y24c{bottom:185.027600pt;}
.y4e{bottom:185.441733pt;}
.y74{bottom:185.756667pt;}
.y14f{bottom:186.705867pt;}
.y1f3{bottom:187.645867pt;}
.y254{bottom:188.935733pt;}
.ye3{bottom:189.095200pt;}
.y11f{bottom:194.798533pt;}
.y169{bottom:195.835333pt;}
.yce{bottom:196.386667pt;}
.y10b{bottom:200.622800pt;}
.y24b{bottom:204.227600pt;}
.y142{bottom:205.265600pt;}
.y1a3{bottom:206.645067pt;}
.y181{bottom:207.677867pt;}
.y253{bottom:208.135733pt;}
.y1f2{bottom:208.975067pt;}
.y73{bottom:209.756667pt;}
.y14e{bottom:210.705867pt;}
.ye2{bottom:213.095200pt;}
.y88{bottom:214.418000pt;}
.ycd{bottom:220.386667pt;}
.y258{bottom:220.424533pt;}
.y240{bottom:221.369333pt;}
.y23c{bottom:222.314267pt;}
.y24a{bottom:223.427600pt;}
.y10a{bottom:224.622800pt;}
.y252{bottom:227.335733pt;}
.y141{bottom:229.265600pt;}
.y1f1{bottom:230.304267pt;}
.y9e{bottom:230.843333pt;}
.y180{bottom:231.677867pt;}
.y72{bottom:233.756667pt;}
.y4c{bottom:233.884400pt;}
.ye1{bottom:237.095200pt;}
.y2b{bottom:237.772533pt;}
.y87{bottom:238.418000pt;}
.y257{bottom:239.624533pt;}
.y1a2{bottom:240.277333pt;}
.y23f{bottom:240.569333pt;}
.y23b{bottom:241.514267pt;}
.y249{bottom:242.627600pt;}
.y14d{bottom:242.953467pt;}
.y168{bottom:243.835333pt;}
.y20a{bottom:244.024533pt;}
.ycc{bottom:244.386667pt;}
.y251{bottom:246.535733pt;}
.y109{bottom:248.622800pt;}
.y1f0{bottom:251.633467pt;}
.y140{bottom:253.265600pt;}
.y9d{bottom:254.843333pt;}
.y17f{bottom:255.677867pt;}
.y71{bottom:257.756667pt;}
.y256{bottom:258.824533pt;}
.y23e{bottom:259.769333pt;}
.y250{bottom:260.109467pt;}
.y23a{bottom:260.714267pt;}
.y2a{bottom:261.772533pt;}
.y86{bottom:262.418000pt;}
.y14c{bottom:266.953467pt;}
.y167{bottom:267.835333pt;}
.ycb{bottom:268.386667pt;}
.y108{bottom:272.622800pt;}
.y1ef{bottom:272.962667pt;}
.y1a1{bottom:273.909733pt;}
.ye9{bottom:274.132933pt;}
.y13f{bottom:277.265600pt;}
.y255{bottom:278.024533pt;}
.y64{bottom:278.040133pt;}
.y23d{bottom:278.969333pt;}
.y24f{bottom:279.309467pt;}
.y17e{bottom:279.677867pt;}
.y239{bottom:279.914267pt;}
.y70{bottom:281.756667pt;}
.y29{bottom:285.772533pt;}
.y11e{bottom:285.841200pt;}
.y14b{bottom:290.953467pt;}
.y166{bottom:291.835333pt;}
.y209{bottom:292.024533pt;}
.yca{bottom:292.386667pt;}
.y107{bottom:296.622800pt;}
.y244{bottom:297.904800pt;}
.ye8{bottom:298.132933pt;}
.y24e{bottom:298.509467pt;}
.y248{bottom:298.849733pt;}
.y63{bottom:302.040133pt;}
.y9c{bottom:302.843333pt;}
.y17d{bottom:303.677867pt;}
.y6f{bottom:305.756667pt;}
.y1a0{bottom:307.542000pt;}
.y28{bottom:309.772533pt;}
.y85{bottom:310.418000pt;}
.y1d3{bottom:310.900000pt;}
.y1ee{bottom:315.620933pt;}
.y165{bottom:315.835333pt;}
.y208{bottom:316.024533pt;}
.y13b{bottom:316.077467pt;}
.yc9{bottom:316.386667pt;}
.y243{bottom:317.104800pt;}
.y24d{bottom:317.709467pt;}
.y247{bottom:318.049733pt;}
.ye7{bottom:322.132933pt;}
.y62{bottom:326.040133pt;}
.y9b{bottom:326.843333pt;}
.y17c{bottom:327.677867pt;}
.y27{bottom:333.772533pt;}
.y84{bottom:334.418000pt;}
.y242{bottom:336.304800pt;}
.y246{bottom:337.249733pt;}
.y14a{bottom:338.953467pt;}
.y1f8{bottom:339.549333pt;}
.yc8{bottom:340.386667pt;}
.y19f{bottom:341.174267pt;}
.y1d2{bottom:344.915733pt;}
.y106{bottom:345.998667pt;}
.ye6{bottom:346.132933pt;}
.y61{bottom:350.040133pt;}
.y17b{bottom:351.677867pt;}
.y164{bottom:352.785067pt;}
.y241{bottom:355.504800pt;}
.y245{bottom:356.449733pt;}
.y26{bottom:357.772533pt;}
.y7b{bottom:358.817600pt;}
.y149{bottom:362.953467pt;}
.y207{bottom:364.024533pt;}
.yc7{bottom:364.386667pt;}
.y163{bottom:368.785067pt;}
.ye5{bottom:370.132933pt;}
.y238{bottom:371.605600pt;}
.y234{bottom:373.495333pt;}
.y60{bottom:374.040133pt;}
.y1eb{bottom:374.404533pt;}
.y19e{bottom:374.806667pt;}
.yb1{bottom:375.308000pt;}
.y7a{bottom:375.605067pt;}
.y17a{bottom:375.677867pt;}
.y1d1{bottom:375.781867pt;}
.y25{bottom:381.772533pt;}
.y9a{bottom:384.120667pt;}
.y148{bottom:386.953467pt;}
.yc6{bottom:388.386667pt;}
.y237{bottom:390.805600pt;}
.y233{bottom:392.695333pt;}
.y1ea{bottom:395.733733pt;}
.y5f{bottom:398.040133pt;}
.yb0{bottom:399.308000pt;}
.y24{bottom:405.772533pt;}
.y19d{bottom:407.622800pt;}
.y22d{bottom:408.229200pt;}
.y236{bottom:410.005600pt;}
.y147{bottom:410.953467pt;}
.y232{bottom:411.895333pt;}
.y206{bottom:412.024533pt;}
.yc5{bottom:412.386667pt;}
.y1e9{bottom:417.062933pt;}
.ye0{bottom:418.832400pt;}
.y1d0{bottom:420.401333pt;}
.yaf{bottom:423.308000pt;}
.y1c4{bottom:424.273600pt;}
.y235{bottom:429.205600pt;}
.y23{bottom:429.772533pt;}
.y231{bottom:431.095333pt;}
.y65{bottom:433.569467pt;}
.y1cf{bottom:433.734667pt;}
.y21d{bottom:434.118933pt;}
.y146{bottom:435.510533pt;}
.yc4{bottom:436.386667pt;}
.y179{bottom:437.291200pt;}
.y1e8{bottom:438.392133pt;}
.y19c{bottom:439.622800pt;}
.y13{bottom:442.196400pt;}
.yb{bottom:449.694667pt;}
.y145{bottom:451.510533pt;}
.y22{bottom:453.772533pt;}
.y22c{bottom:456.229200pt;}
.y21c{bottom:458.118933pt;}
.y1e7{bottom:459.721333pt;}
.y205{bottom:460.024533pt;}
.yc3{bottom:460.386667pt;}
.y7e{bottom:466.010400pt;}
.y7f{bottom:468.530133pt;}
.yae{bottom:471.308000pt;}
.y1ce{bottom:471.424933pt;}
.y19b{bottom:473.255067pt;}
.y1ca{bottom:473.629600pt;}
.y4b{bottom:478.339467pt;}
.y128{bottom:480.172000pt;}
.y22b{bottom:480.229200pt;}
.y1e6{bottom:481.050400pt;}
.yf5{bottom:481.819600pt;}
.y1cd{bottom:484.758267pt;}
.y1c9{bottom:486.962933pt;}
.y230{bottom:494.736000pt;}
.yad{bottom:495.308000pt;}
.y1c8{bottom:500.296267pt;}
.y4a{bottom:502.339467pt;}
.y1e5{bottom:502.379600pt;}
.yc2{bottom:505.189733pt;}
.yf4{bottom:505.819600pt;}
.y21b{bottom:506.118933pt;}
.y19a{bottom:506.887467pt;}
.y1c3{bottom:509.313067pt;}
.y204{bottom:510.024533pt;}
.y1c7{bottom:513.629600pt;}
.y1cc{bottom:514.078000pt;}
.y22f{bottom:517.136000pt;}
.yac{bottom:519.308000pt;}
.y1e4{bottom:523.708800pt;}
.y2{bottom:525.602133pt;}
.y49{bottom:526.339467pt;}
.y1c6{bottom:526.962933pt;}
.y1cb{bottom:527.411333pt;}
.y22a{bottom:528.229200pt;}
.yc1{bottom:529.189733pt;}
.yf3{bottom:529.819600pt;}
.y21a{bottom:530.118933pt;}
.y38{bottom:536.103333pt;}
.y199{bottom:540.519733pt;}
.y12{bottom:543.529733pt;}
.y1e3{bottom:545.038000pt;}
.ya{bottom:545.694667pt;}
.y1{bottom:548.002133pt;}
.y48{bottom:550.339467pt;}
.yab{bottom:551.119067pt;}
.yc0{bottom:553.189733pt;}
.y198{bottom:557.335867pt;}
.y203{bottom:558.024533pt;}
.y37{bottom:560.103333pt;}
.y1e2{bottom:566.367200pt;}
.y197{bottom:574.152000pt;}
.y47{bottom:574.339467pt;}
.yaa{bottom:575.119067pt;}
.y229{bottom:576.229200pt;}
.ybf{bottom:577.189733pt;}
.yf2{bottom:577.819600pt;}
.y219{bottom:578.118933pt;}
.y11d{bottom:582.213467pt;}
.y1c5{bottom:582.383867pt;}
.y36{bottom:584.103333pt;}
.y1e1{bottom:587.696400pt;}
.y6d{bottom:591.929867pt;}
.y9{bottom:593.694667pt;}
.y11{bottom:594.196400pt;}
.y46{bottom:598.339467pt;}
.ya9{bottom:599.119067pt;}
.y228{bottom:600.229200pt;}
.ybe{bottom:601.189733pt;}
.yf1{bottom:601.819600pt;}
.y218{bottom:602.118933pt;}
.y202{bottom:606.024533pt;}
.y11c{bottom:606.213467pt;}
.y21{bottom:606.843467pt;}
.y196{bottom:607.784400pt;}
.y35{bottom:608.103333pt;}
.y1e0{bottom:609.025600pt;}
.y22e{bottom:610.300000pt;}
.y105{bottom:615.300000pt;}
.y6c{bottom:615.929867pt;}
.y13a{bottom:620.638667pt;}
.y45{bottom:622.339467pt;}
.ya8{bottom:623.119067pt;}
.yf0{bottom:625.819600pt;}
.y1c2{bottom:626.478400pt;}
.y201{bottom:630.024533pt;}
.y11b{bottom:630.213467pt;}
.y20{bottom:630.843467pt;}
.y104{bottom:639.300000pt;}
.y195{bottom:639.784400pt;}
.y8{bottom:644.361333pt;}
.y139{bottom:644.638667pt;}
.y10{bottom:644.863067pt;}
.y44{bottom:646.339467pt;}
.ya7{bottom:647.119067pt;}
.y227{bottom:648.229200pt;}
.ybd{bottom:649.189733pt;}
.y217{bottom:650.118933pt;}
.y130{bottom:650.565600pt;}
.y1df{bottom:651.683867pt;}
.y1f{bottom:654.843467pt;}
.y194{bottom:655.784400pt;}
.y34{bottom:656.103333pt;}
.y6e{bottom:660.644267pt;}
.y5e{bottom:662.040133pt;}
.y103{bottom:663.300000pt;}
.y138{bottom:668.638667pt;}
.y43{bottom:670.339467pt;}
.ya6{bottom:671.119067pt;}
.y193{bottom:671.784400pt;}
.y226{bottom:672.229200pt;}
.ybc{bottom:673.189733pt;}
.yef{bottom:673.819600pt;}
.y216{bottom:674.118933pt;}
.y1ed{bottom:675.927200pt;}
.y200{bottom:678.024533pt;}
.y11a{bottom:678.213467pt;}
.y1e{bottom:678.843467pt;}
.y33{bottom:680.103333pt;}
.y162{bottom:685.914133pt;}
.y5d{bottom:686.040133pt;}
.y137{bottom:692.638667pt;}
.y7{bottom:695.028000pt;}
.yf{bottom:695.529733pt;}
.yee{bottom:697.819600pt;}
.y119{bottom:702.213467pt;}
.y1d{bottom:702.843467pt;}
.y192{bottom:703.784400pt;}
.y32{bottom:704.103333pt;}
.y161{bottom:709.914133pt;}
.y5c{bottom:710.040133pt;}
.ydf{bottom:711.300000pt;}
.y1de{bottom:714.285867pt;}
.y42{bottom:718.339467pt;}
.ya5{bottom:720.191600pt;}
.y225{bottom:720.229200pt;}
.ybb{bottom:721.189733pt;}
.yed{bottom:721.819600pt;}
.y215{bottom:722.118933pt;}
.y1ff{bottom:726.024533pt;}
.y118{bottom:726.213467pt;}
.y1c{bottom:726.843467pt;}
.y31{bottom:728.103333pt;}
.y160{bottom:733.914133pt;}
.y5b{bottom:734.040133pt;}
.y99{bottom:734.670133pt;}
.yde{bottom:735.300000pt;}
.y1b0{bottom:735.755867pt;}
.y191{bottom:735.784400pt;}
.y178{bottom:736.559867pt;}
.y136{bottom:740.638667pt;}
.y41{bottom:742.339467pt;}
.y224{bottom:744.229200pt;}
.yba{bottom:745.189733pt;}
.y6{bottom:745.694667pt;}
.y214{bottom:746.118933pt;}
.ye{bottom:746.196400pt;}
.y1b{bottom:750.843467pt;}
.y30{bottom:752.103333pt;}
.y1dd{bottom:755.784400pt;}
.y15f{bottom:757.914133pt;}
.y5a{bottom:758.040133pt;}
.y98{bottom:758.670133pt;}
.y102{bottom:759.300000pt;}
.y177{bottom:760.559867pt;}
.yfb{bottom:762.691600pt;}
.y135{bottom:764.638667pt;}
.y1b6{bottom:765.561333pt;}
.y40{bottom:766.339467pt;}
.y1af{bottom:767.755867pt;}
.y190{bottom:767.784400pt;}
.y1b5{bottom:768.840667pt;}
.y213{bottom:770.118933pt;}
.y1fe{bottom:774.024533pt;}
.y117{bottom:774.213467pt;}
.y1a{bottom:774.843467pt;}
.y2f{bottom:776.103333pt;}
.y1dc{bottom:777.113467pt;}
.y1c1{bottom:777.561333pt;}
.y15e{bottom:781.914133pt;}
.y81{bottom:782.040133pt;}
.y97{bottom:782.670133pt;}
.ydd{bottom:783.300000pt;}
.y176{bottom:784.559867pt;}
.y134{bottom:788.638667pt;}
.y223{bottom:792.229200pt;}
.yb9{bottom:793.189733pt;}
.y5{bottom:796.361333pt;}
.yd{bottom:796.863067pt;}
.y116{bottom:798.213467pt;}
.y1db{bottom:798.442667pt;}
.y19{bottom:798.843467pt;}
.y1ae{bottom:799.755867pt;}
.y18f{bottom:799.784400pt;}
.yfa{bottom:801.468800pt;}
.y15d{bottom:805.914133pt;}
.y59{bottom:806.040133pt;}
.y96{bottom:806.670133pt;}
.ydc{bottom:807.300000pt;}
.y175{bottom:808.559867pt;}
.y12b{bottom:811.504800pt;}
.y3f{bottom:814.339467pt;}
.y222{bottom:816.229200pt;}
.yb8{bottom:817.189733pt;}
.y212{bottom:818.118933pt;}
.y1da{bottom:819.771867pt;}
.y1fd{bottom:822.024533pt;}
.y18{bottom:822.843467pt;}
.y2e{bottom:824.103333pt;}
.yf9{bottom:825.468800pt;}
.y58{bottom:830.040133pt;}
.y95{bottom:830.670133pt;}
.ydb{bottom:831.300000pt;}
.y18e{bottom:831.784400pt;}
.y174{bottom:832.559867pt;}
.y1ad{bottom:833.055200pt;}
.y12a{bottom:835.504800pt;}
.y133{bottom:836.638667pt;}
.y3e{bottom:838.339467pt;}
.y15c{bottom:840.956667pt;}
.y1d9{bottom:841.101067pt;}
.yb7{bottom:841.189733pt;}
.y211{bottom:842.118933pt;}
.y1ba{bottom:843.316933pt;}
.y1fc{bottom:846.024533pt;}
.y115{bottom:846.213467pt;}
.y17{bottom:846.843467pt;}
.y4{bottom:847.028000pt;}
.yc{bottom:847.529733pt;}
.y2d{bottom:848.103333pt;}
.yf8{bottom:849.468800pt;}
.y57{bottom:854.040133pt;}
.y101{bottom:855.300000pt;}
.y1bd{bottom:856.201867pt;}
.y173{bottom:856.559867pt;}
.y1b9{bottom:856.650267pt;}
.y1c0{bottom:857.316933pt;}
.y132{bottom:860.638667pt;}
.y3d{bottom:862.339467pt;}
.y1d8{bottom:862.430267pt;}
.y18d{bottom:863.784400pt;}
.y221{bottom:864.229200pt;}
.y1b4{bottom:864.588667pt;}
.yb6{bottom:865.189733pt;}
.y210{bottom:866.118933pt;}
.y1ac{bottom:866.354533pt;}
.y1bc{bottom:869.535200pt;}
.y1b8{bottom:869.983600pt;}
.y1bf{bottom:870.650267pt;}
.yf7{bottom:873.468800pt;}
.y15b{bottom:875.780800pt;}
.y56{bottom:878.040133pt;}
.y94{bottom:878.670133pt;}
.yda{bottom:879.300000pt;}
.y18c{bottom:879.784400pt;}
.y6b{bottom:879.929867pt;}
.y172{bottom:880.559867pt;}
.y1bb{bottom:882.868533pt;}
.y1b7{bottom:883.316933pt;}
.y1d7{bottom:883.759467pt;}
.y1be{bottom:883.983600pt;}
.y131{bottom:884.638667pt;}
.y1fb{bottom:894.024533pt;}
.y18b{bottom:895.784400pt;}
.yf6{bottom:897.468800pt;}
.y15a{bottom:899.780800pt;}
.y1ab{bottom:899.986800pt;}
.y114{bottom:902.040000pt;}
.y80{bottom:902.040133pt;}
.y93{bottom:902.670133pt;}
.yd9{bottom:903.300000pt;}
.y6a{bottom:903.929867pt;}
.y171{bottom:904.559867pt;}
.y1d6{bottom:905.088667pt;}
.y3c{bottom:910.339467pt;}
.y220{bottom:912.229200pt;}
.yb5{bottom:913.189733pt;}
.y20f{bottom:914.118933pt;}
.y1fa{bottom:918.024533pt;}
.y1b2{bottom:918.040133pt;}
.y159{bottom:923.780800pt;}
.y113{bottom:926.040000pt;}
.y55{bottom:926.040133pt;}
.y92{bottom:926.670133pt;}
.yd8{bottom:927.300000pt;}
.y18a{bottom:927.784400pt;}
.y69{bottom:927.929867pt;}
.y1aa{bottom:933.619200pt;}
.y3b{bottom:934.339467pt;}
.yb4{bottom:937.189733pt;}
.y20e{bottom:938.118933pt;}
.y1d5{bottom:947.746933pt;}
.y158{bottom:947.780800pt;}
.y112{bottom:950.040000pt;}
.y54{bottom:950.040133pt;}
.y91{bottom:950.670133pt;}
.yd7{bottom:951.300000pt;}
.y170{bottom:952.559867pt;}
.y1b3{bottom:955.927200pt;}
.y3a{bottom:958.339467pt;}
.y189{bottom:959.784400pt;}
.y21f{bottom:960.229200pt;}
.y20b{bottom:960.669333pt;}
.yb3{bottom:961.189733pt;}
.y20d{bottom:962.118933pt;}
.y1a9{bottom:966.756933pt;}
.y157{bottom:971.780800pt;}
.y111{bottom:974.040000pt;}
.y53{bottom:974.040133pt;}
.y90{bottom:974.670133pt;}
.yd6{bottom:975.300000pt;}
.y68{bottom:975.929867pt;}
.y16f{bottom:976.559867pt;}
.y1ec{bottom:977.344533pt;}
.y156{bottom:995.780800pt;}
.y188{bottom:995.963733pt;}
.y110{bottom:998.040000pt;}
.y52{bottom:998.040133pt;}
.y21e{bottom:998.297867pt;}
.y8f{bottom:998.670133pt;}
.yd5{bottom:999.300000pt;}
.y67{bottom:999.929867pt;}
.y20c{bottom:1000.187600pt;}
.y1a8{bottom:1000.389200pt;}
.y16e{bottom:1000.559867pt;}
.y16{bottom:1013.199067pt;}
.y2c{bottom:1014.143867pt;}
.y1b1{bottom:1014.458933pt;}
.y3{bottom:1015.088667pt;}
.y1d4{bottom:1015.088800pt;}
.y39{bottom:1015.088933pt;}
.yb2{bottom:1016.399600pt;}
.y14{bottom:1066.962667pt;}
.h4{height:37.031250pt;}
.h8{height:37.437500pt;}
.h11{height:37.973333pt;}
.h7{height:42.117188pt;}
.hf{height:43.626667pt;}
.h14{height:43.812500pt;}
.hd{height:43.827145pt;}
.hb{height:44.265632pt;}
.h9{height:44.437500pt;}
.h10{height:46.796875pt;}
.hc{height:47.264844pt;}
.h13{height:47.989333pt;}
.h5{height:52.352000pt;}
.ha{height:55.022388pt;}
.h6{height:56.156250pt;}
.h3{height:61.077333pt;}
.h2{height:65.515625pt;}
.he{height:83.842667pt;}
.h15{height:88.875000pt;}
.h12{height:95.166400pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:55.243733pt;}
.x18{left:59.527600pt;}
.x3{left:60.472400pt;}
.x28{left:61.956400pt;}
.x1d{left:86.003067pt;}
.x16{left:96.378000pt;}
.x15{left:98.267733pt;}
.x2b{left:108.891067pt;}
.xc{left:130.930400pt;}
.x1a{left:133.416533pt;}
.x29{left:147.573600pt;}
.x1e{left:154.343867pt;}
.x1f{left:155.343467pt;}
.x19{left:160.578400pt;}
.xb{left:166.299200pt;}
.x25{left:183.909867pt;}
.x42{left:190.154400pt;}
.x4a{left:193.934000pt;}
.x3c{left:197.318933pt;}
.x3d{left:198.272400pt;}
.x45{left:201.098400pt;}
.x46{left:202.051867pt;}
.x2{left:207.832133pt;}
.x32{left:212.283467pt;}
.x3b{left:214.273600pt;}
.x33{left:216.099733pt;}
.x44{left:218.053067pt;}
.x8{left:219.834933pt;}
.x3f{left:220.880533pt;}
.x1{left:222.415467pt;}
.x40{left:223.989733pt;}
.x3e{left:226.116400pt;}
.x48{left:227.769333pt;}
.xa{left:229.291333pt;}
.x41{left:233.757733pt;}
.x47{left:234.750533pt;}
.x49{left:237.537200pt;}
.x2d{left:238.740133pt;}
.x2e{left:241.926533pt;}
.x11{left:245.669333pt;}
.xf{left:247.559067pt;}
.x22{left:274.538800pt;}
.x34{left:306.808400pt;}
.x4c{left:315.365867pt;}
.x21{left:321.197067pt;}
.x4b{left:322.904267pt;}
.x20{left:329.854267pt;}
.x24{left:332.180800pt;}
.x9{left:371.023600pt;}
.x14{left:374.803200pt;}
.x31{left:377.952800pt;}
.x7{left:389.901600pt;}
.x5a{left:436.814267pt;}
.x30{left:439.460800pt;}
.x2a{left:442.754400pt;}
.x35{left:452.950133pt;}
.x4e{left:461.405467pt;}
.x17{left:472.223200pt;}
.x23{left:477.566267pt;}
.x37{left:480.198667pt;}
.x6e{left:486.949733pt;}
.x64{left:490.655733pt;}
.x62{left:494.101067pt;}
.x1b{left:496.197733pt;}
.x2c{left:504.872133pt;}
.x1c{left:506.963867pt;}
.x6d{left:517.020000pt;}
.x63{left:520.726000pt;}
.x2f{left:523.501333pt;}
.x43{left:525.655867pt;}
.x38{left:527.178000pt;}
.x5f{left:533.248933pt;}
.x27{left:536.102133pt;}
.x10{left:540.472400pt;}
.xe{left:541.417333pt;}
.x26{left:543.590933pt;}
.x39{left:549.376267pt;}
.x68{left:552.113467pt;}
.x67{left:555.558800pt;}
.x6c{left:557.148133pt;}
.x6a{left:560.593467pt;}
.x5e{left:563.319200pt;}
.x52{left:564.430133pt;}
.x56{left:566.004933pt;}
.x50{left:567.875467pt;}
.x54{left:569.450133pt;}
.x61{left:574.069733pt;}
.x71{left:575.477867pt;}
.x36{left:576.414667pt;}
.x6f{left:578.923200pt;}
.x51{left:581.172267pt;}
.x55{left:582.747067pt;}
.x13{left:585.196800pt;}
.x6b{left:587.218533pt;}
.x65{left:594.429467pt;}
.x58{left:599.056533pt;}
.x70{left:605.548133pt;}
.x5d{left:615.764533pt;}
.x60{left:619.319200pt;}
.x59{left:622.275200pt;}
.x66{left:624.847867pt;}
.xd{left:629.947467pt;}
.x4d{left:633.774267pt;}
.x53{left:647.622133pt;}
.x69{left:648.546667pt;}
.x4f{left:650.492533pt;}
.x3a{left:667.123333pt;}
.x5c{left:668.345600pt;}
.x5b{left:670.118933pt;}
.x6{left:673.533200pt;}
.x57{left:677.244000pt;}
.x5{left:715.308533pt;}
.x4{left:723.895067pt;}
}




    .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; }
  