
    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_390ca411dd29a824201ac261.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_4315c860c5b2ed0e1e5440d1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.091309;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_ee241605cef833d9d1a19153.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.862793;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_4c66b443656331838ad73cb0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895508;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_a315af2b461fdeff8b06a4ae.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.692383;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_8b4ca08440cfb5ac5726f2cb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.873047;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_88dc21403dee9098367e585f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a3efe392c876a7e833bca487.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_fada33e2a0fd79c13ab74be5.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0d15efc825a7ef6a4519b67a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.104004;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_f040e7d0a052eb15598a8bc2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.762207;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_3eaf71382e3fec9170bd01c5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.687500;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_00e099805f0ccc24c2dc8dc6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.900391;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_1d14f2b5ad63d4c5f95cccb1.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.900391;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_640435fdebb63c4b9d676bee.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_d12ce9724b5d6f25909fe91a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.926270;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_a6a8f5d644a0e5ba356a802e.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_0cf3354d6e2bfd39a85a42ed.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.689453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.720000px;}
.v1{vertical-align:46.080000px;}
.v2{vertical-align:67.680000px;}
.ls55{letter-spacing:-1.767456px;}
.ls2d{letter-spacing:-1.712736px;}
.ls4b{letter-spacing:-1.679904px;}
.lsc{letter-spacing:-1.601568px;}
.ls4a{letter-spacing:-1.596672px;}
.ls27{letter-spacing:-1.590624px;}
.ls40{letter-spacing:-1.536192px;}
.ls18{letter-spacing:-1.518048px;}
.ls28{letter-spacing:-1.505952px;}
.ls1a{letter-spacing:-1.499904px;}
.lsb{letter-spacing:-1.485792px;}
.ls4c{letter-spacing:-1.471968px;}
.ls26{letter-spacing:-1.463616px;}
.ls29{letter-spacing:-1.457568px;}
.ls37{letter-spacing:-1.445472px;}
.ls12{letter-spacing:-1.439424px;}
.ls25{letter-spacing:-1.433376px;}
.ls9{letter-spacing:-1.427904px;}
.ls24{letter-spacing:-1.427328px;}
.ls3d{letter-spacing:-1.421280px;}
.lsa{letter-spacing:-1.418256px;}
.lsd{letter-spacing:-1.408608px;}
.ls30{letter-spacing:-1.404288px;}
.ls32{letter-spacing:-1.397664px;}
.ls23{letter-spacing:-1.378944px;}
.ls34{letter-spacing:-1.364544px;}
.ls3c{letter-spacing:-1.360800px;}
.ls8{letter-spacing:-1.360368px;}
.ls2e{letter-spacing:-1.357920px;}
.ls3e{letter-spacing:-1.342656px;}
.ls48{letter-spacing:-1.331424px;}
.ls31{letter-spacing:-1.324800px;}
.ls38{letter-spacing:-1.324512px;}
.ls3b{letter-spacing:-1.318464px;}
.ls2c{letter-spacing:-1.318176px;}
.ls33{letter-spacing:-1.285056px;}
.ls2f{letter-spacing:-1.278432px;}
.ls41{letter-spacing:-1.258560px;}
.ls7{letter-spacing:-1.040688px;}
.ls4f{letter-spacing:-0.968544px;}
.ls6{letter-spacing:-0.959904px;}
.ls5{letter-spacing:-0.926640px;}
.ls50{letter-spacing:-0.831744px;}
.ls2b{letter-spacing:-0.569088px;}
.ls52{letter-spacing:-0.530784px;}
.ls1c{letter-spacing:-0.508896px;}
.ls1d{letter-spacing:-0.448704px;}
.lse{letter-spacing:-0.426240px;}
.ls21{letter-spacing:-0.393984px;}
.ls4e{letter-spacing:-0.383040px;}
.ls14{letter-spacing:-0.374400px;}
.ls20{letter-spacing:-0.361152px;}
.ls11{letter-spacing:-0.338688px;}
.ls1f{letter-spacing:-0.328320px;}
.ls13{letter-spacing:-0.322560px;}
.ls16{letter-spacing:-0.320544px;}
.ls1b{letter-spacing:-0.302400px;}
.ls49{letter-spacing:-0.290304px;}
.ls2a{letter-spacing:-0.273600px;}
.lsf{letter-spacing:-0.241920px;}
.ls22{letter-spacing:-0.240768px;}
.ls10{letter-spacing:-0.223776px;}
.ls1e{letter-spacing:-0.207936px;}
.ls19{letter-spacing:-0.157248px;}
.ls15{letter-spacing:-0.145152px;}
.ls17{letter-spacing:-0.120960px;}
.ls51{letter-spacing:-0.005472px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000576px;}
.ls2{letter-spacing:0.012096px;}
.ls4d{letter-spacing:0.071136px;}
.ls53{letter-spacing:0.275616px;}
.ls54{letter-spacing:0.426816px;}
.ls46{letter-spacing:2.612880px;}
.ls47{letter-spacing:2.613600px;}
.ls39{letter-spacing:3.224304px;}
.ls3a{letter-spacing:5.850720px;}
.ls3{letter-spacing:9.048960px;}
.ls36{letter-spacing:9.190368px;}
.ls3f{letter-spacing:13.567392px;}
.ls44{letter-spacing:90.401472px;}
.ls43{letter-spacing:98.354016px;}
.ls45{letter-spacing:111.438000px;}
.ls42{letter-spacing:113.017104px;}
.ls35{letter-spacing:592.548336px;}
.ls0{letter-spacing:1041.499440px;}
.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;}
}
.ws2{word-spacing:-21.804480px;}
.ws3{word-spacing:-18.000000px;}
.ws15{word-spacing:-16.560000px;}
.ws12{word-spacing:-15.355872px;}
.ws32{word-spacing:-15.301440px;}
.ws18{word-spacing:-15.281568px;}
.ws14{word-spacing:-15.241824px;}
.ws33{word-spacing:-15.235200px;}
.ws17{word-spacing:-15.202080px;}
.ws19{word-spacing:-15.195456px;}
.ws22{word-spacing:-15.155712px;}
.ws7{word-spacing:-15.120000px;}
.ws9{word-spacing:-14.974848px;}
.ws5{word-spacing:-14.896224px;}
.wsb{word-spacing:-14.878080px;}
.wsa{word-spacing:-14.799456px;}
.ws8{word-spacing:-14.025600px;}
.ws4{word-spacing:-13.973760px;}
.ws23{word-spacing:-13.777344px;}
.ws1c{word-spacing:-13.759200px;}
.ws24{word-spacing:-13.698720px;}
.ws6{word-spacing:-13.680576px;}
.wsd{word-spacing:-13.680000px;}
.wsf{word-spacing:-13.668480px;}
.ws2f{word-spacing:-13.662432px;}
.ws1b{word-spacing:-13.620096px;}
.ws1a{word-spacing:-13.601952px;}
.ws2e{word-spacing:-13.583808px;}
.ws25{word-spacing:-13.523328px;}
.wsc{word-spacing:-13.171104px;}
.ws13{word-spacing:-13.110912px;}
.ws29{word-spacing:-12.437856px;}
.ws2a{word-spacing:-12.361248px;}
.ws26{word-spacing:-12.208032px;}
.ws11{word-spacing:-12.162528px;}
.ws10{word-spacing:-12.077856px;}
.ws31{word-spacing:-12.000096px;}
.ws16{word-spacing:-11.967264px;}
.ws30{word-spacing:-11.912544px;}
.ws0{word-spacing:-11.880000px;}
.ws28{word-spacing:-11.534976px;}
.ws1{word-spacing:-10.920096px;}
.ws1d{word-spacing:-0.066240px;}
.ws1f{word-spacing:-0.060480px;}
.wse{word-spacing:0.000000px;}
.ws21{word-spacing:12.916800px;}
.ws20{word-spacing:12.918096px;}
.ws1e{word-spacing:17.340048px;}
.ws27{word-spacing:93.168768px;}
.ws2c{word-spacing:97.343568px;}
.ws2b{word-spacing:154.133280px;}
.ws2d{word-spacing:172.498080px;}
._7{margin-left:-4.438080px;}
._6{margin-left:-3.183840px;}
._0{margin-left:-1.481760px;}
._2{width:1.073808px;}
._9{width:2.917872px;}
._a{width:4.797648px;}
._b{width:6.245136px;}
._13{width:7.287120px;}
._c{width:8.481600px;}
._d{width:9.685440px;}
._8{width:11.188800px;}
._14{width:12.597120px;}
._15{width:13.777920px;}
._1a{width:16.336512px;}
._1{width:17.577216px;}
._f{width:18.817200px;}
._21{width:19.985472px;}
._18{width:21.945024px;}
._17{width:23.230656px;}
._16{width:24.442560px;}
._4{width:25.575264px;}
._3{width:26.640144px;}
._32{width:27.688320px;}
._12{width:30.867840px;}
._5{width:32.899680px;}
._27{width:34.156800px;}
._19{width:36.167040px;}
._2c{width:38.478528px;}
._1f{width:43.243200px;}
._2f{width:44.458560px;}
._30{width:52.084800px;}
._1d{width:53.161920px;}
._31{width:56.635200px;}
._2b{width:58.489920px;}
._10{width:59.559408px;}
._11{width:60.836112px;}
._33{width:65.180160px;}
._2a{width:75.918528px;}
._29{width:77.103360px;}
._1e{width:85.700160px;}
._1b{width:94.046400px;}
._23{width:98.966568px;}
._2e{width:101.280960px;}
._26{width:108.148968px;}
._36{width:110.090880px;}
._28{width:117.907200px;}
._24{width:124.572384px;}
._22{width:138.928584px;}
._25{width:148.110984px;}
._e{width:166.623264px;}
._20{width:172.125216px;}
._2d{width:175.736880px;}
._37{width:181.961280px;}
._35{width:289.071360px;}
._1c{width:291.816000px;}
._34{width:356.901120px;}
.fc3{color:rgb(150,0,40);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.760000px;}
.fs1{font-size:47.520000px;}
.fs0{font-size:54.720000px;}
.fs5{font-size:57.600000px;}
.fs3{font-size:60.480000px;}
.fs6{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs8{font-size:83.520000px;}
.fs2{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y18c{bottom:3.420000px;}
.y194{bottom:3.480000px;}
.y94{bottom:3.660000px;}
.y1ae{bottom:3.720000px;}
.ya4{bottom:3.840000px;}
.y160{bottom:3.960000px;}
.yae{bottom:4.020000px;}
.yaa{bottom:4.080000px;}
.y10a{bottom:4.200000px;}
.y9d{bottom:4.260000px;}
.y99{bottom:4.320000px;}
.y1a5{bottom:4.440000px;}
.yd3{bottom:4.560000px;}
.ya1{bottom:4.620000px;}
.yb3{bottom:4.680000px;}
.y164{bottom:4.740000px;}
.y104{bottom:4.800000px;}
.ye4{bottom:4.860000px;}
.y108{bottom:4.920000px;}
.y10f{bottom:5.040000px;}
.y101{bottom:5.100000px;}
.y106{bottom:5.220000px;}
.yd9{bottom:5.280000px;}
.ye0{bottom:5.400000px;}
.yda{bottom:5.760000px;}
.y10d{bottom:5.820000px;}
.ye2{bottom:5.880000px;}
.yd1{bottom:5.940000px;}
.ycf{bottom:6.180000px;}
.yd7{bottom:6.300000px;}
.yde{bottom:6.420000px;}
.yd5{bottom:6.540000px;}
.ydc{bottom:7.020000px;}
.y2f{bottom:7.980000px;}
.y10e{bottom:13.320000px;}
.yfa{bottom:15.060000px;}
.y8e{bottom:15.660000px;}
.y15d{bottom:17.640000px;}
.y142{bottom:18.000000px;}
.y18b{bottom:20.700000px;}
.y93{bottom:20.940000px;}
.ya3{bottom:21.120000px;}
.yad{bottom:21.300000px;}
.ya9{bottom:21.360000px;}
.y193{bottom:21.480000px;}
.y9c{bottom:21.540000px;}
.y98{bottom:21.600000px;}
.y1ad{bottom:21.720000px;}
.ya0{bottom:21.900000px;}
.yb2{bottom:21.960000px;}
.y171{bottom:22.140000px;}
.y165{bottom:23.520000px;}
.yfb{bottom:23.700000px;}
.y191{bottom:30.840000px;}
.y1ab{bottom:31.080000px;}
.y92{bottom:38.220000px;}
.yac{bottom:38.580000px;}
.ya8{bottom:38.640000px;}
.y9b{bottom:38.820000px;}
.y97{bottom:38.880000px;}
.y9f{bottom:39.180000px;}
.yb1{bottom:39.240000px;}
.y175{bottom:39.300000px;}
.y18f{bottom:40.920000px;}
.y1a9{bottom:41.160000px;}
.y162{bottom:42.240000px;}
.y3{bottom:45.000000px;}
.y141{bottom:51.480000px;}
.y91{bottom:55.500000px;}
.ya7{bottom:55.920000px;}
.y96{bottom:56.160000px;}
.yb0{bottom:56.520000px;}
.y174{bottom:56.580000px;}
.y18e{bottom:58.200000px;}
.y1a8{bottom:58.440000px;}
.y2{bottom:59.040000px;}
.y15b{bottom:72.720000px;}
.y90{bottom:72.780000px;}
.ya6{bottom:72.840000px;}
.y140{bottom:73.080000px;}
.y173{bottom:73.860000px;}
.y15a{bottom:90.360000px;}
.y13f{bottom:90.720000px;}
.y181{bottom:100.080000px;}
.y2c{bottom:101.520000px;}
.y1a3{bottom:106.560000px;}
.y13e{bottom:106.920000px;}
.y82{bottom:108.360000px;}
.y124{bottom:108.720000px;}
.y59{bottom:109.800000px;}
.ycd{bottom:114.120000px;}
.y2b{bottom:117.000000px;}
.yfe{bottom:117.720000px;}
.y152{bottom:118.800000px;}
.y154{bottom:119.160000px;}
.y13a{bottom:119.520000px;}
.y1a2{bottom:125.640000px;}
.y81{bottom:127.080000px;}
.y123{bottom:127.800000px;}
.y58{bottom:128.880000px;}
.y13b{bottom:130.320000px;}
.y155{bottom:130.680000px;}
.y2a{bottom:132.480000px;}
.ycc{bottom:133.200000px;}
.y9a{bottom:136.500000px;}
.y151{bottom:137.520000px;}
.y180{bottom:138.240000px;}
.yf8{bottom:141.120000px;}
.y156{bottom:142.200000px;}
.y138{bottom:144.000000px;}
.y1a1{bottom:144.720000px;}
.y80{bottom:146.160000px;}
.y122{bottom:146.520000px;}
.y29{bottom:147.960000px;}
.y150{bottom:151.560000px;}
.ycb{bottom:151.920000px;}
.y157{bottom:153.360000px;}
.y17f{bottom:156.960000px;}
.yf6{bottom:159.840000px;}
.yf7{bottom:160.200000px;}
.y13c{bottom:162.720000px;}
.y137{bottom:163.080000px;}
.y28{bottom:163.440000px;}
.y1a0{bottom:163.800000px;}
.y158{bottom:164.880000px;}
.y7f{bottom:165.240000px;}
.y121{bottom:165.600000px;}
.y57{bottom:166.680000px;}
.yf5{bottom:169.920000px;}
.yca{bottom:171.000000px;}
.y13d{bottom:173.880000px;}
.y17e{bottom:176.040000px;}
.y159{bottom:176.400000px;}
.y27{bottom:178.920000px;}
.y136{bottom:182.160000px;}
.y19f{bottom:182.520000px;}
.y7e{bottom:183.960000px;}
.y120{bottom:184.680000px;}
.y56{bottom:185.760000px;}
.y95{bottom:189.000000px;}
.yc9{bottom:190.080000px;}
.y26{bottom:194.400000px;}
.y17d{bottom:195.120000px;}
.yf4{bottom:199.080000px;}
.y135{bottom:200.880000px;}
.y19e{bottom:201.600000px;}
.y7d{bottom:203.040000px;}
.y11f{bottom:203.400000px;}
.y55{bottom:204.840000px;}
.yc8{bottom:208.800000px;}
.y25{bottom:210.240000px;}
.y17c{bottom:214.200000px;}
.yf3{bottom:218.160000px;}
.y134{bottom:219.960000px;}
.y19d{bottom:220.680000px;}
.y15c{bottom:221.760000px;}
.y7c{bottom:222.120000px;}
.y11e{bottom:222.480000px;}
.y54{bottom:223.560000px;}
.y24{bottom:225.720000px;}
.yc7{bottom:227.880000px;}
.y17b{bottom:232.920000px;}
.yf2{bottom:236.880000px;}
.y133{bottom:239.040000px;}
.y19c{bottom:239.400000px;}
.y23{bottom:241.200000px;}
.y11d{bottom:241.560000px;}
.y53{bottom:242.640000px;}
.yc6{bottom:246.960000px;}
.y17a{bottom:252.000000px;}
.yf1{bottom:255.960000px;}
.y22{bottom:256.680000px;}
.y132{bottom:257.760000px;}
.y19b{bottom:258.480000px;}
.y8f{bottom:259.500000px;}
.y7b{bottom:259.920000px;}
.y11c{bottom:260.280000px;}
.y52{bottom:261.720000px;}
.yc5{bottom:265.680000px;}
.y179{bottom:271.080000px;}
.y21{bottom:272.160000px;}
.yf0{bottom:275.040000px;}
.y131{bottom:276.840000px;}
.y19a{bottom:277.560000px;}
.y7a{bottom:279.000000px;}
.y11b{bottom:279.360000px;}
.y51{bottom:280.800000px;}
.yc4{bottom:284.760000px;}
.y20{bottom:288.000000px;}
.y178{bottom:289.800000px;}
.yef{bottom:293.760000px;}
.y130{bottom:295.920000px;}
.y199{bottom:296.280000px;}
.y79{bottom:298.080000px;}
.y11a{bottom:298.440000px;}
.y50{bottom:299.520000px;}
.yc3{bottom:303.840000px;}
.y172{bottom:304.500000px;}
.y1f{bottom:305.280000px;}
.yee{bottom:312.840000px;}
.y12f{bottom:314.640000px;}
.y198{bottom:315.360000px;}
.y78{bottom:316.800000px;}
.y119{bottom:317.520000px;}
.y4f{bottom:318.600000px;}
.y177{bottom:322.500000px;}
.y1e{bottom:322.560000px;}
.yc2{bottom:322.920000px;}
.yed{bottom:331.920000px;}
.y12e{bottom:333.720000px;}
.y197{bottom:334.440000px;}
.y77{bottom:335.880000px;}
.y118{bottom:336.240000px;}
.y4e{bottom:337.680000px;}
.y1d{bottom:339.840000px;}
.yc1{bottom:341.640000px;}
.y8d{bottom:346.500000px;}
.yec{bottom:350.640000px;}
.y12d{bottom:352.800000px;}
.y196{bottom:353.520000px;}
.y76{bottom:354.960000px;}
.y117{bottom:355.320000px;}
.y4d{bottom:356.400000px;}
.y176{bottom:357.000000px;}
.y1c{bottom:357.120000px;}
.yc0{bottom:360.720000px;}
.yeb{bottom:369.720000px;}
.y12c{bottom:371.880000px;}
.y195{bottom:372.240000px;}
.y75{bottom:373.680000px;}
.y1b{bottom:374.400000px;}
.y4c{bottom:375.480000px;}
.ybf{bottom:379.800000px;}
.y8c{bottom:380.520000px;}
.y14f{bottom:386.280000px;}
.yea{bottom:388.800000px;}
.y12b{bottom:390.600000px;}
.y1a{bottom:391.320000px;}
.y170{bottom:391.500000px;}
.y74{bottom:392.760000px;}
.y116{bottom:393.120000px;}
.y4b{bottom:394.560000px;}
.ybe{bottom:398.520000px;}
.y8b{bottom:399.600000px;}
.y14e{bottom:405.000000px;}
.ye9{bottom:407.880000px;}
.y18d{bottom:408.000000px;}
.y19{bottom:408.600000px;}
.y12a{bottom:409.680000px;}
.y73{bottom:411.840000px;}
.y115{bottom:412.200000px;}
.y4a{bottom:413.640000px;}
.ybd{bottom:417.600000px;}
.y8a{bottom:418.320000px;}
.y14d{bottom:424.080000px;}
.y18{bottom:425.880000px;}
.y192{bottom:426.000000px;}
.ye8{bottom:426.600000px;}
.y129{bottom:428.760000px;}
.y72{bottom:430.920000px;}
.y114{bottom:431.280000px;}
.y16f{bottom:432.000000px;}
.y49{bottom:432.360000px;}
.ybc{bottom:436.680000px;}
.y89{bottom:437.400000px;}
.y17{bottom:443.160000px;}
.ye7{bottom:445.680000px;}
.y128{bottom:447.480000px;}
.y71{bottom:449.640000px;}
.y113{bottom:450.000000px;}
.y16e{bottom:450.720000px;}
.y48{bottom:451.440000px;}
.ybb{bottom:455.760000px;}
.y88{bottom:456.480000px;}
.y16{bottom:460.440000px;}
.y190{bottom:462.000000px;}
.y14c{bottom:462.240000px;}
.ye6{bottom:464.760000px;}
.y127{bottom:466.560000px;}
.y70{bottom:468.720000px;}
.y112{bottom:469.080000px;}
.y16d{bottom:469.800000px;}
.y47{bottom:470.520000px;}
.yba{bottom:474.480000px;}
.y87{bottom:475.200000px;}
.y15{bottom:477.720000px;}
.y14b{bottom:480.960000px;}
.y18a{bottom:481.500000px;}
.ye5{bottom:483.480000px;}
.y126{bottom:485.280000px;}
.y6f{bottom:487.800000px;}
.y111{bottom:488.160000px;}
.y16c{bottom:488.880000px;}
.y46{bottom:489.240000px;}
.yb9{bottom:493.560000px;}
.y86{bottom:494.280000px;}
.y14{bottom:495.000000px;}
.y125{bottom:499.320000px;}
.ye3{bottom:499.500000px;}
.y139{bottom:500.040000px;}
.y6e{bottom:506.520000px;}
.y110{bottom:507.240000px;}
.y16b{bottom:507.960000px;}
.y45{bottom:508.320000px;}
.y13{bottom:512.280000px;}
.yb8{bottom:512.640000px;}
.y85{bottom:513.360000px;}
.y189{bottom:516.000000px;}
.ye1{bottom:519.000000px;}
.y14a{bottom:519.120000px;}
.yfd{bottom:522.000000px;}
.y6d{bottom:525.600000px;}
.y16a{bottom:526.680000px;}
.y44{bottom:527.400000px;}
.y12{bottom:529.560000px;}
.yb7{bottom:531.360000px;}
.y84{bottom:532.440000px;}
.y149{bottom:537.840000px;}
.ydf{bottom:540.000000px;}
.y6c{bottom:544.680000px;}
.y169{bottom:545.760000px;}
.y43{bottom:546.120000px;}
.y11{bottom:546.840000px;}
.yb6{bottom:550.440000px;}
.y83{bottom:550.800000px;}
.y148{bottom:556.920000px;}
.ydd{bottom:559.500000px;}
.y6b{bottom:563.400000px;}
.y10{bottom:564.840000px;}
.y42{bottom:565.200000px;}
.yb5{bottom:569.520000px;}
.y10c{bottom:574.500000px;}
.y188{bottom:575.640000px;}
.y147{bottom:576.000000px;}
.ydb{bottom:580.500000px;}
.y6a{bottom:582.480000px;}
.y168{bottom:583.560000px;}
.y41{bottom:584.280000px;}
.yb4{bottom:588.240000px;}
.yf{bottom:594.000000px;}
.y187{bottom:594.720000px;}
.y146{bottom:595.080000px;}
.y10b{bottom:595.500000px;}
.y69{bottom:601.560000px;}
.y167{bottom:602.640000px;}
.yaf{bottom:603.000000px;}
.y40{bottom:603.360000px;}
.ye{bottom:612.720000px;}
.y145{bottom:613.800000px;}
.y109{bottom:615.000000px;}
.y161{bottom:618.000000px;}
.y68{bottom:620.640000px;}
.y3f{bottom:622.080000px;}
.yd8{bottom:624.000000px;}
.yd{bottom:630.000000px;}
.y144{bottom:632.520000px;}
.y107{bottom:633.000000px;}
.y166{bottom:637.500000px;}
.y67{bottom:639.360000px;}
.y3e{bottom:641.160000px;}
.yd6{bottom:643.500000px;}
.y143{bottom:646.560000px;}
.yc{bottom:648.000000px;}
.y153{bottom:648.360000px;}
.y186{bottom:651.600000px;}
.y105{bottom:652.500000px;}
.y163{bottom:655.500000px;}
.y66{bottom:658.440000px;}
.y3d{bottom:660.240000px;}
.yd4{bottom:664.500000px;}
.y185{bottom:670.680000px;}
.y103{bottom:672.000000px;}
.yab{bottom:673.500000px;}
.y15f{bottom:675.000000px;}
.y65{bottom:677.520000px;}
.y3c{bottom:678.960000px;}
.yb{bottom:682.200000px;}
.yd2{bottom:687.000000px;}
.y184{bottom:689.400000px;}
.y102{bottom:690.000000px;}
.y15e{bottom:693.000000px;}
.y64{bottom:696.240000px;}
.y3b{bottom:698.040000px;}
.ya{bottom:703.080000px;}
.yd0{bottom:706.500000px;}
.y183{bottom:708.480000px;}
.y100{bottom:709.500000px;}
.y63{bottom:715.320000px;}
.y3a{bottom:717.120000px;}
.ya5{bottom:726.000000px;}
.yce{bottom:727.500000px;}
.y182{bottom:727.560000px;}
.yff{bottom:729.000000px;}
.y9{bottom:732.240000px;}
.y62{bottom:734.400000px;}
.y39{bottom:735.840000px;}
.y1a7{bottom:744.000000px;}
.yfc{bottom:748.500000px;}
.y61{bottom:753.480000px;}
.y38{bottom:754.920000px;}
.y8{bottom:761.760000px;}
.y1ac{bottom:762.000000px;}
.yf9{bottom:766.500000px;}
.y60{bottom:772.200000px;}
.y37{bottom:779.760000px;}
.y7{bottom:790.920000px;}
.y5f{bottom:791.280000px;}
.y36{bottom:795.600000px;}
.y1aa{bottom:798.000000px;}
.y5e{bottom:810.360000px;}
.y35{bottom:811.440000px;}
.ya2{bottom:813.000000px;}
.y1a6{bottom:817.500000px;}
.y6{bottom:820.080000px;}
.y34{bottom:826.920000px;}
.y5d{bottom:829.080000px;}
.y33{bottom:842.400000px;}
.y9e{bottom:847.500000px;}
.y5c{bottom:848.160000px;}
.y5{bottom:849.600000px;}
.y1a4{bottom:852.000000px;}
.y32{bottom:857.880000px;}
.y5b{bottom:867.240000px;}
.y31{bottom:873.360000px;}
.y4{bottom:878.760000px;}
.y5a{bottom:885.960000px;}
.y30{bottom:888.840000px;}
.y2e{bottom:925.500000px;}
.y2d{bottom:938.160000px;}
.y1{bottom:939.960000px;}
.h22{height:18.000000px;}
.h1d{height:19.500000px;}
.h16{height:21.000000px;}
.h14{height:22.500000px;}
.h17{height:24.000000px;}
.ha{height:27.000000px;}
.he{height:30.000000px;}
.h12{height:36.000000px;}
.hc{height:37.112344px;}
.h24{height:37.500000px;}
.h2{height:38.020781px;}
.h1c{height:40.500000px;}
.h15{height:41.402813px;}
.h3{height:41.696016px;}
.h1b{height:42.672656px;}
.h5{height:43.410938px;}
.hd{height:45.345938px;}
.hb{height:45.360000px;}
.h1a{height:46.553203px;}
.h9{height:48.601406px;}
.h6{height:48.761719px;}
.h13{height:52.500000px;}
.h7{height:53.067656px;}
.h11{height:54.000000px;}
.h20{height:56.808281px;}
.h23{height:57.000000px;}
.h8{height:58.121719px;}
.h4{height:66.047344px;}
.h10{height:70.500000px;}
.h26{height:73.500000px;}
.hf{height:87.000000px;}
.h25{height:88.500000px;}
.h19{height:95.513203px;}
.h1e{height:246.000000px;}
.h1f{height:249.840000px;}
.h21{height:253.080000px;}
.h18{height:994.500000px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w20{width:31.500000px;}
.w12{width:33.000000px;}
.w16{width:39.000000px;}
.w3{width:51.000000px;}
.w2{width:60.000000px;}
.w6{width:63.000000px;}
.w21{width:87.000000px;}
.w1d{width:90.000000px;}
.w14{width:91.500000px;}
.wa{width:94.500000px;}
.w18{width:102.000000px;}
.wd{width:105.000000px;}
.w13{width:106.500000px;}
.w17{width:111.000000px;}
.w1f{width:115.500000px;}
.w1c{width:120.000000px;}
.wb{width:121.500000px;}
.w11{width:144.000000px;}
.w19{width:148.500000px;}
.wc{width:156.000000px;}
.w8{width:157.500000px;}
.w15{width:166.500000px;}
.w4{width:171.000000px;}
.w1b{width:192.000000px;}
.w7{width:198.000000px;}
.w1e{width:204.000000px;}
.w5{width:315.000000px;}
.we{width:433.800000px;}
.wf{width:451.800000px;}
.w10{width:490.500000px;}
.w1a{width:534.000000px;}
.w9{width:695.925000px;}
.w0{width:722.925000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x47{left:1.260144px;}
.x46{left:5.760144px;}
.x12{left:7.980072px;}
.xb{left:9.617436px;}
.x4a{left:11.271252px;}
.x10{left:12.385980px;}
.x4e{left:13.431000px;}
.x13{left:15.068484px;}
.x15{left:17.108280px;}
.xd{left:18.514908px;}
.x14{left:20.283336px;}
.x11{left:21.930192px;}
.x60{left:23.298480px;}
.x20{left:24.704964px;}
.x50{left:25.815480px;}
.x23{left:27.000000px;}
.x1c{left:28.305180px;}
.x18{left:29.366460px;}
.x5b{left:30.989760px;}
.x5f{left:32.010840px;}
.x32{left:33.374616px;}
.x7{left:34.709880px;}
.x54{left:36.348252px;}
.x52{left:39.809880px;}
.x16{left:42.671628px;}
.x1a{left:44.009016px;}
.x30{left:45.337440px;}
.x31{left:48.937080px;}
.x33{left:49.994760px;}
.x55{left:51.090120px;}
.x2e{left:53.594976px;}
.x21{left:56.218848px;}
.x4d{left:60.686280px;}
.x56{left:63.284880px;}
.x2f{left:65.565000px;}
.x17{left:68.242320px;}
.x1d{left:70.860000px;}
.x1e{left:72.816648px;}
.x1f{left:75.164424px;}
.x53{left:83.542608px;}
.x9{left:94.500000px;}
.x2{left:95.760144px;}
.x3d{left:103.008450px;}
.x45{left:112.008450px;}
.x4{left:122.760144px;}
.x34{left:127.710216px;}
.xf{left:129.198480px;}
.x8{left:138.285288px;}
.xc{left:144.000000px;}
.x22{left:148.935060px;}
.x37{left:154.061250px;}
.x19{left:156.000000px;}
.x36{left:160.901250px;}
.x40{left:162.446700px;}
.x3c{left:172.721400px;}
.x44{left:181.721400px;}
.x38{left:195.433050px;}
.x41{left:199.276050px;}
.x48{left:237.000000px;}
.x2b{left:249.000000px;}
.x24{left:259.141500px;}
.x39{left:269.574450px;}
.x42{left:281.556300px;}
.x57{left:285.000000px;}
.x25{left:287.543340px;}
.x5c{left:297.000000px;}
.xe{left:313.500000px;}
.x27{left:315.173232px;}
.x3a{left:320.338500px;}
.x43{left:333.364050px;}
.x26{left:335.880000px;}
.x3b{left:339.962400px;}
.x1b{left:352.500000px;}
.x49{left:357.000000px;}
.x5{left:359.105004px;}
.x29{left:362.262960px;}
.x2c{left:369.000000px;}
.x28{left:379.800000px;}
.x4b{left:388.500000px;}
.x58{left:403.500000px;}
.x5d{left:411.000000px;}
.x4f{left:417.000000px;}
.x59{left:435.000000px;}
.x2a{left:436.903920px;}
.x5e{left:441.000000px;}
.x1{left:467.010000px;}
.x4c{left:493.500000px;}
.x2d{left:523.500000px;}
.x51{left:526.500000px;}
.x3f{left:534.285360px;}
.x5a{left:538.500000px;}
.x61{left:541.500000px;}
.x3{left:547.444080px;}
.xa{left:549.765360px;}
.x6{left:568.500000px;}
.x35{left:573.165000px;}
.x3e{left:591.165000px;}
@media print{
.v4{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.640000pt;}
.v1{vertical-align:40.960000pt;}
.v2{vertical-align:60.160000pt;}
.ls55{letter-spacing:-1.571072pt;}
.ls2d{letter-spacing:-1.522432pt;}
.ls4b{letter-spacing:-1.493248pt;}
.lsc{letter-spacing:-1.423616pt;}
.ls4a{letter-spacing:-1.419264pt;}
.ls27{letter-spacing:-1.413888pt;}
.ls40{letter-spacing:-1.365504pt;}
.ls18{letter-spacing:-1.349376pt;}
.ls28{letter-spacing:-1.338624pt;}
.ls1a{letter-spacing:-1.333248pt;}
.lsb{letter-spacing:-1.320704pt;}
.ls4c{letter-spacing:-1.308416pt;}
.ls26{letter-spacing:-1.300992pt;}
.ls29{letter-spacing:-1.295616pt;}
.ls37{letter-spacing:-1.284864pt;}
.ls12{letter-spacing:-1.279488pt;}
.ls25{letter-spacing:-1.274112pt;}
.ls9{letter-spacing:-1.269248pt;}
.ls24{letter-spacing:-1.268736pt;}
.ls3d{letter-spacing:-1.263360pt;}
.lsa{letter-spacing:-1.260672pt;}
.lsd{letter-spacing:-1.252096pt;}
.ls30{letter-spacing:-1.248256pt;}
.ls32{letter-spacing:-1.242368pt;}
.ls23{letter-spacing:-1.225728pt;}
.ls34{letter-spacing:-1.212928pt;}
.ls3c{letter-spacing:-1.209600pt;}
.ls8{letter-spacing:-1.209216pt;}
.ls2e{letter-spacing:-1.207040pt;}
.ls3e{letter-spacing:-1.193472pt;}
.ls48{letter-spacing:-1.183488pt;}
.ls31{letter-spacing:-1.177600pt;}
.ls38{letter-spacing:-1.177344pt;}
.ls3b{letter-spacing:-1.171968pt;}
.ls2c{letter-spacing:-1.171712pt;}
.ls33{letter-spacing:-1.142272pt;}
.ls2f{letter-spacing:-1.136384pt;}
.ls41{letter-spacing:-1.118720pt;}
.ls7{letter-spacing:-0.925056pt;}
.ls4f{letter-spacing:-0.860928pt;}
.ls6{letter-spacing:-0.853248pt;}
.ls5{letter-spacing:-0.823680pt;}
.ls50{letter-spacing:-0.739328pt;}
.ls2b{letter-spacing:-0.505856pt;}
.ls52{letter-spacing:-0.471808pt;}
.ls1c{letter-spacing:-0.452352pt;}
.ls1d{letter-spacing:-0.398848pt;}
.lse{letter-spacing:-0.378880pt;}
.ls21{letter-spacing:-0.350208pt;}
.ls4e{letter-spacing:-0.340480pt;}
.ls14{letter-spacing:-0.332800pt;}
.ls20{letter-spacing:-0.321024pt;}
.ls11{letter-spacing:-0.301056pt;}
.ls1f{letter-spacing:-0.291840pt;}
.ls13{letter-spacing:-0.286720pt;}
.ls16{letter-spacing:-0.284928pt;}
.ls1b{letter-spacing:-0.268800pt;}
.ls49{letter-spacing:-0.258048pt;}
.ls2a{letter-spacing:-0.243200pt;}
.lsf{letter-spacing:-0.215040pt;}
.ls22{letter-spacing:-0.214016pt;}
.ls10{letter-spacing:-0.198912pt;}
.ls1e{letter-spacing:-0.184832pt;}
.ls19{letter-spacing:-0.139776pt;}
.ls15{letter-spacing:-0.129024pt;}
.ls17{letter-spacing:-0.107520pt;}
.ls51{letter-spacing:-0.004864pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000512pt;}
.ls2{letter-spacing:0.010752pt;}
.ls4d{letter-spacing:0.063232pt;}
.ls53{letter-spacing:0.244992pt;}
.ls54{letter-spacing:0.379392pt;}
.ls46{letter-spacing:2.322560pt;}
.ls47{letter-spacing:2.323200pt;}
.ls39{letter-spacing:2.866048pt;}
.ls3a{letter-spacing:5.200640pt;}
.ls3{letter-spacing:8.043520pt;}
.ls36{letter-spacing:8.169216pt;}
.ls3f{letter-spacing:12.059904pt;}
.ls44{letter-spacing:80.356864pt;}
.ls43{letter-spacing:87.425792pt;}
.ls45{letter-spacing:99.056000pt;}
.ls42{letter-spacing:100.459648pt;}
.ls35{letter-spacing:526.709632pt;}
.ls0{letter-spacing:925.777280pt;}
.ws2{word-spacing:-19.381760pt;}
.ws3{word-spacing:-16.000000pt;}
.ws15{word-spacing:-14.720000pt;}
.ws12{word-spacing:-13.649664pt;}
.ws32{word-spacing:-13.601280pt;}
.ws18{word-spacing:-13.583616pt;}
.ws14{word-spacing:-13.548288pt;}
.ws33{word-spacing:-13.542400pt;}
.ws17{word-spacing:-13.512960pt;}
.ws19{word-spacing:-13.507072pt;}
.ws22{word-spacing:-13.471744pt;}
.ws7{word-spacing:-13.440000pt;}
.ws9{word-spacing:-13.310976pt;}
.ws5{word-spacing:-13.241088pt;}
.wsb{word-spacing:-13.224960pt;}
.wsa{word-spacing:-13.155072pt;}
.ws8{word-spacing:-12.467200pt;}
.ws4{word-spacing:-12.421120pt;}
.ws23{word-spacing:-12.246528pt;}
.ws1c{word-spacing:-12.230400pt;}
.ws24{word-spacing:-12.176640pt;}
.ws6{word-spacing:-12.160512pt;}
.wsd{word-spacing:-12.160000pt;}
.wsf{word-spacing:-12.149760pt;}
.ws2f{word-spacing:-12.144384pt;}
.ws1b{word-spacing:-12.106752pt;}
.ws1a{word-spacing:-12.090624pt;}
.ws2e{word-spacing:-12.074496pt;}
.ws25{word-spacing:-12.020736pt;}
.wsc{word-spacing:-11.707648pt;}
.ws13{word-spacing:-11.654144pt;}
.ws29{word-spacing:-11.055872pt;}
.ws2a{word-spacing:-10.987776pt;}
.ws26{word-spacing:-10.851584pt;}
.ws11{word-spacing:-10.811136pt;}
.ws10{word-spacing:-10.735872pt;}
.ws31{word-spacing:-10.666752pt;}
.ws16{word-spacing:-10.637568pt;}
.ws30{word-spacing:-10.588928pt;}
.ws0{word-spacing:-10.560000pt;}
.ws28{word-spacing:-10.253312pt;}
.ws1{word-spacing:-9.706752pt;}
.ws1d{word-spacing:-0.058880pt;}
.ws1f{word-spacing:-0.053760pt;}
.wse{word-spacing:0.000000pt;}
.ws21{word-spacing:11.481600pt;}
.ws20{word-spacing:11.482752pt;}
.ws1e{word-spacing:15.413376pt;}
.ws27{word-spacing:82.816683pt;}
.ws2c{word-spacing:86.527616pt;}
.ws2b{word-spacing:137.007360pt;}
.ws2d{word-spacing:153.331627pt;}
._7{margin-left:-3.944960pt;}
._6{margin-left:-2.830080pt;}
._0{margin-left:-1.317120pt;}
._2{width:0.954496pt;}
._9{width:2.593664pt;}
._a{width:4.264576pt;}
._b{width:5.551232pt;}
._13{width:6.477440pt;}
._c{width:7.539200pt;}
._d{width:8.609280pt;}
._8{width:9.945600pt;}
._14{width:11.197440pt;}
._15{width:12.247040pt;}
._1a{width:14.521344pt;}
._1{width:15.624192pt;}
._f{width:16.726400pt;}
._21{width:17.764864pt;}
._18{width:19.506688pt;}
._17{width:20.649472pt;}
._16{width:21.726720pt;}
._4{width:22.733568pt;}
._3{width:23.680128pt;}
._32{width:24.611840pt;}
._12{width:27.438080pt;}
._5{width:29.244160pt;}
._27{width:30.361600pt;}
._19{width:32.148480pt;}
._2c{width:34.203136pt;}
._1f{width:38.438400pt;}
._2f{width:39.518720pt;}
._30{width:46.297600pt;}
._1d{width:47.255040pt;}
._31{width:50.342400pt;}
._2b{width:51.991040pt;}
._10{width:52.941696pt;}
._11{width:54.076544pt;}
._33{width:57.937920pt;}
._2a{width:67.483136pt;}
._29{width:68.536320pt;}
._1e{width:76.177920pt;}
._1b{width:83.596800pt;}
._23{width:87.970283pt;}
._2e{width:90.027520pt;}
._26{width:96.132416pt;}
._36{width:97.858560pt;}
._28{width:104.806400pt;}
._24{width:110.731008pt;}
._22{width:123.492075pt;}
._25{width:131.654208pt;}
._e{width:148.109568pt;}
._20{width:153.000192pt;}
._2d{width:156.210560pt;}
._37{width:161.743360pt;}
._35{width:256.952320pt;}
._1c{width:259.392000pt;}
._34{width:317.245440pt;}
.fs7{font-size:37.120000pt;}
.fs1{font-size:42.240000pt;}
.fs0{font-size:48.640000pt;}
.fs5{font-size:51.200000pt;}
.fs3{font-size:53.760000pt;}
.fs6{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs8{font-size:74.240000pt;}
.fs2{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y18c{bottom:3.040000pt;}
.y194{bottom:3.093333pt;}
.y94{bottom:3.253333pt;}
.y1ae{bottom:3.306667pt;}
.ya4{bottom:3.413333pt;}
.y160{bottom:3.520000pt;}
.yae{bottom:3.573333pt;}
.yaa{bottom:3.626667pt;}
.y10a{bottom:3.733333pt;}
.y9d{bottom:3.786667pt;}
.y99{bottom:3.840000pt;}
.y1a5{bottom:3.946667pt;}
.yd3{bottom:4.053333pt;}
.ya1{bottom:4.106667pt;}
.yb3{bottom:4.160000pt;}
.y164{bottom:4.213333pt;}
.y104{bottom:4.266667pt;}
.ye4{bottom:4.320000pt;}
.y108{bottom:4.373333pt;}
.y10f{bottom:4.480000pt;}
.y101{bottom:4.533333pt;}
.y106{bottom:4.640000pt;}
.yd9{bottom:4.693333pt;}
.ye0{bottom:4.800000pt;}
.yda{bottom:5.120000pt;}
.y10d{bottom:5.173333pt;}
.ye2{bottom:5.226667pt;}
.yd1{bottom:5.280000pt;}
.ycf{bottom:5.493333pt;}
.yd7{bottom:5.600000pt;}
.yde{bottom:5.706667pt;}
.yd5{bottom:5.813333pt;}
.ydc{bottom:6.240000pt;}
.y2f{bottom:7.093333pt;}
.y10e{bottom:11.840000pt;}
.yfa{bottom:13.386667pt;}
.y8e{bottom:13.920000pt;}
.y15d{bottom:15.680000pt;}
.y142{bottom:16.000000pt;}
.y18b{bottom:18.400000pt;}
.y93{bottom:18.613333pt;}
.ya3{bottom:18.773333pt;}
.yad{bottom:18.933333pt;}
.ya9{bottom:18.986667pt;}
.y193{bottom:19.093333pt;}
.y9c{bottom:19.146667pt;}
.y98{bottom:19.200000pt;}
.y1ad{bottom:19.306667pt;}
.ya0{bottom:19.466667pt;}
.yb2{bottom:19.520000pt;}
.y171{bottom:19.680000pt;}
.y165{bottom:20.906667pt;}
.yfb{bottom:21.066667pt;}
.y191{bottom:27.413333pt;}
.y1ab{bottom:27.626667pt;}
.y92{bottom:33.973333pt;}
.yac{bottom:34.293333pt;}
.ya8{bottom:34.346667pt;}
.y9b{bottom:34.506667pt;}
.y97{bottom:34.560000pt;}
.y9f{bottom:34.826667pt;}
.yb1{bottom:34.880000pt;}
.y175{bottom:34.933333pt;}
.y18f{bottom:36.373333pt;}
.y1a9{bottom:36.586667pt;}
.y162{bottom:37.546667pt;}
.y3{bottom:40.000000pt;}
.y141{bottom:45.760000pt;}
.y91{bottom:49.333333pt;}
.ya7{bottom:49.706667pt;}
.y96{bottom:49.920000pt;}
.yb0{bottom:50.240000pt;}
.y174{bottom:50.293333pt;}
.y18e{bottom:51.733333pt;}
.y1a8{bottom:51.946667pt;}
.y2{bottom:52.480000pt;}
.y15b{bottom:64.640000pt;}
.y90{bottom:64.693333pt;}
.ya6{bottom:64.746667pt;}
.y140{bottom:64.960000pt;}
.y173{bottom:65.653333pt;}
.y15a{bottom:80.320000pt;}
.y13f{bottom:80.640000pt;}
.y181{bottom:88.960000pt;}
.y2c{bottom:90.240000pt;}
.y1a3{bottom:94.720000pt;}
.y13e{bottom:95.040000pt;}
.y82{bottom:96.320000pt;}
.y124{bottom:96.640000pt;}
.y59{bottom:97.600000pt;}
.ycd{bottom:101.440000pt;}
.y2b{bottom:104.000000pt;}
.yfe{bottom:104.640000pt;}
.y152{bottom:105.600000pt;}
.y154{bottom:105.920000pt;}
.y13a{bottom:106.240000pt;}
.y1a2{bottom:111.680000pt;}
.y81{bottom:112.960000pt;}
.y123{bottom:113.600000pt;}
.y58{bottom:114.560000pt;}
.y13b{bottom:115.840000pt;}
.y155{bottom:116.160000pt;}
.y2a{bottom:117.760000pt;}
.ycc{bottom:118.400000pt;}
.y9a{bottom:121.333333pt;}
.y151{bottom:122.240000pt;}
.y180{bottom:122.880000pt;}
.yf8{bottom:125.440000pt;}
.y156{bottom:126.400000pt;}
.y138{bottom:128.000000pt;}
.y1a1{bottom:128.640000pt;}
.y80{bottom:129.920000pt;}
.y122{bottom:130.240000pt;}
.y29{bottom:131.520000pt;}
.y150{bottom:134.720000pt;}
.ycb{bottom:135.040000pt;}
.y157{bottom:136.320000pt;}
.y17f{bottom:139.520000pt;}
.yf6{bottom:142.080000pt;}
.yf7{bottom:142.400000pt;}
.y13c{bottom:144.640000pt;}
.y137{bottom:144.960000pt;}
.y28{bottom:145.280000pt;}
.y1a0{bottom:145.600000pt;}
.y158{bottom:146.560000pt;}
.y7f{bottom:146.880000pt;}
.y121{bottom:147.200000pt;}
.y57{bottom:148.160000pt;}
.yf5{bottom:151.040000pt;}
.yca{bottom:152.000000pt;}
.y13d{bottom:154.560000pt;}
.y17e{bottom:156.480000pt;}
.y159{bottom:156.800000pt;}
.y27{bottom:159.040000pt;}
.y136{bottom:161.920000pt;}
.y19f{bottom:162.240000pt;}
.y7e{bottom:163.520000pt;}
.y120{bottom:164.160000pt;}
.y56{bottom:165.120000pt;}
.y95{bottom:168.000000pt;}
.yc9{bottom:168.960000pt;}
.y26{bottom:172.800000pt;}
.y17d{bottom:173.440000pt;}
.yf4{bottom:176.960000pt;}
.y135{bottom:178.560000pt;}
.y19e{bottom:179.200000pt;}
.y7d{bottom:180.480000pt;}
.y11f{bottom:180.800000pt;}
.y55{bottom:182.080000pt;}
.yc8{bottom:185.600000pt;}
.y25{bottom:186.880000pt;}
.y17c{bottom:190.400000pt;}
.yf3{bottom:193.920000pt;}
.y134{bottom:195.520000pt;}
.y19d{bottom:196.160000pt;}
.y15c{bottom:197.120000pt;}
.y7c{bottom:197.440000pt;}
.y11e{bottom:197.760000pt;}
.y54{bottom:198.720000pt;}
.y24{bottom:200.640000pt;}
.yc7{bottom:202.560000pt;}
.y17b{bottom:207.040000pt;}
.yf2{bottom:210.560000pt;}
.y133{bottom:212.480000pt;}
.y19c{bottom:212.800000pt;}
.y23{bottom:214.400000pt;}
.y11d{bottom:214.720000pt;}
.y53{bottom:215.680000pt;}
.yc6{bottom:219.520000pt;}
.y17a{bottom:224.000000pt;}
.yf1{bottom:227.520000pt;}
.y22{bottom:228.160000pt;}
.y132{bottom:229.120000pt;}
.y19b{bottom:229.760000pt;}
.y8f{bottom:230.666667pt;}
.y7b{bottom:231.040000pt;}
.y11c{bottom:231.360000pt;}
.y52{bottom:232.640000pt;}
.yc5{bottom:236.160000pt;}
.y179{bottom:240.960000pt;}
.y21{bottom:241.920000pt;}
.yf0{bottom:244.480000pt;}
.y131{bottom:246.080000pt;}
.y19a{bottom:246.720000pt;}
.y7a{bottom:248.000000pt;}
.y11b{bottom:248.320000pt;}
.y51{bottom:249.600000pt;}
.yc4{bottom:253.120000pt;}
.y20{bottom:256.000000pt;}
.y178{bottom:257.600000pt;}
.yef{bottom:261.120000pt;}
.y130{bottom:263.040000pt;}
.y199{bottom:263.360000pt;}
.y79{bottom:264.960000pt;}
.y11a{bottom:265.280000pt;}
.y50{bottom:266.240000pt;}
.yc3{bottom:270.080000pt;}
.y172{bottom:270.666667pt;}
.y1f{bottom:271.360000pt;}
.yee{bottom:278.080000pt;}
.y12f{bottom:279.680000pt;}
.y198{bottom:280.320000pt;}
.y78{bottom:281.600000pt;}
.y119{bottom:282.240000pt;}
.y4f{bottom:283.200000pt;}
.y177{bottom:286.666667pt;}
.y1e{bottom:286.720000pt;}
.yc2{bottom:287.040000pt;}
.yed{bottom:295.040000pt;}
.y12e{bottom:296.640000pt;}
.y197{bottom:297.280000pt;}
.y77{bottom:298.560000pt;}
.y118{bottom:298.880000pt;}
.y4e{bottom:300.160000pt;}
.y1d{bottom:302.080000pt;}
.yc1{bottom:303.680000pt;}
.y8d{bottom:308.000000pt;}
.yec{bottom:311.680000pt;}
.y12d{bottom:313.600000pt;}
.y196{bottom:314.240000pt;}
.y76{bottom:315.520000pt;}
.y117{bottom:315.840000pt;}
.y4d{bottom:316.800000pt;}
.y176{bottom:317.333333pt;}
.y1c{bottom:317.440000pt;}
.yc0{bottom:320.640000pt;}
.yeb{bottom:328.640000pt;}
.y12c{bottom:330.560000pt;}
.y195{bottom:330.880000pt;}
.y75{bottom:332.160000pt;}
.y1b{bottom:332.800000pt;}
.y4c{bottom:333.760000pt;}
.ybf{bottom:337.600000pt;}
.y8c{bottom:338.240000pt;}
.y14f{bottom:343.360000pt;}
.yea{bottom:345.600000pt;}
.y12b{bottom:347.200000pt;}
.y1a{bottom:347.840000pt;}
.y170{bottom:348.000000pt;}
.y74{bottom:349.120000pt;}
.y116{bottom:349.440000pt;}
.y4b{bottom:350.720000pt;}
.ybe{bottom:354.240000pt;}
.y8b{bottom:355.200000pt;}
.y14e{bottom:360.000000pt;}
.ye9{bottom:362.560000pt;}
.y18d{bottom:362.666667pt;}
.y19{bottom:363.200000pt;}
.y12a{bottom:364.160000pt;}
.y73{bottom:366.080000pt;}
.y115{bottom:366.400000pt;}
.y4a{bottom:367.680000pt;}
.ybd{bottom:371.200000pt;}
.y8a{bottom:371.840000pt;}
.y14d{bottom:376.960000pt;}
.y18{bottom:378.560000pt;}
.y192{bottom:378.666667pt;}
.ye8{bottom:379.200000pt;}
.y129{bottom:381.120000pt;}
.y72{bottom:383.040000pt;}
.y114{bottom:383.360000pt;}
.y16f{bottom:384.000000pt;}
.y49{bottom:384.320000pt;}
.ybc{bottom:388.160000pt;}
.y89{bottom:388.800000pt;}
.y17{bottom:393.920000pt;}
.ye7{bottom:396.160000pt;}
.y128{bottom:397.760000pt;}
.y71{bottom:399.680000pt;}
.y113{bottom:400.000000pt;}
.y16e{bottom:400.640000pt;}
.y48{bottom:401.280000pt;}
.ybb{bottom:405.120000pt;}
.y88{bottom:405.760000pt;}
.y16{bottom:409.280000pt;}
.y190{bottom:410.666667pt;}
.y14c{bottom:410.880000pt;}
.ye6{bottom:413.120000pt;}
.y127{bottom:414.720000pt;}
.y70{bottom:416.640000pt;}
.y112{bottom:416.960000pt;}
.y16d{bottom:417.600000pt;}
.y47{bottom:418.240000pt;}
.yba{bottom:421.760000pt;}
.y87{bottom:422.400000pt;}
.y15{bottom:424.640000pt;}
.y14b{bottom:427.520000pt;}
.y18a{bottom:428.000000pt;}
.ye5{bottom:429.760000pt;}
.y126{bottom:431.360000pt;}
.y6f{bottom:433.600000pt;}
.y111{bottom:433.920000pt;}
.y16c{bottom:434.560000pt;}
.y46{bottom:434.880000pt;}
.yb9{bottom:438.720000pt;}
.y86{bottom:439.360000pt;}
.y14{bottom:440.000000pt;}
.y125{bottom:443.840000pt;}
.ye3{bottom:444.000000pt;}
.y139{bottom:444.480000pt;}
.y6e{bottom:450.240000pt;}
.y110{bottom:450.880000pt;}
.y16b{bottom:451.520000pt;}
.y45{bottom:451.840000pt;}
.y13{bottom:455.360000pt;}
.yb8{bottom:455.680000pt;}
.y85{bottom:456.320000pt;}
.y189{bottom:458.666667pt;}
.ye1{bottom:461.333333pt;}
.y14a{bottom:461.440000pt;}
.yfd{bottom:464.000000pt;}
.y6d{bottom:467.200000pt;}
.y16a{bottom:468.160000pt;}
.y44{bottom:468.800000pt;}
.y12{bottom:470.720000pt;}
.yb7{bottom:472.320000pt;}
.y84{bottom:473.280000pt;}
.y149{bottom:478.080000pt;}
.ydf{bottom:480.000000pt;}
.y6c{bottom:484.160000pt;}
.y169{bottom:485.120000pt;}
.y43{bottom:485.440000pt;}
.y11{bottom:486.080000pt;}
.yb6{bottom:489.280000pt;}
.y83{bottom:489.600000pt;}
.y148{bottom:495.040000pt;}
.ydd{bottom:497.333333pt;}
.y6b{bottom:500.800000pt;}
.y10{bottom:502.080000pt;}
.y42{bottom:502.400000pt;}
.yb5{bottom:506.240000pt;}
.y10c{bottom:510.666667pt;}
.y188{bottom:511.680000pt;}
.y147{bottom:512.000000pt;}
.ydb{bottom:516.000000pt;}
.y6a{bottom:517.760000pt;}
.y168{bottom:518.720000pt;}
.y41{bottom:519.360000pt;}
.yb4{bottom:522.880000pt;}
.yf{bottom:528.000000pt;}
.y187{bottom:528.640000pt;}
.y146{bottom:528.960000pt;}
.y10b{bottom:529.333333pt;}
.y69{bottom:534.720000pt;}
.y167{bottom:535.680000pt;}
.yaf{bottom:536.000000pt;}
.y40{bottom:536.320000pt;}
.ye{bottom:544.640000pt;}
.y145{bottom:545.600000pt;}
.y109{bottom:546.666667pt;}
.y161{bottom:549.333333pt;}
.y68{bottom:551.680000pt;}
.y3f{bottom:552.960000pt;}
.yd8{bottom:554.666667pt;}
.yd{bottom:560.000000pt;}
.y144{bottom:562.240000pt;}
.y107{bottom:562.666667pt;}
.y166{bottom:566.666667pt;}
.y67{bottom:568.320000pt;}
.y3e{bottom:569.920000pt;}
.yd6{bottom:572.000000pt;}
.y143{bottom:574.720000pt;}
.yc{bottom:576.000000pt;}
.y153{bottom:576.320000pt;}
.y186{bottom:579.200000pt;}
.y105{bottom:580.000000pt;}
.y163{bottom:582.666667pt;}
.y66{bottom:585.280000pt;}
.y3d{bottom:586.880000pt;}
.yd4{bottom:590.666667pt;}
.y185{bottom:596.160000pt;}
.y103{bottom:597.333333pt;}
.yab{bottom:598.666667pt;}
.y15f{bottom:600.000000pt;}
.y65{bottom:602.240000pt;}
.y3c{bottom:603.520000pt;}
.yb{bottom:606.400000pt;}
.yd2{bottom:610.666667pt;}
.y184{bottom:612.800000pt;}
.y102{bottom:613.333333pt;}
.y15e{bottom:616.000000pt;}
.y64{bottom:618.880000pt;}
.y3b{bottom:620.480000pt;}
.ya{bottom:624.960000pt;}
.yd0{bottom:628.000000pt;}
.y183{bottom:629.760000pt;}
.y100{bottom:630.666667pt;}
.y63{bottom:635.840000pt;}
.y3a{bottom:637.440000pt;}
.ya5{bottom:645.333333pt;}
.yce{bottom:646.666667pt;}
.y182{bottom:646.720000pt;}
.yff{bottom:648.000000pt;}
.y9{bottom:650.880000pt;}
.y62{bottom:652.800000pt;}
.y39{bottom:654.080000pt;}
.y1a7{bottom:661.333333pt;}
.yfc{bottom:665.333333pt;}
.y61{bottom:669.760000pt;}
.y38{bottom:671.040000pt;}
.y8{bottom:677.120000pt;}
.y1ac{bottom:677.333333pt;}
.yf9{bottom:681.333333pt;}
.y60{bottom:686.400000pt;}
.y37{bottom:693.120000pt;}
.y7{bottom:703.040000pt;}
.y5f{bottom:703.360000pt;}
.y36{bottom:707.200000pt;}
.y1aa{bottom:709.333333pt;}
.y5e{bottom:720.320000pt;}
.y35{bottom:721.280000pt;}
.ya2{bottom:722.666667pt;}
.y1a6{bottom:726.666667pt;}
.y6{bottom:728.960000pt;}
.y34{bottom:735.040000pt;}
.y5d{bottom:736.960000pt;}
.y33{bottom:748.800000pt;}
.y9e{bottom:753.333333pt;}
.y5c{bottom:753.920000pt;}
.y5{bottom:755.200000pt;}
.y1a4{bottom:757.333333pt;}
.y32{bottom:762.560000pt;}
.y5b{bottom:770.880000pt;}
.y31{bottom:776.320000pt;}
.y4{bottom:781.120000pt;}
.y5a{bottom:787.520000pt;}
.y30{bottom:790.080000pt;}
.y2e{bottom:822.666667pt;}
.y2d{bottom:833.920000pt;}
.y1{bottom:835.520000pt;}
.h22{height:16.000000pt;}
.h1d{height:17.333333pt;}
.h16{height:18.666667pt;}
.h14{height:20.000000pt;}
.h17{height:21.333333pt;}
.ha{height:24.000000pt;}
.he{height:26.666667pt;}
.h12{height:32.000000pt;}
.hc{height:32.988750pt;}
.h24{height:33.333333pt;}
.h2{height:33.796250pt;}
.h1c{height:36.000000pt;}
.h15{height:36.802500pt;}
.h3{height:37.063125pt;}
.h1b{height:37.931250pt;}
.h5{height:38.587500pt;}
.hd{height:40.307500pt;}
.hb{height:40.320000pt;}
.h1a{height:41.380625pt;}
.h9{height:43.201250pt;}
.h6{height:43.343750pt;}
.h13{height:46.666667pt;}
.h7{height:47.171250pt;}
.h11{height:48.000000pt;}
.h20{height:50.496250pt;}
.h23{height:50.666667pt;}
.h8{height:51.663750pt;}
.h4{height:58.708750pt;}
.h10{height:62.666667pt;}
.h26{height:65.333333pt;}
.hf{height:77.333333pt;}
.h25{height:78.666667pt;}
.h19{height:84.900625pt;}
.h1e{height:218.666667pt;}
.h1f{height:222.080000pt;}
.h21{height:224.960000pt;}
.h18{height:884.000000pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w20{width:28.000000pt;}
.w12{width:29.333333pt;}
.w16{width:34.666667pt;}
.w3{width:45.333333pt;}
.w2{width:53.333333pt;}
.w6{width:56.000000pt;}
.w21{width:77.333333pt;}
.w1d{width:80.000000pt;}
.w14{width:81.333333pt;}
.wa{width:84.000000pt;}
.w18{width:90.666667pt;}
.wd{width:93.333333pt;}
.w13{width:94.666667pt;}
.w17{width:98.666667pt;}
.w1f{width:102.666667pt;}
.w1c{width:106.666667pt;}
.wb{width:108.000000pt;}
.w11{width:128.000000pt;}
.w19{width:132.000000pt;}
.wc{width:138.666667pt;}
.w8{width:140.000000pt;}
.w15{width:148.000000pt;}
.w4{width:152.000000pt;}
.w1b{width:170.666667pt;}
.w7{width:176.000000pt;}
.w1e{width:181.333333pt;}
.w5{width:280.000000pt;}
.we{width:385.600000pt;}
.wf{width:401.600000pt;}
.w10{width:436.000000pt;}
.w1a{width:474.666667pt;}
.w9{width:618.600000pt;}
.w0{width:642.600000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x47{left:1.120128pt;}
.x46{left:5.120128pt;}
.x12{left:7.093397pt;}
.xb{left:8.548832pt;}
.x4a{left:10.018891pt;}
.x10{left:11.009760pt;}
.x4e{left:11.938667pt;}
.x13{left:13.394208pt;}
.x15{left:15.207360pt;}
.xd{left:16.457696pt;}
.x14{left:18.029632pt;}
.x11{left:19.493504pt;}
.x60{left:20.709760pt;}
.x20{left:21.959968pt;}
.x50{left:22.947093pt;}
.x23{left:24.000000pt;}
.x1c{left:25.160160pt;}
.x18{left:26.103520pt;}
.x5b{left:27.546453pt;}
.x5f{left:28.454080pt;}
.x32{left:29.666325pt;}
.x7{left:30.853227pt;}
.x54{left:32.309557pt;}
.x52{left:35.386560pt;}
.x16{left:37.930336pt;}
.x1a{left:39.119125pt;}
.x30{left:40.299947pt;}
.x31{left:43.499627pt;}
.x33{left:44.439787pt;}
.x55{left:45.413440pt;}
.x2e{left:47.639979pt;}
.x21{left:49.972309pt;}
.x4d{left:53.943360pt;}
.x56{left:56.253227pt;}
.x2f{left:58.280000pt;}
.x17{left:60.659840pt;}
.x1d{left:62.986667pt;}
.x1e{left:64.725909pt;}
.x1f{left:66.812821pt;}
.x53{left:74.260096pt;}
.x9{left:84.000000pt;}
.x2{left:85.120128pt;}
.x3d{left:91.563067pt;}
.x45{left:99.563067pt;}
.x4{left:109.120128pt;}
.x34{left:113.520192pt;}
.xf{left:114.843093pt;}
.x8{left:122.920256pt;}
.xc{left:128.000000pt;}
.x22{left:132.386720pt;}
.x37{left:136.943333pt;}
.x19{left:138.666667pt;}
.x36{left:143.023333pt;}
.x40{left:144.397067pt;}
.x3c{left:153.530133pt;}
.x44{left:161.530133pt;}
.x38{left:173.718267pt;}
.x41{left:177.134267pt;}
.x48{left:210.666667pt;}
.x2b{left:221.333333pt;}
.x24{left:230.348000pt;}
.x39{left:239.621733pt;}
.x42{left:250.272267pt;}
.x57{left:253.333333pt;}
.x25{left:255.594080pt;}
.x5c{left:264.000000pt;}
.xe{left:278.666667pt;}
.x27{left:280.153984pt;}
.x3a{left:284.745333pt;}
.x43{left:296.323600pt;}
.x26{left:298.560000pt;}
.x3b{left:302.188800pt;}
.x1b{left:313.333333pt;}
.x49{left:317.333333pt;}
.x5{left:319.204448pt;}
.x29{left:322.011520pt;}
.x2c{left:328.000000pt;}
.x28{left:337.600000pt;}
.x4b{left:345.333333pt;}
.x58{left:358.666667pt;}
.x5d{left:365.333333pt;}
.x4f{left:370.666667pt;}
.x59{left:386.666667pt;}
.x2a{left:388.359040pt;}
.x5e{left:392.000000pt;}
.x1{left:415.120000pt;}
.x4c{left:438.666667pt;}
.x2d{left:465.333333pt;}
.x51{left:468.000000pt;}
.x3f{left:474.920320pt;}
.x5a{left:478.666667pt;}
.x61{left:481.333333pt;}
.x3{left:486.616960pt;}
.xa{left:488.680320pt;}
.x6{left:505.333333pt;}
.x35{left:509.480000pt;}
.x3e{left:525.480000pt;}
}




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