
    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_706725d78b7e61c6f525d0bc.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_ce646cd6a884e08c15b8f9d1.woff')format("woff");}.ff2{font-family:ff2;line-height:1.402354;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_b11593cfb55a9cab1e11bbcb.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_b0b15e2014e9299aee880581.woff')format("woff");}.ff4{font-family:ff4;line-height:0.690918;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_2708fd9fd160649447b04223.woff')format("woff");}.ff5{font-family:ff5;line-height:1.035156;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_12c912b106098276d68a5139.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_d53a2015f92a38ea19c586e7.woff')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_a07afe1b1823860ac453566f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.737793;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_d4d32e775b6cfc6443a491ca.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_7f012be1ff38867aa96440b1.woff')format("woff");}.ffa{font-family:ffa;line-height:0.938965;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_0ee1b5ee5b46de28c361c517.woff')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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_cb831bfc45030f6d94299355.woff')format("woff");}.ffc{font-family:ffc;line-height:1.003906;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_9f3d160cd7ee1cfa625ce6fd.woff')format("woff");}.ffd{font-family:ffd;line-height:0.908203;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_863fa374908edd152982e486.woff')format("woff");}.ffe{font-family:ffe;line-height:1.284668;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:fff;src:url('chunks/assets/font_9b03f4b4327374dcb79e06db.woff')format("woff");}.fff{font-family:fff;line-height:1.432129;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:ff10;src:url('chunks/assets/font_e3c7f18ac1397c0feaf0a361.woff')format("woff");}.ff10{font-family:ff10;line-height:0.921387;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:ff11;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff11{font-family:ff11;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_17e629ce363ae1ecd579d622.woff')format("woff");}.ff12{font-family:ff12;line-height:1.402354;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:ff13;src:url('chunks/assets/font_f926e9e86bd68a989e7d8198.woff')format("woff");}.ff13{font-family:ff13;line-height:0.932617;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:ff14;src:url('chunks/assets/font_6ec991cdc411e42159612123.woff')format("woff");}.ff14{font-family:ff14;line-height:0.767578;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m3{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);}
