
    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_c378930cb2801b78e8f4da55.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_7f11b954be046f4e8aabc1c4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946777;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_c550d21d910b25afb7e6b9a3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976074;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_1cc5d5649c854b79d99a9452.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.924316;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_bca5c4338795dd9e6fb9fa86.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.950684;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_81a06a5700265088d3514873.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.976074;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:ff9;src:url('chunks/assets/font_3d619ee3475b86adaa750159.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.924316;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:ffa;src:url('chunks/assets/font_a34107d5aa165bd2a8f30c73.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.946777;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:ffb;src:url('chunks/assets/font_f20378ad9effb67258adb2bd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.972168;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:ffc;src:url('chunks/assets/font_5e51a958eaa231450dc1ccde.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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:ffd;src:url('chunks/assets/font_5e48ae70e86028efdeb99d5b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.971191;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:ffe;src:url('chunks/assets/font_7b84e9ec2240864dfe02b539.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.750000;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;}
.m3{transform:matrix(0.241482,0.000000,-0.064703,0.241482,0,0);-ms-transform:matrix(0.241482,0.000000,-0.064703,0.241482,0,0);-webkit-transform:matrix(0.241482,0.000000,-0.064703,0.241482,0,0);}
.m2{transform:matrix(0.241484,0.000000,-0.064694,0.241484,0,0);-ms-transform:matrix(0.241484,0.000000,-0.064694,0.241484,0,0);-webkit-transform:matrix(0.241484,0.000000,-0.064694,0.241484,0,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);}
.v3{vertical-align:-5.400000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:25.800000px;}
.v4{vertical-align:28.800000px;}
.v2{vertical-align:51.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.042000px;}
.ls2{letter-spacing:0.096000px;}
.ls3{letter-spacing:0.102000px;}
.ls6{letter-spacing:0.240000px;}
.ls5{letter-spacing:63.180000px;}
.ls4{letter-spacing:86.700000px;}
.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;}
}
.ws4{word-spacing:-41.145922px;}
.ws21{word-spacing:-21.300000px;}
.ws5{word-spacing:-21.060000px;}
.ws1f{word-spacing:-20.460000px;}
.ws3{word-spacing:-18.634742px;}
.ws20{word-spacing:-17.690400px;}
.ws2{word-spacing:-15.000000px;}
.ws1{word-spacing:-14.742000px;}
.ws7{word-spacing:-14.364000px;}
.ws9{word-spacing:-14.322000px;}
.ws14{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
.ws16{word-spacing:42.774000px;}
.ws6{word-spacing:42.996000px;}
.wsa{word-spacing:46.860000px;}
.wsb{word-spacing:48.624000px;}
.ws1a{word-spacing:50.346000px;}
.ws1b{word-spacing:52.776000px;}
.ws17{word-spacing:53.976000px;}
.wsc{word-spacing:64.200000px;}
.ws8{word-spacing:89.022000px;}
.wse{word-spacing:94.632000px;}
.wsd{word-spacing:94.776000px;}
.ws1d{word-spacing:155.472000px;}
.ws19{word-spacing:167.304000px;}
.ws11{word-spacing:187.944000px;}
.ws10{word-spacing:201.120000px;}
.wsf{word-spacing:214.896000px;}
.ws15{word-spacing:247.662000px;}
.ws13{word-spacing:479.862000px;}
.ws12{word-spacing:730.062000px;}
.ws1c{word-spacing:982.824000px;}
.ws1e{word-spacing:1093.560000px;}
.ws18{word-spacing:1436.448000px;}
._8{margin-left:-16.800000px;}
._7{margin-left:-13.080000px;}
._15{margin-left:-11.965344px;}
._14{margin-left:-10.101851px;}
._16{margin-left:-8.421296px;}
._19{margin-left:-7.342102px;}
._13{margin-left:-6.335876px;}
._e{margin-left:-5.040000px;}
._17{margin-left:-3.926934px;}
._0{margin-left:-2.795211px;}
._4{margin-left:-1.188316px;}
._3{width:1.242316px;}
._1{width:2.733096px;}
._5{width:3.823167px;}
._b{width:4.940407px;}
._9{width:6.552000px;}
._a{width:7.634904px;}
._12{width:9.501096px;}
._2{width:11.491424px;}
._c{width:12.538260px;}
._d{width:13.937923px;}
._11{width:15.336000px;}
._6{width:16.992000px;}
._2e{width:18.084000px;}
._8c{width:19.176000px;}
._18{width:22.344948px;}
._8b{width:24.180000px;}
._f{width:25.992000px;}
._10{width:27.216000px;}
._9a{width:28.241961px;}
._95{width:31.757684px;}
._97{width:33.996000px;}
._9d{width:35.307567px;}
._8d{width:37.320000px;}
._90{width:39.578191px;}
._84{width:42.660000px;}
._8f{width:43.680000px;}
._85{width:44.760000px;}
._91{width:46.548316px;}
._1a{width:48.120000px;}
._86{width:49.560000px;}
._99{width:50.940000px;}
._8e{width:54.372000px;}
._1b{width:57.114000px;}
._9b{width:58.686316px;}
._93{width:64.337684px;}
._94{width:65.664632px;}
._59{width:71.400000px;}
._9c{width:72.948000px;}
._1c{width:74.694000px;}
._1f{width:78.744000px;}
._77{width:80.568000px;}
._96{width:81.672000px;}
._44{width:88.649684px;}
._74{width:90.714000px;}
._41{width:93.240000px;}
._40{width:96.840000px;}
._98{width:100.740000px;}
._3f{width:104.040000px;}
._3d{width:105.840000px;}
._3e{width:107.040000px;}
._24{width:108.960000px;}
._2b{width:112.584000px;}
._7c{width:115.680000px;}
._89{width:117.000000px;}
._29{width:124.896000px;}
._26{width:127.032000px;}
._92{width:129.240000px;}
._81{width:132.821684px;}
._79{width:134.880000px;}
._27{width:139.032000px;}
._1e{width:142.248000px;}
._4c{width:144.552000px;}
._4a{width:145.800000px;}
._54{width:147.168000px;}
._7d{width:148.200000px;}
._49{width:149.518102px;}
._46{width:151.894102px;}
._51{width:153.142102px;}
._23{width:154.608000px;}
._55{width:156.576000px;}
._22{width:157.608000px;}
._53{width:159.528000px;}
._72{width:162.624000px;}
._56{width:164.973296px;}
._7a{width:166.704632px;}
._5d{width:168.792000px;}
._52{width:171.240000px;}
._28{width:172.248000px;}
._4b{width:174.840000px;}
._20{width:176.832000px;}
._48{width:179.040000px;}
._1d{width:180.624000px;}
._5c{width:181.800000px;}
._4e{width:182.808000px;}
._5a{width:184.938000px;}
._4d{width:188.520000px;}
._47{width:189.840000px;}
._4f{width:190.920000px;}
._2a{width:193.272000px;}
._2c{width:194.832000px;}
._45{width:196.320000px;}
._50{width:197.520000px;}
._60{width:199.920000px;}
._62{width:203.726934px;}
._7f{width:205.680000px;}
._25{width:209.832000px;}
._65{width:212.400000px;}
._66{width:214.800000px;}
._37{width:219.840000px;}
._21{width:224.832000px;}
._32{width:229.920000px;}
._3c{width:232.440000px;}
._80{width:238.296000px;}
._2d{width:240.120000px;}
._31{width:241.920000px;}
._8a{width:264.240000px;}
._88{width:279.720000px;}
._82{width:285.633790px;}
._78{width:291.597629px;}
._61{width:307.836948px;}
._3b{width:350.040000px;}
._3a{width:355.440000px;}
._43{width:360.720000px;}
._42{width:362.520000px;}
._63{width:408.078316px;}
._67{width:461.472000px;}
._36{width:463.440000px;}
._38{width:466.320000px;}
._6d{width:497.406316px;}
._76{width:520.548000px;}
._83{width:543.532106px;}
._75{width:545.244000px;}
._70{width:547.504423px;}
._6c{width:552.875211px;}
._68{width:557.423527px;}
._5f{width:575.076316px;}
._35{width:587.640000px;}
._33{width:591.720000px;}
._39{width:592.920000px;}
._71{width:605.294524px;}
._30{width:612.120000px;}
._87{width:619.116000px;}
._6f{width:626.579844px;}
._6a{width:643.194000px;}
._6e{width:660.753945px;}
._73{width:666.890654px;}
._57{width:672.522000px;}
._58{width:674.748000px;}
._7e{width:783.498000px;}
._34{width:843.720000px;}
._2f{width:853.320000px;}
._69{width:864.708316px;}
._64{width:894.448895px;}
._7b{width:990.243786px;}
._5e{width:1001.130000px;}
._6b{width:1019.171844px;}
._5b{width:1057.787211px;}
.fc7{color:rgb(0,0,128);}
.fc3{color:rgb(0,0,128);}
.fc4{color:rgb(171,56,52);}
.fc1{color:rgb(171,56,52);}
.fc6{color:rgb(208,4,3);}
.fc5{color:rgb(255,255,255);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:34.800000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fsc{font-size:50.400000px;}
.fsa{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs5{font-size:62.115807px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:74.538968px;}
.fs8{font-size:74.539714px;}
.fs6{font-size:96.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y23{bottom:0.150000px;}
.y3f{bottom:53.100000px;}
.y5{bottom:66.525004px;}
.ycb{bottom:86.850000px;}
.yeb{bottom:91.050000px;}
.yb0{bottom:91.800000px;}
.y7c{bottom:94.500000px;}
.y4{bottom:97.125005px;}
.y1ca{bottom:101.550000px;}
.y1f9{bottom:103.200000px;}
.yca{bottom:115.800000px;}
.y7b{bottom:121.800000px;}
.y1c9{bottom:128.850000px;}
.y1f8{bottom:130.500000px;}
.y3e{bottom:131.100000px;}
.y165{bottom:132.150000px;}
.yea{bottom:133.950000px;}
.yaf{bottom:134.700000px;}
.y22{bottom:139.264499px;}
.y19e{bottom:139.800000px;}
.y229{bottom:140.550000px;}
.y93{bottom:145.050000px;}
.y60{bottom:149.100000px;}
.y1c8{bottom:156.150000px;}
.y1f7{bottom:157.800000px;}
.y164{bottom:159.450000px;}
.y228{bottom:159.600000px;}
.yc9{bottom:160.500000px;}
.y3d{bottom:161.550000px;}
.y1a9{bottom:163.050000px;}
.y1db{bottom:165.000000px;}
.y212{bottom:169.500000px;}
.y5f{bottom:176.400000px;}
.ye9{bottom:176.700000px;}
.yae{bottom:177.450000px;}
.y152{bottom:178.800000px;}
.y19d{bottom:182.700000px;}
.y92{bottom:185.550000px;}
.y163{bottom:186.750000px;}
.y17c{bottom:188.400000px;}
.y1da{bottom:188.550000px;}
.y7a{bottom:193.800000px;}
.y211{bottom:196.800000px;}
.y19{bottom:196.933500px;}
.y227{bottom:197.850000px;}
.yc8{bottom:200.850000px;}
.y5e{bottom:203.700000px;}
.y151{bottom:206.100000px;}
.y3c{bottom:209.250000px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y162{bottom:214.050000px;}
.y1d9{bottom:215.850000px;}
.yad{bottom:217.950000px;}
.y17b{bottom:218.250000px;}
.y79{bottom:221.100000px;}
.ye8{bottom:221.400000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y19c{bottom:225.450000px;}
.y91{bottom:225.900000px;}
.y1c7{bottom:228.150000px;}
.yc7{bottom:229.800000px;}
.y5d{bottom:231.000000px;}
.y150{bottom:233.400000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y3b{bottom:239.700000px;}
.y108{bottom:240.150000px;}
.y210{bottom:240.750000px;}
.y161{bottom:241.350000px;}
.y17a{bottom:243.150000px;}
.y78{bottom:248.400000px;}
.ye7{bottom:248.700000px;}
.y1d8{bottom:253.950000px;}
.y1c6{bottom:255.450000px;}
.y5c{bottom:258.300000px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y14f{bottom:260.700000px;}
.y107{bottom:267.450000px;}
.y179{bottom:268.050000px;}
.y160{bottom:268.650000px;}
.y1f6{bottom:269.550000px;}
.y3a{bottom:270.000000px;}
.y19b{bottom:270.150000px;}
.y90{bottom:270.600000px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.yc6{bottom:272.550000px;}
.y77{bottom:275.700000px;}
.ye6{bottom:276.000000px;}
.y1d7{bottom:277.350000px;}
.y226{bottom:279.150000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y5b{bottom:285.600000px;}
.y14e{bottom:288.000000px;}
.y178{bottom:292.950000px;}
.y106{bottom:294.750000px;}
.y15f{bottom:295.950000px;}
.y1f5{bottom:296.850000px;}
.y19a{bottom:297.450000px;}
.y8f{bottom:297.900000px;}
.yac{bottom:298.800000px;}
.y1c5{bottom:300.150000px;}
.y76{bottom:303.000000px;}
.ye5{bottom:303.300000px;}
.y1d6{bottom:304.650000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y20f{bottom:311.100000px;}
.y5a{bottom:312.900000px;}
.yc5{bottom:313.050000px;}
.y39{bottom:317.850000px;}
.y105{bottom:322.050000px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y15e{bottom:323.250000px;}
.y199{bottom:324.750000px;}
.y8e{bottom:325.200000px;}
.y75{bottom:330.300000px;}
.y14d{bottom:332.700000px;}
.y1f4{bottom:336.900000px;}
.y123{bottom:337.200000px;}
.y20e{bottom:338.400000px;}
.yab{bottom:339.150000px;}
.y59{bottom:340.200000px;}
.yc4{bottom:341.850000px;}
.y177{bottom:342.750000px;}
.y1d5{bottom:344.700000px;}
.ye4{bottom:348.000000px;}
.y10{bottom:348.133500px;}
.y38{bottom:348.150000px;}
.y104{bottom:349.350000px;}
.y15d{bottom:350.550000px;}
.y8d{bottom:352.500000px;}
.y74{bottom:357.600000px;}
.y14c{bottom:360.000000px;}
.y1f3{bottom:364.200000px;}
.y122{bottom:364.500000px;}
.y176{bottom:367.650000px;}
.y198{bottom:369.450000px;}
.y1d4{bottom:372.000000px;}
.y225{bottom:373.950000px;}
.ye3{bottom:375.300000px;}
.y103{bottom:376.650000px;}
.y37{bottom:378.600000px;}
.y138{bottom:379.800000px;}
.y20d{bottom:381.450000px;}
.yaa{bottom:383.850000px;}
.y58{bottom:384.900000px;}
.yc3{bottom:386.550000px;}
.yf{bottom:386.785499px;}
.y14b{bottom:387.300000px;}
.y1c4{bottom:389.550000px;}
.y121{bottom:391.800000px;}
.y175{bottom:392.550000px;}
.y15c{bottom:395.250000px;}
.y197{bottom:396.750000px;}
.y8c{bottom:397.200000px;}
.y224{bottom:401.250000px;}
.ye2{bottom:402.600000px;}
.y102{bottom:403.950000px;}
.y1f2{bottom:404.250000px;}
.ye{bottom:408.044999px;}
.y137{bottom:408.750000px;}
.y36{bottom:408.900000px;}
.ya9{bottom:411.150000px;}
.y57{bottom:412.200000px;}
.y14a{bottom:414.600000px;}
.y1c3{bottom:416.850000px;}
.y174{bottom:417.450000px;}
.y196{bottom:424.050000px;}
.yc2{bottom:427.050000px;}
.y223{bottom:428.550000px;}
.ye1{bottom:429.900000px;}
.y1f1{bottom:431.550000px;}
.y136{bottom:432.000000px;}
.y20c{bottom:436.050000px;}
.y120{bottom:436.500000px;}
.ya8{bottom:438.450000px;}
.y35{bottom:439.350000px;}
.y56{bottom:439.500000px;}
.y149{bottom:441.900000px;}
.y173{bottom:442.350000px;}
.y1c2{bottom:444.150000px;}
.y101{bottom:448.650000px;}
.y195{bottom:451.350000px;}
.y135{bottom:455.250000px;}
.yc1{bottom:455.850000px;}
.ye0{bottom:457.200000px;}
.y1f0{bottom:458.850000px;}
.y11f{bottom:463.800000px;}
.ya7{bottom:465.750000px;}
.y55{bottom:466.800000px;}
.y172{bottom:467.250000px;}
.y148{bottom:469.200000px;}
.y34{bottom:469.650000px;}
.y222{bottom:471.300000px;}
.y1c1{bottom:471.450000px;}
.y100{bottom:475.950000px;}
.y134{bottom:478.500000px;}
.y20b{bottom:479.100000px;}
.ydf{bottom:484.500000px;}
.y15b{bottom:484.650000px;}
.y8b{bottom:486.600000px;}
.y11e{bottom:491.100000px;}
.y171{bottom:492.150000px;}
.y54{bottom:494.100000px;}
.y221{bottom:494.700000px;}
.y194{bottom:496.050000px;}
.yc0{bottom:496.350000px;}
.y1c0{bottom:498.750000px;}
.y1ef{bottom:498.900000px;}
.y133{bottom:501.750000px;}
.yd{bottom:502.864502px;}
.y1d3{bottom:504.000000px;}
.y20a{bottom:506.400000px;}
.ya6{bottom:510.450000px;}
.yde{bottom:511.800000px;}
.y15a{bottom:511.950000px;}
.y8a{bottom:513.900000px;}
.y170{bottom:517.050000px;}
.y33{bottom:517.500000px;}
.yff{bottom:520.650000px;}
.yc{bottom:520.864502px;}
.y53{bottom:521.400000px;}
.y220{bottom:522.000000px;}
.y132{bottom:525.000000px;}
.ybf{bottom:525.150000px;}
.y1ee{bottom:526.200000px;}
.y1d2{bottom:531.300000px;}
.y209{bottom:533.700000px;}
.y11d{bottom:535.800000px;}
.yb{bottom:538.864499px;}
.ydd{bottom:539.100000px;}
.y159{bottom:539.250000px;}
.y193{bottom:540.750000px;}
.y89{bottom:541.200000px;}
.y16f{bottom:541.950000px;}
.y32{bottom:547.800000px;}
.y131{bottom:548.250000px;}
.y73{bottom:548.700000px;}
.ya{bottom:556.864499px;}
.y1d1{bottom:558.600000px;}
.y11c{bottom:563.100000px;}
.y21f{bottom:564.750000px;}
.ybe{bottom:565.650000px;}
.y52{bottom:566.100000px;}
.y1ed{bottom:566.250000px;}
.y158{bottom:566.550000px;}
.y16e{bottom:566.850000px;}
.y192{bottom:568.050000px;}
.y88{bottom:568.500000px;}
.y130{bottom:571.500000px;}
.y72{bottom:576.000000px;}
.y208{bottom:576.750000px;}
.y31{bottom:578.250000px;}
.ydc{bottom:583.800000px;}
.y1bf{bottom:584.250000px;}
.y1d0{bottom:585.900000px;}
.y21e{bottom:588.300000px;}
.y16d{bottom:591.750000px;}
.y51{bottom:593.400000px;}
.y1ec{bottom:593.550000px;}
.ybd{bottom:594.450000px;}
.y12f{bottom:594.750000px;}
.y191{bottom:595.350000px;}
.y87{bottom:595.800000px;}
.ya5{bottom:598.650000px;}
.y71{bottom:603.300000px;}
.y11b{bottom:607.800000px;}
.y30{bottom:608.550000px;}
.yfe{bottom:608.850000px;}
.ydb{bottom:611.100000px;}
.y157{bottom:611.250000px;}
.y1be{bottom:612.300000px;}
.y1cf{bottom:613.200000px;}
.y21d{bottom:615.600000px;}
.y16c{bottom:616.650000px;}
.y207{bottom:617.850000px;}
.y12e{bottom:618.000000px;}
.y50{bottom:620.700000px;}
.y190{bottom:622.650000px;}
.y86{bottom:623.100000px;}
.y9{bottom:626.610001px;}
.ya4{bottom:627.600000px;}
.y70{bottom:630.600000px;}
.y1eb{bottom:631.650000px;}
.y1bd{bottom:633.750000px;}
.y11a{bottom:635.100000px;}
.yfd{bottom:637.800000px;}
.yda{bottom:638.400000px;}
.y156{bottom:638.550000px;}
.y2f{bottom:639.000000px;}
.ybc{bottom:639.150000px;}
.y1ce{bottom:640.500000px;}
.y12d{bottom:641.250000px;}
.y16b{bottom:641.550000px;}
.y8{bottom:645.510000px;}
.y4f{bottom:648.000000px;}
.y85{bottom:650.400000px;}
.ya3{bottom:650.850000px;}
.y1ea{bottom:655.050000px;}
.y1bc{bottom:655.200000px;}
.y6f{bottom:657.900000px;}
.y21c{bottom:660.300000px;}
.yfc{bottom:661.050000px;}
.y12c{bottom:664.500000px;}
.yd9{bottom:665.700000px;}
.y155{bottom:665.850000px;}
.ybb{bottom:666.450000px;}
.y7{bottom:666.771000px;}
.y18f{bottom:667.350000px;}
.y147{bottom:667.800000px;}
.y206{bottom:668.550000px;}
.y2e{bottom:669.300000px;}
.ya2{bottom:674.100000px;}
.y4e{bottom:675.300000px;}
.y1bb{bottom:676.650000px;}
.y119{bottom:679.800000px;}
.y1e9{bottom:682.350000px;}
.yfb{bottom:684.300000px;}
.y83{bottom:685.200000px;}
.y21b{bottom:687.600000px;}
.y12b{bottom:687.750000px;}
.y16a{bottom:691.350000px;}
.yd8{bottom:693.000000px;}
.y154{bottom:693.150000px;}
.y1a8{bottom:693.300000px;}
.yba{bottom:693.750000px;}
.y84{bottom:695.100000px;}
.y205{bottom:695.850000px;}
.ya1{bottom:697.350000px;}
.y1ba{bottom:698.100000px;}
.y169{bottom:698.700000px;}
.y4d{bottom:702.600000px;}
.y118{bottom:707.100000px;}
.yfa{bottom:707.550000px;}
.y12a{bottom:711.000000px;}
.y82{bottom:712.500000px;}
.y2d{bottom:717.150000px;}
.y1b9{bottom:719.550000px;}
.yd7{bottom:720.300000px;}
.ya0{bottom:720.600000px;}
.yb9{bottom:721.050000px;}
.y1e8{bottom:722.400000px;}
.y6{bottom:726.298500px;}
.y4c{bottom:729.900000px;}
.yf9{bottom:730.800000px;}
.y21a{bottom:732.300000px;}
.y129{bottom:733.800000px;}
.y117{bottom:734.400000px;}
.y204{bottom:738.900000px;}
.y81{bottom:739.800000px;}
.y1b8{bottom:741.000000px;}
.y9f{bottom:743.550000px;}
.yd6{bottom:747.600000px;}
.y1a7{bottom:747.900000px;}
.y1e7{bottom:749.700000px;}
.y9e{bottom:749.850000px;}
.y3{bottom:752.599495px;}
.y18e{bottom:752.850000px;}
.yf8{bottom:754.050000px;}
.y4b{bottom:757.200000px;}
.y167{bottom:757.350000px;}
.y219{bottom:759.600000px;}
.y116{bottom:761.700000px;}
.y1b7{bottom:762.450000px;}
.y166{bottom:763.800000px;}
.yb8{bottom:765.750000px;}
.y203{bottom:766.200000px;}
.y1cd{bottom:767.100000px;}
.y168{bottom:770.100000px;}
.yd5{bottom:774.900000px;}
.yf7{bottom:777.300000px;}
.y153{bottom:781.350000px;}
.y18d{bottom:782.700000px;}
.y1b6{bottom:783.900000px;}
.y6e{bottom:784.500000px;}
.y1e6{bottom:787.800000px;}
.y115{bottom:789.000000px;}
.y1a6{bottom:792.600000px;}
.y202{bottom:793.500000px;}
.y1cc{bottom:794.400000px;}
.y2c{bottom:799.650000px;}
.yf6{bottom:800.250000px;}
.y4a{bottom:801.900000px;}
.yd4{bottom:802.200000px;}
.y218{bottom:804.300000px;}
.y9d{bottom:805.050000px;}
.y1b5{bottom:805.350000px;}
.y18c{bottom:807.600000px;}
.y1e5{bottom:811.350000px;}
.y6d{bottom:811.800000px;}
.y2b{bottom:816.600000px;}
.y1a5{bottom:819.900000px;}
.y1cb{bottom:821.700000px;}
.y128{bottom:826.200000px;}
.y1b4{bottom:826.800000px;}
.y49{bottom:829.200000px;}
.yd3{bottom:829.500000px;}
.y9c{bottom:832.350000px;}
.y18b{bottom:832.500000px;}
.y114{bottom:833.700000px;}
.y201{bottom:836.550000px;}
.y1e4{bottom:838.650000px;}
.y6c{bottom:839.100000px;}
.y18a{bottom:839.850000px;}
.y1a4{bottom:847.200000px;}
.y1b3{bottom:848.250000px;}
.yf5{bottom:849.000000px;}
.y2a{bottom:851.850000px;}
.yb7{bottom:853.950000px;}
.y127{bottom:855.150000px;}
.y48{bottom:856.500000px;}
.y143{bottom:858.000000px;}
.y9b{bottom:859.650000px;}
.y200{bottom:863.850000px;}
.y6b{bottom:866.400000px;}
.y1b2{bottom:869.700000px;}
.y189{bottom:871.950000px;}
.yd2{bottom:874.200000px;}
.y1a3{bottom:874.500000px;}
.yf4{bottom:876.300000px;}
.y126{bottom:878.400000px;}
.y1e3{bottom:878.700000px;}
.y2{bottom:879.369000px;}
.yb6{bottom:882.900000px;}
.y47{bottom:883.800000px;}
.y142{bottom:885.300000px;}
.y9a{bottom:886.950000px;}
.y1b1{bottom:891.150000px;}
.y6a{bottom:893.700000px;}
.y188{bottom:896.850000px;}
.y29{bottom:899.250000px;}
.y125{bottom:901.650000px;}
.y1a2{bottom:901.800000px;}
.yf3{bottom:903.600000px;}
.y1e2{bottom:906.000000px;}
.yb5{bottom:906.150000px;}
.y46{bottom:911.100000px;}
.y141{bottom:912.600000px;}
.y217{bottom:919.050000px;}
.y113{bottom:919.200000px;}
.y69{bottom:921.000000px;}
.y187{bottom:921.750000px;}
.y124{bottom:924.900000px;}
.y99{bottom:927.450000px;}
.y1a1{bottom:929.100000px;}
.yb4{bottom:929.400000px;}
.yf2{bottom:930.900000px;}
.y1b0{bottom:934.050000px;}
.y1ff{bottom:934.200000px;}
.y146{bottom:938.400000px;}
.y140{bottom:939.900000px;}
.y216{bottom:942.450000px;}
.y1e1{bottom:946.050000px;}
.y28{bottom:946.950000px;}
.y112{bottom:948.150000px;}
.y68{bottom:948.300000px;}
.y186{bottom:949.200000px;}
.yb3{bottom:952.650000px;}
.y98{bottom:954.750000px;}
.y1af{bottom:955.500000px;}
.y45{bottom:955.800000px;}
.y185{bottom:956.550000px;}
.yf1{bottom:958.200000px;}
.y1fe{bottom:961.500000px;}
.yd1{bottom:963.600000px;}
.y145{bottom:965.700000px;}
.y1{bottom:966.726000px;}
.y13f{bottom:967.200000px;}
.y215{bottom:969.750000px;}
.y111{bottom:971.400000px;}
.y1a0{bottom:971.850000px;}
.y1e0{bottom:973.350000px;}
.y67{bottom:975.600000px;}
.yb2{bottom:975.900000px;}
.y1ae{bottom:976.950000px;}
.yf0{bottom:985.500000px;}
.y1fd{bottom:988.800000px;}
.yd0{bottom:990.900000px;}
.y184{bottom:991.200000px;}
.y144{bottom:993.000000px;}
.y13e{bottom:994.500000px;}
.y110{bottom:994.650000px;}
.y97{bottom:995.100000px;}
.y1ad{bottom:998.400000px;}
.yb1{bottom:998.850000px;}
.y1df{bottom:1000.650000px;}
.y80{bottom:1002.900000px;}
.y214{bottom:1012.500000px;}
.yef{bottom:1012.800000px;}
.y19f{bottom:1014.750000px;}
.y183{bottom:1016.100000px;}
.y10f{bottom:1017.900000px;}
.ycf{bottom:1018.200000px;}
.y1ac{bottom:1019.850000px;}
.y66{bottom:1020.300000px;}
.y13d{bottom:1021.800000px;}
.y7f{bottom:1030.200000px;}
.y1fc{bottom:1031.850000px;}
.y96{bottom:1035.600000px;}
.y213{bottom:1036.050000px;}
.yee{bottom:1040.100000px;}
.y1de{bottom:1040.700000px;}
.y182{bottom:1041.000000px;}
.y10e{bottom:1041.150000px;}
.y1ab{bottom:1041.300000px;}
.y27{bottom:1047.450000px;}
.y65{bottom:1047.600000px;}
.y44{bottom:1047.900000px;}
.y181{bottom:1048.350000px;}
.y13c{bottom:1049.100000px;}
.y7e{bottom:1057.500000px;}
.yce{bottom:1058.700000px;}
.y1fb{bottom:1059.150000px;}
.y1aa{bottom:1063.350000px;}
.y10d{bottom:1064.400000px;}
.yed{bottom:1067.400000px;}
.y1dd{bottom:1068.000000px;}
.y64{bottom:1074.900000px;}
.y95{bottom:1075.950000px;}
.y13b{bottom:1076.400000px;}
.y43{bottom:1078.200000px;}
.y180{bottom:1080.450000px;}
.y7d{bottom:1084.800000px;}
.y1fa{bottom:1086.450000px;}
.ycd{bottom:1087.500000px;}
.y10c{bottom:1087.650000px;}
.y63{bottom:1102.200000px;}
.y13a{bottom:1103.700000px;}
.y17f{bottom:1105.350000px;}
.y1dc{bottom:1106.100000px;}
.y10b{bottom:1110.900000px;}
.yec{bottom:1112.100000px;}
.y94{bottom:1116.450000px;}
.y42{bottom:1126.050000px;}
.ycc{bottom:1128.000000px;}
.y62{bottom:1129.500000px;}
.y17e{bottom:1131.000000px;}
.y10a{bottom:1134.150000px;}
.y139{bottom:1148.400000px;}
.y17d{bottom:1156.200000px;}
.y41{bottom:1156.350000px;}
.y61{bottom:1156.800000px;}
.y109{bottom:1156.950000px;}
.y26{bottom:1161.750000px;}
.y25{bottom:1179.150000px;}
.y40{bottom:1197.150000px;}
.y24{bottom:1198.350000px;}
.h1a{height:32.115234px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.hc{height:32.320312px;}
.h18{height:36.937500px;}
.h1e{height:38.784375px;}
.h19{height:41.554688px;}
.h11{height:41.660156px;}
.hb{height:43.250557px;}
.h14{height:45.878906px;}
.h7{height:45.960000px;}
.h10{height:46.171875px;}
.he{height:47.988281px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.hf{height:49.992188px;}
.h12{height:51.900668px;}
.h13{height:51.901187px;}
.h1b{height:52.579687px;}
.h2{height:55.152000px;}
.h17{height:57.315234px;}
.h15{height:57.915234px;}
.h1c{height:65.737500px;}
.h1d{height:66.337500px;}
.hd{height:66.843750px;}
.h5{height:78.132000px;}
.h16{height:83.115234px;}
.h4{height:119.055004px;}
.ha{height:1262.700000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w3{width:892.500000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:85.200000px;}
.x3e{left:86.400000px;}
.x8{left:89.400000px;}
.x36{left:94.500000px;}
.x3d{left:95.850000px;}
.x2f{left:96.900000px;}
.x37{left:100.500000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x15{left:112.200000px;}
.x19{left:133.500000px;}
.x1e{left:138.150000px;}
.xd{left:139.201485px;}
.x14{left:145.200000px;}
.x1c{left:146.550000px;}
.x35{left:152.400000px;}
.x39{left:166.200000px;}
.x17{left:181.350000px;}
.x2d{left:187.650000px;}
.x1a{left:193.050000px;}
.x3a{left:201.450000px;}
.x4{left:203.484001px;}
.xe{left:207.150000px;}
.x10{left:212.250000px;}
.x3b{left:217.950000px;}
.x38{left:220.800000px;}
.x21{left:224.550000px;}
.x13{left:237.900000px;}
.x2a{left:247.050000px;}
.x22{left:249.150000px;}
.x29{left:252.900000px;}
.x25{left:258.750000px;}
.x16{left:261.900000px;}
.x2c{left:263.550000px;}
.x2b{left:267.300000px;}
.xb{left:268.500000px;}
.x18{left:269.850000px;}
.x23{left:274.500000px;}
.x11{left:275.850000px;}
.x24{left:283.350000px;}
.xa{left:286.500000px;}
.x9{left:294.450000px;}
.x3f{left:316.500000px;}
.x1d{left:318.150000px;}
.x26{left:332.550000px;}
.x2e{left:338.400000px;}
.x27{left:341.400000px;}
.x28{left:345.300000px;}
.x1f{left:359.850000px;}
.x3c{left:371.250000px;}
.x20{left:372.900000px;}
.x6{left:375.000000px;}
.xf{left:390.300000px;}
.x12{left:431.850000px;}
.x3{left:454.959000px;}
.x5{left:472.500000px;}
.x7{left:614.400000px;}
.x30{left:621.900000px;}
.x1b{left:649.500000px;}
.x31{left:684.600000px;}
.x32{left:692.850000px;}
.x34{left:746.100000px;}
.x33{left:749.700000px;}
@media print{
.v3{vertical-align:-4.800000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:22.933333pt;}
.v4{vertical-align:25.600000pt;}
.v2{vertical-align:45.333333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.037333pt;}
.ls2{letter-spacing:0.085333pt;}
.ls3{letter-spacing:0.090667pt;}
.ls6{letter-spacing:0.213333pt;}
.ls5{letter-spacing:56.160000pt;}
.ls4{letter-spacing:77.066667pt;}
.ws4{word-spacing:-36.574153pt;}
.ws21{word-spacing:-18.933333pt;}
.ws5{word-spacing:-18.720000pt;}
.ws1f{word-spacing:-18.186667pt;}
.ws3{word-spacing:-16.564215pt;}
.ws20{word-spacing:-15.724800pt;}
.ws2{word-spacing:-13.333333pt;}
.ws1{word-spacing:-13.104000pt;}
.ws7{word-spacing:-12.768000pt;}
.ws9{word-spacing:-12.730667pt;}
.ws14{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
.ws16{word-spacing:38.021333pt;}
.ws6{word-spacing:38.218667pt;}
.wsa{word-spacing:41.653333pt;}
.wsb{word-spacing:43.221333pt;}
.ws1a{word-spacing:44.752000pt;}
.ws1b{word-spacing:46.912000pt;}
.ws17{word-spacing:47.978667pt;}
.wsc{word-spacing:57.066667pt;}
.ws8{word-spacing:79.130667pt;}
.wse{word-spacing:84.117333pt;}
.wsd{word-spacing:84.245333pt;}
.ws1d{word-spacing:138.197333pt;}
.ws19{word-spacing:148.714667pt;}
.ws11{word-spacing:167.061333pt;}
.ws10{word-spacing:178.773333pt;}
.wsf{word-spacing:191.018667pt;}
.ws15{word-spacing:220.144000pt;}
.ws13{word-spacing:426.544000pt;}
.ws12{word-spacing:648.944000pt;}
.ws1c{word-spacing:873.621333pt;}
.ws1e{word-spacing:972.053333pt;}
.ws18{word-spacing:1276.842667pt;}
._8{margin-left:-14.933333pt;}
._7{margin-left:-11.626667pt;}
._15{margin-left:-10.635861pt;}
._14{margin-left:-8.979423pt;}
._16{margin-left:-7.485596pt;}
._19{margin-left:-6.526313pt;}
._13{margin-left:-5.631889pt;}
._e{margin-left:-4.480000pt;}
._17{margin-left:-3.490608pt;}
._0{margin-left:-2.484632pt;}
._4{margin-left:-1.056281pt;}
._3{width:1.104281pt;}
._1{width:2.429418pt;}
._5{width:3.398371pt;}
._b{width:4.391473pt;}
._9{width:5.824000pt;}
._a{width:6.786582pt;}
._12{width:8.445418pt;}
._2{width:10.214599pt;}
._c{width:11.145120pt;}
._d{width:12.389265pt;}
._11{width:13.632000pt;}
._6{width:15.104000pt;}
._2e{width:16.074667pt;}
._8c{width:17.045333pt;}
._18{width:19.862176pt;}
._8b{width:21.493333pt;}
._f{width:23.104000pt;}
._10{width:24.192000pt;}
._9a{width:25.103965pt;}
._95{width:28.229052pt;}
._97{width:30.218667pt;}
._9d{width:31.384504pt;}
._8d{width:33.173333pt;}
._90{width:35.180614pt;}
._84{width:37.920000pt;}
._8f{width:38.826667pt;}
._85{width:39.786667pt;}
._91{width:41.376281pt;}
._1a{width:42.773333pt;}
._86{width:44.053333pt;}
._99{width:45.280000pt;}
._8e{width:48.330667pt;}
._1b{width:50.768000pt;}
._9b{width:52.165614pt;}
._93{width:57.189052pt;}
._94{width:58.368562pt;}
._59{width:63.466667pt;}
._9c{width:64.842667pt;}
._1c{width:66.394667pt;}
._1f{width:69.994667pt;}
._77{width:71.616000pt;}
._96{width:72.597333pt;}
._44{width:78.799719pt;}
._74{width:80.634667pt;}
._41{width:82.880000pt;}
._40{width:86.080000pt;}
._98{width:89.546667pt;}
._3f{width:92.480000pt;}
._3d{width:94.080000pt;}
._3e{width:95.146667pt;}
._24{width:96.853333pt;}
._2b{width:100.074667pt;}
._7c{width:102.826667pt;}
._89{width:104.000000pt;}
._29{width:111.018667pt;}
._26{width:112.917333pt;}
._92{width:114.880000pt;}
._81{width:118.063719pt;}
._79{width:119.893333pt;}
._27{width:123.584000pt;}
._1e{width:126.442667pt;}
._4c{width:128.490667pt;}
._4a{width:129.600000pt;}
._54{width:130.816000pt;}
._7d{width:131.733333pt;}
._49{width:132.904979pt;}
._46{width:135.016979pt;}
._51{width:136.126313pt;}
._23{width:137.429333pt;}
._55{width:139.178667pt;}
._22{width:140.096000pt;}
._53{width:141.802667pt;}
._72{width:144.554667pt;}
._56{width:146.642930pt;}
._7a{width:148.181895pt;}
._5d{width:150.037333pt;}
._52{width:152.213333pt;}
._28{width:153.109333pt;}
._4b{width:155.413333pt;}
._20{width:157.184000pt;}
._48{width:159.146667pt;}
._1d{width:160.554667pt;}
._5c{width:161.600000pt;}
._4e{width:162.496000pt;}
._5a{width:164.389333pt;}
._4d{width:167.573333pt;}
._47{width:168.746667pt;}
._4f{width:169.706667pt;}
._2a{width:171.797333pt;}
._2c{width:173.184000pt;}
._45{width:174.506667pt;}
._50{width:175.573333pt;}
._60{width:177.706667pt;}
._62{width:181.090608pt;}
._7f{width:182.826667pt;}
._25{width:186.517333pt;}
._65{width:188.800000pt;}
._66{width:190.933333pt;}
._37{width:195.413333pt;}
._21{width:199.850667pt;}
._32{width:204.373333pt;}
._3c{width:206.613333pt;}
._80{width:211.818667pt;}
._2d{width:213.440000pt;}
._31{width:215.040000pt;}
._8a{width:234.880000pt;}
._88{width:248.640000pt;}
._82{width:253.896703pt;}
._78{width:259.197893pt;}
._61{width:273.632843pt;}
._3b{width:311.146667pt;}
._3a{width:315.946667pt;}
._43{width:320.640000pt;}
._42{width:322.240000pt;}
._63{width:362.736281pt;}
._67{width:410.197333pt;}
._36{width:411.946667pt;}
._38{width:414.506667pt;}
._6d{width:442.138948pt;}
._76{width:462.709333pt;}
._83{width:483.139650pt;}
._75{width:484.661333pt;}
._70{width:486.670598pt;}
._6c{width:491.444632pt;}
._68{width:495.487580pt;}
._5f{width:511.178948pt;}
._35{width:522.346667pt;}
._33{width:525.973333pt;}
._39{width:527.040000pt;}
._71{width:538.039577pt;}
._30{width:544.106667pt;}
._87{width:550.325333pt;}
._6f{width:556.959861pt;}
._6a{width:571.728000pt;}
._6e{width:587.336840pt;}
._73{width:592.791692pt;}
._57{width:597.797333pt;}
._58{width:599.776000pt;}
._7e{width:696.442667pt;}
._34{width:749.973333pt;}
._2f{width:758.506667pt;}
._69{width:768.629614pt;}
._64{width:795.065685pt;}
._7b{width:880.216698pt;}
._5e{width:889.893333pt;}
._6b{width:905.930528pt;}
._5b{width:940.255299pt;}
.fsb{font-size:30.933333pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fsc{font-size:44.800000pt;}
.fsa{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs5{font-size:55.214051pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:66.256861pt;}
.fs8{font-size:66.257523pt;}
.fs6{font-size:85.333333pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:0.133333pt;}
.y3f{bottom:47.200000pt;}
.y5{bottom:59.133337pt;}
.ycb{bottom:77.200000pt;}
.yeb{bottom:80.933333pt;}
.yb0{bottom:81.600000pt;}
.y7c{bottom:84.000000pt;}
.y4{bottom:86.333337pt;}
.y1ca{bottom:90.266667pt;}
.y1f9{bottom:91.733333pt;}
.yca{bottom:102.933333pt;}
.y7b{bottom:108.266667pt;}
.y1c9{bottom:114.533333pt;}
.y1f8{bottom:116.000000pt;}
.y3e{bottom:116.533333pt;}
.y165{bottom:117.466667pt;}
.yea{bottom:119.066667pt;}
.yaf{bottom:119.733333pt;}
.y22{bottom:123.790666pt;}
.y19e{bottom:124.266667pt;}
.y229{bottom:124.933333pt;}
.y93{bottom:128.933333pt;}
.y60{bottom:132.533333pt;}
.y1c8{bottom:138.800000pt;}
.y1f7{bottom:140.266667pt;}
.y164{bottom:141.733333pt;}
.y228{bottom:141.866667pt;}
.yc9{bottom:142.666667pt;}
.y3d{bottom:143.600000pt;}
.y1a9{bottom:144.933333pt;}
.y1db{bottom:146.666667pt;}
.y212{bottom:150.666667pt;}
.y5f{bottom:156.800000pt;}
.ye9{bottom:157.066667pt;}
.yae{bottom:157.733333pt;}
.y152{bottom:158.933333pt;}
.y19d{bottom:162.400000pt;}
.y92{bottom:164.933333pt;}
.y163{bottom:166.000000pt;}
.y17c{bottom:167.466667pt;}
.y1da{bottom:167.600000pt;}
.y7a{bottom:172.266667pt;}
.y211{bottom:174.933333pt;}
.y19{bottom:175.052000pt;}
.y227{bottom:175.866667pt;}
.yc8{bottom:178.533333pt;}
.y5e{bottom:181.066667pt;}
.y151{bottom:183.200000pt;}
.y3c{bottom:186.000000pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y162{bottom:190.266667pt;}
.y1d9{bottom:191.866667pt;}
.yad{bottom:193.733333pt;}
.y17b{bottom:194.000000pt;}
.y79{bottom:196.533333pt;}
.ye8{bottom:196.800000pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y19c{bottom:200.400000pt;}
.y91{bottom:200.800000pt;}
.y1c7{bottom:202.800000pt;}
.yc7{bottom:204.266667pt;}
.y5d{bottom:205.333333pt;}
.y150{bottom:207.466667pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y3b{bottom:213.066667pt;}
.y108{bottom:213.466667pt;}
.y210{bottom:214.000000pt;}
.y161{bottom:214.533333pt;}
.y17a{bottom:216.133333pt;}
.y78{bottom:220.800000pt;}
.ye7{bottom:221.066667pt;}
.y1d8{bottom:225.733333pt;}
.y1c6{bottom:227.066667pt;}
.y5c{bottom:229.600000pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y14f{bottom:231.733333pt;}
.y107{bottom:237.733333pt;}
.y179{bottom:238.266667pt;}
.y160{bottom:238.800000pt;}
.y1f6{bottom:239.600000pt;}
.y3a{bottom:240.000000pt;}
.y19b{bottom:240.133333pt;}
.y90{bottom:240.533333pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.yc6{bottom:242.266667pt;}
.y77{bottom:245.066667pt;}
.ye6{bottom:245.333333pt;}
.y1d7{bottom:246.533333pt;}
.y226{bottom:248.133333pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y5b{bottom:253.866667pt;}
.y14e{bottom:256.000000pt;}
.y178{bottom:260.400000pt;}
.y106{bottom:262.000000pt;}
.y15f{bottom:263.066667pt;}
.y1f5{bottom:263.866667pt;}
.y19a{bottom:264.400000pt;}
.y8f{bottom:264.800000pt;}
.yac{bottom:265.600000pt;}
.y1c5{bottom:266.800000pt;}
.y76{bottom:269.333333pt;}
.ye5{bottom:269.600000pt;}
.y1d6{bottom:270.800000pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y20f{bottom:276.533333pt;}
.y5a{bottom:278.133333pt;}
.yc5{bottom:278.266667pt;}
.y39{bottom:282.533333pt;}
.y105{bottom:286.266667pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y15e{bottom:287.333333pt;}
.y199{bottom:288.666667pt;}
.y8e{bottom:289.066667pt;}
.y75{bottom:293.600000pt;}
.y14d{bottom:295.733333pt;}
.y1f4{bottom:299.466667pt;}
.y123{bottom:299.733333pt;}
.y20e{bottom:300.800000pt;}
.yab{bottom:301.466667pt;}
.y59{bottom:302.400000pt;}
.yc4{bottom:303.866667pt;}
.y177{bottom:304.666667pt;}
.y1d5{bottom:306.400000pt;}
.ye4{bottom:309.333333pt;}
.y10{bottom:309.452000pt;}
.y38{bottom:309.466667pt;}
.y104{bottom:310.533333pt;}
.y15d{bottom:311.600000pt;}
.y8d{bottom:313.333333pt;}
.y74{bottom:317.866667pt;}
.y14c{bottom:320.000000pt;}
.y1f3{bottom:323.733333pt;}
.y122{bottom:324.000000pt;}
.y176{bottom:326.800000pt;}
.y198{bottom:328.400000pt;}
.y1d4{bottom:330.666667pt;}
.y225{bottom:332.400000pt;}
.ye3{bottom:333.600000pt;}
.y103{bottom:334.800000pt;}
.y37{bottom:336.533333pt;}
.y138{bottom:337.600000pt;}
.y20d{bottom:339.066667pt;}
.yaa{bottom:341.200000pt;}
.y58{bottom:342.133333pt;}
.yc3{bottom:343.600000pt;}
.yf{bottom:343.809333pt;}
.y14b{bottom:344.266667pt;}
.y1c4{bottom:346.266667pt;}
.y121{bottom:348.266667pt;}
.y175{bottom:348.933333pt;}
.y15c{bottom:351.333333pt;}
.y197{bottom:352.666667pt;}
.y8c{bottom:353.066667pt;}
.y224{bottom:356.666667pt;}
.ye2{bottom:357.866667pt;}
.y102{bottom:359.066667pt;}
.y1f2{bottom:359.333333pt;}
.ye{bottom:362.706666pt;}
.y137{bottom:363.333333pt;}
.y36{bottom:363.466667pt;}
.ya9{bottom:365.466667pt;}
.y57{bottom:366.400000pt;}
.y14a{bottom:368.533333pt;}
.y1c3{bottom:370.533333pt;}
.y174{bottom:371.066667pt;}
.y196{bottom:376.933333pt;}
.yc2{bottom:379.600000pt;}
.y223{bottom:380.933333pt;}
.ye1{bottom:382.133333pt;}
.y1f1{bottom:383.600000pt;}
.y136{bottom:384.000000pt;}
.y20c{bottom:387.600000pt;}
.y120{bottom:388.000000pt;}
.ya8{bottom:389.733333pt;}
.y35{bottom:390.533333pt;}
.y56{bottom:390.666667pt;}
.y149{bottom:392.800000pt;}
.y173{bottom:393.200000pt;}
.y1c2{bottom:394.800000pt;}
.y101{bottom:398.800000pt;}
.y195{bottom:401.200000pt;}
.y135{bottom:404.666667pt;}
.yc1{bottom:405.200000pt;}
.ye0{bottom:406.400000pt;}
.y1f0{bottom:407.866667pt;}
.y11f{bottom:412.266667pt;}
.ya7{bottom:414.000000pt;}
.y55{bottom:414.933333pt;}
.y172{bottom:415.333333pt;}
.y148{bottom:417.066667pt;}
.y34{bottom:417.466667pt;}
.y222{bottom:418.933333pt;}
.y1c1{bottom:419.066667pt;}
.y100{bottom:423.066667pt;}
.y134{bottom:425.333333pt;}
.y20b{bottom:425.866667pt;}
.ydf{bottom:430.666667pt;}
.y15b{bottom:430.800000pt;}
.y8b{bottom:432.533333pt;}
.y11e{bottom:436.533333pt;}
.y171{bottom:437.466667pt;}
.y54{bottom:439.200000pt;}
.y221{bottom:439.733333pt;}
.y194{bottom:440.933333pt;}
.yc0{bottom:441.200000pt;}
.y1c0{bottom:443.333333pt;}
.y1ef{bottom:443.466667pt;}
.y133{bottom:446.000000pt;}
.yd{bottom:446.990669pt;}
.y1d3{bottom:448.000000pt;}
.y20a{bottom:450.133333pt;}
.ya6{bottom:453.733333pt;}
.yde{bottom:454.933333pt;}
.y15a{bottom:455.066667pt;}
.y8a{bottom:456.800000pt;}
.y170{bottom:459.600000pt;}
.y33{bottom:460.000000pt;}
.yff{bottom:462.800000pt;}
.yc{bottom:462.990669pt;}
.y53{bottom:463.466667pt;}
.y220{bottom:464.000000pt;}
.y132{bottom:466.666667pt;}
.ybf{bottom:466.800000pt;}
.y1ee{bottom:467.733333pt;}
.y1d2{bottom:472.266667pt;}
.y209{bottom:474.400000pt;}
.y11d{bottom:476.266667pt;}
.yb{bottom:478.990666pt;}
.ydd{bottom:479.200000pt;}
.y159{bottom:479.333333pt;}
.y193{bottom:480.666667pt;}
.y89{bottom:481.066667pt;}
.y16f{bottom:481.733333pt;}
.y32{bottom:486.933333pt;}
.y131{bottom:487.333333pt;}
.y73{bottom:487.733333pt;}
.ya{bottom:494.990666pt;}
.y1d1{bottom:496.533333pt;}
.y11c{bottom:500.533333pt;}
.y21f{bottom:502.000000pt;}
.ybe{bottom:502.800000pt;}
.y52{bottom:503.200000pt;}
.y1ed{bottom:503.333333pt;}
.y158{bottom:503.600000pt;}
.y16e{bottom:503.866667pt;}
.y192{bottom:504.933333pt;}
.y88{bottom:505.333333pt;}
.y130{bottom:508.000000pt;}
.y72{bottom:512.000000pt;}
.y208{bottom:512.666667pt;}
.y31{bottom:514.000000pt;}
.ydc{bottom:518.933333pt;}
.y1bf{bottom:519.333333pt;}
.y1d0{bottom:520.800000pt;}
.y21e{bottom:522.933333pt;}
.y16d{bottom:526.000000pt;}
.y51{bottom:527.466667pt;}
.y1ec{bottom:527.600000pt;}
.ybd{bottom:528.400000pt;}
.y12f{bottom:528.666667pt;}
.y191{bottom:529.200000pt;}
.y87{bottom:529.600000pt;}
.ya5{bottom:532.133333pt;}
.y71{bottom:536.266667pt;}
.y11b{bottom:540.266667pt;}
.y30{bottom:540.933333pt;}
.yfe{bottom:541.200000pt;}
.ydb{bottom:543.200000pt;}
.y157{bottom:543.333333pt;}
.y1be{bottom:544.266667pt;}
.y1cf{bottom:545.066667pt;}
.y21d{bottom:547.200000pt;}
.y16c{bottom:548.133333pt;}
.y207{bottom:549.200000pt;}
.y12e{bottom:549.333333pt;}
.y50{bottom:551.733333pt;}
.y190{bottom:553.466667pt;}
.y86{bottom:553.866667pt;}
.y9{bottom:556.986668pt;}
.ya4{bottom:557.866667pt;}
.y70{bottom:560.533333pt;}
.y1eb{bottom:561.466667pt;}
.y1bd{bottom:563.333333pt;}
.y11a{bottom:564.533333pt;}
.yfd{bottom:566.933333pt;}
.yda{bottom:567.466667pt;}
.y156{bottom:567.600000pt;}
.y2f{bottom:568.000000pt;}
.ybc{bottom:568.133333pt;}
.y1ce{bottom:569.333333pt;}
.y12d{bottom:570.000000pt;}
.y16b{bottom:570.266667pt;}
.y8{bottom:573.786667pt;}
.y4f{bottom:576.000000pt;}
.y85{bottom:578.133333pt;}
.ya3{bottom:578.533333pt;}
.y1ea{bottom:582.266667pt;}
.y1bc{bottom:582.400000pt;}
.y6f{bottom:584.800000pt;}
.y21c{bottom:586.933333pt;}
.yfc{bottom:587.600000pt;}
.y12c{bottom:590.666667pt;}
.yd9{bottom:591.733333pt;}
.y155{bottom:591.866667pt;}
.ybb{bottom:592.400000pt;}
.y7{bottom:592.685334pt;}
.y18f{bottom:593.200000pt;}
.y147{bottom:593.600000pt;}
.y206{bottom:594.266667pt;}
.y2e{bottom:594.933333pt;}
.ya2{bottom:599.200000pt;}
.y4e{bottom:600.266667pt;}
.y1bb{bottom:601.466667pt;}
.y119{bottom:604.266667pt;}
.y1e9{bottom:606.533333pt;}
.yfb{bottom:608.266667pt;}
.y83{bottom:609.066667pt;}
.y21b{bottom:611.200000pt;}
.y12b{bottom:611.333333pt;}
.y16a{bottom:614.533333pt;}
.yd8{bottom:616.000000pt;}
.y154{bottom:616.133333pt;}
.y1a8{bottom:616.266667pt;}
.yba{bottom:616.666667pt;}
.y84{bottom:617.866667pt;}
.y205{bottom:618.533333pt;}
.ya1{bottom:619.866667pt;}
.y1ba{bottom:620.533333pt;}
.y169{bottom:621.066667pt;}
.y4d{bottom:624.533333pt;}
.y118{bottom:628.533333pt;}
.yfa{bottom:628.933333pt;}
.y12a{bottom:632.000000pt;}
.y82{bottom:633.333333pt;}
.y2d{bottom:637.466667pt;}
.y1b9{bottom:639.600000pt;}
.yd7{bottom:640.266667pt;}
.ya0{bottom:640.533333pt;}
.yb9{bottom:640.933333pt;}
.y1e8{bottom:642.133333pt;}
.y6{bottom:645.598667pt;}
.y4c{bottom:648.800000pt;}
.yf9{bottom:649.600000pt;}
.y21a{bottom:650.933333pt;}
.y129{bottom:652.266667pt;}
.y117{bottom:652.800000pt;}
.y204{bottom:656.800000pt;}
.y81{bottom:657.600000pt;}
.y1b8{bottom:658.666667pt;}
.y9f{bottom:660.933333pt;}
.yd6{bottom:664.533333pt;}
.y1a7{bottom:664.800000pt;}
.y1e7{bottom:666.400000pt;}
.y9e{bottom:666.533333pt;}
.y3{bottom:668.977329pt;}
.y18e{bottom:669.200000pt;}
.yf8{bottom:670.266667pt;}
.y4b{bottom:673.066667pt;}
.y167{bottom:673.200000pt;}
.y219{bottom:675.200000pt;}
.y116{bottom:677.066667pt;}
.y1b7{bottom:677.733333pt;}
.y166{bottom:678.933333pt;}
.yb8{bottom:680.666667pt;}
.y203{bottom:681.066667pt;}
.y1cd{bottom:681.866667pt;}
.y168{bottom:684.533333pt;}
.yd5{bottom:688.800000pt;}
.yf7{bottom:690.933333pt;}
.y153{bottom:694.533333pt;}
.y18d{bottom:695.733333pt;}
.y1b6{bottom:696.800000pt;}
.y6e{bottom:697.333333pt;}
.y1e6{bottom:700.266667pt;}
.y115{bottom:701.333333pt;}
.y1a6{bottom:704.533333pt;}
.y202{bottom:705.333333pt;}
.y1cc{bottom:706.133333pt;}
.y2c{bottom:710.800000pt;}
.yf6{bottom:711.333333pt;}
.y4a{bottom:712.800000pt;}
.yd4{bottom:713.066667pt;}
.y218{bottom:714.933333pt;}
.y9d{bottom:715.600000pt;}
.y1b5{bottom:715.866667pt;}
.y18c{bottom:717.866667pt;}
.y1e5{bottom:721.200000pt;}
.y6d{bottom:721.600000pt;}
.y2b{bottom:725.866667pt;}
.y1a5{bottom:728.800000pt;}
.y1cb{bottom:730.400000pt;}
.y128{bottom:734.400000pt;}
.y1b4{bottom:734.933333pt;}
.y49{bottom:737.066667pt;}
.yd3{bottom:737.333333pt;}
.y9c{bottom:739.866667pt;}
.y18b{bottom:740.000000pt;}
.y114{bottom:741.066667pt;}
.y201{bottom:743.600000pt;}
.y1e4{bottom:745.466667pt;}
.y6c{bottom:745.866667pt;}
.y18a{bottom:746.533333pt;}
.y1a4{bottom:753.066667pt;}
.y1b3{bottom:754.000000pt;}
.yf5{bottom:754.666667pt;}
.y2a{bottom:757.200000pt;}
.yb7{bottom:759.066667pt;}
.y127{bottom:760.133333pt;}
.y48{bottom:761.333333pt;}
.y143{bottom:762.666667pt;}
.y9b{bottom:764.133333pt;}
.y200{bottom:767.866667pt;}
.y6b{bottom:770.133333pt;}
.y1b2{bottom:773.066667pt;}
.y189{bottom:775.066667pt;}
.yd2{bottom:777.066667pt;}
.y1a3{bottom:777.333333pt;}
.yf4{bottom:778.933333pt;}
.y126{bottom:780.800000pt;}
.y1e3{bottom:781.066667pt;}
.y2{bottom:781.661334pt;}
.yb6{bottom:784.800000pt;}
.y47{bottom:785.600000pt;}
.y142{bottom:786.933333pt;}
.y9a{bottom:788.400000pt;}
.y1b1{bottom:792.133333pt;}
.y6a{bottom:794.400000pt;}
.y188{bottom:797.200000pt;}
.y29{bottom:799.333333pt;}
.y125{bottom:801.466667pt;}
.y1a2{bottom:801.600000pt;}
.yf3{bottom:803.200000pt;}
.y1e2{bottom:805.333333pt;}
.yb5{bottom:805.466667pt;}
.y46{bottom:809.866667pt;}
.y141{bottom:811.200000pt;}
.y217{bottom:816.933333pt;}
.y113{bottom:817.066667pt;}
.y69{bottom:818.666667pt;}
.y187{bottom:819.333333pt;}
.y124{bottom:822.133333pt;}
.y99{bottom:824.400000pt;}
.y1a1{bottom:825.866667pt;}
.yb4{bottom:826.133333pt;}
.yf2{bottom:827.466667pt;}
.y1b0{bottom:830.266667pt;}
.y1ff{bottom:830.400000pt;}
.y146{bottom:834.133333pt;}
.y140{bottom:835.466667pt;}
.y216{bottom:837.733333pt;}
.y1e1{bottom:840.933333pt;}
.y28{bottom:841.733333pt;}
.y112{bottom:842.800000pt;}
.y68{bottom:842.933333pt;}
.y186{bottom:843.733333pt;}
.yb3{bottom:846.800000pt;}
.y98{bottom:848.666667pt;}
.y1af{bottom:849.333333pt;}
.y45{bottom:849.600000pt;}
.y185{bottom:850.266667pt;}
.yf1{bottom:851.733333pt;}
.y1fe{bottom:854.666667pt;}
.yd1{bottom:856.533333pt;}
.y145{bottom:858.400000pt;}
.y1{bottom:859.312000pt;}
.y13f{bottom:859.733333pt;}
.y215{bottom:862.000000pt;}
.y111{bottom:863.466667pt;}
.y1a0{bottom:863.866667pt;}
.y1e0{bottom:865.200000pt;}
.y67{bottom:867.200000pt;}
.yb2{bottom:867.466667pt;}
.y1ae{bottom:868.400000pt;}
.yf0{bottom:876.000000pt;}
.y1fd{bottom:878.933333pt;}
.yd0{bottom:880.800000pt;}
.y184{bottom:881.066667pt;}
.y144{bottom:882.666667pt;}
.y13e{bottom:884.000000pt;}
.y110{bottom:884.133333pt;}
.y97{bottom:884.533333pt;}
.y1ad{bottom:887.466667pt;}
.yb1{bottom:887.866667pt;}
.y1df{bottom:889.466667pt;}
.y80{bottom:891.466667pt;}
.y214{bottom:900.000000pt;}
.yef{bottom:900.266667pt;}
.y19f{bottom:902.000000pt;}
.y183{bottom:903.200000pt;}
.y10f{bottom:904.800000pt;}
.ycf{bottom:905.066667pt;}
.y1ac{bottom:906.533333pt;}
.y66{bottom:906.933333pt;}
.y13d{bottom:908.266667pt;}
.y7f{bottom:915.733333pt;}
.y1fc{bottom:917.200000pt;}
.y96{bottom:920.533333pt;}
.y213{bottom:920.933333pt;}
.yee{bottom:924.533333pt;}
.y1de{bottom:925.066667pt;}
.y182{bottom:925.333333pt;}
.y10e{bottom:925.466667pt;}
.y1ab{bottom:925.600000pt;}
.y27{bottom:931.066667pt;}
.y65{bottom:931.200000pt;}
.y44{bottom:931.466667pt;}
.y181{bottom:931.866667pt;}
.y13c{bottom:932.533333pt;}
.y7e{bottom:940.000000pt;}
.yce{bottom:941.066667pt;}
.y1fb{bottom:941.466667pt;}
.y1aa{bottom:945.200000pt;}
.y10d{bottom:946.133333pt;}
.yed{bottom:948.800000pt;}
.y1dd{bottom:949.333333pt;}
.y64{bottom:955.466667pt;}
.y95{bottom:956.400000pt;}
.y13b{bottom:956.800000pt;}
.y43{bottom:958.400000pt;}
.y180{bottom:960.400000pt;}
.y7d{bottom:964.266667pt;}
.y1fa{bottom:965.733333pt;}
.ycd{bottom:966.666667pt;}
.y10c{bottom:966.800000pt;}
.y63{bottom:979.733333pt;}
.y13a{bottom:981.066667pt;}
.y17f{bottom:982.533333pt;}
.y1dc{bottom:983.200000pt;}
.y10b{bottom:987.466667pt;}
.yec{bottom:988.533333pt;}
.y94{bottom:992.400000pt;}
.y42{bottom:1000.933333pt;}
.ycc{bottom:1002.666667pt;}
.y62{bottom:1004.000000pt;}
.y17e{bottom:1005.333333pt;}
.y10a{bottom:1008.133333pt;}
.y139{bottom:1020.800000pt;}
.y17d{bottom:1027.733333pt;}
.y41{bottom:1027.866667pt;}
.y61{bottom:1028.266667pt;}
.y109{bottom:1028.400000pt;}
.y26{bottom:1032.666667pt;}
.y25{bottom:1048.133333pt;}
.y40{bottom:1064.133333pt;}
.y24{bottom:1065.200000pt;}
.h1a{height:28.546875pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.hc{height:28.729167pt;}
.h18{height:32.833333pt;}
.h1e{height:34.475000pt;}
.h19{height:36.937500pt;}
.h11{height:37.031250pt;}
.hb{height:38.444940pt;}
.h14{height:40.781250pt;}
.h7{height:40.853333pt;}
.h10{height:41.041667pt;}
.he{height:42.656250pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.hf{height:44.437500pt;}
.h12{height:46.133927pt;}
.h13{height:46.134389pt;}
.h1b{height:46.737500pt;}
.h2{height:49.024000pt;}
.h17{height:50.946875pt;}
.h15{height:51.480208pt;}
.h1c{height:58.433333pt;}
.h1d{height:58.966667pt;}
.hd{height:59.416667pt;}
.h5{height:69.450667pt;}
.h16{height:73.880208pt;}
.h4{height:105.826671pt;}
.ha{height:1122.400000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w3{width:793.333333pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:75.733333pt;}
.x3e{left:76.800000pt;}
.x8{left:79.466667pt;}
.x36{left:84.000000pt;}
.x3d{left:85.200000pt;}
.x2f{left:86.133333pt;}
.x37{left:89.333333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x15{left:99.733333pt;}
.x19{left:118.666667pt;}
.x1e{left:122.800000pt;}
.xd{left:123.734653pt;}
.x14{left:129.066667pt;}
.x1c{left:130.266667pt;}
.x35{left:135.466667pt;}
.x39{left:147.733333pt;}
.x17{left:161.200000pt;}
.x2d{left:166.800000pt;}
.x1a{left:171.600000pt;}
.x3a{left:179.066667pt;}
.x4{left:180.874667pt;}
.xe{left:184.133333pt;}
.x10{left:188.666667pt;}
.x3b{left:193.733333pt;}
.x38{left:196.266667pt;}
.x21{left:199.600000pt;}
.x13{left:211.466667pt;}
.x2a{left:219.600000pt;}
.x22{left:221.466667pt;}
.x29{left:224.800000pt;}
.x25{left:230.000000pt;}
.x16{left:232.800000pt;}
.x2c{left:234.266667pt;}
.x2b{left:237.600000pt;}
.xb{left:238.666667pt;}
.x18{left:239.866667pt;}
.x23{left:244.000000pt;}
.x11{left:245.200000pt;}
.x24{left:251.866667pt;}
.xa{left:254.666667pt;}
.x9{left:261.733333pt;}
.x3f{left:281.333333pt;}
.x1d{left:282.800000pt;}
.x26{left:295.600000pt;}
.x2e{left:300.800000pt;}
.x27{left:303.466667pt;}
.x28{left:306.933333pt;}
.x1f{left:319.866667pt;}
.x3c{left:330.000000pt;}
.x20{left:331.466667pt;}
.x6{left:333.333333pt;}
.xf{left:346.933333pt;}
.x12{left:383.866667pt;}
.x3{left:404.408000pt;}
.x5{left:420.000000pt;}
.x7{left:546.133333pt;}
.x30{left:552.800000pt;}
.x1b{left:577.333333pt;}
.x31{left:608.533333pt;}
.x32{left:615.866667pt;}
.x34{left:663.200000pt;}
.x33{left:666.400000pt;}
}




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