
    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_ae9a734b8c895ffdc63ea749.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.025879;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_5a09ec0aeb9170990a2d2b0f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.207031;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_bf1b0c4168902bf2be396e5c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.207031;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-16.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.500000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000041px;}
.ls3{letter-spacing:0.000063px;}
.ls7{letter-spacing:0.000081px;}
.ls0{letter-spacing:0.000196px;}
.ls9{letter-spacing:3.300000px;}
.ls5{letter-spacing:3.300081px;}
.ls4{letter-spacing:6.600081px;}
.ls8{letter-spacing:9.899751px;}
.ls6{letter-spacing:13.200081px;}
.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;}
}
.ws6{word-spacing:-48.798750px;}
.wsd{word-spacing:-47.520000px;}
.wse{word-spacing:-38.888479px;}
.ws8{word-spacing:-38.888439px;}
.ws74{word-spacing:-37.620000px;}
.ws45{word-spacing:-35.970000px;}
.ws5e{word-spacing:-35.419890px;}
.ws93{word-spacing:-35.145000px;}
.ws38{word-spacing:-34.999595px;}
.ws95{word-spacing:-34.650000px;}
.ws57{word-spacing:-34.320000px;}
.ws7{word-spacing:-33.783750px;}
.ws8e{word-spacing:-32.380026px;}
.ws48{word-spacing:-31.020000px;}
.wsa0{word-spacing:-30.784380px;}
.ws12{word-spacing:-30.271809px;}
.ws63{word-spacing:-30.257619px;}
.ws9c{word-spacing:-30.225939px;}
.ws90{word-spacing:-30.204159px;}
.ws92{word-spacing:-30.195000px;}
.ws33{word-spacing:-30.166869px;}
.ws3f{word-spacing:-30.153009px;}
.ws70{word-spacing:-30.088659px;}
.ws8a{word-spacing:-30.088329px;}
.ws2d{word-spacing:-29.978439px;}
.ws1e{word-spacing:-29.958969px;}
.ws42{word-spacing:-29.868549px;}
.ws94{word-spacing:-29.721699px;}
.ws7f{word-spacing:-29.683089px;}
.ws9a{word-spacing:-29.648439px;}
.ws54{word-spacing:-29.607189px;}
.ws6a{word-spacing:-29.538549px;}
.ws4e{word-spacing:-29.509509px;}
.ws89{word-spacing:-29.495979px;}
.ws69{word-spacing:-29.460009px;}
.ws22{word-spacing:-29.428329px;}
.ws71{word-spacing:-29.400939px;}
.ws73{word-spacing:-29.376519px;}
.ws4f{word-spacing:-29.355069px;}
.ws16{word-spacing:-29.318439px;}
.ws98{word-spacing:-29.302599px;}
.ws79{word-spacing:-29.288409px;}
.ws1a{word-spacing:-29.242209px;}
.ws62{word-spacing:-29.224059px;}
.ws82{word-spacing:-29.194689px;}
.ws1b{word-spacing:-29.171589px;}
.ws14{word-spacing:-28.988439px;}
.ws4d{word-spacing:-28.823439px;}
.ws7c{word-spacing:-28.794399px;}
.ws56{word-spacing:-28.752819px;}
.ws49{word-spacing:-28.734669px;}
.ws41{word-spacing:-28.640949px;}
.ws81{word-spacing:-28.621809px;}
.ws13{word-spacing:-28.516869px;}
.ws25{word-spacing:-28.493439px;}
.ws28{word-spacing:-28.405989px;}
.wsa{word-spacing:-28.369689px;}
.ws40{word-spacing:-28.328439px;}
.ws37{word-spacing:-28.281249px;}
.ws3c{word-spacing:-28.255179px;}
.ws6f{word-spacing:-28.211949px;}
.ws7a{word-spacing:-28.129860px;}
.ws9{word-spacing:-28.129664px;}
.ws15{word-spacing:-28.119879px;}
.ws4a{word-spacing:-28.088529px;}
.ws2c{word-spacing:-28.045629px;}
.ws6b{word-spacing:-27.973029px;}
.ws55{word-spacing:-27.946299px;}
.ws19{word-spacing:-27.888549px;}
.ws29{word-spacing:-27.823869px;}
.ws78{word-spacing:-27.719259px;}
.ws35{word-spacing:-27.705069px;}
.ws3e{word-spacing:-27.668439px;}
.ws97{word-spacing:-27.629499px;}
.ws75{word-spacing:-27.574059px;}
.ws1c{word-spacing:-27.521589px;}
.ws8b{word-spacing:-27.338769px;}
.ws9b{word-spacing:-27.338439px;}
.ws3d{word-spacing:-27.211719px;}
.ws8c{word-spacing:-27.132189px;}
.ws5b{word-spacing:-27.008439px;}
.ws59{word-spacing:-26.788329px;}
.ws5a{word-spacing:-26.678439px;}
.ws44{word-spacing:-26.568549px;}
.ws3a{word-spacing:-26.513810px;}
.ws10{word-spacing:-26.513439px;}
.ws17{word-spacing:-26.307189px;}
.ws5d{word-spacing:-26.288379px;}
.ws50{word-spacing:-26.238549px;}
.ws67{word-spacing:-26.196309px;}
.ws88{word-spacing:-26.183439px;}
.ws60{word-spacing:-26.160009px;}
.ws30{word-spacing:-25.924059px;}
.ws9f{word-spacing:-25.894689px;}
.ws3b{word-spacing:-25.861070px;}
.ws2f{word-spacing:-25.688439px;}
.ws20{word-spacing:-25.413549px;}
.ws39{word-spacing:-25.314352px;}
.ws27{word-spacing:-25.248549px;}
.wsc{word-spacing:-25.138329px;}
.ws66{word-spacing:-25.105989px;}
.ws2b{word-spacing:-25.069689px;}
.ws46{word-spacing:-25.028439px;}
.ws77{word-spacing:-24.926799px;}
.ws84{word-spacing:-24.808329px;}
.ws53{word-spacing:-24.717909px;}
.ws7d{word-spacing:-24.698439px;}
.ws23{word-spacing:-24.673029px;}
.ws86{word-spacing:-24.420000px;}
.ws68{word-spacing:-24.313329px;}
.ws5f{word-spacing:-24.148329px;}
.ws4c{word-spacing:-24.125229px;}
.ws24{word-spacing:-24.038439px;}
.ws36{word-spacing:-23.911389px;}
.ws6d{word-spacing:-23.213439px;}
.ws6e{word-spacing:-23.095629px;}
.ws58{word-spacing:-23.048439px;}
.ws5c{word-spacing:-22.938549px;}
.ws7b{word-spacing:-22.860009px;}
.ws8d{word-spacing:-22.776849px;}
.ws9e{word-spacing:-22.480140px;}
.ws21{word-spacing:-22.388439px;}
.ws96{word-spacing:-22.194069px;}
.ws4b{word-spacing:-22.134669px;}
.ws6c{word-spacing:-21.880899px;}
.ws34{word-spacing:-21.838329px;}
.ws72{word-spacing:-21.799430px;}
.ws91{word-spacing:-21.728439px;}
.ws7e{word-spacing:-21.508659px;}
.ws47{word-spacing:-21.288549px;}
.ws2e{word-spacing:-21.210009px;}
.ws64{word-spacing:-21.139430px;}
.ws1f{word-spacing:-20.865489px;}
.ws18{word-spacing:-20.738439px;}
.ws61{word-spacing:-20.588289px;}
.ws83{word-spacing:-20.408439px;}
.ws1d{word-spacing:-20.188329px;}
.ws31{word-spacing:-19.913439px;}
.ws26{word-spacing:-19.476849px;}
.ws9d{word-spacing:-19.418439px;}
.wsb{word-spacing:-18.905289px;}
.ws80{word-spacing:-18.834669px;}
.ws43{word-spacing:-18.188529px;}
.ws2a{word-spacing:-17.988549px;}
.ws8f{word-spacing:-17.768439px;}
.wsf{word-spacing:-17.644689px;}
.ws76{word-spacing:-16.819689px;}
.ws99{word-spacing:-14.845629px;}
.ws85{word-spacing:-14.138439px;}
.ws87{word-spacing:-13.588329px;}
.ws52{word-spacing:-10.288329px;}
.ws51{word-spacing:-10.013439px;}
.ws65{word-spacing:-9.518439px;}
.ws32{word-spacing:-9.188439px;}
.ws11{word-spacing:0.000000px;}
.ws4{word-spacing:126.794743px;}
.ws3{word-spacing:140.095438px;}
.ws0{word-spacing:194.037383px;}
.ws1{word-spacing:230.257604px;}
.ws2{word-spacing:311.775253px;}
.ws5{word-spacing:372.590624px;}
._b{width:1.833480px;}
._e{width:2.852176px;}
._d{width:3.863091px;}
._c{width:5.047008px;}
._f{width:6.129531px;}
._a{width:7.151821px;}
._9{width:8.249873px;}
._10{width:9.429009px;}
._3{width:249.887342px;}
._2{width:358.849215px;}
._4{width:359.944941px;}
._1{width:364.585442px;}
._0{width:402.615505px;}
._8{width:432.300000px;}
._6{width:435.600000px;}
._7{width:438.900000px;}
._5{width:458.700000px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(20,49,92);}
.fc0{color:rgb(88,61,130);}
.fs5{font-size:35.607000px;}
.fs3{font-size:39.567000px;}
.fs4{font-size:42.768000px;}
.fs0{font-size:47.520000px;}
.fs1{font-size:52.800000px;}
.fs2{font-size:68.640000px;}
.y0{bottom:0.000000px;}
.y226{bottom:2.475000px;}
.y249{bottom:4.950000px;}
.y28b{bottom:5.775000px;}
.yd0{bottom:6.600000px;}
.y200{bottom:8.250000px;}
.y181{bottom:9.075000px;}
.y266{bottom:9.900000px;}
.y1ab{bottom:14.850000px;}
.y2a5{bottom:17.325000px;}
.y131{bottom:18.150000px;}
.ya2{bottom:19.800000px;}
.ycf{bottom:21.450000px;}
.y180{bottom:23.100000px;}
.y70{bottom:23.925000px;}
.y28a{bottom:24.750000px;}
.y2dd{bottom:25.575000px;}
.yfc{bottom:32.175000px;}
.y130{bottom:33.000000px;}
.ya1{bottom:34.650000px;}
.yce{bottom:36.300000px;}
.y17f{bottom:37.125000px;}
.y6f{bottom:38.775000px;}
.y2c3{bottom:39.600000px;}
.y2dc{bottom:40.425000px;}
.y1{bottom:42.225000px;}
.y2a4{bottom:42.900000px;}
.yfb{bottom:47.025000px;}
.y37{bottom:47.850000px;}
.ya0{bottom:49.500000px;}
.ycd{bottom:51.150000px;}
.y1ff{bottom:51.975000px;}
.y6e{bottom:53.625000px;}
.y1aa{bottom:54.450000px;}
.y1d6{bottom:59.400000px;}
.yfa{bottom:61.875000px;}
.y15a{bottom:63.525000px;}
.y12f{bottom:66.000000px;}
.y1fe{bottom:66.825000px;}
.y1a9{bottom:69.300000px;}
.y289{bottom:70.125000px;}
.y2c2{bottom:73.425000px;}
.y36{bottom:74.250000px;}
.y1d5{bottom:75.900000px;}
.y225{bottom:76.725000px;}
.y159{bottom:77.550000px;}
.yf9{bottom:80.025000px;}
.y12e{bottom:84.150000px;}
.y2db{bottom:85.800000px;}
.y1d4{bottom:89.925000px;}
.y9f{bottom:91.575000px;}
.y35{bottom:92.400000px;}
.y6d{bottom:94.875000px;}
.y288{bottom:95.700000px;}
.y265{bottom:99.000000px;}
.y2c1{bottom:99.825000px;}
.y1d3{bottom:103.950000px;}
.y2da{bottom:104.775000px;}
.y224{bottom:106.425000px;}
.y34{bottom:107.250000px;}
.y6c{bottom:109.725000px;}
.y287{bottom:110.550000px;}
.y1a8{bottom:113.025000px;}
.y264{bottom:113.850000px;}
.y1d2{bottom:117.975000px;}
.y2c0{bottom:118.800000px;}
.y158{bottom:121.275000px;}
.y33{bottom:122.100000px;}
.y286{bottom:125.400000px;}
.y1fd{bottom:126.225000px;}
.y1a7{bottom:127.050000px;}
.yf8{bottom:127.875000px;}
.y263{bottom:128.700000px;}
.y2d9{bottom:130.350000px;}
.y1d1{bottom:132.000000px;}
.y2a3{bottom:132.825000px;}
.y157{bottom:136.125000px;}
.y32{bottom:136.950000px;}
.y17e{bottom:138.600000px;}
.y1fc{bottom:139.425000px;}
.y1a6{bottom:141.075000px;}
.yf7{bottom:144.375000px;}
.y9e{bottom:145.200000px;}
.y248{bottom:146.025000px;}
.y223{bottom:147.675000px;}
.y1fb{bottom:152.625000px;}
.y6b{bottom:153.450000px;}
.y17d{bottom:155.100000px;}
.yf6{bottom:158.400000px;}
.y2bf{bottom:159.225000px;}
.y1d0{bottom:160.875000px;}
.y222{bottom:162.525000px;}
.y2d8{bottom:164.175000px;}
.y2a2{bottom:166.650000px;}
.y17c{bottom:169.125000px;}
.y6a{bottom:169.950000px;}
.y262{bottom:170.775000px;}
.yf5{bottom:172.425000px;}
.y9d{bottom:173.250000px;}
.y2be{bottom:174.075000px;}
.y285{bottom:174.900000px;}
.y1cf{bottom:175.725000px;}
.y221{bottom:177.375000px;}
.y31{bottom:178.200000px;}
.y156{bottom:179.850000px;}
.y1a5{bottom:183.150000px;}
.y69{bottom:183.975000px;}
.y261{bottom:185.625000px;}
.yf4{bottom:186.450000px;}
.y247{bottom:187.275000px;}
.y9c{bottom:189.750000px;}
.y1ce{bottom:190.575000px;}
.y1fa{bottom:191.400000px;}
.y220{bottom:192.225000px;}
.ycc{bottom:193.050000px;}
.y30{bottom:196.350000px;}
.y1a4{bottom:197.175000px;}
.y68{bottom:198.000000px;}
.y17b{bottom:198.825000px;}
.yf3{bottom:200.475000px;}
.y246{bottom:202.125000px;}
.y9b{bottom:203.775000px;}
.y2ef{bottom:204.600000px;}
.y1f9{bottom:206.250000px;}
.y21f{bottom:207.075000px;}
.y2d7{bottom:208.725000px;}
.y155{bottom:210.375000px;}
.y2f{bottom:211.200000px;}
.y67{bottom:212.025000px;}
.y17a{bottom:213.675000px;}
.y12d{bottom:215.325000px;}
.y245{bottom:216.975000px;}
.y284{bottom:219.450000px;}
.y1f8{bottom:221.100000px;}
.y2bd{bottom:223.575000px;}
.y2e{bottom:226.050000px;}
.y2a1{bottom:226.875000px;}
.y179{bottom:228.525000px;}
.yf2{bottom:229.350000px;}
.y12c{bottom:230.175000px;}
.y9a{bottom:232.650000px;}
.ycb{bottom:235.125000px;}
.y1f7{bottom:235.950000px;}
.y2ee{bottom:238.425000px;}
.y154{bottom:239.250000px;}
.y2d{bottom:240.900000px;}
.y178{bottom:243.375000px;}
.yf1{bottom:244.200000px;}
.y12b{bottom:245.025000px;}
.y99{bottom:247.500000px;}
.y21e{bottom:248.325000px;}
.y283{bottom:249.150000px;}
.y244{bottom:249.975000px;}
.y1cd{bottom:251.625000px;}
.y153{bottom:254.100000px;}
.y66{bottom:255.750000px;}
.y260{bottom:256.575000px;}
.yf0{bottom:259.050000px;}
.y177{bottom:261.525000px;}
.y98{bottom:262.350000px;}
.y12a{bottom:263.175000px;}
.y1cc{bottom:265.650000px;}
.y2bc{bottom:268.125000px;}
.y65{bottom:270.600000px;}
.y25f{bottom:271.824630px;}
.y282{bottom:275.550000px;}
.y1f6{bottom:279.675000px;}
.y2c{bottom:280.500000px;}
.y21d{bottom:281.325000px;}
.y64{bottom:285.450000px;}
.y25e{bottom:286.275000px;}
.yca{bottom:287.925000px;}
.y243{bottom:292.875000px;}
.y2b{bottom:294.525000px;}
.y1f5{bottom:296.175000px;}
.y2bb{bottom:297.825000px;}
.y152{bottom:298.650000px;}
.y63{bottom:300.300000px;}
.y25d{bottom:301.125000px;}
.yef{bottom:302.775000px;}
.y1a3{bottom:303.600000px;}
.y129{bottom:305.250000px;}
.y97{bottom:306.900000px;}
.y2a{bottom:308.550000px;}
.y1cb{bottom:309.375000px;}
.y1f4{bottom:310.200000px;}
.y151{bottom:315.150000px;}
.yc9{bottom:316.800000px;}
.y176{bottom:317.625000px;}
.y1a2{bottom:318.450000px;}
.yee{bottom:319.275000px;}
.y128{bottom:320.100000px;}
.y29{bottom:322.575000px;}
.y96{bottom:323.400000px;}
.y2d6{bottom:325.050000px;}
.y2ba{bottom:328.350000px;}
.y150{bottom:329.175000px;}
.y175{bottom:332.475000px;}
.yc8{bottom:333.300000px;}
.y127{bottom:334.950000px;}
.y28{bottom:336.600000px;}
.y95{bottom:337.425000px;}
.y281{bottom:339.075000px;}
.y1f3{bottom:339.900000px;}
.y62{bottom:341.550000px;}
.y25c{bottom:342.375000px;}
.y14f{bottom:343.200000px;}
.y2d5{bottom:344.025000px;}
.y2a0{bottom:346.500000px;}
.yc7{bottom:347.325000px;}
.y126{bottom:349.800000px;}
.y27{bottom:350.625000px;}
.y242{bottom:351.450000px;}
.y1f2{bottom:354.750000px;}
.y61{bottom:356.400000px;}
.y14e{bottom:357.225000px;}
.y21c{bottom:358.050000px;}
.y2ed{bottom:358.875000px;}
.yed{bottom:361.350000px;}
.y26{bottom:364.650000px;}
.y174{bottom:365.475000px;}
.y94{bottom:366.300000px;}
.y1f1{bottom:369.600000px;}
.y60{bottom:371.250000px;}
.y21b{bottom:372.075000px;}
.yc6{bottom:376.200000px;}
.y1a1{bottom:377.025000px;}
.y25{bottom:378.675000px;}
.y241{bottom:379.500000px;}
.y173{bottom:380.325000px;}
.y93{bottom:381.150000px;}
.y1ca{bottom:382.374630px;}
.y2b9{bottom:384.450000px;}
.y5f{bottom:386.100000px;}
.y25b{bottom:386.925000px;}
.y125{bottom:388.575000px;}
.yc5{bottom:391.050000px;}
.y280{bottom:391.875000px;}
.y24{bottom:392.700000px;}
.y1a0{bottom:393.525000px;}
.y1c9{bottom:396.399630px;}
.y92{bottom:399.300000px;}
.y14d{bottom:400.125000px;}
.y5e{bottom:400.950000px;}
.y29f{bottom:402.600000px;}
.y2b8{bottom:403.425000px;}
.y124{bottom:405.075000px;}
.yc4{bottom:405.900000px;}
.y23{bottom:406.725000px;}
.y240{bottom:407.550000px;}
.y1c8{bottom:410.424630px;}
.y1f0{bottom:410.850000px;}
.y21a{bottom:414.150000px;}
.y5d{bottom:415.800000px;}
.y123{bottom:418.275000px;}
.y22{bottom:420.750000px;}
.y23f{bottom:421.575000px;}
.y19f{bottom:422.400000px;}
.yc3{bottom:424.050000px;}
.y1c7{bottom:424.449630px;}
.y1ef{bottom:429.000000px;}
.y267{bottom:429.825000px;}
.y5c{bottom:430.650000px;}
.y122{bottom:431.475000px;}
.y2ec{bottom:433.125000px;}
.y21{bottom:434.775000px;}
.y23e{bottom:435.600000px;}
.y19e{bottom:437.250000px;}
.y1c6{bottom:438.075000px;}
.yc2{bottom:438.900000px;}
.y91{bottom:440.550000px;}
.y219{bottom:443.025000px;}
.y14c{bottom:443.850000px;}
.y121{bottom:444.675000px;}
.y29e{bottom:447.150000px;}
.y2b7{bottom:447.975000px;}
.y20{bottom:448.800000px;}
.y23d{bottom:449.625000px;}
.yec{bottom:451.275000px;}
.y19d{bottom:452.100000px;}
.yc1{bottom:453.750000px;}
.y90{bottom:455.400000px;}
.y172{bottom:457.050000px;}
.y120{bottom:457.875000px;}
.y1ee{bottom:458.700000px;}
.y2d4{bottom:459.525000px;}
.y14b{bottom:460.350000px;}
.y1f{bottom:462.825000px;}
.y23c{bottom:463.650000px;}
.yeb{bottom:465.300000px;}
.y1c5{bottom:466.125000px;}
.y19c{bottom:466.950000px;}
.y8f{bottom:470.250000px;}
.y171{bottom:471.075000px;}
.y5b{bottom:472.725000px;}
.y25a{bottom:473.550000px;}
.y11f{bottom:474.375000px;}
.y2b6{bottom:477.675000px;}
.yea{bottom:479.325000px;}
.y8e{bottom:485.100000px;}
.y5a{bottom:487.575000px;}
.y14a{bottom:488.400000px;}
.y2d3{bottom:489.225000px;}
.y1e{bottom:491.700000px;}
.ye9{bottom:493.350000px;}
.yc0{bottom:495.825000px;}
.y29d{bottom:496.650000px;}
.y1c4{bottom:498.300000px;}
.y8d{bottom:499.950000px;}
.y59{bottom:502.425000px;}
.y259{bottom:503.250000px;}
.y2b5{bottom:504.075000px;}
.y1d{bottom:506.550000px;}
.y23b{bottom:508.200000px;}
.ybf{bottom:510.675000px;}
.y19b{bottom:511.500000px;}
.y1c3{bottom:513.150000px;}
.y11e{bottom:513.975000px;}
.y170{bottom:514.800000px;}
.y218{bottom:517.275000px;}
.y149{bottom:518.100000px;}
.y2b4{bottom:518.925000px;}
.y58{bottom:520.575000px;}
.y1c{bottom:521.400000px;}
.ye8{bottom:522.225000px;}
.y23a{bottom:523.050000px;}
.ybe{bottom:525.525000px;}
.y29c{bottom:526.350000px;}
.y19a{bottom:528.000000px;}
.y11d{bottom:528.825000px;}
.y16f{bottom:529.650000px;}
.y148{bottom:532.950000px;}
.y2b3{bottom:533.775000px;}
.y57{bottom:535.425000px;}
.y1b{bottom:536.250000px;}
.ye7{bottom:537.075000px;}
.y239{bottom:537.900000px;}
.ybd{bottom:540.375000px;}
.y199{bottom:542.025000px;}
.y27f{bottom:543.675000px;}
.y8c{bottom:544.500000px;}
.y11c{bottom:546.975000px;}
.y147{bottom:547.800000px;}
.y2b2{bottom:548.625000px;}
.y56{bottom:550.275000px;}
.y1a{bottom:551.100000px;}
.y238{bottom:552.750000px;}
.y2eb{bottom:553.575000px;}
.ybc{bottom:555.225000px;}
.y198{bottom:556.050000px;}
.y29b{bottom:556.875000px;}
.y27e{bottom:558.525000px;}
.y258{bottom:559.350000px;}
.y8b{bottom:561.000000px;}
.y11b{bottom:561.825000px;}
.y2d2{bottom:563.475000px;}
.y55{bottom:565.125000px;}
.y19{bottom:565.950000px;}
.y2b1{bottom:567.600000px;}
.y1ed{bottom:568.425000px;}
.y197{bottom:570.075000px;}
.y1c2{bottom:571.725000px;}
.y27d{bottom:573.375000px;}
.y257{bottom:574.200000px;}
.y8a{bottom:575.025000px;}
.y11a{bottom:576.675000px;}
.y217{bottom:577.500000px;}
.y2ea{bottom:579.150000px;}
.y54{bottom:579.975000px;}
.ye6{bottom:581.625000px;}
.y2d1{bottom:582.450000px;}
.y196{bottom:584.100000px;}
.y1ec{bottom:586.575000px;}
.y1c1{bottom:588.225000px;}
.y89{bottom:589.050000px;}
.y216{bottom:591.525000px;}
.y2b0{bottom:593.175000px;}
.y2e9{bottom:594.000000px;}
.y53{bottom:594.825000px;}
.y237{bottom:595.650000px;}
.ybb{bottom:596.475000px;}
.ye5{bottom:598.125000px;}
.y16e{bottom:598.950000px;}
.y1c0{bottom:602.250000px;}
.y256{bottom:603.900000px;}
.y215{bottom:605.550000px;}
.y146{bottom:607.200000px;}
.y18{bottom:608.025000px;}
.y2d0{bottom:608.850000px;}
.y52{bottom:609.675000px;}
.yba{bottom:611.325000px;}
.ye4{bottom:612.150000px;}
.y2e8{bottom:612.975000px;}
.y16d{bottom:613.800000px;}
.y1bf{bottom:616.275000px;}
.y88{bottom:617.925000px;}
.y214{bottom:619.575000px;}
.y119{bottom:620.400000px;}
.y145{bottom:622.050000px;}
.y17{bottom:622.875000px;}
.y2cf{bottom:623.700000px;}
.y51{bottom:624.525000px;}
.yb9{bottom:626.175000px;}
.y29a{bottom:627.000000px;}
.y16c{bottom:628.650000px;}
.y1be{bottom:630.300000px;}
.y1eb{bottom:631.125000px;}
.y87{bottom:632.775000px;}
.y213{bottom:633.600000px;}
.y118{bottom:636.900000px;}
.y16{bottom:637.725000px;}
.y2af{bottom:638.550000px;}
.y50{bottom:639.375000px;}
.ye3{bottom:640.200000px;}
.y2ce{bottom:642.675000px;}
.y1bd{bottom:644.325000px;}
.y27c{bottom:644.866365px;}
.y255{bottom:645.975000px;}
.y86{bottom:647.625000px;}
.y117{bottom:650.925000px;}
.y144{bottom:651.750000px;}
.y15{bottom:652.575000px;}
.y4f{bottom:654.225000px;}
.y195{bottom:655.050000px;}
.y2ae{bottom:657.525000px;}
.y1bc{bottom:658.350000px;}
.y27b{bottom:660.000000px;}
.y254{bottom:660.825000px;}
.y1ea{bottom:661.650000px;}
.y116{bottom:664.950000px;}
.y143{bottom:666.600000px;}
.y14{bottom:667.425000px;}
.y4e{bottom:669.075000px;}
.y194{bottom:669.900000px;}
.y16b{bottom:672.375000px;}
.y27a{bottom:674.850000px;}
.y212{bottom:675.675000px;}
.y115{bottom:678.975000px;}
.y142{bottom:681.450000px;}
.y13{bottom:682.275000px;}
.y2ad{bottom:683.100000px;}
.ye2{bottom:683.925000px;}
.y236{bottom:684.337500px;}
.y193{bottom:684.750000px;}
.y1bb{bottom:686.400000px;}
.y2e7{bottom:688.050000px;}
.y16a{bottom:688.875000px;}
.y85{bottom:689.700000px;}
.y1e9{bottom:690.525000px;}
.y299{bottom:691.350000px;}
.y114{bottom:693.000000px;}
.y141{bottom:696.300000px;}
.yb8{bottom:697.125000px;}
.y235{bottom:699.187500px;}
.y192{bottom:699.600000px;}
.y1ba{bottom:700.425000px;}
.ye1{bottom:702.075000px;}
.y169{bottom:702.900000px;}
.y84{bottom:704.550000px;}
.y1e8{bottom:705.026933px;}
.y253{bottom:705.375000px;}
.y113{bottom:707.025000px;}
.y4d{bottom:710.325000px;}
.yb7{bottom:711.975000px;}
.y2e6{bottom:713.625000px;}
.y191{bottom:714.450000px;}
.y279{bottom:716.100000px;}
.ye0{bottom:716.925000px;}
.y211{bottom:718.575000px;}
.y83{bottom:719.400000px;}
.y1e7{bottom:720.225000px;}
.y298{bottom:721.050000px;}
.y12{bottom:723.525000px;}
.y4c{bottom:725.175000px;}
.y1b9{bottom:728.475000px;}
.y190{bottom:729.300000px;}
.yb6{bottom:730.125000px;}
.y278{bottom:730.950000px;}
.y168{bottom:731.775000px;}
.y2e5{bottom:732.600000px;}
.y82{bottom:734.250000px;}
.y112{bottom:735.900000px;}
.y1e6{bottom:738.026933px;}
.y4b{bottom:740.025000px;}
.y140{bottom:740.850000px;}
.y11{bottom:741.675000px;}
.y1b8{bottom:742.500000px;}
.y2cd{bottom:743.325000px;}
.yb5{bottom:744.975000px;}
.y277{bottom:745.800000px;}
.y167{bottom:746.625000px;}
.y111{bottom:750.750000px;}
.y81{bottom:752.400000px;}
.y1e5{bottom:752.876933px;}
.y4a{bottom:754.875000px;}
.y234{bottom:755.700000px;}
.y10{bottom:756.525000px;}
.y13f{bottom:757.350000px;}
.y2ac{bottom:758.175000px;}
.ydf{bottom:759.000000px;}
.yb4{bottom:759.825000px;}
.y276{bottom:760.650000px;}
.y166{bottom:761.475000px;}
.y2cc{bottom:762.300000px;}
.y110{bottom:765.600000px;}
.y80{bottom:767.250000px;}
.y1e4{bottom:767.726933px;}
.y49{bottom:769.725000px;}
.y233{bottom:770.550000px;}
.yf{bottom:771.375000px;}
.y210{bottom:774.675000px;}
.y275{bottom:775.500000px;}
.y165{bottom:776.325000px;}
.y18f{bottom:777.150000px;}
.y10f{bottom:780.450000px;}
.y1e3{bottom:782.925000px;}
.y48{bottom:784.575000px;}
.y13e{bottom:785.400000px;}
.y2cb{bottom:787.875000px;}
.y2e4{bottom:788.700000px;}
.y20f{bottom:789.525000px;}
.y274{bottom:790.350000px;}
.y164{bottom:791.175000px;}
.y297{bottom:792.000000px;}
.y18e{bottom:793.650000px;}
.y1e2{bottom:797.775000px;}
.y47{bottom:799.425000px;}
.y232{bottom:800.250000px;}
.yb3{bottom:801.900000px;}
.y20e{bottom:804.375000px;}
.y273{bottom:805.200000px;}
.y163{bottom:806.025000px;}
.y2ab{bottom:806.850000px;}
.y18d{bottom:807.675000px;}
.y7f{bottom:808.500000px;}
.y296{bottom:810.975000px;}
.yde{bottom:811.800000px;}
.ye{bottom:812.625000px;}
.y20d{bottom:819.225000px;}
.yb2{bottom:820.050000px;}
.y252{bottom:820.875000px;}
.y18c{bottom:821.700000px;}
.y162{bottom:824.175000px;}
.y10e{bottom:825.000000px;}
.yd{bottom:827.475000px;}
.y13d{bottom:828.300000px;}
.y46{bottom:832.425000px;}
.y20c{bottom:834.075000px;}
.yb1{bottom:834.900000px;}
.y18b{bottom:835.725000px;}
.y295{bottom:836.550000px;}
.y2e3{bottom:837.375000px;}
.ydd{bottom:839.025000px;}
.y10d{bottom:841.500000px;}
.y13c{bottom:843.150000px;}
.y1b7{bottom:844.800000px;}
.yc{bottom:845.625000px;}
.y20b{bottom:848.925000px;}
.yb0{bottom:849.750000px;}
.y251{bottom:850.575000px;}
.y294{bottom:851.400000px;}
.y272{bottom:853.050000px;}
.ydc{bottom:853.875000px;}
.y10c{bottom:855.525000px;}
.y231{bottom:856.350000px;}
.y1e1{bottom:857.175000px;}
.yb{bottom:860.475000px;}
.y1b6{bottom:861.300000px;}
.y7e{bottom:862.125000px;}
.y2ca{bottom:862.950000px;}
.y2e2{bottom:863.775000px;}
.yaf{bottom:864.600000px;}
.y161{bottom:866.250000px;}
.ydb{bottom:868.725000px;}
.y293{bottom:870.375000px;}
.y230{bottom:871.200000px;}
.y1b5{bottom:875.325000px;}
.y2aa{bottom:877.800000px;}
.yae{bottom:879.450000px;}
.y250{bottom:880.275000px;}
.y2c9{bottom:881.925000px;}
.y2e1{bottom:882.750000px;}
.yda{bottom:883.575000px;}
.y10b{bottom:884.400000px;}
.y45{bottom:886.050000px;}
.y7d{bottom:888.525000px;}
.y1b4{bottom:889.350000px;}
.y1e0{bottom:893.475000px;}
.yad{bottom:894.300000px;}
.y271{bottom:895.125000px;}
.y2a9{bottom:896.775000px;}
.yd9{bottom:898.425000px;}
.y6{bottom:899.250000px;}
.y292{bottom:900.900000px;}
.y13b{bottom:902.550000px;}
.y7c{bottom:903.375000px;}
.y20a{bottom:904.200000px;}
.y2c8{bottom:907.500000px;}
.yac{bottom:909.150000px;}
.y270{bottom:909.975000px;}
.y44{bottom:912.450000px;}
.yd8{bottom:913.275000px;}
.y10a{bottom:917.400000px;}
.y7b{bottom:918.225000px;}
.y5{bottom:920.700000px;}
.y2c7{bottom:922.350000px;}
.y18a{bottom:923.175000px;}
.y26f{bottom:924.825000px;}
.y291{bottom:926.475000px;}
.y43{bottom:930.600000px;}
.y22f{bottom:931.425000px;}
.y109{bottom:932.250000px;}
.y7a{bottom:933.075000px;}
.y24f{bottom:933.900000px;}
.y209{bottom:934.725000px;}
.y1df{bottom:938.025000px;}
.y189{bottom:939.675000px;}
.y290{bottom:941.325000px;}
.y4{bottom:942.150000px;}
.y42{bottom:945.450000px;}
.y13a{bottom:946.275000px;}
.y160{bottom:947.100000px;}
.y79{bottom:947.925000px;}
.y208{bottom:948.750000px;}
.y22e{bottom:949.575000px;}
.yab{bottom:950.400000px;}
.y188{bottom:953.700000px;}
.y1de{bottom:954.525000px;}
.yd7{bottom:957.000000px;}
.y24e{bottom:960.300000px;}
.ya{bottom:961.125000px;}
.y1b3{bottom:961.950000px;}
.y78{bottom:962.775000px;}
.y3{bottom:963.600000px;}
.yaa{bottom:968.550000px;}
.y26e{bottom:969.375000px;}
.y2c6{bottom:971.850000px;}
.yd6{bottom:973.500000px;}
.y9{bottom:975.150000px;}
.y108{bottom:976.800000px;}
.y77{bottom:977.625000px;}
.y207{bottom:978.450000px;}
.ya9{bottom:983.400000px;}
.y2{bottom:985.050000px;}
.y2a8{bottom:986.700000px;}
.y41{bottom:987.525000px;}
.y8{bottom:990.000000px;}
.y139{bottom:990.825000px;}
.y76{bottom:992.475000px;}
.y107{bottom:993.300000px;}
.y1dd{bottom:997.425000px;}
.ya8{bottom:998.250000px;}
.y2c5{bottom:1001.550000px;}
.y40{bottom:1002.375000px;}
.y206{bottom:1004.850000px;}
.y15f{bottom:1005.675000px;}
.y1b2{bottom:1006.500000px;}
.y106{bottom:1007.325000px;}
.y22d{bottom:1008.975000px;}
.y75{bottom:1010.625000px;}
.y1dc{bottom:1012.275000px;}
.y2a7{bottom:1016.400000px;}
.y3f{bottom:1017.225000px;}
.y7{bottom:1019.700000px;}
.y26d{bottom:1020.525000px;}
.y105{bottom:1021.350000px;}
.y15e{bottom:1022.175000px;}
.y1b1{bottom:1023.000000px;}
.y22c{bottom:1023.825000px;}
.y2c4{bottom:1031.250000px;}
.yd5{bottom:1032.075000px;}
.y104{bottom:1035.375000px;}
.y15d{bottom:1036.200000px;}
.y1b0{bottom:1037.025000px;}
.ya7{bottom:1040.325000px;}
.y187{bottom:1042.800000px;}
.y28f{bottom:1046.100000px;}
.yd4{bottom:1046.925000px;}
.y103{bottom:1049.400000px;}
.y15c{bottom:1050.225000px;}
.y22b{bottom:1053.525000px;}
.y1db{bottom:1056.825000px;}
.y186{bottom:1057.650000px;}
.y3e{bottom:1058.475000px;}
.y205{bottom:1060.950000px;}
.y74{bottom:1061.775000px;}
.y102{bottom:1063.425000px;}
.y138{bottom:1064.250000px;}
.y26c{bottom:1065.075000px;}
.y24d{bottom:1065.474630px;}
.y1af{bottom:1065.900000px;}
.y185{bottom:1072.500000px;}
.ya6{bottom:1073.325000px;}
.y28e{bottom:1075.800000px;}
.y3d{bottom:1076.625000px;}
.y101{bottom:1077.450000px;}
.y73{bottom:1078.171875px;}
.y15b{bottom:1078.275000px;}
.y204{bottom:1079.100000px;}
.y26b{bottom:1079.925000px;}
.y24c{bottom:1080.324630px;}
.y137{bottom:1080.750000px;}
.y184{bottom:1087.350000px;}
.y3c{bottom:1091.475000px;}
.y72{bottom:1092.300000px;}
.y203{bottom:1093.950000px;}
.y136{bottom:1094.775000px;}
.y1ae{bottom:1098.900000px;}
.y1da{bottom:1101.375000px;}
.y183{bottom:1102.200000px;}
.y2e0{bottom:1103.025000px;}
.y3b{bottom:1106.325000px;}
.y22a{bottom:1107.150000px;}
.y135{bottom:1108.800000px;}
.y1d9{bottom:1115.400000px;}
.y3a{bottom:1121.175000px;}
.y100{bottom:1121.381250px;}
.y2df{bottom:1122.000000px;}
.y134{bottom:1122.825000px;}
.ya5{bottom:1132.725000px;}
.yd3{bottom:1133.111678px;}
.y229{bottom:1134.967927px;}
.y39{bottom:1136.025000px;}
.y26a{bottom:1136.089432px;}
.yff{bottom:1136.231250px;}
.y133{bottom:1136.850000px;}
.y202{bottom:1137.675000px;}
.y28d{bottom:1140.150000px;}
.y1d8{bottom:1143.965625px;}
.ya4{bottom:1147.278495px;}
.y2de{bottom:1147.575000px;}
.y182{bottom:1149.611677px;}
.y24b{bottom:1150.526932px;}
.y71{bottom:1150.875000px;}
.y269{bottom:1150.939433px;}
.yfe{bottom:1151.081250px;}
.yd2{bottom:1151.261678px;}
.y228{bottom:1151.467927px;}
.y201{bottom:1151.906250px;}
.y1ad{bottom:1152.525000px;}
.y1d7{bottom:1162.115625px;}
.ya3{bottom:1162.128495px;}
.y24a{bottom:1165.376932px;}
.y28c{bottom:1165.428495px;}
.y227{bottom:1165.492927px;}
.y38{bottom:1165.725000px;}
.y268{bottom:1165.789433px;}
.yfd{bottom:1165.931250px;}
.y132{bottom:1165.969943px;}
.yd1{bottom:1166.111678px;}
.y1ac{bottom:1166.137500px;}
.y2a6{bottom:1166.550000px;}
.h5{height:38.888438px;}
.h9{height:39.586320px;}
.h7{height:42.788883px;}
.h8{height:45.639322px;}
.h2{height:47.543203px;}
.h6{height:48.880025px;}
.h3{height:52.825781px;}
.h4{height:56.172188px;}
.h1{height:1177.275000px;}
.h0{height:1261.500000px;}
.w1{width:808.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x4{left:24.750000px;}
.x1{left:42.000000px;}
.x3{left:103.125000px;}
.xf{left:128.287500px;}
.x10{left:153.037500px;}
.x1d{left:263.263440px;}
.x22{left:270.009630px;}
.xe{left:276.512280px;}
.x1c{left:278.017575px;}
.xd{left:279.491025px;}
.xb{left:281.118090px;}
.x5{left:283.470330px;}
.xc{left:284.885700px;}
.x7{left:286.895647px;}
.x6{left:289.587210px;}
.x9{left:292.493437px;}
.x24{left:294.567158px;}
.x8{left:296.559780px;}
.xa{left:299.628368px;}
.x23{left:300.898785px;}
.x21{left:305.101418px;}
.x25{left:307.563878px;}
.x11{left:310.496175px;}
.x17{left:312.979920px;}
.x16{left:315.255682px;}
.x15{left:317.712368px;}
.x14{left:318.852188px;}
.x1b{left:321.218948px;}
.x1a{left:322.872165px;}
.x18{left:324.232425px;}
.x13{left:326.593328px;}
.x19{left:330.917813px;}
.x12{left:335.749838px;}
.x20{left:345.767813px;}
.x1e{left:348.050423px;}
.x1f{left:354.277522px;}
.x2{left:463.650000px;}
.x26{left:493.716712px;}
.x27{left:626.525625px;}
@media print{
.v2{vertical-align:-14.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.666667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000036pt;}
.ls3{letter-spacing:0.000056pt;}
.ls7{letter-spacing:0.000072pt;}
.ls0{letter-spacing:0.000174pt;}
.ls9{letter-spacing:2.933333pt;}
.ls5{letter-spacing:2.933406pt;}
.ls4{letter-spacing:5.866739pt;}
.ls8{letter-spacing:8.799779pt;}
.ls6{letter-spacing:11.733406pt;}
.ws6{word-spacing:-43.376667pt;}
.wsd{word-spacing:-42.240000pt;}
.wse{word-spacing:-34.567537pt;}
.ws8{word-spacing:-34.567501pt;}
.ws74{word-spacing:-33.440000pt;}
.ws45{word-spacing:-31.973333pt;}
.ws5e{word-spacing:-31.484347pt;}
.ws93{word-spacing:-31.240000pt;}
.ws38{word-spacing:-31.110751pt;}
.ws95{word-spacing:-30.800000pt;}
.ws57{word-spacing:-30.506667pt;}
.ws7{word-spacing:-30.030000pt;}
.ws8e{word-spacing:-28.782246pt;}
.ws48{word-spacing:-27.573333pt;}
.wsa0{word-spacing:-27.363893pt;}
.ws12{word-spacing:-26.908274pt;}
.ws63{word-spacing:-26.895661pt;}
.ws9c{word-spacing:-26.867501pt;}
.ws90{word-spacing:-26.848141pt;}
.ws92{word-spacing:-26.840000pt;}
.ws33{word-spacing:-26.814994pt;}
.ws3f{word-spacing:-26.802674pt;}
.ws70{word-spacing:-26.745474pt;}
.ws8a{word-spacing:-26.745181pt;}
.ws2d{word-spacing:-26.647501pt;}
.ws1e{word-spacing:-26.630194pt;}
.ws42{word-spacing:-26.549821pt;}
.ws94{word-spacing:-26.419288pt;}
.ws7f{word-spacing:-26.384968pt;}
.ws9a{word-spacing:-26.354168pt;}
.ws54{word-spacing:-26.317501pt;}
.ws6a{word-spacing:-26.256488pt;}
.ws4e{word-spacing:-26.230674pt;}
.ws89{word-spacing:-26.218648pt;}
.ws69{word-spacing:-26.186674pt;}
.ws22{word-spacing:-26.158514pt;}
.ws71{word-spacing:-26.134168pt;}
.ws73{word-spacing:-26.112461pt;}
.ws4f{word-spacing:-26.093394pt;}
.ws16{word-spacing:-26.060834pt;}
.ws98{word-spacing:-26.046754pt;}
.ws79{word-spacing:-26.034141pt;}
.ws1a{word-spacing:-25.993074pt;}
.ws62{word-spacing:-25.976941pt;}
.ws82{word-spacing:-25.950834pt;}
.ws1b{word-spacing:-25.930301pt;}
.ws14{word-spacing:-25.767501pt;}
.ws4d{word-spacing:-25.620834pt;}
.ws7c{word-spacing:-25.595021pt;}
.ws56{word-spacing:-25.558061pt;}
.ws49{word-spacing:-25.541928pt;}
.ws41{word-spacing:-25.458621pt;}
.ws81{word-spacing:-25.441608pt;}
.ws13{word-spacing:-25.348328pt;}
.ws25{word-spacing:-25.327501pt;}
.ws28{word-spacing:-25.249768pt;}
.wsa{word-spacing:-25.217501pt;}
.ws40{word-spacing:-25.180834pt;}
.ws37{word-spacing:-25.138888pt;}
.ws3c{word-spacing:-25.115714pt;}
.ws6f{word-spacing:-25.077288pt;}
.ws7a{word-spacing:-25.004320pt;}
.ws9{word-spacing:-25.004146pt;}
.ws15{word-spacing:-24.995448pt;}
.ws4a{word-spacing:-24.967581pt;}
.ws2c{word-spacing:-24.929448pt;}
.ws6b{word-spacing:-24.864914pt;}
.ws55{word-spacing:-24.841154pt;}
.ws19{word-spacing:-24.789821pt;}
.ws29{word-spacing:-24.732328pt;}
.ws78{word-spacing:-24.639341pt;}
.ws35{word-spacing:-24.626728pt;}
.ws3e{word-spacing:-24.594168pt;}
.ws97{word-spacing:-24.559554pt;}
.ws75{word-spacing:-24.510274pt;}
.ws1c{word-spacing:-24.463634pt;}
.ws8b{word-spacing:-24.301128pt;}
.ws9b{word-spacing:-24.300834pt;}
.ws3d{word-spacing:-24.188194pt;}
.ws8c{word-spacing:-24.117501pt;}
.ws5b{word-spacing:-24.007501pt;}
.ws59{word-spacing:-23.811848pt;}
.ws5a{word-spacing:-23.714168pt;}
.ws44{word-spacing:-23.616488pt;}
.ws3a{word-spacing:-23.567831pt;}
.ws10{word-spacing:-23.567501pt;}
.ws17{word-spacing:-23.384168pt;}
.ws5d{word-spacing:-23.367448pt;}
.ws50{word-spacing:-23.323154pt;}
.ws67{word-spacing:-23.285608pt;}
.ws88{word-spacing:-23.274168pt;}
.ws60{word-spacing:-23.253341pt;}
.ws30{word-spacing:-23.043608pt;}
.ws9f{word-spacing:-23.017501pt;}
.ws3b{word-spacing:-22.987618pt;}
.ws2f{word-spacing:-22.834168pt;}
.ws20{word-spacing:-22.589821pt;}
.ws39{word-spacing:-22.501646pt;}
.ws27{word-spacing:-22.443154pt;}
.wsc{word-spacing:-22.345181pt;}
.ws66{word-spacing:-22.316434pt;}
.ws2b{word-spacing:-22.284168pt;}
.ws46{word-spacing:-22.247501pt;}
.ws77{word-spacing:-22.157154pt;}
.ws84{word-spacing:-22.051848pt;}
.ws53{word-spacing:-21.971474pt;}
.ws7d{word-spacing:-21.954168pt;}
.ws23{word-spacing:-21.931581pt;}
.ws86{word-spacing:-21.706667pt;}
.ws68{word-spacing:-21.611848pt;}
.ws5f{word-spacing:-21.465181pt;}
.ws4c{word-spacing:-21.444648pt;}
.ws24{word-spacing:-21.367501pt;}
.ws36{word-spacing:-21.254568pt;}
.ws6d{word-spacing:-20.634168pt;}
.ws6e{word-spacing:-20.529448pt;}
.ws58{word-spacing:-20.487501pt;}
.ws5c{word-spacing:-20.389821pt;}
.ws7b{word-spacing:-20.320008pt;}
.ws8d{word-spacing:-20.246088pt;}
.ws9e{word-spacing:-19.982347pt;}
.ws21{word-spacing:-19.900834pt;}
.ws96{word-spacing:-19.728061pt;}
.ws4b{word-spacing:-19.675261pt;}
.ws6c{word-spacing:-19.449688pt;}
.ws34{word-spacing:-19.411848pt;}
.ws72{word-spacing:-19.377271pt;}
.ws91{word-spacing:-19.314168pt;}
.ws7e{word-spacing:-19.118808pt;}
.ws47{word-spacing:-18.923154pt;}
.ws2e{word-spacing:-18.853341pt;}
.ws64{word-spacing:-18.790604pt;}
.ws1f{word-spacing:-18.547101pt;}
.ws18{word-spacing:-18.434168pt;}
.ws61{word-spacing:-18.300701pt;}
.ws83{word-spacing:-18.140834pt;}
.ws1d{word-spacing:-17.945181pt;}
.ws31{word-spacing:-17.700834pt;}
.ws26{word-spacing:-17.312754pt;}
.ws9d{word-spacing:-17.260834pt;}
.wsb{word-spacing:-16.804701pt;}
.ws80{word-spacing:-16.741928pt;}
.ws43{word-spacing:-16.167581pt;}
.ws2a{word-spacing:-15.989821pt;}
.ws8f{word-spacing:-15.794168pt;}
.wsf{word-spacing:-15.684168pt;}
.ws76{word-spacing:-14.950834pt;}
.ws99{word-spacing:-13.196114pt;}
.ws85{word-spacing:-12.567501pt;}
.ws87{word-spacing:-12.078514pt;}
.ws52{word-spacing:-9.145181pt;}
.ws51{word-spacing:-8.900834pt;}
.ws65{word-spacing:-8.460834pt;}
.ws32{word-spacing:-8.167501pt;}
.ws11{word-spacing:0.000000pt;}
.ws4{word-spacing:112.706438pt;}
.ws3{word-spacing:124.529278pt;}
.ws0{word-spacing:172.477674pt;}
.ws1{word-spacing:204.673426pt;}
.ws2{word-spacing:277.133558pt;}
.ws5{word-spacing:331.191665pt;}
._b{width:1.629760pt;}
._e{width:2.535268pt;}
._d{width:3.433859pt;}
._c{width:4.486229pt;}
._f{width:5.448472pt;}
._a{width:6.357174pt;}
._9{width:7.333221pt;}
._10{width:8.381341pt;}
._3{width:222.122082pt;}
._2{width:318.977080pt;}
._4{width:319.951059pt;}
._1{width:324.075948pt;}
._0{width:357.880449pt;}
._8{width:384.266667pt;}
._6{width:387.200000pt;}
._7{width:390.133333pt;}
._5{width:407.733333pt;}
.fs5{font-size:31.650667pt;}
.fs3{font-size:35.170667pt;}
.fs4{font-size:38.016000pt;}
.fs0{font-size:42.240000pt;}
.fs1{font-size:46.933333pt;}
.fs2{font-size:61.013333pt;}
.y0{bottom:0.000000pt;}
.y226{bottom:2.200000pt;}
.y249{bottom:4.400000pt;}
.y28b{bottom:5.133333pt;}
.yd0{bottom:5.866667pt;}
.y200{bottom:7.333333pt;}
.y181{bottom:8.066667pt;}
.y266{bottom:8.800000pt;}
.y1ab{bottom:13.200000pt;}
.y2a5{bottom:15.400000pt;}
.y131{bottom:16.133333pt;}
.ya2{bottom:17.600000pt;}
.ycf{bottom:19.066667pt;}
.y180{bottom:20.533333pt;}
.y70{bottom:21.266667pt;}
.y28a{bottom:22.000000pt;}
.y2dd{bottom:22.733333pt;}
.yfc{bottom:28.600000pt;}
.y130{bottom:29.333333pt;}
.ya1{bottom:30.800000pt;}
.yce{bottom:32.266667pt;}
.y17f{bottom:33.000000pt;}
.y6f{bottom:34.466667pt;}
.y2c3{bottom:35.200000pt;}
.y2dc{bottom:35.933333pt;}
.y1{bottom:37.533333pt;}
.y2a4{bottom:38.133333pt;}
.yfb{bottom:41.800000pt;}
.y37{bottom:42.533333pt;}
.ya0{bottom:44.000000pt;}
.ycd{bottom:45.466667pt;}
.y1ff{bottom:46.200000pt;}
.y6e{bottom:47.666667pt;}
.y1aa{bottom:48.400000pt;}
.y1d6{bottom:52.800000pt;}
.yfa{bottom:55.000000pt;}
.y15a{bottom:56.466667pt;}
.y12f{bottom:58.666667pt;}
.y1fe{bottom:59.400000pt;}
.y1a9{bottom:61.600000pt;}
.y289{bottom:62.333333pt;}
.y2c2{bottom:65.266667pt;}
.y36{bottom:66.000000pt;}
.y1d5{bottom:67.466667pt;}
.y225{bottom:68.200000pt;}
.y159{bottom:68.933333pt;}
.yf9{bottom:71.133333pt;}
.y12e{bottom:74.800000pt;}
.y2db{bottom:76.266667pt;}
.y1d4{bottom:79.933333pt;}
.y9f{bottom:81.400000pt;}
.y35{bottom:82.133333pt;}
.y6d{bottom:84.333333pt;}
.y288{bottom:85.066667pt;}
.y265{bottom:88.000000pt;}
.y2c1{bottom:88.733333pt;}
.y1d3{bottom:92.400000pt;}
.y2da{bottom:93.133333pt;}
.y224{bottom:94.600000pt;}
.y34{bottom:95.333333pt;}
.y6c{bottom:97.533333pt;}
.y287{bottom:98.266667pt;}
.y1a8{bottom:100.466667pt;}
.y264{bottom:101.200000pt;}
.y1d2{bottom:104.866667pt;}
.y2c0{bottom:105.600000pt;}
.y158{bottom:107.800000pt;}
.y33{bottom:108.533333pt;}
.y286{bottom:111.466667pt;}
.y1fd{bottom:112.200000pt;}
.y1a7{bottom:112.933333pt;}
.yf8{bottom:113.666667pt;}
.y263{bottom:114.400000pt;}
.y2d9{bottom:115.866667pt;}
.y1d1{bottom:117.333333pt;}
.y2a3{bottom:118.066667pt;}
.y157{bottom:121.000000pt;}
.y32{bottom:121.733333pt;}
.y17e{bottom:123.200000pt;}
.y1fc{bottom:123.933333pt;}
.y1a6{bottom:125.400000pt;}
.yf7{bottom:128.333333pt;}
.y9e{bottom:129.066667pt;}
.y248{bottom:129.800000pt;}
.y223{bottom:131.266667pt;}
.y1fb{bottom:135.666667pt;}
.y6b{bottom:136.400000pt;}
.y17d{bottom:137.866667pt;}
.yf6{bottom:140.800000pt;}
.y2bf{bottom:141.533333pt;}
.y1d0{bottom:143.000000pt;}
.y222{bottom:144.466667pt;}
.y2d8{bottom:145.933333pt;}
.y2a2{bottom:148.133333pt;}
.y17c{bottom:150.333333pt;}
.y6a{bottom:151.066667pt;}
.y262{bottom:151.800000pt;}
.yf5{bottom:153.266667pt;}
.y9d{bottom:154.000000pt;}
.y2be{bottom:154.733333pt;}
.y285{bottom:155.466667pt;}
.y1cf{bottom:156.200000pt;}
.y221{bottom:157.666667pt;}
.y31{bottom:158.400000pt;}
.y156{bottom:159.866667pt;}
.y1a5{bottom:162.800000pt;}
.y69{bottom:163.533333pt;}
.y261{bottom:165.000000pt;}
.yf4{bottom:165.733333pt;}
.y247{bottom:166.466667pt;}
.y9c{bottom:168.666667pt;}
.y1ce{bottom:169.400000pt;}
.y1fa{bottom:170.133333pt;}
.y220{bottom:170.866667pt;}
.ycc{bottom:171.600000pt;}
.y30{bottom:174.533333pt;}
.y1a4{bottom:175.266667pt;}
.y68{bottom:176.000000pt;}
.y17b{bottom:176.733333pt;}
.yf3{bottom:178.200000pt;}
.y246{bottom:179.666667pt;}
.y9b{bottom:181.133333pt;}
.y2ef{bottom:181.866667pt;}
.y1f9{bottom:183.333333pt;}
.y21f{bottom:184.066667pt;}
.y2d7{bottom:185.533333pt;}
.y155{bottom:187.000000pt;}
.y2f{bottom:187.733333pt;}
.y67{bottom:188.466667pt;}
.y17a{bottom:189.933333pt;}
.y12d{bottom:191.400000pt;}
.y245{bottom:192.866667pt;}
.y284{bottom:195.066667pt;}
.y1f8{bottom:196.533333pt;}
.y2bd{bottom:198.733333pt;}
.y2e{bottom:200.933333pt;}
.y2a1{bottom:201.666667pt;}
.y179{bottom:203.133333pt;}
.yf2{bottom:203.866667pt;}
.y12c{bottom:204.600000pt;}
.y9a{bottom:206.800000pt;}
.ycb{bottom:209.000000pt;}
.y1f7{bottom:209.733333pt;}
.y2ee{bottom:211.933333pt;}
.y154{bottom:212.666667pt;}
.y2d{bottom:214.133333pt;}
.y178{bottom:216.333333pt;}
.yf1{bottom:217.066667pt;}
.y12b{bottom:217.800000pt;}
.y99{bottom:220.000000pt;}
.y21e{bottom:220.733333pt;}
.y283{bottom:221.466667pt;}
.y244{bottom:222.200000pt;}
.y1cd{bottom:223.666667pt;}
.y153{bottom:225.866667pt;}
.y66{bottom:227.333333pt;}
.y260{bottom:228.066667pt;}
.yf0{bottom:230.266667pt;}
.y177{bottom:232.466667pt;}
.y98{bottom:233.200000pt;}
.y12a{bottom:233.933333pt;}
.y1cc{bottom:236.133333pt;}
.y2bc{bottom:238.333333pt;}
.y65{bottom:240.533333pt;}
.y25f{bottom:241.621893pt;}
.y282{bottom:244.933333pt;}
.y1f6{bottom:248.600000pt;}
.y2c{bottom:249.333333pt;}
.y21d{bottom:250.066667pt;}
.y64{bottom:253.733333pt;}
.y25e{bottom:254.466667pt;}
.yca{bottom:255.933333pt;}
.y243{bottom:260.333333pt;}
.y2b{bottom:261.800000pt;}
.y1f5{bottom:263.266667pt;}
.y2bb{bottom:264.733333pt;}
.y152{bottom:265.466667pt;}
.y63{bottom:266.933333pt;}
.y25d{bottom:267.666667pt;}
.yef{bottom:269.133333pt;}
.y1a3{bottom:269.866667pt;}
.y129{bottom:271.333333pt;}
.y97{bottom:272.800000pt;}
.y2a{bottom:274.266667pt;}
.y1cb{bottom:275.000000pt;}
.y1f4{bottom:275.733333pt;}
.y151{bottom:280.133333pt;}
.yc9{bottom:281.600000pt;}
.y176{bottom:282.333333pt;}
.y1a2{bottom:283.066667pt;}
.yee{bottom:283.800000pt;}
.y128{bottom:284.533333pt;}
.y29{bottom:286.733333pt;}
.y96{bottom:287.466667pt;}
.y2d6{bottom:288.933333pt;}
.y2ba{bottom:291.866667pt;}
.y150{bottom:292.600000pt;}
.y175{bottom:295.533333pt;}
.yc8{bottom:296.266667pt;}
.y127{bottom:297.733333pt;}
.y28{bottom:299.200000pt;}
.y95{bottom:299.933333pt;}
.y281{bottom:301.400000pt;}
.y1f3{bottom:302.133333pt;}
.y62{bottom:303.600000pt;}
.y25c{bottom:304.333333pt;}
.y14f{bottom:305.066667pt;}
.y2d5{bottom:305.800000pt;}
.y2a0{bottom:308.000000pt;}
.yc7{bottom:308.733333pt;}
.y126{bottom:310.933333pt;}
.y27{bottom:311.666667pt;}
.y242{bottom:312.400000pt;}
.y1f2{bottom:315.333333pt;}
.y61{bottom:316.800000pt;}
.y14e{bottom:317.533333pt;}
.y21c{bottom:318.266667pt;}
.y2ed{bottom:319.000000pt;}
.yed{bottom:321.200000pt;}
.y26{bottom:324.133333pt;}
.y174{bottom:324.866667pt;}
.y94{bottom:325.600000pt;}
.y1f1{bottom:328.533333pt;}
.y60{bottom:330.000000pt;}
.y21b{bottom:330.733333pt;}
.yc6{bottom:334.400000pt;}
.y1a1{bottom:335.133333pt;}
.y25{bottom:336.600000pt;}
.y241{bottom:337.333333pt;}
.y173{bottom:338.066667pt;}
.y93{bottom:338.800000pt;}
.y1ca{bottom:339.888560pt;}
.y2b9{bottom:341.733333pt;}
.y5f{bottom:343.200000pt;}
.y25b{bottom:343.933333pt;}
.y125{bottom:345.400000pt;}
.yc5{bottom:347.600000pt;}
.y280{bottom:348.333333pt;}
.y24{bottom:349.066667pt;}
.y1a0{bottom:349.800000pt;}
.y1c9{bottom:352.355227pt;}
.y92{bottom:354.933333pt;}
.y14d{bottom:355.666667pt;}
.y5e{bottom:356.400000pt;}
.y29f{bottom:357.866667pt;}
.y2b8{bottom:358.600000pt;}
.y124{bottom:360.066667pt;}
.yc4{bottom:360.800000pt;}
.y23{bottom:361.533333pt;}
.y240{bottom:362.266667pt;}
.y1c8{bottom:364.821893pt;}
.y1f0{bottom:365.200000pt;}
.y21a{bottom:368.133333pt;}
.y5d{bottom:369.600000pt;}
.y123{bottom:371.800000pt;}
.y22{bottom:374.000000pt;}
.y23f{bottom:374.733333pt;}
.y19f{bottom:375.466667pt;}
.yc3{bottom:376.933333pt;}
.y1c7{bottom:377.288560pt;}
.y1ef{bottom:381.333333pt;}
.y267{bottom:382.066667pt;}
.y5c{bottom:382.800000pt;}
.y122{bottom:383.533333pt;}
.y2ec{bottom:385.000000pt;}
.y21{bottom:386.466667pt;}
.y23e{bottom:387.200000pt;}
.y19e{bottom:388.666667pt;}
.y1c6{bottom:389.400000pt;}
.yc2{bottom:390.133333pt;}
.y91{bottom:391.600000pt;}
.y219{bottom:393.800000pt;}
.y14c{bottom:394.533333pt;}
.y121{bottom:395.266667pt;}
.y29e{bottom:397.466667pt;}
.y2b7{bottom:398.200000pt;}
.y20{bottom:398.933333pt;}
.y23d{bottom:399.666667pt;}
.yec{bottom:401.133333pt;}
.y19d{bottom:401.866667pt;}
.yc1{bottom:403.333333pt;}
.y90{bottom:404.800000pt;}
.y172{bottom:406.266667pt;}
.y120{bottom:407.000000pt;}
.y1ee{bottom:407.733333pt;}
.y2d4{bottom:408.466667pt;}
.y14b{bottom:409.200000pt;}
.y1f{bottom:411.400000pt;}
.y23c{bottom:412.133333pt;}
.yeb{bottom:413.600000pt;}
.y1c5{bottom:414.333333pt;}
.y19c{bottom:415.066667pt;}
.y8f{bottom:418.000000pt;}
.y171{bottom:418.733333pt;}
.y5b{bottom:420.200000pt;}
.y25a{bottom:420.933333pt;}
.y11f{bottom:421.666667pt;}
.y2b6{bottom:424.600000pt;}
.yea{bottom:426.066667pt;}
.y8e{bottom:431.200000pt;}
.y5a{bottom:433.400000pt;}
.y14a{bottom:434.133333pt;}
.y2d3{bottom:434.866667pt;}
.y1e{bottom:437.066667pt;}
.ye9{bottom:438.533333pt;}
.yc0{bottom:440.733333pt;}
.y29d{bottom:441.466667pt;}
.y1c4{bottom:442.933333pt;}
.y8d{bottom:444.400000pt;}
.y59{bottom:446.600000pt;}
.y259{bottom:447.333333pt;}
.y2b5{bottom:448.066667pt;}
.y1d{bottom:450.266667pt;}
.y23b{bottom:451.733333pt;}
.ybf{bottom:453.933333pt;}
.y19b{bottom:454.666667pt;}
.y1c3{bottom:456.133333pt;}
.y11e{bottom:456.866667pt;}
.y170{bottom:457.600000pt;}
.y218{bottom:459.800000pt;}
.y149{bottom:460.533333pt;}
.y2b4{bottom:461.266667pt;}
.y58{bottom:462.733333pt;}
.y1c{bottom:463.466667pt;}
.ye8{bottom:464.200000pt;}
.y23a{bottom:464.933333pt;}
.ybe{bottom:467.133333pt;}
.y29c{bottom:467.866667pt;}
.y19a{bottom:469.333333pt;}
.y11d{bottom:470.066667pt;}
.y16f{bottom:470.800000pt;}
.y148{bottom:473.733333pt;}
.y2b3{bottom:474.466667pt;}
.y57{bottom:475.933333pt;}
.y1b{bottom:476.666667pt;}
.ye7{bottom:477.400000pt;}
.y239{bottom:478.133333pt;}
.ybd{bottom:480.333333pt;}
.y199{bottom:481.800000pt;}
.y27f{bottom:483.266667pt;}
.y8c{bottom:484.000000pt;}
.y11c{bottom:486.200000pt;}
.y147{bottom:486.933333pt;}
.y2b2{bottom:487.666667pt;}
.y56{bottom:489.133333pt;}
.y1a{bottom:489.866667pt;}
.y238{bottom:491.333333pt;}
.y2eb{bottom:492.066667pt;}
.ybc{bottom:493.533333pt;}
.y198{bottom:494.266667pt;}
.y29b{bottom:495.000000pt;}
.y27e{bottom:496.466667pt;}
.y258{bottom:497.200000pt;}
.y8b{bottom:498.666667pt;}
.y11b{bottom:499.400000pt;}
.y2d2{bottom:500.866667pt;}
.y55{bottom:502.333333pt;}
.y19{bottom:503.066667pt;}
.y2b1{bottom:504.533333pt;}
.y1ed{bottom:505.266667pt;}
.y197{bottom:506.733333pt;}
.y1c2{bottom:508.200000pt;}
.y27d{bottom:509.666667pt;}
.y257{bottom:510.400000pt;}
.y8a{bottom:511.133333pt;}
.y11a{bottom:512.600000pt;}
.y217{bottom:513.333333pt;}
.y2ea{bottom:514.800000pt;}
.y54{bottom:515.533333pt;}
.ye6{bottom:517.000000pt;}
.y2d1{bottom:517.733333pt;}
.y196{bottom:519.200000pt;}
.y1ec{bottom:521.400000pt;}
.y1c1{bottom:522.866667pt;}
.y89{bottom:523.600000pt;}
.y216{bottom:525.800000pt;}
.y2b0{bottom:527.266667pt;}
.y2e9{bottom:528.000000pt;}
.y53{bottom:528.733333pt;}
.y237{bottom:529.466667pt;}
.ybb{bottom:530.200000pt;}
.ye5{bottom:531.666667pt;}
.y16e{bottom:532.400000pt;}
.y1c0{bottom:535.333333pt;}
.y256{bottom:536.800000pt;}
.y215{bottom:538.266667pt;}
.y146{bottom:539.733333pt;}
.y18{bottom:540.466667pt;}
.y2d0{bottom:541.200000pt;}
.y52{bottom:541.933333pt;}
.yba{bottom:543.400000pt;}
.ye4{bottom:544.133333pt;}
.y2e8{bottom:544.866667pt;}
.y16d{bottom:545.600000pt;}
.y1bf{bottom:547.800000pt;}
.y88{bottom:549.266667pt;}
.y214{bottom:550.733333pt;}
.y119{bottom:551.466667pt;}
.y145{bottom:552.933333pt;}
.y17{bottom:553.666667pt;}
.y2cf{bottom:554.400000pt;}
.y51{bottom:555.133333pt;}
.yb9{bottom:556.600000pt;}
.y29a{bottom:557.333333pt;}
.y16c{bottom:558.800000pt;}
.y1be{bottom:560.266667pt;}
.y1eb{bottom:561.000000pt;}
.y87{bottom:562.466667pt;}
.y213{bottom:563.200000pt;}
.y118{bottom:566.133333pt;}
.y16{bottom:566.866667pt;}
.y2af{bottom:567.600000pt;}
.y50{bottom:568.333333pt;}
.ye3{bottom:569.066667pt;}
.y2ce{bottom:571.266667pt;}
.y1bd{bottom:572.733333pt;}
.y27c{bottom:573.214547pt;}
.y255{bottom:574.200000pt;}
.y86{bottom:575.666667pt;}
.y117{bottom:578.600000pt;}
.y144{bottom:579.333333pt;}
.y15{bottom:580.066667pt;}
.y4f{bottom:581.533333pt;}
.y195{bottom:582.266667pt;}
.y2ae{bottom:584.466667pt;}
.y1bc{bottom:585.200000pt;}
.y27b{bottom:586.666667pt;}
.y254{bottom:587.400000pt;}
.y1ea{bottom:588.133333pt;}
.y116{bottom:591.066667pt;}
.y143{bottom:592.533333pt;}
.y14{bottom:593.266667pt;}
.y4e{bottom:594.733333pt;}
.y194{bottom:595.466667pt;}
.y16b{bottom:597.666667pt;}
.y27a{bottom:599.866667pt;}
.y212{bottom:600.600000pt;}
.y115{bottom:603.533333pt;}
.y142{bottom:605.733333pt;}
.y13{bottom:606.466667pt;}
.y2ad{bottom:607.200000pt;}
.ye2{bottom:607.933333pt;}
.y236{bottom:608.300000pt;}
.y193{bottom:608.666667pt;}
.y1bb{bottom:610.133333pt;}
.y2e7{bottom:611.600000pt;}
.y16a{bottom:612.333333pt;}
.y85{bottom:613.066667pt;}
.y1e9{bottom:613.800000pt;}
.y299{bottom:614.533333pt;}
.y114{bottom:616.000000pt;}
.y141{bottom:618.933333pt;}
.yb8{bottom:619.666667pt;}
.y235{bottom:621.500000pt;}
.y192{bottom:621.866667pt;}
.y1ba{bottom:622.600000pt;}
.ye1{bottom:624.066667pt;}
.y169{bottom:624.800000pt;}
.y84{bottom:626.266667pt;}
.y1e8{bottom:626.690607pt;}
.y253{bottom:627.000000pt;}
.y113{bottom:628.466667pt;}
.y4d{bottom:631.400000pt;}
.yb7{bottom:632.866667pt;}
.y2e6{bottom:634.333333pt;}
.y191{bottom:635.066667pt;}
.y279{bottom:636.533333pt;}
.ye0{bottom:637.266667pt;}
.y211{bottom:638.733333pt;}
.y83{bottom:639.466667pt;}
.y1e7{bottom:640.200000pt;}
.y298{bottom:640.933333pt;}
.y12{bottom:643.133333pt;}
.y4c{bottom:644.600000pt;}
.y1b9{bottom:647.533333pt;}
.y190{bottom:648.266667pt;}
.yb6{bottom:649.000000pt;}
.y278{bottom:649.733333pt;}
.y168{bottom:650.466667pt;}
.y2e5{bottom:651.200000pt;}
.y82{bottom:652.666667pt;}
.y112{bottom:654.133333pt;}
.y1e6{bottom:656.023940pt;}
.y4b{bottom:657.800000pt;}
.y140{bottom:658.533333pt;}
.y11{bottom:659.266667pt;}
.y1b8{bottom:660.000000pt;}
.y2cd{bottom:660.733333pt;}
.yb5{bottom:662.200000pt;}
.y277{bottom:662.933333pt;}
.y167{bottom:663.666667pt;}
.y111{bottom:667.333333pt;}
.y81{bottom:668.800000pt;}
.y1e5{bottom:669.223940pt;}
.y4a{bottom:671.000000pt;}
.y234{bottom:671.733333pt;}
.y10{bottom:672.466667pt;}
.y13f{bottom:673.200000pt;}
.y2ac{bottom:673.933333pt;}
.ydf{bottom:674.666667pt;}
.yb4{bottom:675.400000pt;}
.y276{bottom:676.133333pt;}
.y166{bottom:676.866667pt;}
.y2cc{bottom:677.600000pt;}
.y110{bottom:680.533333pt;}
.y80{bottom:682.000000pt;}
.y1e4{bottom:682.423940pt;}
.y49{bottom:684.200000pt;}
.y233{bottom:684.933333pt;}
.yf{bottom:685.666667pt;}
.y210{bottom:688.600000pt;}
.y275{bottom:689.333333pt;}
.y165{bottom:690.066667pt;}
.y18f{bottom:690.800000pt;}
.y10f{bottom:693.733333pt;}
.y1e3{bottom:695.933333pt;}
.y48{bottom:697.400000pt;}
.y13e{bottom:698.133333pt;}
.y2cb{bottom:700.333333pt;}
.y2e4{bottom:701.066667pt;}
.y20f{bottom:701.800000pt;}
.y274{bottom:702.533333pt;}
.y164{bottom:703.266667pt;}
.y297{bottom:704.000000pt;}
.y18e{bottom:705.466667pt;}
.y1e2{bottom:709.133333pt;}
.y47{bottom:710.600000pt;}
.y232{bottom:711.333333pt;}
.yb3{bottom:712.800000pt;}
.y20e{bottom:715.000000pt;}
.y273{bottom:715.733333pt;}
.y163{bottom:716.466667pt;}
.y2ab{bottom:717.200000pt;}
.y18d{bottom:717.933333pt;}
.y7f{bottom:718.666667pt;}
.y296{bottom:720.866667pt;}
.yde{bottom:721.600000pt;}
.ye{bottom:722.333333pt;}
.y20d{bottom:728.200000pt;}
.yb2{bottom:728.933333pt;}
.y252{bottom:729.666667pt;}
.y18c{bottom:730.400000pt;}
.y162{bottom:732.600000pt;}
.y10e{bottom:733.333333pt;}
.yd{bottom:735.533333pt;}
.y13d{bottom:736.266667pt;}
.y46{bottom:739.933333pt;}
.y20c{bottom:741.400000pt;}
.yb1{bottom:742.133333pt;}
.y18b{bottom:742.866667pt;}
.y295{bottom:743.600000pt;}
.y2e3{bottom:744.333333pt;}
.ydd{bottom:745.800000pt;}
.y10d{bottom:748.000000pt;}
.y13c{bottom:749.466667pt;}
.y1b7{bottom:750.933333pt;}
.yc{bottom:751.666667pt;}
.y20b{bottom:754.600000pt;}
.yb0{bottom:755.333333pt;}
.y251{bottom:756.066667pt;}
.y294{bottom:756.800000pt;}
.y272{bottom:758.266667pt;}
.ydc{bottom:759.000000pt;}
.y10c{bottom:760.466667pt;}
.y231{bottom:761.200000pt;}
.y1e1{bottom:761.933333pt;}
.yb{bottom:764.866667pt;}
.y1b6{bottom:765.600000pt;}
.y7e{bottom:766.333333pt;}
.y2ca{bottom:767.066667pt;}
.y2e2{bottom:767.800000pt;}
.yaf{bottom:768.533333pt;}
.y161{bottom:770.000000pt;}
.ydb{bottom:772.200000pt;}
.y293{bottom:773.666667pt;}
.y230{bottom:774.400000pt;}
.y1b5{bottom:778.066667pt;}
.y2aa{bottom:780.266667pt;}
.yae{bottom:781.733333pt;}
.y250{bottom:782.466667pt;}
.y2c9{bottom:783.933333pt;}
.y2e1{bottom:784.666667pt;}
.yda{bottom:785.400000pt;}
.y10b{bottom:786.133333pt;}
.y45{bottom:787.600000pt;}
.y7d{bottom:789.800000pt;}
.y1b4{bottom:790.533333pt;}
.y1e0{bottom:794.200000pt;}
.yad{bottom:794.933333pt;}
.y271{bottom:795.666667pt;}
.y2a9{bottom:797.133333pt;}
.yd9{bottom:798.600000pt;}
.y6{bottom:799.333333pt;}
.y292{bottom:800.800000pt;}
.y13b{bottom:802.266667pt;}
.y7c{bottom:803.000000pt;}
.y20a{bottom:803.733333pt;}
.y2c8{bottom:806.666667pt;}
.yac{bottom:808.133333pt;}
.y270{bottom:808.866667pt;}
.y44{bottom:811.066667pt;}
.yd8{bottom:811.800000pt;}
.y10a{bottom:815.466667pt;}
.y7b{bottom:816.200000pt;}
.y5{bottom:818.400000pt;}
.y2c7{bottom:819.866667pt;}
.y18a{bottom:820.600000pt;}
.y26f{bottom:822.066667pt;}
.y291{bottom:823.533333pt;}
.y43{bottom:827.200000pt;}
.y22f{bottom:827.933333pt;}
.y109{bottom:828.666667pt;}
.y7a{bottom:829.400000pt;}
.y24f{bottom:830.133333pt;}
.y209{bottom:830.866667pt;}
.y1df{bottom:833.800000pt;}
.y189{bottom:835.266667pt;}
.y290{bottom:836.733333pt;}
.y4{bottom:837.466667pt;}
.y42{bottom:840.400000pt;}
.y13a{bottom:841.133333pt;}
.y160{bottom:841.866667pt;}
.y79{bottom:842.600000pt;}
.y208{bottom:843.333333pt;}
.y22e{bottom:844.066667pt;}
.yab{bottom:844.800000pt;}
.y188{bottom:847.733333pt;}
.y1de{bottom:848.466667pt;}
.yd7{bottom:850.666667pt;}
.y24e{bottom:853.600000pt;}
.ya{bottom:854.333333pt;}
.y1b3{bottom:855.066667pt;}
.y78{bottom:855.800000pt;}
.y3{bottom:856.533333pt;}
.yaa{bottom:860.933333pt;}
.y26e{bottom:861.666667pt;}
.y2c6{bottom:863.866667pt;}
.yd6{bottom:865.333333pt;}
.y9{bottom:866.800000pt;}
.y108{bottom:868.266667pt;}
.y77{bottom:869.000000pt;}
.y207{bottom:869.733333pt;}
.ya9{bottom:874.133333pt;}
.y2{bottom:875.600000pt;}
.y2a8{bottom:877.066667pt;}
.y41{bottom:877.800000pt;}
.y8{bottom:880.000000pt;}
.y139{bottom:880.733333pt;}
.y76{bottom:882.200000pt;}
.y107{bottom:882.933333pt;}
.y1dd{bottom:886.600000pt;}
.ya8{bottom:887.333333pt;}
.y2c5{bottom:890.266667pt;}
.y40{bottom:891.000000pt;}
.y206{bottom:893.200000pt;}
.y15f{bottom:893.933333pt;}
.y1b2{bottom:894.666667pt;}
.y106{bottom:895.400000pt;}
.y22d{bottom:896.866667pt;}
.y75{bottom:898.333333pt;}
.y1dc{bottom:899.800000pt;}
.y2a7{bottom:903.466667pt;}
.y3f{bottom:904.200000pt;}
.y7{bottom:906.400000pt;}
.y26d{bottom:907.133333pt;}
.y105{bottom:907.866667pt;}
.y15e{bottom:908.600000pt;}
.y1b1{bottom:909.333333pt;}
.y22c{bottom:910.066667pt;}
.y2c4{bottom:916.666667pt;}
.yd5{bottom:917.400000pt;}
.y104{bottom:920.333333pt;}
.y15d{bottom:921.066667pt;}
.y1b0{bottom:921.800000pt;}
.ya7{bottom:924.733333pt;}
.y187{bottom:926.933333pt;}
.y28f{bottom:929.866667pt;}
.yd4{bottom:930.600000pt;}
.y103{bottom:932.800000pt;}
.y15c{bottom:933.533333pt;}
.y22b{bottom:936.466667pt;}
.y1db{bottom:939.400000pt;}
.y186{bottom:940.133333pt;}
.y3e{bottom:940.866667pt;}
.y205{bottom:943.066667pt;}
.y74{bottom:943.800000pt;}
.y102{bottom:945.266667pt;}
.y138{bottom:946.000000pt;}
.y26c{bottom:946.733333pt;}
.y24d{bottom:947.088560pt;}
.y1af{bottom:947.466667pt;}
.y185{bottom:953.333333pt;}
.ya6{bottom:954.066667pt;}
.y28e{bottom:956.266667pt;}
.y3d{bottom:957.000000pt;}
.y101{bottom:957.733333pt;}
.y73{bottom:958.375000pt;}
.y15b{bottom:958.466667pt;}
.y204{bottom:959.200000pt;}
.y26b{bottom:959.933333pt;}
.y24c{bottom:960.288560pt;}
.y137{bottom:960.666667pt;}
.y184{bottom:966.533333pt;}
.y3c{bottom:970.200000pt;}
.y72{bottom:970.933333pt;}
.y203{bottom:972.400000pt;}
.y136{bottom:973.133333pt;}
.y1ae{bottom:976.800000pt;}
.y1da{bottom:979.000000pt;}
.y183{bottom:979.733333pt;}
.y2e0{bottom:980.466667pt;}
.y3b{bottom:983.400000pt;}
.y22a{bottom:984.133333pt;}
.y135{bottom:985.600000pt;}
.y1d9{bottom:991.466667pt;}
.y3a{bottom:996.600000pt;}
.y100{bottom:996.783333pt;}
.y2df{bottom:997.333333pt;}
.y134{bottom:998.066667pt;}
.ya5{bottom:1006.866667pt;}
.yd3{bottom:1007.210380pt;}
.y229{bottom:1008.860380pt;}
.y39{bottom:1009.800000pt;}
.y26a{bottom:1009.857273pt;}
.yff{bottom:1009.983333pt;}
.y133{bottom:1010.533333pt;}
.y202{bottom:1011.266667pt;}
.y28d{bottom:1013.466667pt;}
.y1d8{bottom:1016.858333pt;}
.ya4{bottom:1019.803107pt;}
.y2de{bottom:1020.066667pt;}
.y182{bottom:1021.877047pt;}
.y24b{bottom:1022.690607pt;}
.y71{bottom:1023.000000pt;}
.y269{bottom:1023.057273pt;}
.yfe{bottom:1023.183333pt;}
.yd2{bottom:1023.343713pt;}
.y228{bottom:1023.527047pt;}
.y201{bottom:1023.916667pt;}
.y1ad{bottom:1024.466667pt;}
.y1d7{bottom:1032.991667pt;}
.ya3{bottom:1033.003107pt;}
.y24a{bottom:1035.890607pt;}
.y28c{bottom:1035.936440pt;}
.y227{bottom:1035.993713pt;}
.y38{bottom:1036.200000pt;}
.y268{bottom:1036.257273pt;}
.yfd{bottom:1036.383333pt;}
.y132{bottom:1036.417727pt;}
.yd1{bottom:1036.543713pt;}
.y1ac{bottom:1036.566667pt;}
.y2a6{bottom:1036.933333pt;}
.h5{height:34.567500pt;}
.h9{height:35.187840pt;}
.h7{height:38.034562pt;}
.h8{height:40.568286pt;}
.h2{height:42.260625pt;}
.h6{height:43.448911pt;}
.h3{height:46.956250pt;}
.h4{height:49.930833pt;}
.h1{height:1046.466667pt;}
.h0{height:1121.333333pt;}
.w1{width:718.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x4{left:22.000000pt;}
.x1{left:37.333333pt;}
.x3{left:91.666667pt;}
.xf{left:114.033333pt;}
.x10{left:136.033333pt;}
.x1d{left:234.011947pt;}
.x22{left:240.008560pt;}
.xe{left:245.788693pt;}
.x1c{left:247.126733pt;}
.xd{left:248.436467pt;}
.xb{left:249.882747pt;}
.x5{left:251.973627pt;}
.xc{left:253.231733pt;}
.x7{left:255.018353pt;}
.x6{left:257.410853pt;}
.x9{left:259.994167pt;}
.x24{left:261.837473pt;}
.x8{left:263.608693pt;}
.xa{left:266.336327pt;}
.x23{left:267.465587pt;}
.x21{left:271.201260pt;}
.x25{left:273.390113pt;}
.x11{left:275.996600pt;}
.x17{left:278.204373pt;}
.x16{left:280.227273pt;}
.x15{left:282.410993pt;}
.x14{left:283.424167pt;}
.x1b{left:285.527953pt;}
.x1a{left:286.997480pt;}
.x18{left:288.206600pt;}
.x13{left:290.305180pt;}
.x19{left:294.149167pt;}
.x12{left:298.444300pt;}
.x20{left:307.349167pt;}
.x1e{left:309.378153pt;}
.x1f{left:314.913353pt;}
.x2{left:412.133333pt;}
.x26{left:438.859300pt;}
.x27{left:556.911667pt;}
}




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