.v5{vertical-align:-61.920000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.120000px;}
.v3{vertical-align:18.000000px;}
.v6{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.lsa{letter-spacing:-0.540000px;}
.ls2a{letter-spacing:-0.460200px;}
.lsd{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.223800px;}
.lse{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.206400px;}
.ls16{letter-spacing:-0.181200px;}
.ls8{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.045360px;}
.ls25{letter-spacing:0.089400px;}
.ls17{letter-spacing:0.106560px;}
.ls15{letter-spacing:0.106800px;}
.lsf{letter-spacing:0.108000px;}
.ls1d{letter-spacing:0.129600px;}
.ls1a{letter-spacing:0.135600px;}
.ls4{letter-spacing:0.144720px;}
.ls20{letter-spacing:0.149760px;}
.ls5{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.181200px;}
.ls24{letter-spacing:0.206640px;}
.ls1c{letter-spacing:0.223800px;}
.ls12{letter-spacing:0.259800px;}
.ls22{letter-spacing:0.259920px;}
.ls26{letter-spacing:0.269400px;}
.ls2b{letter-spacing:0.298800px;}
.ls1b{letter-spacing:0.343920px;}
.ls6{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.493920px;}
.ls28{letter-spacing:0.498960px;}
.ls29{letter-spacing:0.499200px;}
.lsc{letter-spacing:0.569400px;}
.ls14{letter-spacing:0.876000px;}
.ls13{letter-spacing:0.900000px;}
.ls21{letter-spacing:1.620000px;}
.ls27{letter-spacing:8.100000px;}
.ls19{letter-spacing:18.180000px;}
.ls1e{letter-spacing:18.269280px;}
.ls18{letter-spacing:22.500000px;}
.ls23{letter-spacing:26.100000px;}
.ls2c{letter-spacing:26.772480px;}
.ls10{letter-spacing:28.980000px;}
.ls3{letter-spacing:47.700000px;}
.ls2{letter-spacing:71.280000px;}
.ls1{letter-spacing:72.000000px;}
.ls0{letter-spacing:72.720000px;}
.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;}
}
.wse{word-spacing:-18.000000px;}
.wsa{word-spacing:-16.560000px;}
.wsb{word-spacing:-15.300000px;}
.ws1c{word-spacing:-15.238800px;}
.wsd{word-spacing:-15.199800px;}
.wsc{word-spacing:-14.940000px;}
.ws1a{word-spacing:-14.719200px;}
.ws1b{word-spacing:-14.479800px;}
.ws19{word-spacing:-14.220000px;}
.ws9{word-spacing:-13.860000px;}
.ws5{word-spacing:-13.500000px;}
.ws11{word-spacing:-13.140000px;}
.ws3{word-spacing:-12.420000px;}
.ws18{word-spacing:-12.329400px;}
.ws14{word-spacing:-12.283800px;}
.ws2{word-spacing:-12.241200px;}
.ws16{word-spacing:-12.105360px;}
.ws10{word-spacing:-12.060000px;}
.wsf{word-spacing:-11.878800px;}
.ws13{word-spacing:-11.836200px;}
.ws15{word-spacing:-11.700000px;}
.ws4{word-spacing:-10.950480px;}
.ws17{word-spacing:-10.529400px;}
.ws7{word-spacing:-10.440000px;}
.ws12{word-spacing:-9.720000px;}
.ws6{word-spacing:-9.000000px;}
.ws1{word-spacing:-7.560000px;}
.ws8{word-spacing:0.000000px;}
.ws0{word-spacing:60.840000px;}
._5{margin-left:-59.580000px;}
._30{margin-left:-26.726640px;}
._2c{margin-left:-17.957280px;}
._27{margin-left:-3.656160px;}
._1a{margin-left:-2.386800px;}
._2{margin-left:-1.324800px;}
._0{width:1.044000px;}
._1{width:2.424480px;}
._1b{width:3.799200px;}
._1c{width:4.843440px;}
._14{width:5.856480px;}
._d{width:6.932160px;}
._18{width:8.353920px;}
._9{width:9.459120px;}
._8{width:10.756800px;}
._19{width:12.474000px;}
._11{width:13.625280px;}
._1e{width:16.374240px;}
._13{width:17.730720px;}
._26{width:18.784800px;}
._15{width:19.830240px;}
._c{width:21.095280px;}
._17{width:22.212720px;}
._e{width:23.306400px;}
._7{width:24.860160px;}
._f{width:26.064960px;}
._10{width:27.681360px;}
._12{width:28.923840px;}
._21{width:30.210480px;}
._25{width:31.953600px;}
._24{width:33.166800px;}
._2e{width:34.365600px;}
._2a{width:35.377920px;}
._29{width:37.290240px;}
._28{width:38.664720px;}
._a{width:39.694320px;}
._b{width:40.935600px;}
._22{width:44.700480px;}
._23{width:46.194480px;}
._2b{width:47.702160px;}
._2d{width:49.421520px;}
._1f{width:51.453360px;}
._20{width:52.831440px;}
._2f{width:55.636560px;}
._34{width:59.879520px;}
._31{width:63.823680px;}
._3{width:65.496000px;}
._16{width:66.990960px;}
._33{width:86.950800px;}
._32{width:125.256000px;}
._4{width:199.620000px;}
._1d{width:282.270000px;}
._6{width:755.976000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fs12{font-size:6.000000px;}
.fsd{font-size:18.000000px;}
.fsc{font-size:23.760000px;}
.fsf{font-size:27.360000px;}
.fs6{font-size:30.240000px;}
.fse{font-size:36.000000px;}
.fsb{font-size:37.946952px;}
.fs10{font-size:38.880000px;}
.fs0{font-size:41.760000px;}
.fsa{font-size:45.360000px;}
.fs7{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs11{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y6f{bottom:-251.670000px;}
.y6e{bottom:-217.830000px;}
.y6d{bottom:-184.170000px;}
.y7e{bottom:-168.150000px;}
.y6c{bottom:-150.330000px;}
.y7d{bottom:-134.310000px;}
.y6b{bottom:-116.670000px;}
.y7c{bottom:-100.650000px;}
.y6a{bottom:-82.830000px;}
.y7b{bottom:-66.810000px;}
.y69{bottom:-49.140000px;}
.y7a{bottom:-33.105000px;}
.y62{bottom:-28.650000px;}
.y3d{bottom:-27.180000px;}
.y80{bottom:-17.922750px;}
.y68{bottom:-15.480000px;}
.y0{bottom:0.000000px;}
.y79{bottom:0.555000px;}
.y24e{bottom:1.837500px;}
.y67{bottom:2.520000px;}
.y2{bottom:3.960000px;}
.y125{bottom:4.665000px;}
.y122{bottom:4.680000px;}
.y123{bottom:4.845000px;}
.y133{bottom:4.860000px;}
.y168{bottom:5.025000px;}
.y3c{bottom:5.040000px;}
.y61{bottom:5.580000px;}
.y18f{bottom:7.740000px;}
.y190{bottom:7.920000px;}
.y15d{bottom:9.180000px;}
.y19e{bottom:10.080000px;}
.y58{bottom:10.245000px;}
.y192{bottom:10.620000px;}
.y13d{bottom:10.800000px;}
.y197{bottom:10.965000px;}
.y19a{bottom:10.980000px;}
.y198{bottom:11.145000px;}
.y16d{bottom:11.160000px;}
.y163{bottom:11.340000px;}
.y160{bottom:11.520000px;}
.y7{bottom:12.420000px;}
.y14f{bottom:12.585000px;}
.y150{bottom:12.765000px;}
.y142{bottom:12.780000px;}
.y13f{bottom:12.960000px;}
.y15c{bottom:13.140000px;}
.y4{bottom:13.500000px;}
.y3{bottom:13.680000px;}
.y166{bottom:13.905000px;}
.y194{bottom:14.400000px;}
.y195{bottom:14.580000px;}
.y66{bottom:15.660000px;}
.y14a{bottom:16.545000px;}
.y5f{bottom:16.575000px;}
.y14b{bottom:16.725000px;}
.y162{bottom:16.740000px;}
.y147{bottom:16.920000px;}
.y148{bottom:17.100000px;}
.y15f{bottom:17.280000px;}
.y19f{bottom:18.360000px;}
.y13b{bottom:18.720000px;}
.y16b{bottom:19.260000px;}
.y141{bottom:20.520000px;}
.y121{bottom:20.700000px;}
.y145{bottom:21.600000px;}
.y165{bottom:22.005000px;}
.y6{bottom:25.200000px;}
.y19d{bottom:26.100000px;}
.y57{bottom:26.490000px;}
.y13c{bottom:26.640000px;}
.y65{bottom:28.620000px;}
.y5e{bottom:29.205000px;}
.y144{bottom:29.340000px;}
.y78{bottom:31.515000px;}
.y5{bottom:38.160000px;}
.y56{bottom:38.910000px;}
.y64{bottom:41.040000px;}
.y5d{bottom:41.265000px;}
.y77{bottom:44.655000px;}
.y85{bottom:46.260000px;}
.y5c{bottom:53.505000px;}
.y55{bottom:56.730000px;}
.y76{bottom:57.615000px;}
.ye2{bottom:60.480000px;}
.y1{bottom:61.380000px;}
.y138{bottom:61.740000px;}
.y84{bottom:62.640000px;}
.y7f{bottom:63.780000px;}
.y5b{bottom:65.565000px;}
.y54{bottom:70.050000px;}
.y75{bottom:70.755000px;}
.y137{bottom:77.040000px;}
.y53{bottom:78.870000px;}
.y83{bottom:80.460000px;}
.y5a{bottom:82.485000px;}
.y74{bottom:83.715000px;}
.y73{bottom:96.675000px;}
.y52{bottom:96.690000px;}
.y1cb{bottom:99.000000px;}
.y1ce{bottom:101.520000px;}
.yb7{bottom:103.680000px;}
.y17f{bottom:106.380000px;}
.y72{bottom:109.815000px;}
.y158{bottom:110.880000px;}
.y136{bottom:111.780000px;}
.ye1{bottom:112.500000px;}
.y51{bottom:114.510000px;}
.y110{bottom:115.560000px;}
.y1b5{bottom:116.640000px;}
.y3a{bottom:117.900000px;}
.y1ca{bottom:118.800000px;}
.y1cd{bottom:121.320000px;}
.y17e{bottom:121.860000px;}
.y71{bottom:122.055000px;}
.yb6{bottom:123.480000px;}
.y135{bottom:123.660000px;}
.y1e9{bottom:124.380000px;}
.y157{bottom:127.260000px;}
.ye0{bottom:132.300000px;}
.y50{bottom:132.510000px;}
.y18a{bottom:132.840000px;}
.y10f{bottom:135.360000px;}
.y134{bottom:135.540000px;}
.y1b4{bottom:136.440000px;}
.y39{bottom:137.700000px;}
.y1c9{bottom:138.600000px;}
.y215{bottom:141.300000px;}
.y1cc{bottom:142.020000px;}
.yb5{bottom:143.280000px;}
.y156{bottom:143.820000px;}
.y235{bottom:144.360000px;}
.y1e8{bottom:145.080000px;}
.y4f{bottom:150.330000px;}
.y132{bottom:152.100000px;}
.ydf{bottom:152.280000px;}
.y189{bottom:152.640000px;}
.y10e{bottom:155.160000px;}
.y1b3{bottom:156.420000px;}
.y38{bottom:157.500000px;}
.y1c8{bottom:158.400000px;}
.y155{bottom:158.940000px;}
.y214{bottom:161.100000px;}
.yb4{bottom:163.110000px;}
.y234{bottom:164.190000px;}
.y4e{bottom:168.150000px;}
.y131{bottom:168.705000px;}
.y154{bottom:171.030000px;}
.yde{bottom:172.110000px;}
.y188{bottom:172.470000px;}
.y10d{bottom:174.990000px;}
.y1b2{bottom:176.250000px;}
.y37{bottom:177.510000px;}
.y1c7{bottom:178.410000px;}
.y213{bottom:181.110000px;}
.yb3{bottom:183.090000px;}
.y233{bottom:183.990000px;}
.y130{bottom:185.445000px;}
.y4d{bottom:185.970000px;}
.y1e7{bottom:186.150000px;}
.ydd{bottom:191.910000px;}
.y187{bottom:192.270000px;}
.y10c{bottom:194.970000px;}
.y153{bottom:195.150000px;}
.y1b1{bottom:196.050000px;}
.y36{bottom:197.310000px;}
.y1c6{bottom:198.210000px;}
.y212{bottom:200.910000px;}
.y12f{bottom:202.005000px;}
.yb2{bottom:202.890000px;}
.y4c{bottom:203.790000px;}
.y1e6{bottom:205.950000px;}
.y152{bottom:207.210000px;}
.ydc{bottom:211.710000px;}
.y186{bottom:212.250000px;}
.y10b{bottom:214.770000px;}
.y1b0{bottom:215.850000px;}
.y35{bottom:217.110000px;}
.y1c5{bottom:218.010000px;}
.y12e{bottom:218.565000px;}
.y151{bottom:219.105000px;}
.y211{bottom:220.710000px;}
.y4b{bottom:221.610000px;}
.y23e{bottom:222.330000px;}
.yb1{bottom:222.690000px;}
.y232{bottom:223.590000px;}
.y1e5{bottom:226.650000px;}
.ydb{bottom:231.510000px;}
.y185{bottom:232.050000px;}
.y10a{bottom:234.570000px;}
.y4a{bottom:234.930000px;}
.y12d{bottom:235.305000px;}
.y1af{bottom:235.650000px;}
.y34{bottom:236.910000px;}
.y1c4{bottom:237.810000px;}
.y210{bottom:240.510000px;}
.y23d{bottom:242.130000px;}
.yb0{bottom:242.490000px;}
.y231{bottom:243.570000px;}
.y49{bottom:243.930000px;}
.yda{bottom:251.490000px;}
.y184{bottom:251.850000px;}
.y12c{bottom:251.865000px;}
.y109{bottom:254.370000px;}
.y1ae{bottom:255.450000px;}
.y33{bottom:256.710000px;}
.y1c3{bottom:257.610000px;}
.y14e{bottom:259.605000px;}
.y20f{bottom:260.310000px;}
.y48{bottom:261.780000px;}
.y23c{bottom:261.930000px;}
.yaf{bottom:262.290000px;}
.y230{bottom:263.370000px;}
.y1e4{bottom:267.510000px;}
.y12b{bottom:268.425000px;}
.yd9{bottom:271.290000px;}
.y183{bottom:271.650000px;}
.y108{bottom:274.170000px;}
.y1ad{bottom:275.430000px;}
.y32{bottom:276.690000px;}
.y1c2{bottom:277.590000px;}
.y47{bottom:279.600000px;}
.y20e{bottom:280.290000px;}
.y23b{bottom:281.910000px;}
.yae{bottom:282.270000px;}
.y22f{bottom:283.170000px;}
.y12a{bottom:285.165000px;}
.y1e3{bottom:287.310000px;}
.yd8{bottom:291.090000px;}
.y182{bottom:291.450000px;}
.y14d{bottom:292.005000px;}
.y107{bottom:294.150000px;}
.y1ac{bottom:295.230000px;}
.y31{bottom:296.490000px;}
.y1c1{bottom:297.390000px;}
.y46{bottom:297.420000px;}
.y20d{bottom:300.090000px;}
.y23a{bottom:301.710000px;}
.y129{bottom:301.725000px;}
.yad{bottom:302.070000px;}
.y22e{bottom:302.970000px;}
.y1e2{bottom:307.290000px;}
.yd7{bottom:310.890000px;}
.y181{bottom:311.430000px;}
.y106{bottom:313.950000px;}
.y1ab{bottom:315.030000px;}
.y45{bottom:315.240000px;}
.y30{bottom:316.290000px;}
.y1c0{bottom:317.190000px;}
.y128{bottom:318.285000px;}
.y20c{bottom:319.890000px;}
.y239{bottom:321.510000px;}
.yac{bottom:321.870000px;}
.y22d{bottom:322.770000px;}
.y1e1{bottom:327.090000px;}
.yd6{bottom:330.690000px;}
.y180{bottom:331.230000px;}
.y14c{bottom:332.505000px;}
.y44{bottom:333.060000px;}
.y105{bottom:333.750000px;}
.y1aa{bottom:334.830000px;}
.y127{bottom:335.025000px;}
.y2f{bottom:336.990000px;}
.y20b{bottom:339.690000px;}
.y238{bottom:341.310000px;}
.yab{bottom:341.670000px;}
.y22c{bottom:342.750000px;}
.y43{bottom:346.380000px;}
.y1e0{bottom:346.890000px;}
.yd5{bottom:350.670000px;}
.y17d{bottom:351.030000px;}
.y126{bottom:351.585000px;}
.y104{bottom:353.550000px;}
.y1a9{bottom:354.630000px;}
.y42{bottom:355.380000px;}
.y1bf{bottom:356.790000px;}
.y2e{bottom:357.330000px;}
.y20a{bottom:359.490000px;}
.y237{bottom:361.110000px;}
.yaa{bottom:361.470000px;}
.y22b{bottom:362.550000px;}
.y3e{bottom:366.165000px;}
.y2d{bottom:367.230000px;}
.y1df{bottom:367.590000px;}
.y124{bottom:368.145000px;}
.yd4{bottom:370.470000px;}
.y17c{bottom:370.830000px;}
.y149{bottom:373.005000px;}
.y41{bottom:373.200000px;}
.y103{bottom:373.350000px;}
.y1a8{bottom:374.610000px;}
.y1be{bottom:376.770000px;}
.y2c{bottom:378.750000px;}
.y209{bottom:379.470000px;}
.y236{bottom:381.090000px;}
.ya9{bottom:381.450000px;}
.y22a{bottom:382.350000px;}
.y11f{bottom:384.885000px;}
.yd3{bottom:390.270000px;}
.y17b{bottom:390.630000px;}
.y40{bottom:391.020000px;}
.y102{bottom:393.375000px;}
.y1a7{bottom:394.455000px;}
.y1bd{bottom:396.615000px;}
.y2b{bottom:398.775000px;}
.y208{bottom:399.315000px;}
.ya8{bottom:401.295000px;}
.y229{bottom:402.195000px;}
.y120{bottom:402.915000px;}
.y24d{bottom:403.275000px;}
.y1de{bottom:408.675000px;}
.y3f{bottom:408.840000px;}
.yd2{bottom:410.115000px;}
.y17a{bottom:410.655000px;}
.y2a{bottom:412.455000px;}
.y101{bottom:413.175000px;}
.y146{bottom:413.535000px;}
.y1a6{bottom:414.255000px;}
.y1bc{bottom:416.415000px;}
.y207{bottom:419.115000px;}
.ya7{bottom:421.095000px;}
.y29{bottom:421.275000px;}
.y228{bottom:421.995000px;}
.y24c{bottom:423.075000px;}
.y1dd{bottom:429.375000px;}
.yd1{bottom:429.915000px;}
.y179{bottom:430.455000px;}
.y100{bottom:432.975000px;}
.y1a5{bottom:434.055000px;}
.y70{bottom:435.660000px;}
.y1bb{bottom:436.215000px;}
.y206{bottom:438.915000px;}
.y11e{bottom:440.175000px;}
.ya6{bottom:440.895000px;}
.y227{bottom:441.975000px;}
.y24b{bottom:442.875000px;}
.y28{bottom:444.495000px;}
.yd0{bottom:449.895000px;}
.y178{bottom:450.255000px;}
.yff{bottom:452.775000px;}
.y1a4{bottom:453.855000px;}
.y143{bottom:454.575000px;}
.y11d{bottom:455.835000px;}
.y1ba{bottom:456.015000px;}
.y205{bottom:458.715000px;}
.ya5{bottom:460.695000px;}
.y226{bottom:461.775000px;}
.y24a{bottom:462.675000px;}
.y27{bottom:467.715000px;}
.ycf{bottom:469.695000px;}
.y177{bottom:470.055000px;}
.y1dc{bottom:470.235000px;}
.yfe{bottom:472.575000px;}
.y11c{bottom:472.755000px;}
.y1a3{bottom:473.835000px;}
.y1b9{bottom:475.995000px;}
.y204{bottom:478.695000px;}
.ya4{bottom:480.675000px;}
.y225{bottom:481.575000px;}
.y249{bottom:482.655000px;}
.y176{bottom:489.855000px;}
.y1db{bottom:490.035000px;}
.yce{bottom:490.395000px;}
.y26{bottom:491.115000px;}
.yfd{bottom:493.455000px;}
.y1a2{bottom:493.635000px;}
.y1b8{bottom:495.795000px;}
.y11b{bottom:498.315000px;}
.y203{bottom:498.495000px;}
.ya3{bottom:500.475000px;}
.y224{bottom:501.375000px;}
.y248{bottom:502.455000px;}
.y140{bottom:504.615000px;}
.y175{bottom:509.835000px;}
.ycd{bottom:510.015000px;}
.yfc{bottom:513.075000px;}
.y25{bottom:514.335000px;}
.y1b7{bottom:515.595000px;}
.y11a{bottom:518.115000px;}
.y202{bottom:518.295000px;}
.ya2{bottom:520.275000px;}
.y223{bottom:521.175000px;}
.y247{bottom:522.255000px;}
.ycc{bottom:523.155000px;}
.yfb{bottom:526.215000px;}
.y174{bottom:529.635000px;}
.y1da{bottom:530.715000px;}
.y1b6{bottom:535.395000px;}
.y13e{bottom:537.015000px;}
.y24{bottom:537.555000px;}
.y119{bottom:537.915000px;}
.y201{bottom:538.095000px;}
.ya1{bottom:540.075000px;}
.y222{bottom:541.155000px;}
.y246{bottom:542.055000px;}
.ycb{bottom:543.135000px;}
.yfa{bottom:546.015000px;}
.y173{bottom:549.435000px;}
.y1a1{bottom:553.395000px;}
.y118{bottom:557.715000px;}
.y200{bottom:557.895000px;}
.ya0{bottom:559.875000px;}
.y23{bottom:560.955000px;}
.y245{bottom:561.855000px;}
.yca{bottom:562.935000px;}
.yf9{bottom:565.815000px;}
.y1a0{bottom:567.255000px;}
.y172{bottom:569.235000px;}
.y13a{bottom:571.035000px;}
.y1d9{bottom:571.575000px;}
.y117{bottom:577.695000px;}
.y1ff{bottom:577.875000px;}
.y19c{bottom:579.135000px;}
.y9f{bottom:579.855000px;}
.y221{bottom:580.755000px;}
.y244{bottom:581.835000px;}
.yc9{bottom:582.735000px;}
.yf8{bottom:585.795000px;}
.y171{bottom:589.035000px;}
.y1d8{bottom:591.375000px;}
.y59{bottom:594.420000px;}
.y116{bottom:597.495000px;}
.y1fe{bottom:597.675000px;}
.y9e{bottom:599.655000px;}
.y220{bottom:600.555000px;}
.y243{bottom:601.635000px;}
.yc8{bottom:602.535000px;}
.yf7{bottom:605.595000px;}
.y1d7{bottom:611.175000px;}
.y22{bottom:615.675000px;}
.y115{bottom:617.295000px;}
.y1fd{bottom:617.475000px;}
.y9d{bottom:619.455000px;}
.y21f{bottom:620.355000px;}
.y242{bottom:621.435000px;}
.yc7{bottom:622.335000px;}
.y139{bottom:622.725000px;}
.y170{bottom:625.065000px;}
.yf6{bottom:625.425000px;}
.y21{bottom:631.365000px;}
.y1d6{bottom:631.905000px;}
.y114{bottom:637.125000px;}
.y1fc{bottom:637.305000px;}
.y16f{bottom:639.105000px;}
.y9c{bottom:639.285000px;}
.y21e{bottom:640.365000px;}
.y19b{bottom:640.545000px;}
.y241{bottom:641.265000px;}
.yc6{bottom:642.345000px;}
.yf5{bottom:645.225000px;}
.y20{bottom:646.845000px;}
.y16e{bottom:652.965000px;}
.y1d5{bottom:655.845000px;}
.y113{bottom:656.925000px;}
.y1fb{bottom:657.105000px;}
.y9b{bottom:659.085000px;}
.y21d{bottom:660.165000px;}
.y240{bottom:661.065000px;}
.yc5{bottom:662.145000px;}
.y1f{bottom:662.325000px;}
.y16c{bottom:664.665000px;}
.yf4{bottom:665.025000px;}
.y112{bottom:676.905000px;}
.y1e{bottom:677.805000px;}
.y9a{bottom:679.065000px;}
.y21c{bottom:679.965000px;}
.yc4{bottom:681.945000px;}
.yf3{bottom:685.005000px;}
.y199{bottom:687.885000px;}
.y1d{bottom:688.965000px;}
.y1d4{bottom:696.705000px;}
.y1fa{bottom:696.885000px;}
.y111{bottom:697.605000px;}
.y99{bottom:698.865000px;}
.y21b{bottom:699.765000px;}
.y63{bottom:700.845000px;}
.yc3{bottom:701.745000px;}
.y1c{bottom:702.645000px;}
.yf2{bottom:704.805000px;}
.y16a{bottom:712.005000px;}
.y1b{bottom:715.245000px;}
.y1d3{bottom:716.505000px;}
.y1f9{bottom:716.685000px;}
.y98{bottom:718.665000px;}
.y21a{bottom:719.565000px;}
.yc2{bottom:721.545000px;}
.yf1{bottom:724.605000px;}
.y1a{bottom:727.665000px;}
.y196{bottom:735.060000px;}
.y1d2{bottom:736.305000px;}
.y1f8{bottom:736.485000px;}
.y97{bottom:738.465000px;}
.y219{bottom:739.545000px;}
.y19{bottom:740.625000px;}
.yc1{bottom:742.425000px;}
.yf0{bottom:744.405000px;}
.y18{bottom:754.305000px;}
.y1d1{bottom:756.105000px;}
.y1f7{bottom:756.285000px;}
.y96{bottom:758.265000px;}
.y23f{bottom:759.165000px;}
.y218{bottom:759.345000px;}
.y169{bottom:761.865000px;}
.yc0{bottom:762.045000px;}
.yef{bottom:764.205000px;}
.y17{bottom:767.265000px;}
.ybf{bottom:775.185000px;}
.y1d0{bottom:776.085000px;}
.y95{bottom:778.245000px;}
.y217{bottom:779.145000px;}
.y193{bottom:782.385000px;}
.yee{bottom:784.185000px;}
.y16{bottom:794.085000px;}
.ybe{bottom:794.985000px;}
.y1f6{bottom:796.065000px;}
.y1cf{bottom:796.785000px;}
.y94{bottom:798.045000px;}
.y216{bottom:798.945000px;}
.yed{bottom:803.985000px;}
.y15{bottom:805.245000px;}
.y167{bottom:809.760000px;}
.ybd{bottom:814.785000px;}
.y1f5{bottom:815.865000px;}
.y93{bottom:817.845000px;}
.yec{bottom:823.785000px;}
.y14{bottom:824.685000px;}
.ybc{bottom:834.585000px;}
.y1f4{bottom:835.665000px;}
.y191{bottom:836.385000px;}
.y92{bottom:837.645000px;}
.y13{bottom:843.045000px;}
.yeb{bottom:843.585000px;}
.y164{bottom:844.485000px;}
.ybb{bottom:854.610000px;}
.y12{bottom:856.950000px;}
.y91{bottom:857.490000px;}
.yea{bottom:863.430000px;}
.y11{bottom:870.630000px;}
.yba{bottom:874.410000px;}
.y90{bottom:877.470000px;}
.y10{bottom:879.990000px;}
.y18e{bottom:882.870000px;}
.ye9{bottom:883.410000px;}
.y1f3{bottom:894.210000px;}
.yb9{bottom:895.110000px;}
.y161{bottom:897.090000px;}
.y8f{bottom:897.270000px;}
.yf{bottom:898.350000px;}
.ye8{bottom:903.210000px;}
.ye{bottom:911.490000px;}
.y1f2{bottom:914.010000px;}
.yb8{bottom:915.990000px;}
.y8e{bottom:917.070000px;}
.ye7{bottom:923.010000px;}
.y18d{bottom:923.370000px;}
.yd{bottom:933.270000px;}
.y1f1{bottom:933.990000px;}
.y8d{bottom:936.870000px;}
.ye6{bottom:942.810000px;}
.y15e{bottom:944.430000px;}
.y1f0{bottom:953.790000px;}
.y8c{bottom:956.670000px;}
.yc{bottom:957.750000px;}
.ye5{bottom:962.610000px;}
.y18c{bottom:970.710000px;}
.y1ef{bottom:973.590000px;}
.y8b{bottom:976.650000px;}
.yb{bottom:980.970000px;}
.ye4{bottom:983.490000px;}
.y15b{bottom:992.310000px;}
.y1ee{bottom:993.390000px;}
.y8a{bottom:996.450000px;}
.ye3{bottom:1003.110000px;}
.ya{bottom:1004.550000px;}
.y1ed{bottom:1012.290000px;}
.y89{bottom:1016.250000px;}
.y18b{bottom:1020.030000px;}
.y1ec{bottom:1032.090000px;}
.y88{bottom:1036.050000px;}
.y9{bottom:1036.230000px;}
.y15a{bottom:1036.950000px;}
.y1eb{bottom:1051.890000px;}
.y87{bottom:1055.850000px;}
.y8{bottom:1063.230000px;}
.y1ea{bottom:1072.590000px;}
.y86{bottom:1075.650000px;}
.y159{bottom:1077.090000px;}
.y60{bottom:1096.200000px;}
.y82{bottom:1105.920000px;}
.y81{bottom:1123.200000px;}
.y3b{bottom:1137.240000px;}
.h6{height:5.653125px;}
.h4c{height:6.257812px;}
.h2{height:13.500000px;}
.h2e{height:15.825000px;}
.h30{height:15.840000px;}
.h2d{height:15.861000px;}
.h2f{height:15.876000px;}
.h17{height:16.920000px;}
.h15{height:18.140625px;}
.h1e{height:22.140000px;}
.h14{height:23.319141px;}
.h27{height:29.664141px;}
.hb{height:29.678906px;}
.he{height:30.963516px;}
.h38{height:31.485000px;}
.h33{height:31.665000px;}
.h2c{height:31.845000px;}
.h39{height:33.825000px;}
.h3f{height:34.005000px;}
.h16{height:36.281250px;}
.h12{height:39.503370px;}
.h37{height:39.585000px;}
.h36{height:39.621000px;}
.h44{height:39.765000px;}
.h35{height:40.320000px;}
.h5{height:40.985156px;}
.h25{height:41.535703px;}
.h23{height:41.972344px;}
.h1d{height:42.086250px;}
.h3a{height:42.285000px;}
.h29{height:43.215117px;}
.h32{height:43.725000px;}
.h10{height:44.518359px;}
.h45{height:45.742500px;}
.h47{height:46.425000px;}
.h48{height:46.440000px;}
.h3d{height:46.605000px;}
.h42{height:46.620000px;}
.h11{height:46.622932px;}
.h3b{height:47.145000px;}
.h40{height:47.160000px;}
.hc{height:47.344922px;}
.h4{height:47.699850px;}
.h18{height:48.616875px;}
.h41{height:49.140000px;}
.h34{height:49.305000px;}
.h3c{height:49.583118px;}
.h2b{height:49.881000px;}
.h43{height:50.229844px;}
.h3e{height:51.862500px;}
.h20{height:52.020000px;}
.h13{height:52.998047px;}
.h46{height:53.100000px;}
.h1b{height:53.332031px;}
.h19{height:54.421875px;}
.hf{height:55.291992px;}
.h4a{height:55.824609px;}
.h3{height:58.651172px;}
.h31{height:59.038594px;}
.h9{height:60.226875px;}
.h49{height:60.690000px;}
.h28{height:61.423863px;}
.h4b{height:62.211094px;}
.ha{height:65.010937px;}
.h21{height:65.884219px;}
.h26{height:70.628906px;}
.hd{height:72.562500px;}
.h1f{height:74.953125px;}
.h24{height:75.093750px;}
.h2a{height:84.898125px;}
.h7{height:86.585445px;}
.h1c{height:90.585000px;}
.h8{height:96.508125px;}
.h22{height:133.020000px;}
.h1a{height:421.095000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w11{width:37.260000px;}
.we{width:41.745000px;}
.w10{width:45.570000px;}
.w1f{width:47.145000px;}
.w1e{width:47.361000px;}
.w1d{width:47.505000px;}
.wf{width:48.945000px;}
.w1c{width:53.985000px;}
.w16{width:61.956000px;}
.w15{width:64.980000px;}
.w14{width:70.380000px;}
.w29{width:79.905000px;}
.w2b{width:79.920000px;}
.w24{width:79.941000px;}
.w26{width:79.956000px;}
.w27{width:80.085000px;}
.w23{width:80.091000px;}
.w25{width:80.100000px;}
.w28{width:80.121000px;}
.w2a{width:80.130000px;}
.w3{width:82.071000px;}
.wd{width:82.830000px;}
.w1b{width:87.516000px;}
.wc{width:90.705000px;}
.w19{width:94.530000px;}
.w20{width:121.170000px;}
.w13{width:133.042500px;}
.w17{width:135.021000px;}
.w18{width:141.825000px;}
.w9{width:154.470000px;}
.wb{width:160.395000px;}
.w22{width:168.330000px;}
.w12{width:173.550000px;}
.wa{width:180.390000px;}
.w7{width:180.930000px;}
.w1a{width:195.675000px;}
.w21{width:404.745000px;}
.w6{width:532.920000px;}
.w4{width:639.855000px;}
.w2{width:721.935000px;}
.w8{width:743.175000px;}
.w5{width:747.135000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x47{left:-20.169000px;}
.x0{left:0.000000px;}
.x55{left:4.252500px;}
.x2{left:8.091000px;}
.x35{left:9.540000px;}
.x11{left:10.791000px;}
.x29{left:11.880000px;}
.x27{left:13.500000px;}
.x2a{left:14.940000px;}
.x2b{left:16.920000px;}
.x23{left:18.000000px;}
.x25{left:19.440000px;}
.x17{left:21.255000px;}
.x2d{left:22.710000px;}
.x2c{left:24.480000px;}
.x21{left:25.740000px;}
.x48{left:27.180000px;}
.x54{left:29.505000px;}
.x3a{left:30.990000px;}
.x39{left:32.400000px;}
.x20{left:33.660000px;}
.x38{left:35.100000px;}
.x40{left:37.800000px;}
.x46{left:38.880000px;}
.x4b{left:39.951000px;}
.x49{left:46.980000px;}
.x36{left:56.865000px;}
.x37{left:60.300000px;}
.x3b{left:67.485000px;}
.x3c{left:70.740000px;}
.x3{left:73.965000px;}
.x10{left:81.765000px;}
.x28{left:86.760000px;}
.x16{left:93.105000px;}
.x13{left:94.545000px;}
.x8{left:99.396000px;}
.x1{left:108.045000px;}
.x1c{left:109.656000px;}
.x2e{left:114.876000px;}
.xa{left:118.656000px;}
.x19{left:120.096000px;}
.x1e{left:122.616000px;}
.xe{left:132.696000px;}
.x1f{left:135.036000px;}
.xc{left:139.896000px;}
.x6{left:156.270000px;}
.x3d{left:162.030000px;}
.x3e{left:168.525000px;}
.x7{left:180.570000px;}
.x4c{left:188.145000px;}
.x4{left:190.125000px;}
.xd{left:195.330000px;}
.x2f{left:250.995000px;}
.x4d{left:268.095000px;}
.x12{left:302.475000px;}
.x14{left:310.350000px;}
.x30{left:321.375000px;}
.x4e{left:348.195000px;}
.x3f{left:364.215000px;}
.x15{left:371.580000px;}
.x31{left:386.355000px;}
.x1a{left:391.575000px;}
.x9{left:404.535000px;}
.x4f{left:428.160000px;}
.xb{left:436.965000px;}
.x5{left:446.505000px;}
.x32{left:448.320000px;}
.x41{left:451.740000px;}
.x4a{left:470.445000px;}
.xf{left:490.785000px;}
.x42{left:505.740000px;}
.x50{left:508.260000px;}
.x43{left:553.260000px;}
.x33{left:583.350000px;}
.x51{left:588.390000px;}
.x44{left:600.630000px;}
.x18{left:620.253000px;}
.x45{left:647.790000px;}
.x1d{left:651.570000px;}
.x52{left:668.310000px;}
.x24{left:692.970000px;}
.x34{left:725.190000px;}
.x22{left:741.930000px;}
.x53{left:748.440000px;}
.x26{left:787.500000px;}
.x1b{left:799.200000px;}
@media print{
.v5{vertical-align:-55.040000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.440000pt;}
.v3{vertical-align:16.000000pt;}
.v6{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls2a{letter-spacing:-0.409067pt;}
.lsd{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.198933pt;}
.lse{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.183467pt;}
.ls16{letter-spacing:-0.161067pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.040320pt;}
.ls25{letter-spacing:0.079467pt;}
.ls17{letter-spacing:0.094720pt;}
.ls15{letter-spacing:0.094933pt;}
.lsf{letter-spacing:0.096000pt;}
.ls1d{letter-spacing:0.115200pt;}
.ls1a{letter-spacing:0.120533pt;}
.ls4{letter-spacing:0.128640pt;}
.ls20{letter-spacing:0.133120pt;}
.ls5{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.161067pt;}
.ls24{letter-spacing:0.183680pt;}
.ls1c{letter-spacing:0.198933pt;}
.ls12{letter-spacing:0.230933pt;}
.ls22{letter-spacing:0.231040pt;}
.ls26{letter-spacing:0.239467pt;}
.ls2b{letter-spacing:0.265600pt;}
.ls1b{letter-spacing:0.305707pt;}
.ls6{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.439040pt;}
.ls28{letter-spacing:0.443520pt;}
.ls29{letter-spacing:0.443733pt;}
.lsc{letter-spacing:0.506133pt;}
.ls14{letter-spacing:0.778667pt;}
.ls13{letter-spacing:0.800000pt;}
.ls21{letter-spacing:1.440000pt;}
.ls27{letter-spacing:7.200000pt;}
.ls19{letter-spacing:16.160000pt;}
.ls1e{letter-spacing:16.239360pt;}
.ls18{letter-spacing:20.000000pt;}
.ls23{letter-spacing:23.200000pt;}
.ls2c{letter-spacing:23.797760pt;}
.ls10{letter-spacing:25.760000pt;}
.ls3{letter-spacing:42.400000pt;}
.ls2{letter-spacing:63.360000pt;}
.ls1{letter-spacing:64.000000pt;}
.ls0{letter-spacing:64.640000pt;}
.wse{word-spacing:-16.000000pt;}
.wsa{word-spacing:-14.720000pt;}
.wsb{word-spacing:-13.600000pt;}
.ws1c{word-spacing:-13.545600pt;}
.wsd{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.280000pt;}
.ws1a{word-spacing:-13.083733pt;}
.ws1b{word-spacing:-12.870933pt;}
.ws19{word-spacing:-12.640000pt;}
.ws9{word-spacing:-12.320000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws11{word-spacing:-11.680000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws18{word-spacing:-10.959467pt;}
.ws14{word-spacing:-10.918933pt;}
.ws2{word-spacing:-10.881067pt;}
.ws16{word-spacing:-10.760320pt;}
.ws10{word-spacing:-10.720000pt;}
.wsf{word-spacing:-10.558933pt;}
.ws13{word-spacing:-10.521067pt;}
.ws15{word-spacing:-10.400000pt;}
.ws4{word-spacing:-9.733760pt;}
.ws17{word-spacing:-9.359467pt;}
.ws7{word-spacing:-9.280000pt;}
.ws12{word-spacing:-8.640000pt;}
.ws6{word-spacing:-8.000000pt;}
.ws1{word-spacing:-6.720000pt;}
.ws8{word-spacing:0.000000pt;}
.ws0{word-spacing:54.080000pt;}
._5{margin-left:-52.960000pt;}
._30{margin-left:-23.757013pt;}
._2c{margin-left:-15.962027pt;}
._27{margin-left:-3.249920pt;}
._1a{margin-left:-2.121600pt;}
._2{margin-left:-1.177600pt;}
._0{width:0.928000pt;}
._1{width:2.155093pt;}
._1b{width:3.377067pt;}
._1c{width:4.305280pt;}
._14{width:5.205760pt;}
._d{width:6.161920pt;}
._18{width:7.425707pt;}
._9{width:8.408107pt;}
._8{width:9.561600pt;}
._19{width:11.088000pt;}
._11{width:12.111360pt;}
._1e{width:14.554880pt;}
._13{width:15.760640pt;}
._26{width:16.697600pt;}
._15{width:17.626880pt;}
._c{width:18.751360pt;}
._17{width:19.744640pt;}
._e{width:20.716800pt;}
._7{width:22.097920pt;}
._f{width:23.168853pt;}
._10{width:24.605653pt;}
._12{width:25.710080pt;}
._21{width:26.853760pt;}
._25{width:28.403200pt;}
._24{width:29.481600pt;}
._2e{width:30.547200pt;}
._2a{width:31.447040pt;}
._29{width:33.146880pt;}
._28{width:34.368640pt;}
._a{width:35.283840pt;}
._b{width:36.387200pt;}
._22{width:39.733760pt;}
._23{width:41.061760pt;}
._2b{width:42.401920pt;}
._2d{width:43.930240pt;}
._1f{width:45.736320pt;}
._20{width:46.961280pt;}
._2f{width:49.454720pt;}
._34{width:53.226240pt;}
._31{width:56.732160pt;}
._3{width:58.218667pt;}
._16{width:59.547520pt;}
._33{width:77.289600pt;}
._32{width:111.338667pt;}
._4{width:177.440000pt;}
._1d{width:250.906667pt;}
._6{width:671.978667pt;}
.fs2{font-size:5.120000pt;}
.fs12{font-size:5.333333pt;}
.fsd{font-size:16.000000pt;}
.fsc{font-size:21.120000pt;}
.fsf{font-size:24.320000pt;}
.fs6{font-size:26.880000pt;}
.fse{font-size:32.000000pt;}
.fsb{font-size:33.730624pt;}
.fs10{font-size:34.560000pt;}
.fs0{font-size:37.120000pt;}
.fsa{font-size:40.320000pt;}
.fs7{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs11{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y6f{bottom:-223.706667pt;}
.y6e{bottom:-193.626667pt;}
.y6d{bottom:-163.706667pt;}
.y7e{bottom:-149.466667pt;}
.y6c{bottom:-133.626667pt;}
.y7d{bottom:-119.386667pt;}
.y6b{bottom:-103.706667pt;}
.y7c{bottom:-89.466667pt;}
.y6a{bottom:-73.626667pt;}
.y7b{bottom:-59.386667pt;}
.y69{bottom:-43.680000pt;}
.y7a{bottom:-29.426667pt;}
.y62{bottom:-25.466667pt;}
.y3d{bottom:-24.160000pt;}
.y80{bottom:-15.931333pt;}
.y68{bottom:-13.760000pt;}
.y0{bottom:0.000000pt;}
.y79{bottom:0.493333pt;}
.y24e{bottom:1.633333pt;}
.y67{bottom:2.240000pt;}
.y2{bottom:3.520000pt;}
.y125{bottom:4.146667pt;}
.y122{bottom:4.160000pt;}
.y123{bottom:4.306667pt;}
.y133{bottom:4.320000pt;}
.y168{bottom:4.466667pt;}
.y3c{bottom:4.480000pt;}
.y61{bottom:4.960000pt;}
.y18f{bottom:6.880000pt;}
.y190{bottom:7.040000pt;}
.y15d{bottom:8.160000pt;}
.y19e{bottom:8.960000pt;}
.y58{bottom:9.106667pt;}
.y192{bottom:9.440000pt;}
.y13d{bottom:9.600000pt;}
.y197{bottom:9.746667pt;}
.y19a{bottom:9.760000pt;}
.y198{bottom:9.906667pt;}
.y16d{bottom:9.920000pt;}
.y163{bottom:10.080000pt;}
.y160{bottom:10.240000pt;}
.y7{bottom:11.040000pt;}
.y14f{bottom:11.186667pt;}
.y150{bottom:11.346667pt;}
.y142{bottom:11.360000pt;}
.y13f{bottom:11.520000pt;}
.y15c{bottom:11.680000pt;}
.y4{bottom:12.000000pt;}
.y3{bottom:12.160000pt;}
.y166{bottom:12.360000pt;}
.y194{bottom:12.800000pt;}
.y195{bottom:12.960000pt;}
.y66{bottom:13.920000pt;}
.y14a{bottom:14.706667pt;}
.y5f{bottom:14.733333pt;}
.y14b{bottom:14.866667pt;}
.y162{bottom:14.880000pt;}
.y147{bottom:15.040000pt;}
.y148{bottom:15.200000pt;}
.y15f{bottom:15.360000pt;}
.y19f{bottom:16.320000pt;}
.y13b{bottom:16.640000pt;}
.y16b{bottom:17.120000pt;}
.y141{bottom:18.240000pt;}
.y121{bottom:18.400000pt;}
.y145{bottom:19.200000pt;}
.y165{bottom:19.560000pt;}
.y6{bottom:22.400000pt;}
.y19d{bottom:23.200000pt;}
.y57{bottom:23.546667pt;}
.y13c{bottom:23.680000pt;}
.y65{bottom:25.440000pt;}
.y5e{bottom:25.960000pt;}
.y144{bottom:26.080000pt;}
.y78{bottom:28.013333pt;}
.y5{bottom:33.920000pt;}
.y56{bottom:34.586667pt;}
.y64{bottom:36.480000pt;}
.y5d{bottom:36.680000pt;}
.y77{bottom:39.693333pt;}
.y85{bottom:41.120000pt;}
.y5c{bottom:47.560000pt;}
.y55{bottom:50.426667pt;}
.y76{bottom:51.213333pt;}
.ye2{bottom:53.760000pt;}
.y1{bottom:54.560000pt;}
.y138{bottom:54.880000pt;}
.y84{bottom:55.680000pt;}
.y7f{bottom:56.693333pt;}
.y5b{bottom:58.280000pt;}
.y54{bottom:62.266667pt;}
.y75{bottom:62.893333pt;}
.y137{bottom:68.480000pt;}
.y53{bottom:70.106667pt;}
.y83{bottom:71.520000pt;}
.y5a{bottom:73.320000pt;}
.y74{bottom:74.413333pt;}
.y73{bottom:85.933333pt;}
.y52{bottom:85.946667pt;}
.y1cb{bottom:88.000000pt;}
.y1ce{bottom:90.240000pt;}
.yb7{bottom:92.160000pt;}
.y17f{bottom:94.560000pt;}
.y72{bottom:97.613333pt;}
.y158{bottom:98.560000pt;}
.y136{bottom:99.360000pt;}
.ye1{bottom:100.000000pt;}
.y51{bottom:101.786667pt;}
.y110{bottom:102.720000pt;}
.y1b5{bottom:103.680000pt;}
.y3a{bottom:104.800000pt;}
.y1ca{bottom:105.600000pt;}
.y1cd{bottom:107.840000pt;}
.y17e{bottom:108.320000pt;}
.y71{bottom:108.493333pt;}
.yb6{bottom:109.760000pt;}
.y135{bottom:109.920000pt;}
.y1e9{bottom:110.560000pt;}
.y157{bottom:113.120000pt;}
.ye0{bottom:117.600000pt;}
.y50{bottom:117.786667pt;}
.y18a{bottom:118.080000pt;}
.y10f{bottom:120.320000pt;}
.y134{bottom:120.480000pt;}
.y1b4{bottom:121.280000pt;}
.y39{bottom:122.400000pt;}
.y1c9{bottom:123.200000pt;}
.y215{bottom:125.600000pt;}
.y1cc{bottom:126.240000pt;}
.yb5{bottom:127.360000pt;}
.y156{bottom:127.840000pt;}
.y235{bottom:128.320000pt;}
.y1e8{bottom:128.960000pt;}
.y4f{bottom:133.626667pt;}
.y132{bottom:135.200000pt;}
.ydf{bottom:135.360000pt;}
.y189{bottom:135.680000pt;}
.y10e{bottom:137.920000pt;}
.y1b3{bottom:139.040000pt;}
.y38{bottom:140.000000pt;}
.y1c8{bottom:140.800000pt;}
.y155{bottom:141.280000pt;}
.y214{bottom:143.200000pt;}
.yb4{bottom:144.986667pt;}
.y234{bottom:145.946667pt;}
.y4e{bottom:149.466667pt;}
.y131{bottom:149.960000pt;}
.y154{bottom:152.026667pt;}
.yde{bottom:152.986667pt;}
.y188{bottom:153.306667pt;}
.y10d{bottom:155.546667pt;}
.y1b2{bottom:156.666667pt;}
.y37{bottom:157.786667pt;}
.y1c7{bottom:158.586667pt;}
.y213{bottom:160.986667pt;}
.yb3{bottom:162.746667pt;}
.y233{bottom:163.546667pt;}
.y130{bottom:164.840000pt;}
.y4d{bottom:165.306667pt;}
.y1e7{bottom:165.466667pt;}
.ydd{bottom:170.586667pt;}
.y187{bottom:170.906667pt;}
.y10c{bottom:173.306667pt;}
.y153{bottom:173.466667pt;}
.y1b1{bottom:174.266667pt;}
.y36{bottom:175.386667pt;}
.y1c6{bottom:176.186667pt;}
.y212{bottom:178.586667pt;}
.y12f{bottom:179.560000pt;}
.yb2{bottom:180.346667pt;}
.y4c{bottom:181.146667pt;}
.y1e6{bottom:183.066667pt;}
.y152{bottom:184.186667pt;}
.ydc{bottom:188.186667pt;}
.y186{bottom:188.666667pt;}
.y10b{bottom:190.906667pt;}
.y1b0{bottom:191.866667pt;}
.y35{bottom:192.986667pt;}
.y1c5{bottom:193.786667pt;}
.y12e{bottom:194.280000pt;}
.y151{bottom:194.760000pt;}
.y211{bottom:196.186667pt;}
.y4b{bottom:196.986667pt;}
.y23e{bottom:197.626667pt;}
.yb1{bottom:197.946667pt;}
.y232{bottom:198.746667pt;}
.y1e5{bottom:201.466667pt;}
.ydb{bottom:205.786667pt;}
.y185{bottom:206.266667pt;}
.y10a{bottom:208.506667pt;}
.y4a{bottom:208.826667pt;}
.y12d{bottom:209.160000pt;}
.y1af{bottom:209.466667pt;}
.y34{bottom:210.586667pt;}
.y1c4{bottom:211.386667pt;}
.y210{bottom:213.786667pt;}
.y23d{bottom:215.226667pt;}
.yb0{bottom:215.546667pt;}
.y231{bottom:216.506667pt;}
.y49{bottom:216.826667pt;}
.yda{bottom:223.546667pt;}
.y184{bottom:223.866667pt;}
.y12c{bottom:223.880000pt;}
.y109{bottom:226.106667pt;}
.y1ae{bottom:227.066667pt;}
.y33{bottom:228.186667pt;}
.y1c3{bottom:228.986667pt;}
.y14e{bottom:230.760000pt;}
.y20f{bottom:231.386667pt;}
.y48{bottom:232.693333pt;}
.y23c{bottom:232.826667pt;}
.yaf{bottom:233.146667pt;}
.y230{bottom:234.106667pt;}
.y1e4{bottom:237.786667pt;}
.y12b{bottom:238.600000pt;}
.yd9{bottom:241.146667pt;}
.y183{bottom:241.466667pt;}
.y108{bottom:243.706667pt;}
.y1ad{bottom:244.826667pt;}
.y32{bottom:245.946667pt;}
.y1c2{bottom:246.746667pt;}
.y47{bottom:248.533333pt;}
.y20e{bottom:249.146667pt;}
.y23b{bottom:250.586667pt;}
.yae{bottom:250.906667pt;}
.y22f{bottom:251.706667pt;}
.y12a{bottom:253.480000pt;}
.y1e3{bottom:255.386667pt;}
.yd8{bottom:258.746667pt;}
.y182{bottom:259.066667pt;}
.y14d{bottom:259.560000pt;}
.y107{bottom:261.466667pt;}
.y1ac{bottom:262.426667pt;}
.y31{bottom:263.546667pt;}
.y1c1{bottom:264.346667pt;}
.y46{bottom:264.373333pt;}
.y20d{bottom:266.746667pt;}
.y23a{bottom:268.186667pt;}
.y129{bottom:268.200000pt;}
.yad{bottom:268.506667pt;}
.y22e{bottom:269.306667pt;}
.y1e2{bottom:273.146667pt;}
.yd7{bottom:276.346667pt;}
.y181{bottom:276.826667pt;}
.y106{bottom:279.066667pt;}
.y1ab{bottom:280.026667pt;}
.y45{bottom:280.213333pt;}
.y30{bottom:281.146667pt;}
.y1c0{bottom:281.946667pt;}
.y128{bottom:282.920000pt;}
.y20c{bottom:284.346667pt;}
.y239{bottom:285.786667pt;}
.yac{bottom:286.106667pt;}
.y22d{bottom:286.906667pt;}
.y1e1{bottom:290.746667pt;}
.yd6{bottom:293.946667pt;}
.y180{bottom:294.426667pt;}
.y14c{bottom:295.560000pt;}
.y44{bottom:296.053333pt;}
.y105{bottom:296.666667pt;}
.y1aa{bottom:297.626667pt;}
.y127{bottom:297.800000pt;}
.y2f{bottom:299.546667pt;}
.y20b{bottom:301.946667pt;}
.y238{bottom:303.386667pt;}
.yab{bottom:303.706667pt;}
.y22c{bottom:304.666667pt;}
.y43{bottom:307.893333pt;}
.y1e0{bottom:308.346667pt;}
.yd5{bottom:311.706667pt;}
.y17d{bottom:312.026667pt;}
.y126{bottom:312.520000pt;}
.y104{bottom:314.266667pt;}
.y1a9{bottom:315.226667pt;}
.y42{bottom:315.893333pt;}
.y1bf{bottom:317.146667pt;}
.y2e{bottom:317.626667pt;}
.y20a{bottom:319.546667pt;}
.y237{bottom:320.986667pt;}
.yaa{bottom:321.306667pt;}
.y22b{bottom:322.266667pt;}
.y3e{bottom:325.480000pt;}
.y2d{bottom:326.426667pt;}
.y1df{bottom:326.746667pt;}
.y124{bottom:327.240000pt;}
.yd4{bottom:329.306667pt;}
.y17c{bottom:329.626667pt;}
.y149{bottom:331.560000pt;}
.y41{bottom:331.733333pt;}
.y103{bottom:331.866667pt;}
.y1a8{bottom:332.986667pt;}
.y1be{bottom:334.906667pt;}
.y2c{bottom:336.666667pt;}
.y209{bottom:337.306667pt;}
.y236{bottom:338.746667pt;}
.ya9{bottom:339.066667pt;}
.y22a{bottom:339.866667pt;}
.y11f{bottom:342.120000pt;}
.yd3{bottom:346.906667pt;}
.y17b{bottom:347.226667pt;}
.y40{bottom:347.573333pt;}
.y102{bottom:349.666667pt;}
.y1a7{bottom:350.626667pt;}
.y1bd{bottom:352.546667pt;}
.y2b{bottom:354.466667pt;}
.y208{bottom:354.946667pt;}
.ya8{bottom:356.706667pt;}
.y229{bottom:357.506667pt;}
.y120{bottom:358.146667pt;}
.y24d{bottom:358.466667pt;}
.y1de{bottom:363.266667pt;}
.y3f{bottom:363.413333pt;}
.yd2{bottom:364.546667pt;}
.y17a{bottom:365.026667pt;}
.y2a{bottom:366.626667pt;}
.y101{bottom:367.266667pt;}
.y146{bottom:367.586667pt;}
.y1a6{bottom:368.226667pt;}
.y1bc{bottom:370.146667pt;}
.y207{bottom:372.546667pt;}
.ya7{bottom:374.306667pt;}
.y29{bottom:374.466667pt;}
.y228{bottom:375.106667pt;}
.y24c{bottom:376.066667pt;}
.y1dd{bottom:381.666667pt;}
.yd1{bottom:382.146667pt;}
.y179{bottom:382.626667pt;}
.y100{bottom:384.866667pt;}
.y1a5{bottom:385.826667pt;}
.y70{bottom:387.253333pt;}
.y1bb{bottom:387.746667pt;}
.y206{bottom:390.146667pt;}
.y11e{bottom:391.266667pt;}
.ya6{bottom:391.906667pt;}
.y227{bottom:392.866667pt;}
.y24b{bottom:393.666667pt;}
.y28{bottom:395.106667pt;}
.yd0{bottom:399.906667pt;}
.y178{bottom:400.226667pt;}
.yff{bottom:402.466667pt;}
.y1a4{bottom:403.426667pt;}
.y143{bottom:404.066667pt;}
.y11d{bottom:405.186667pt;}
.y1ba{bottom:405.346667pt;}
.y205{bottom:407.746667pt;}
.ya5{bottom:409.506667pt;}
.y226{bottom:410.466667pt;}
.y24a{bottom:411.266667pt;}
.y27{bottom:415.746667pt;}
.ycf{bottom:417.506667pt;}
.y177{bottom:417.826667pt;}
.y1dc{bottom:417.986667pt;}
.yfe{bottom:420.066667pt;}
.y11c{bottom:420.226667pt;}
.y1a3{bottom:421.186667pt;}
.y1b9{bottom:423.106667pt;}
.y204{bottom:425.506667pt;}
.ya4{bottom:427.266667pt;}
.y225{bottom:428.066667pt;}
.y249{bottom:429.026667pt;}
.y176{bottom:435.426667pt;}
.y1db{bottom:435.586667pt;}
.yce{bottom:435.906667pt;}
.y26{bottom:436.546667pt;}
.yfd{bottom:438.626667pt;}
.y1a2{bottom:438.786667pt;}
.y1b8{bottom:440.706667pt;}
.y11b{bottom:442.946667pt;}
.y203{bottom:443.106667pt;}
.ya3{bottom:444.866667pt;}
.y224{bottom:445.666667pt;}
.y248{bottom:446.626667pt;}
.y140{bottom:448.546667pt;}
.y175{bottom:453.186667pt;}
.ycd{bottom:453.346667pt;}
.yfc{bottom:456.066667pt;}
.y25{bottom:457.186667pt;}
.y1b7{bottom:458.306667pt;}
.y11a{bottom:460.546667pt;}
.y202{bottom:460.706667pt;}
.ya2{bottom:462.466667pt;}
.y223{bottom:463.266667pt;}
.y247{bottom:464.226667pt;}
.ycc{bottom:465.026667pt;}
.yfb{bottom:467.746667pt;}
.y174{bottom:470.786667pt;}
.y1da{bottom:471.746667pt;}
.y1b6{bottom:475.906667pt;}
.y13e{bottom:477.346667pt;}
.y24{bottom:477.826667pt;}
.y119{bottom:478.146667pt;}
.y201{bottom:478.306667pt;}
.ya1{bottom:480.066667pt;}
.y222{bottom:481.026667pt;}
.y246{bottom:481.826667pt;}
.ycb{bottom:482.786667pt;}
.yfa{bottom:485.346667pt;}
.y173{bottom:488.386667pt;}
.y1a1{bottom:491.906667pt;}
.y118{bottom:495.746667pt;}
.y200{bottom:495.906667pt;}
.ya0{bottom:497.666667pt;}
.y23{bottom:498.626667pt;}
.y245{bottom:499.426667pt;}
.yca{bottom:500.386667pt;}
.yf9{bottom:502.946667pt;}
.y1a0{bottom:504.226667pt;}
.y172{bottom:505.986667pt;}
.y13a{bottom:507.586667pt;}
.y1d9{bottom:508.066667pt;}
.y117{bottom:513.506667pt;}
.y1ff{bottom:513.666667pt;}
.y19c{bottom:514.786667pt;}
.y9f{bottom:515.426667pt;}
.y221{bottom:516.226667pt;}
.y244{bottom:517.186667pt;}
.yc9{bottom:517.986667pt;}
.yf8{bottom:520.706667pt;}
.y171{bottom:523.586667pt;}
.y1d8{bottom:525.666667pt;}
.y59{bottom:528.373333pt;}
.y116{bottom:531.106667pt;}
.y1fe{bottom:531.266667pt;}
.y9e{bottom:533.026667pt;}
.y220{bottom:533.826667pt;}
.y243{bottom:534.786667pt;}
.yc8{bottom:535.586667pt;}
.yf7{bottom:538.306667pt;}
.y1d7{bottom:543.266667pt;}
.y22{bottom:547.266667pt;}
.y115{bottom:548.706667pt;}
.y1fd{bottom:548.866667pt;}
.y9d{bottom:550.626667pt;}
.y21f{bottom:551.426667pt;}
.y242{bottom:552.386667pt;}
.yc7{bottom:553.186667pt;}
.y139{bottom:553.533333pt;}
.y170{bottom:555.613333pt;}
.yf6{bottom:555.933333pt;}
.y21{bottom:561.213333pt;}
.y1d6{bottom:561.693333pt;}
.y114{bottom:566.333333pt;}
.y1fc{bottom:566.493333pt;}
.y16f{bottom:568.093333pt;}
.y9c{bottom:568.253333pt;}
.y21e{bottom:569.213333pt;}
.y19b{bottom:569.373333pt;}
.y241{bottom:570.013333pt;}
.yc6{bottom:570.973333pt;}
.yf5{bottom:573.533333pt;}
.y20{bottom:574.973333pt;}
.y16e{bottom:580.413333pt;}
.y1d5{bottom:582.973333pt;}
.y113{bottom:583.933333pt;}
.y1fb{bottom:584.093333pt;}
.y9b{bottom:585.853333pt;}
.y21d{bottom:586.813333pt;}
.y240{bottom:587.613333pt;}
.yc5{bottom:588.573333pt;}
.y1f{bottom:588.733333pt;}
.y16c{bottom:590.813333pt;}
.yf4{bottom:591.133333pt;}
.y112{bottom:601.693333pt;}
.y1e{bottom:602.493333pt;}
.y9a{bottom:603.613333pt;}
.y21c{bottom:604.413333pt;}
.yc4{bottom:606.173333pt;}
.yf3{bottom:608.893333pt;}
.y199{bottom:611.453333pt;}
.y1d{bottom:612.413333pt;}
.y1d4{bottom:619.293333pt;}
.y1fa{bottom:619.453333pt;}
.y111{bottom:620.093333pt;}
.y99{bottom:621.213333pt;}
.y21b{bottom:622.013333pt;}
.y63{bottom:622.973333pt;}
.yc3{bottom:623.773333pt;}
.y1c{bottom:624.573333pt;}
.yf2{bottom:626.493333pt;}
.y16a{bottom:632.893333pt;}
.y1b{bottom:635.773333pt;}
.y1d3{bottom:636.893333pt;}
.y1f9{bottom:637.053333pt;}
.y98{bottom:638.813333pt;}
.y21a{bottom:639.613333pt;}
.yc2{bottom:641.373333pt;}
.yf1{bottom:644.093333pt;}
.y1a{bottom:646.813333pt;}
.y196{bottom:653.386667pt;}
.y1d2{bottom:654.493333pt;}
.y1f8{bottom:654.653333pt;}
.y97{bottom:656.413333pt;}
.y219{bottom:657.373333pt;}
.y19{bottom:658.333333pt;}
.yc1{bottom:659.933333pt;}
.yf0{bottom:661.693333pt;}
.y18{bottom:670.493333pt;}
.y1d1{bottom:672.093333pt;}
.y1f7{bottom:672.253333pt;}
.y96{bottom:674.013333pt;}
.y23f{bottom:674.813333pt;}
.y218{bottom:674.973333pt;}
.y169{bottom:677.213333pt;}
.yc0{bottom:677.373333pt;}
.yef{bottom:679.293333pt;}
.y17{bottom:682.013333pt;}
.ybf{bottom:689.053333pt;}
.y1d0{bottom:689.853333pt;}
.y95{bottom:691.773333pt;}
.y217{bottom:692.573333pt;}
.y193{bottom:695.453333pt;}
.yee{bottom:697.053333pt;}
.y16{bottom:705.853333pt;}
.ybe{bottom:706.653333pt;}
.y1f6{bottom:707.613333pt;}
.y1cf{bottom:708.253333pt;}
.y94{bottom:709.373333pt;}
.y216{bottom:710.173333pt;}
.yed{bottom:714.653333pt;}
.y15{bottom:715.773333pt;}
.y167{bottom:719.786667pt;}
.ybd{bottom:724.253333pt;}
.y1f5{bottom:725.213333pt;}
.y93{bottom:726.973333pt;}
.yec{bottom:732.253333pt;}
.y14{bottom:733.053333pt;}
.ybc{bottom:741.853333pt;}
.y1f4{bottom:742.813333pt;}
.y191{bottom:743.453333pt;}
.y92{bottom:744.573333pt;}
.y13{bottom:749.373333pt;}
.yeb{bottom:749.853333pt;}
.y164{bottom:750.653333pt;}
.ybb{bottom:759.653333pt;}
.y12{bottom:761.733333pt;}
.y91{bottom:762.213333pt;}
.yea{bottom:767.493333pt;}
.y11{bottom:773.893333pt;}
.yba{bottom:777.253333pt;}
.y90{bottom:779.973333pt;}
.y10{bottom:782.213333pt;}
.y18e{bottom:784.773333pt;}
.ye9{bottom:785.253333pt;}
.y1f3{bottom:794.853333pt;}
.yb9{bottom:795.653333pt;}
.y161{bottom:797.413333pt;}
.y8f{bottom:797.573333pt;}
.yf{bottom:798.533333pt;}
.ye8{bottom:802.853333pt;}
.ye{bottom:810.213333pt;}
.y1f2{bottom:812.453333pt;}
.yb8{bottom:814.213333pt;}
.y8e{bottom:815.173333pt;}
.ye7{bottom:820.453333pt;}
.y18d{bottom:820.773333pt;}
.yd{bottom:829.573333pt;}
.y1f1{bottom:830.213333pt;}
.y8d{bottom:832.773333pt;}
.ye6{bottom:838.053333pt;}
.y15e{bottom:839.493333pt;}
.y1f0{bottom:847.813333pt;}
.y8c{bottom:850.373333pt;}
.yc{bottom:851.333333pt;}
.ye5{bottom:855.653333pt;}
.y18c{bottom:862.853333pt;}
.y1ef{bottom:865.413333pt;}
.y8b{bottom:868.133333pt;}
.yb{bottom:871.973333pt;}
.ye4{bottom:874.213333pt;}
.y15b{bottom:882.053333pt;}
.y1ee{bottom:883.013333pt;}
.y8a{bottom:885.733333pt;}
.ye3{bottom:891.653333pt;}
.ya{bottom:892.933333pt;}
.y1ed{bottom:899.813333pt;}
.y89{bottom:903.333333pt;}
.y18b{bottom:906.693333pt;}
.y1ec{bottom:917.413333pt;}
.y88{bottom:920.933333pt;}
.y9{bottom:921.093333pt;}
.y15a{bottom:921.733333pt;}
.y1eb{bottom:935.013333pt;}
.y87{bottom:938.533333pt;}
.y8{bottom:945.093333pt;}
.y1ea{bottom:953.413333pt;}
.y86{bottom:956.133333pt;}
.y159{bottom:957.413333pt;}
.y60{bottom:974.400000pt;}
.y82{bottom:983.040000pt;}
.y81{bottom:998.400000pt;}
.y3b{bottom:1010.880000pt;}
.h6{height:5.025000pt;}
.h4c{height:5.562500pt;}
.h2{height:12.000000pt;}
.h2e{height:14.066667pt;}
.h30{height:14.080000pt;}
.h2d{height:14.098667pt;}
.h2f{height:14.112000pt;}
.h17{height:15.040000pt;}
.h15{height:16.125000pt;}
.h1e{height:19.680000pt;}
.h14{height:20.728125pt;}
.h27{height:26.368125pt;}
.hb{height:26.381250pt;}
.he{height:27.523125pt;}
.h38{height:27.986667pt;}
.h33{height:28.146667pt;}
.h2c{height:28.306667pt;}
.h39{height:30.066667pt;}
.h3f{height:30.226667pt;}
.h16{height:32.250000pt;}
.h12{height:35.114107pt;}
.h37{height:35.186667pt;}
.h36{height:35.218667pt;}
.h44{height:35.346667pt;}
.h35{height:35.840000pt;}
.h5{height:36.431250pt;}
.h25{height:36.920625pt;}
.h23{height:37.308750pt;}
.h1d{height:37.410000pt;}
.h3a{height:37.586667pt;}
.h29{height:38.413438pt;}
.h32{height:38.866667pt;}
.h10{height:39.571875pt;}
.h45{height:40.660000pt;}
.h47{height:41.266667pt;}
.h48{height:41.280000pt;}
.h3d{height:41.426667pt;}
.h42{height:41.440000pt;}
.h11{height:41.442606pt;}
.h3b{height:41.906667pt;}
.h40{height:41.920000pt;}
.hc{height:42.084375pt;}
.h4{height:42.399867pt;}
.h18{height:43.215000pt;}
.h41{height:43.680000pt;}
.h34{height:43.826667pt;}
.h3c{height:44.073883pt;}
.h2b{height:44.338667pt;}
.h43{height:44.648750pt;}
.h3e{height:46.100000pt;}
.h20{height:46.240000pt;}
.h13{height:47.109375pt;}
.h46{height:47.200000pt;}
.h1b{height:47.406250pt;}
.h19{height:48.375000pt;}
.hf{height:49.148438pt;}
.h4a{height:49.621875pt;}
.h3{height:52.134375pt;}
.h31{height:52.478750pt;}
.h9{height:53.535000pt;}
.h49{height:53.946667pt;}
.h28{height:54.598989pt;}
.h4b{height:55.298750pt;}
.ha{height:57.787500pt;}
.h21{height:58.563750pt;}
.h26{height:62.781250pt;}
.hd{height:64.500000pt;}
.h1f{height:66.625000pt;}
.h24{height:66.750000pt;}
.h2a{height:75.465000pt;}
.h7{height:76.964840pt;}
.h1c{height:80.520000pt;}
.h8{height:85.785000pt;}
.h22{height:118.240000pt;}
.h1a{height:374.306667pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w11{width:33.120000pt;}
.we{width:37.106667pt;}
.w10{width:40.506667pt;}
.w1f{width:41.906667pt;}
.w1e{width:42.098667pt;}
.w1d{width:42.226667pt;}
.wf{width:43.506667pt;}
.w1c{width:47.986667pt;}
.w16{width:55.072000pt;}
.w15{width:57.760000pt;}
.w14{width:62.560000pt;}
.w29{width:71.026667pt;}
.w2b{width:71.040000pt;}
.w24{width:71.058667pt;}
.w26{width:71.072000pt;}
.w27{width:71.186667pt;}
.w23{width:71.192000pt;}
.w25{width:71.200000pt;}
.w28{width:71.218667pt;}
.w2a{width:71.226667pt;}
.w3{width:72.952000pt;}
.wd{width:73.626667pt;}
.w1b{width:77.792000pt;}
.wc{width:80.626667pt;}
.w19{width:84.026667pt;}
.w20{width:107.706667pt;}
.w13{width:118.260000pt;}
.w17{width:120.018667pt;}
.w18{width:126.066667pt;}
.w9{width:137.306667pt;}
.wb{width:142.573333pt;}
.w22{width:149.626667pt;}
.w12{width:154.266667pt;}
.wa{width:160.346667pt;}
.w7{width:160.826667pt;}
.w1a{width:173.933333pt;}
.w21{width:359.773333pt;}
.w6{width:473.706667pt;}
.w4{width:568.760000pt;}
.w2{width:641.720000pt;}
.w8{width:660.600000pt;}
.w5{width:664.120000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x47{left:-17.928000pt;}
.x0{left:0.000000pt;}
.x55{left:3.780000pt;}
.x2{left:7.192000pt;}
.x35{left:8.480000pt;}
.x11{left:9.592000pt;}
.x29{left:10.560000pt;}
.x27{left:12.000000pt;}
.x2a{left:13.280000pt;}
.x2b{left:15.040000pt;}
.x23{left:16.000000pt;}
.x25{left:17.280000pt;}
.x17{left:18.893333pt;}
.x2d{left:20.186667pt;}
.x2c{left:21.760000pt;}
.x21{left:22.880000pt;}
.x48{left:24.160000pt;}
.x54{left:26.226667pt;}
.x3a{left:27.546667pt;}
.x39{left:28.800000pt;}
.x20{left:29.920000pt;}
.x38{left:31.200000pt;}
.x40{left:33.600000pt;}
.x46{left:34.560000pt;}
.x4b{left:35.512000pt;}
.x49{left:41.760000pt;}
.x36{left:50.546667pt;}
.x37{left:53.600000pt;}
.x3b{left:59.986667pt;}
.x3c{left:62.880000pt;}
.x3{left:65.746667pt;}
.x10{left:72.680000pt;}
.x28{left:77.120000pt;}
.x16{left:82.760000pt;}
.x13{left:84.040000pt;}
.x8{left:88.352000pt;}
.x1{left:96.040000pt;}
.x1c{left:97.472000pt;}
.x2e{left:102.112000pt;}
.xa{left:105.472000pt;}
.x19{left:106.752000pt;}
.x1e{left:108.992000pt;}
.xe{left:117.952000pt;}
.x1f{left:120.032000pt;}
.xc{left:124.352000pt;}
.x6{left:138.906667pt;}
.x3d{left:144.026667pt;}
.x3e{left:149.800000pt;}
.x7{left:160.506667pt;}
.x4c{left:167.240000pt;}
.x4{left:169.000000pt;}
.xd{left:173.626667pt;}
.x2f{left:223.106667pt;}
.x4d{left:238.306667pt;}
.x12{left:268.866667pt;}
.x14{left:275.866667pt;}
.x30{left:285.666667pt;}
.x4e{left:309.506667pt;}
.x3f{left:323.746667pt;}
.x15{left:330.293333pt;}
.x31{left:343.426667pt;}
.x1a{left:348.066667pt;}
.x9{left:359.586667pt;}
.x4f{left:380.586667pt;}
.xb{left:388.413333pt;}
.x5{left:396.893333pt;}
.x32{left:398.506667pt;}
.x41{left:401.546667pt;}
.x4a{left:418.173333pt;}
.xf{left:436.253333pt;}
.x42{left:449.546667pt;}
.x50{left:451.786667pt;}
.x43{left:491.786667pt;}
.x33{left:518.533333pt;}
.x51{left:523.013333pt;}
.x44{left:533.893333pt;}
.x18{left:551.336000pt;}
.x45{left:575.813333pt;}
.x1d{left:579.173333pt;}
.x52{left:594.053333pt;}
.x24{left:615.973333pt;}
.x34{left:644.613333pt;}
.x22{left:659.493333pt;}
.x53{left:665.280000pt;}
.x26{left:700.000000pt;}
.x1b{left:710.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; }
  