
    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_ef17cb685dfdd15906d74334.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b481470e15027f2db244333f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_7b6c212b81a02c800af52cbb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_1b78c09a145ed210c7aae2ae.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.747070;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_ce7f33e59c80e37206cc1a17.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.774902;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_994830e3f8850728a462fcde.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.934082;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_4d6f4c7c5ff3cd687bf2804f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.756836;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_b48e53b351ceed68665f7628.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.202148;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_ef17cb685dfdd15906d74334.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_75dcd16487e4dd7a81df9d79.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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_f20dc00b33edc61db46a719b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;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_ce7f33e59c80e37206cc1a17.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.774902;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_994830e3f8850728a462fcde.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.934082;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_699198506c9e32a888367f68.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.202148;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_70a3e4a7155eea3fa46f31ec.woff2')format("woff");}.fff{font-family:fff;line-height:0.774902;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_e2946304a33cea786ed5a602.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.172852;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_ed5e90f2b412cdc7b39f5ee0.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.202148;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_84823ac894dd963d6a80bb9f.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.202148;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_5b92a755b6485ec20711ec61.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.053223;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_8a14c699a06e92ed4c50a826.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.172852;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:ff15;src:url('chunks/assets/font_8eadc79e23ce86939216aa64.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.940918;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:ff16;src:url('chunks/assets/font_c37bb83b9b614a9628a49b36.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.053223;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:ff17;src:url('chunks/assets/font_9cf74f3522d74b4271959a34.woff2')format("woff");}.ff17{font-family:ff17;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;}
.m1{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);}
.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);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-1.440000px;}
.ls16{letter-spacing:-1.368000px;}
.ls18{letter-spacing:-1.296000px;}
.ls27{letter-spacing:-1.224000px;}
.ls2c{letter-spacing:-1.080000px;}
.ls23{letter-spacing:-0.936000px;}
.ls19{letter-spacing:-0.864000px;}
.ls7{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.648000px;}
.lsb{letter-spacing:-0.576000px;}
.ls11{letter-spacing:-0.504000px;}
.lsd{letter-spacing:-0.432000px;}
.ls1a{letter-spacing:-0.360000px;}
.ls22{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.115200px;}
.ls14{letter-spacing:-0.072000px;}
.ls26{letter-spacing:-0.000006px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.072000px;}
.lse{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.185760px;}
.ls1{letter-spacing:0.204480px;}
.lsa{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.256200px;}
.lsf{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.299400px;}
.ls6{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.576000px;}
.ls10{letter-spacing:0.720000px;}
.ls1f{letter-spacing:1.008000px;}
.ls2a{letter-spacing:1.728000px;}
.ls1c{letter-spacing:2.448000px;}
.ls29{letter-spacing:3.168000px;}
.ls28{letter-spacing:4.608000px;}
.ls1b{letter-spacing:6.048000px;}
.ls20{letter-spacing:7.488000px;}
.ls21{letter-spacing:9.648000px;}
.ls24{letter-spacing:10.224000px;}
.ls25{letter-spacing:16.704000px;}
.ls2b{letter-spacing:19.728000px;}
.ls1e{letter-spacing:24.048000px;}
.ls1d{letter-spacing:37.008000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-72.000000px;}
.ws3{word-spacing:-16.632000px;}
.ws9{word-spacing:-16.488000px;}
.ws7{word-spacing:-16.416000px;}
.wsf{word-spacing:-16.344000px;}
.ws2{word-spacing:-16.272000px;}
.ws11{word-spacing:-16.271994px;}
.wsc{word-spacing:-16.200000px;}
.ws8{word-spacing:-16.128000px;}
.wsb{word-spacing:-16.056000px;}
.wsd{word-spacing:-15.912000px;}
.ws6{word-spacing:-15.840000px;}
.wse{word-spacing:-15.768000px;}
.ws10{word-spacing:-15.696000px;}
.ws5{word-spacing:-15.269640px;}
.wsa{word-spacing:-15.226440px;}
.ws1{word-spacing:-14.855040px;}
.ws0{word-spacing:0.000000px;}
._1c{margin-left:-15.408000px;}
._20{margin-left:-14.280000px;}
._2{margin-left:-12.816000px;}
._1d{margin-left:-10.944000px;}
._1f{margin-left:-9.024000px;}
._19{margin-left:-7.440000px;}
._21{margin-left:-6.036000px;}
._1b{margin-left:-4.812000px;}
._1e{margin-left:-3.336000px;}
._1a{margin-left:-2.112000px;}
._1{margin-left:-1.022400px;}
._3{width:1.374480px;}
._4{width:2.585520px;}
._a{width:3.643200px;}
._6{width:4.680000px;}
._5{width:6.120000px;}
._7{width:7.332000px;}
._b{width:8.364000px;}
._14{width:9.576000px;}
._d{width:11.174400px;}
._c{width:12.672000px;}
._17{width:13.886400px;}
._13{width:15.192000px;}
._16{width:17.760000px;}
._15{width:19.296000px;}
._8{width:21.096000px;}
._12{width:22.281600px;}
._9{width:23.726400px;}
._e{width:25.692720px;}
._22{width:27.035280px;}
._18{width:28.728000px;}
._2a{width:30.060000px;}
._28{width:31.104000px;}
._29{width:33.120000px;}
._27{width:34.680000px;}
._2b{width:36.000000px;}
._10{width:37.152000px;}
._f{width:38.520000px;}
._11{width:39.547920px;}
._25{width:40.645680px;}
._24{width:41.760000px;}
._23{width:42.768000px;}
._26{width:43.992000px;}
._3e{width:45.720000px;}
._3d{width:46.872000px;}
._3b{width:49.464000px;}
._3a{width:50.544000px;}
._39{width:51.600000px;}
._3c{width:52.872000px;}
._2e{width:58.680000px;}
._2d{width:59.688000px;}
._35{width:62.064000px;}
._34{width:63.576000px;}
._2f{width:93.024000px;}
._30{width:94.104000px;}
._40{width:110.376000px;}
._36{width:114.840000px;}
._38{width:165.960000px;}
._37{width:166.968000px;}
._3f{width:184.464000px;}
._2c{width:196.104000px;}
._31{width:279.360000px;}
._32{width:536.976000px;}
._33{width:538.716000px;}
._0{width:2272.800000px;}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(47,84,150);}
.fc2{color:rgb(0,0,255);}
.fc5{color:rgb(255,0,102);}
.fc1{color:rgb(151,153,155);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:48.240000px;}
.fsb{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fsc{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fsa{font-size:84.240000px;}
.fs2{font-size:87.120000px;}
.fs8{font-size:90.000000px;}
.fs1{font-size:102.240000px;}
.fs3{font-size:105.120000px;}
.fs9{font-size:108.000000px;}
.fs4{font-size:120.240000px;}
.fs5{font-size:171.360000px;}
.y0{bottom:0.000000px;}
.y24{bottom:1.440000px;}
.y142{bottom:15.834000px;}
.y135{bottom:15.840000px;}
.y144{bottom:15.870000px;}
.y19c{bottom:15.885000px;}
.y13e{bottom:16.020000px;}
.y170{bottom:18.720000px;}
.y185{bottom:21.105000px;}
.y177{bottom:22.860000px;}
.y182{bottom:23.760000px;}
.y17e{bottom:26.640000px;}
.y17a{bottom:30.780000px;}
.y189{bottom:38.340000px;}
.y187{bottom:48.780000px;}
.y173{bottom:48.825000px;}
.y26{bottom:51.660000px;}
.y184{bottom:54.045000px;}
.y176{bottom:55.800000px;}
.y181{bottom:56.700000px;}
.y54{bottom:57.600000px;}
.y22{bottom:57.780000px;}
.y17d{bottom:59.580000px;}
.y179{bottom:63.720000px;}
.y52{bottom:68.796000px;}
.y53{bottom:77.616000px;}
.y21{bottom:81.720000px;}
.y172{bottom:81.765000px;}
.y51{bottom:87.156000px;}
.y175{bottom:88.740000px;}
.y180{bottom:89.820000px;}
.y17c{bottom:92.550000px;}
.y178{bottom:96.660000px;}
.y50{bottom:105.516000px;}
.y12a{bottom:111.456000px;}
.y16b{bottom:114.516000px;}
.y1a2{bottom:114.705000px;}
.y122{bottom:117.576000px;}
.y1a3{bottom:118.296000px;}
.y6f{bottom:121.356000px;}
.y4f{bottom:123.696000px;}
.y1c8{bottom:128.556000px;}
.y20{bottom:129.276000px;}
.y15f{bottom:134.856000px;}
.y16a{bottom:135.576000px;}
.y89{bottom:135.936000px;}
.y141{bottom:136.116000px;}
.y1b5{bottom:136.476000px;}
.y18a{bottom:137.016000px;}
.y4e{bottom:142.056000px;}
.yd6{bottom:142.776000px;}
.y129{bottom:144.396000px;}
.yb5{bottom:147.456000px;}
.y121{bottom:150.510000px;}
.y10c{bottom:151.950000px;}
.y6e{bottom:156.990000px;}
.yf1{bottom:158.430000px;}
.y4d{bottom:159.510000px;}
.y1f{bottom:164.010000px;}
.y1a0{bottom:165.450000px;}
.y15e{bottom:167.790000px;}
.y169{bottom:168.510000px;}
.y88{bottom:168.870000px;}
.y140{bottom:169.050000px;}
.y188{bottom:169.950000px;}
.y1c9{bottom:170.850000px;}
.y1c7{bottom:172.470000px;}
.yd5{bottom:175.890000px;}
.y4c{bottom:176.970000px;}
.y128{bottom:177.330000px;}
.yb4{bottom:180.390000px;}
.ybd{bottom:183.270000px;}
.y120{bottom:183.450000px;}
.y10b{bottom:184.890000px;}
.y6d{bottom:192.810000px;}
.y1c6{bottom:194.430000px;}
.y4b{bottom:195.330000px;}
.y1e{bottom:198.930000px;}
.y15d{bottom:200.730000px;}
.y168{bottom:201.450000px;}
.y87{bottom:201.810000px;}
.y13f{bottom:201.990000px;}
.y1b4{bottom:202.350000px;}
.yf0{bottom:203.430000px;}
.yd4{bottom:208.830000px;}
.y127{bottom:210.270000px;}
.yb3{bottom:213.330000px;}
.y4a{bottom:213.510000px;}
.y19f{bottom:216.210000px;}
.y11f{bottom:216.390000px;}
.y10a{bottom:217.830000px;}
.y1b3{bottom:224.310000px;}
.y186{bottom:225.390000px;}
.ybc{bottom:228.270000px;}
.y6c{bottom:228.450000px;}
.y49{bottom:231.690000px;}
.y1d{bottom:233.670000px;}
.y167{bottom:234.390000px;}
.y86{bottom:234.930000px;}
.y1c5{bottom:238.350000px;}
.yd3{bottom:241.770000px;}
.y126{bottom:243.390000px;}
.yb2{bottom:246.270000px;}
.yef{bottom:248.430000px;}
.y19e{bottom:249.150000px;}
.y11e{bottom:249.330000px;}
.y48{bottom:249.870000px;}
.y109{bottom:250.770000px;}
.y1c4{bottom:260.310000px;}
.y6b{bottom:264.270000px;}
.y15c{bottom:266.610000px;}
.y166{bottom:267.330000px;}
.y85{bottom:267.870000px;}
.y47{bottom:268.230000px;}
.y1c{bottom:268.590000px;}
.y1a1{bottom:268.770000px;}
.ybb{bottom:273.270000px;}
.yd2{bottom:274.710000px;}
.y125{bottom:276.330000px;}
.yb1{bottom:279.390000px;}
.y19d{bottom:282.090000px;}
.y11d{bottom:282.270000px;}
.y108{bottom:283.710000px;}
.y46{bottom:286.410000px;}
.y1b2{bottom:290.370000px;}
.yee{bottom:293.250000px;}
.y9d{bottom:297.390000px;}
.y15b{bottom:299.550000px;}
.y6a{bottom:299.910000px;}
.y165{bottom:300.270000px;}
.y84{bottom:300.810000px;}
.y13d{bottom:300.990000px;}
.y1b{bottom:303.330000px;}
.y1c3{bottom:304.230000px;}
.y45{bottom:304.590000px;}
.yd1{bottom:307.650000px;}
.y124{bottom:309.270000px;}
.yb0{bottom:312.330000px;}
.y11c{bottom:315.390000px;}
.y19b{bottom:315.930000px;}
.y107{bottom:316.650000px;}
.y25{bottom:317.550000px;}
.yba{bottom:318.270000px;}
.y44{bottom:322.770000px;}
.y183{bottom:324.210000px;}
.yed{bottom:326.370000px;}
.y15a{bottom:332.535000px;}
.y9c{bottom:333.075000px;}
.y164{bottom:333.255000px;}
.y83{bottom:333.795000px;}
.y13c{bottom:333.975000px;}
.y1b1{bottom:334.335000px;}
.y69{bottom:335.595000px;}
.y1a{bottom:338.250000px;}
.yd0{bottom:340.635000px;}
.y43{bottom:341.175000px;}
.y123{bottom:342.255000px;}
.yaf{bottom:345.315000px;}
.y11b{bottom:348.375000px;}
.y106{bottom:349.815000px;}
.y1b0{bottom:356.295000px;}
.y42{bottom:359.355000px;}
.yb9{bottom:363.135000px;}
.y159{bottom:365.475000px;}
.y163{bottom:366.195000px;}
.y82{bottom:366.735000px;}
.y13b{bottom:366.915000px;}
.y68{bottom:368.715000px;}
.y1c2{bottom:370.335000px;}
.y19{bottom:372.990000px;}
.ycf{bottom:373.575000px;}
.y41{bottom:377.535000px;}
.yae{bottom:378.255000px;}
.y11a{bottom:381.315000px;}
.y105{bottom:382.755000px;}
.yec{bottom:392.295000px;}
.y17f{bottom:395.355000px;}
.y40{bottom:395.895000px;}
.y158{bottom:398.595000px;}
.y162{bottom:399.315000px;}
.y81{bottom:399.675000px;}
.y13a{bottom:399.855000px;}
.y1af{bottom:400.215000px;}
.y9b{bottom:404.535000px;}
.y18{bottom:407.955000px;}
.yb8{bottom:408.135000px;}
.yad{bottom:411.195000px;}
.y3f{bottom:414.075000px;}
.y119{bottom:414.255000px;}
.y104{bottom:415.695000px;}
.yce{bottom:418.575000px;}
.y1ae{bottom:422.175000px;}
.yeb{bottom:425.235000px;}
.y161{bottom:432.255000px;}
.y139{bottom:432.795000px;}
.y3e{bottom:434.775000px;}
.y80{bottom:435.315000px;}
.y1c1{bottom:436.215000px;}
.y67{bottom:437.655000px;}
.y9a{bottom:440.175000px;}
.y17{bottom:442.695000px;}
.yac{bottom:444.135000px;}
.y157{bottom:446.475000px;}
.y118{bottom:447.195000px;}
.y103{bottom:448.635000px;}
.yb7{bottom:453.135000px;}
.yea{bottom:458.175000px;}
.ycd{bottom:459.075000px;}
.y3d{bottom:461.235000px;}
.y160{bottom:465.195000px;}
.y138{bottom:465.735000px;}
.y1ad{bottom:466.095000px;}
.y7f{bottom:468.435000px;}
.y99{bottom:475.995000px;}
.yab{bottom:477.075000px;}
.y16{bottom:477.615000px;}
.y156{bottom:479.415000px;}
.y117{bottom:480.135000px;}
.y102{bottom:481.575000px;}
.y3c{bottom:485.535000px;}
.y1ac{bottom:488.055000px;}
.ye9{bottom:491.115000px;}
.yb6{bottom:498.135000px;}
.y137{bottom:498.675000px;}
.ycc{bottom:499.395000px;}
.y1c0{bottom:502.095000px;}
.y17b{bottom:502.275000px;}
.y66{bottom:506.595000px;}
.yaa{bottom:510.015000px;}
.y98{bottom:511.635000px;}
.y15{bottom:512.355000px;}
.y116{bottom:513.075000px;}
.y3b{bottom:513.795000px;}
.y101{bottom:514.515000px;}
.ye8{bottom:524.055000px;}
.y19a{bottom:527.295000px;}
.y7e{bottom:528.015000px;}
.y136{bottom:531.615000px;}
.y1ab{bottom:531.975000px;}
.ycb{bottom:539.895000px;}
.y3a{bottom:540.075000px;}
.ya9{bottom:542.955000px;}
.y155{bottom:545.295000px;}
.y115{bottom:546.015000px;}
.y14{bottom:547.275000px;}
.y100{bottom:547.455000px;}
.y1aa{bottom:553.935000px;}
.ye7{bottom:556.995000px;}
.y65{bottom:559.695000px;}
.y199{bottom:560.235000px;}
.y23{bottom:560.955000px;}
.y134{bottom:565.455000px;}
.y1bf{bottom:567.975000px;}
.ya8{bottom:575.895000px;}
.y154{bottom:578.235000px;}
.y114{bottom:578.955000px;}
.yca{bottom:580.395000px;}
.y13{bottom:582.015000px;}
.y97{bottom:583.095000px;}
.ye6{bottom:589.935000px;}
.y39{bottom:591.735000px;}
.y198{bottom:593.175000px;}
.y7d{bottom:593.895000px;}
.y1a9{bottom:598.065000px;}
.ya7{bottom:609.045000px;}
.y153{bottom:611.205000px;}
.y113{bottom:611.925000px;}
.yff{bottom:613.365000px;}
.y12{bottom:616.935000px;}
.y96{bottom:618.765000px;}
.y1a8{bottom:620.025000px;}
.yc9{bottom:620.925000px;}
.ye5{bottom:623.085000px;}
.y197{bottom:626.145000px;}
.y7c{bottom:627.045000px;}
.y38{bottom:628.305000px;}
.y133{bottom:629.925000px;}
.y64{bottom:633.885000px;}
.y1be{bottom:634.065000px;}
.ya6{bottom:641.985000px;}
.y152{bottom:644.145000px;}
.y112{bottom:645.045000px;}
.yfe{bottom:646.305000px;}
.y95{bottom:651.705000px;}
.y11{bottom:651.885000px;}
.ye4{bottom:656.025000px;}
.y196{bottom:659.265000px;}
.y7b{bottom:659.985000px;}
.yc8{bottom:661.425000px;}
.y132{bottom:662.865000px;}
.y1a7{bottom:663.945000px;}
.y37{bottom:664.665000px;}
.y63{bottom:673.845000px;}
.ya5{bottom:674.925000px;}
.y151{bottom:677.265000px;}
.y111{bottom:677.985000px;}
.yfd{bottom:679.425000px;}
.y1a6{bottom:685.905000px;}
.y10{bottom:686.625000px;}
.ye3{bottom:688.965000px;}
.y195{bottom:692.205000px;}
.y7a{bottom:692.925000px;}
.y131{bottom:695.805000px;}
.y1bd{bottom:699.945000px;}
.y36{bottom:701.205000px;}
.yc7{bottom:701.745000px;}
.y62{bottom:704.805000px;}
.ya4{bottom:707.865000px;}
.y150{bottom:710.205000px;}
.y110{bottom:710.925000px;}
.y94{bottom:720.825000px;}
.ye2{bottom:721.905000px;}
.y194{bottom:725.145000px;}
.y174{bottom:725.685000px;}
.y79{bottom:725.865000px;}
.y61{bottom:726.765000px;}
.y130{bottom:728.925000px;}
.y1a5{bottom:729.825000px;}
.y35{bottom:737.745000px;}
.ya3{bottom:740.805000px;}
.yc6{bottom:742.245000px;}
.y14f{bottom:743.145000px;}
.y60{bottom:743.865000px;}
.yfc{bottom:748.365000px;}
.y1a4{bottom:751.785000px;}
.yf{bottom:753.225000px;}
.ye1{bottom:754.845000px;}
.y193{bottom:758.085000px;}
.y78{bottom:758.805000px;}
.y12f{bottom:761.865000px;}
.y1bc{bottom:765.825000px;}
.ya2{bottom:773.745000px;}
.y34{bottom:775.545000px;}
.y14e{bottom:776.085000px;}
.y10f{bottom:776.805000px;}
.y93{bottom:780.405000px;}
.yfb{bottom:781.305000px;}
.yc5{bottom:782.745000px;}
.y5f{bottom:784.725000px;}
.ye{bottom:785.265000px;}
.ye0{bottom:787.785000px;}
.y192{bottom:791.025000px;}
.y77{bottom:791.745000px;}
.y12e{bottom:794.805000px;}
.y5e{bottom:806.685000px;}
.y33{bottom:807.585000px;}
.y92{bottom:808.485000px;}
.y14d{bottom:809.025000px;}
.y10e{bottom:809.745000px;}
.yfa{bottom:814.245000px;}
.yd{bottom:817.125000px;}
.ydf{bottom:820.725000px;}
.yc4{bottom:823.245000px;}
.y191{bottom:823.965000px;}
.y76{bottom:824.685000px;}
.y12d{bottom:827.745000px;}
.y171{bottom:831.525000px;}
.y1bb{bottom:831.705000px;}
.y32{bottom:837.465000px;}
.y5d{bottom:839.625000px;}
.y14c{bottom:841.965000px;}
.y10d{bottom:842.685000px;}
.yc{bottom:847.185000px;}
.yde{bottom:853.665000px;}
.y190{bottom:856.905000px;}
.y75{bottom:857.625000px;}
.y12c{bottom:860.685000px;}
.yc3{bottom:863.610000px;}
.y31{bottom:871.665000px;}
.y5c{bottom:872.610000px;}
.y14b{bottom:874.950000px;}
.y91{bottom:875.670000px;}
.yf9{bottom:880.170000px;}
.yb{bottom:880.305000px;}
.ydd{bottom:886.650000px;}
.y18f{bottom:889.890000px;}
.y74{bottom:890.610000px;}
.y12b{bottom:893.670000px;}
.y1ba{bottom:897.630000px;}
.yc2{bottom:904.110000px;}
.y5b{bottom:905.730000px;}
.y14a{bottom:907.890000px;}
.y90{bottom:908.610000px;}
.ya{bottom:909.510000px;}
.yf8{bottom:913.110000px;}
.y30{bottom:917.250000px;}
.ydc{bottom:919.590000px;}
.y18e{bottom:922.830000px;}
.y73{bottom:923.730000px;}
.y16f{bottom:930.390000px;}
.y2f{bottom:935.610000px;}
.y9{bottom:935.970000px;}
.ya1{bottom:938.670000px;}
.y149{bottom:940.830000px;}
.y8f{bottom:941.730000px;}
.yc1{bottom:944.610000px;}
.yf7{bottom:946.050000px;}
.y5a{bottom:947.670000px;}
.ydb{bottom:952.710000px;}
.y2e{bottom:953.790000px;}
.y72{bottom:956.670000px;}
.y148{bottom:958.830000px;}
.y1b9{bottom:963.690000px;}
.y8{bottom:965.490000px;}
.ya0{bottom:971.610000px;}
.y2d{bottom:971.970000px;}
.y18d{bottom:973.770000px;}
.y8e{bottom:974.670000px;}
.yf6{bottom:978.990000px;}
.y59{bottom:980.610000px;}
.yc0{bottom:985.110000px;}
.yda{bottom:985.650000px;}
.y71{bottom:989.610000px;}
.y2c{bottom:990.150000px;}
.y147{bottom:991.770000px;}
.y7{bottom:995.190000px;}
.y16e{bottom:999.870000px;}
.y9f{bottom:1004.550000px;}
.y18c{bottom:1006.890000px;}
.y8d{bottom:1007.610000px;}
.y2b{bottom:1008.510000px;}
.yf5{bottom:1012.110000px;}
.yd9{bottom:1018.590000px;}
.y58{bottom:1022.550000px;}
.y6{bottom:1024.710000px;}
.ybf{bottom:1025.610000px;}
.y2a{bottom:1026.690000px;}
.y1b8{bottom:1029.570000px;}
.y9e{bottom:1037.490000px;}
.y18b{bottom:1039.830000px;}
.y8c{bottom:1040.550000px;}
.y29{bottom:1044.870000px;}
.yf4{bottom:1045.050000px;}
.yd8{bottom:1051.530000px;}
.y5{bottom:1054.410000px;}
.y57{bottom:1055.490000px;}
.y146{bottom:1057.650000px;}
.y16d{bottom:1061.430000px;}
.y28{bottom:1063.230000px;}
.ybe{bottom:1065.930000px;}
.y8b{bottom:1073.490000px;}
.yf3{bottom:1077.990000px;}
.y4{bottom:1083.390000px;}
.yd7{bottom:1084.470000px;}
.y56{bottom:1088.430000px;}
.y145{bottom:1090.590000px;}
.y16c{bottom:1094.370000px;}
.y1b7{bottom:1095.450000px;}
.y8a{bottom:1106.430000px;}
.y3{bottom:1108.590000px;}
.yf2{bottom:1110.930000px;}
.y1b6{bottom:1117.410000px;}
.y143{bottom:1123.530000px;}
.y55{bottom:1139.400000px;}
.y70{bottom:1139.580000px;}
.y2{bottom:1150.710000px;}
.y27{bottom:1154.490000px;}
.y1{bottom:1164.600000px;}
.h21{height:32.940000px;}
.h20{height:32.976000px;}
.h22{height:33.120000px;}
.h11{height:36.651094px;}
.h1a{height:43.215469px;}
.h14{height:45.403594px;}
.h1e{height:54.914062px;}
.h2c{height:55.440000px;}
.ha{height:59.439023px;}
.h2{height:61.423863px;}
.h1f{height:62.964844px;}
.h18{height:64.002656px;}
.h6{height:64.233984px;}
.h2d{height:65.880000px;}
.h1d{height:65.884219px;}
.h23{height:68.760000px;}
.h2a{height:71.136000px;}
.hf{height:71.613281px;}
.hc{height:73.722631px;}
.hd{height:73.722656px;}
.h24{height:74.004654px;}
.h5{height:75.382031px;}
.h7{height:79.866563px;}
.h15{height:82.054688px;}
.h17{height:83.787539px;}
.h19{height:86.255508px;}
.h13{height:89.516602px;}
.h8{height:89.827734px;}
.h16{height:91.354219px;}
.h12{height:92.153320px;}
.h2b{height:98.820000px;}
.h25{height:98.856000px;}
.h4{height:101.690859px;}
.h3{height:104.686172px;}
.h26{height:105.840000px;}
.h29{height:106.920000px;}
.h28{height:109.656000px;}
.h27{height:113.760000px;}
.h10{height:121.536000px;}
.h9{height:128.017969px;}
.h2e{height:131.796000px;}
.he{height:232.050000px;}
.hb{height:330.150000px;}
.h1b{height:1262.880000px;}
.h1c{height:1263.000000px;}
.h0{height:1288.440000px;}
.h1{height:1288.500000px;}
.w5{width:21.600000px;}
.w4{width:25.020000px;}
.w3{width:46.260000px;}
.w12{width:53.100000px;}
.w10{width:53.136000px;}
.w11{width:53.280000px;}
.w17{width:58.140000px;}
.w13{width:63.720000px;}
.w14{width:63.756000px;}
.w15{width:63.900000px;}
.w16{width:63.936000px;}
.w20{width:73.620000px;}
.w1b{width:82.440000px;}
.w1f{width:135.756000px;}
.wf{width:146.340000px;}
.w1e{width:156.450000px;}
.w1c{width:156.960000px;}
.we{width:161.670000px;}
.w18{width:169.020000px;}
.w1d{width:173.190000px;}
.wd{width:180.750000px;}
.w19{width:189.930000px;}
.w1a{width:255.135000px;}
.wc{width:348.330000px;}
.wb{width:892.979987px;}
.w9{width:892.980000px;}
.wa{width:893.250000px;}
.w8{width:918.719986px;}
.w6{width:918.720000px;}
.w7{width:918.750000px;}
.w1{width:1896.750000px;}
.w2{width:1896.839972px;}
.w0{width:1896.840000px;}
.x0{left:0.000000px;}
.x28{left:8.100000px;}
.x3f{left:10.620000px;}
.x52{left:11.700000px;}
.x41{left:13.140000px;}
.xa{left:16.020000px;}
.x6{left:18.180000px;}
.x35{left:21.960000px;}
.x3d{left:24.480000px;}
.x42{left:26.280000px;}
.x37{left:27.360000px;}
.x3e{left:29.340000px;}
.x40{left:31.860000px;}
.x55{left:33.120000px;}
.x4d{left:37.080000px;}
.x51{left:38.700000px;}
.x7{left:40.680000px;}
.x48{left:42.165000px;}
.x54{left:43.200000px;}
.x4a{left:45.585000px;}
.x50{left:47.205000px;}
.x47{left:49.005000px;}
.x4c{left:50.070000px;}
.x53{left:51.705000px;}
.x49{left:54.225000px;}
.x2f{left:64.845000px;}
.x30{left:69.345000px;}
.x2b{left:74.385000px;}
.x2e{left:76.710000px;}
.x2d{left:80.865000px;}
.x29{left:84.450000px;}
.x31{left:85.710000px;}
.x2c{left:90.390000px;}
.x27{left:98.316000px;}
.xf{left:106.415987px;}
.xc{left:129.095986px;}
.x10{left:140.975987px;}
.x23{left:148.895987px;}
.x16{left:159.509987px;}
.x11{left:205.409987px;}
.x1b{left:227.909987px;}
.x32{left:244.650000px;}
.x46{left:255.270000px;}
.x43{left:267.330000px;}
.x2{left:275.969972px;}
.x33{left:297.795000px;}
.x56{left:317.414987px;}
.x17{left:330.014987px;}
.x1c{left:334.334987px;}
.x22{left:338.294987px;}
.xd{left:347.654986px;}
.x34{left:351.075000px;}
.x18{left:378.074987px;}
.x20{left:382.034987px;}
.x15{left:385.634987px;}
.x26{left:398.594987px;}
.x58{left:402.914987px;}
.x36{left:404.175000px;}
.x24{left:405.434987px;}
.x57{left:408.494987px;}
.x25{left:410.834987px;}
.x1d{left:415.694987px;}
.x19{left:416.954987px;}
.x59{left:422.714987px;}
.x1f{left:423.974987px;}
.x4b{left:428.475000px;}
.x21{left:437.114987px;}
.x1e{left:439.094987px;}
.x14{left:440.894987px;}
.xe{left:442.694987px;}
.x13{left:446.474987px;}
.x44{left:457.275000px;}
.x38{left:467.895000px;}
.x1a{left:473.144987px;}
.x39{left:531.645000px;}
.x12{left:537.044987px;}
.xb{left:571.604986px;}
.x4e{left:584.925000px;}
.x3a{left:595.545000px;}
.x2a{left:627.405000px;}
.x3b{left:659.265000px;}
.x45{left:712.410000px;}
.x4f{left:720.690000px;}
.x3c{left:723.210000px;}
.x5a{left:778.829987px;}
.x5{left:923.115000px;}
.x8{left:939.315000px;}
.x9{left:942.195000px;}
.x1{left:975.854972px;}
.x3{left:1326.704972px;}
.x4{left:1328.504972px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-1.280000pt;}
.ls16{letter-spacing:-1.216000pt;}
.ls18{letter-spacing:-1.152000pt;}
.ls27{letter-spacing:-1.088000pt;}
.ls2c{letter-spacing:-0.960000pt;}
.ls23{letter-spacing:-0.832000pt;}
.ls19{letter-spacing:-0.768000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.576000pt;}
.lsb{letter-spacing:-0.512000pt;}
.ls11{letter-spacing:-0.448000pt;}
.lsd{letter-spacing:-0.384000pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls22{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.102400pt;}
.ls14{letter-spacing:-0.064000pt;}
.ls26{letter-spacing:-0.000005pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.064000pt;}
.lse{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.165120pt;}
.ls1{letter-spacing:0.181760pt;}
.lsa{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.227733pt;}
.lsf{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.266133pt;}
.ls6{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.512000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls1f{letter-spacing:0.896000pt;}
.ls2a{letter-spacing:1.536000pt;}
.ls1c{letter-spacing:2.176000pt;}
.ls29{letter-spacing:2.816000pt;}
.ls28{letter-spacing:4.096000pt;}
.ls1b{letter-spacing:5.376000pt;}
.ls20{letter-spacing:6.656000pt;}
.ls21{letter-spacing:8.576000pt;}
.ls24{letter-spacing:9.088000pt;}
.ls25{letter-spacing:14.848000pt;}
.ls2b{letter-spacing:17.536000pt;}
.ls1e{letter-spacing:21.376000pt;}
.ls1d{letter-spacing:32.896000pt;}
.ws4{word-spacing:-64.000000pt;}
.ws3{word-spacing:-14.784000pt;}
.ws9{word-spacing:-14.656000pt;}
.ws7{word-spacing:-14.592000pt;}
.wsf{word-spacing:-14.528000pt;}
.ws2{word-spacing:-14.464000pt;}
.ws11{word-spacing:-14.463995pt;}
.wsc{word-spacing:-14.400000pt;}
.ws8{word-spacing:-14.336000pt;}
.wsb{word-spacing:-14.272000pt;}
.wsd{word-spacing:-14.144000pt;}
.ws6{word-spacing:-14.080000pt;}
.wse{word-spacing:-14.016000pt;}
.ws10{word-spacing:-13.952000pt;}
.ws5{word-spacing:-13.573013pt;}
.wsa{word-spacing:-13.534613pt;}
.ws1{word-spacing:-13.204480pt;}
.ws0{word-spacing:0.000000pt;}
._1c{margin-left:-13.696000pt;}
._20{margin-left:-12.693333pt;}
._2{margin-left:-11.392000pt;}
._1d{margin-left:-9.728000pt;}
._1f{margin-left:-8.021333pt;}
._19{margin-left:-6.613333pt;}
._21{margin-left:-5.365333pt;}
._1b{margin-left:-4.277333pt;}
._1e{margin-left:-2.965333pt;}
._1a{margin-left:-1.877333pt;}
._1{margin-left:-0.908800pt;}
._3{width:1.221760pt;}
._4{width:2.298240pt;}
._a{width:3.238400pt;}
._6{width:4.160000pt;}
._5{width:5.440000pt;}
._7{width:6.517333pt;}
._b{width:7.434667pt;}
._14{width:8.512000pt;}
._d{width:9.932800pt;}
._c{width:11.264000pt;}
._17{width:12.343467pt;}
._13{width:13.504000pt;}
._16{width:15.786667pt;}
._15{width:17.152000pt;}
._8{width:18.752000pt;}
._12{width:19.805867pt;}
._9{width:21.090133pt;}
._e{width:22.837973pt;}
._22{width:24.031360pt;}
._18{width:25.536000pt;}
._2a{width:26.720000pt;}
._28{width:27.648000pt;}
._29{width:29.440000pt;}
._27{width:30.826667pt;}
._2b{width:32.000000pt;}
._10{width:33.024000pt;}
._f{width:34.240000pt;}
._11{width:35.153707pt;}
._25{width:36.129493pt;}
._24{width:37.120000pt;}
._23{width:38.016000pt;}
._26{width:39.104000pt;}
._3e{width:40.640000pt;}
._3d{width:41.664000pt;}
._3b{width:43.968000pt;}
._3a{width:44.928000pt;}
._39{width:45.866667pt;}
._3c{width:46.997333pt;}
._2e{width:52.160000pt;}
._2d{width:53.056000pt;}
._35{width:55.168000pt;}
._34{width:56.512000pt;}
._2f{width:82.688000pt;}
._30{width:83.648000pt;}
._40{width:98.112000pt;}
._36{width:102.080000pt;}
._38{width:147.520000pt;}
._37{width:148.416000pt;}
._3f{width:163.968000pt;}
._2c{width:174.314667pt;}
._31{width:248.320000pt;}
._32{width:477.312000pt;}
._33{width:478.858667pt;}
._0{width:2020.266667pt;}
.fs7{font-size:42.880000pt;}
.fsb{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fsc{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fsa{font-size:74.880000pt;}
.fs2{font-size:77.440000pt;}
.fs8{font-size:80.000000pt;}
.fs1{font-size:90.880000pt;}
.fs3{font-size:93.440000pt;}
.fs9{font-size:96.000000pt;}
.fs4{font-size:106.880000pt;}
.fs5{font-size:152.320000pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:1.280000pt;}
.y142{bottom:14.074667pt;}
.y135{bottom:14.080000pt;}
.y144{bottom:14.106667pt;}
.y19c{bottom:14.120000pt;}
.y13e{bottom:14.240000pt;}
.y170{bottom:16.640000pt;}
.y185{bottom:18.760000pt;}
.y177{bottom:20.320000pt;}
.y182{bottom:21.120000pt;}
.y17e{bottom:23.680000pt;}
.y17a{bottom:27.360000pt;}
.y189{bottom:34.080000pt;}
.y187{bottom:43.360000pt;}
.y173{bottom:43.400000pt;}
.y26{bottom:45.920000pt;}
.y184{bottom:48.040000pt;}
.y176{bottom:49.600000pt;}
.y181{bottom:50.400000pt;}
.y54{bottom:51.200000pt;}
.y22{bottom:51.360000pt;}
.y17d{bottom:52.960000pt;}
.y179{bottom:56.640000pt;}
.y52{bottom:61.152000pt;}
.y53{bottom:68.992000pt;}
.y21{bottom:72.640000pt;}
.y172{bottom:72.680000pt;}
.y51{bottom:77.472000pt;}
.y175{bottom:78.880000pt;}
.y180{bottom:79.840000pt;}
.y17c{bottom:82.266667pt;}
.y178{bottom:85.920000pt;}
.y50{bottom:93.792000pt;}
.y12a{bottom:99.072000pt;}
.y16b{bottom:101.792000pt;}
.y1a2{bottom:101.960000pt;}
.y122{bottom:104.512000pt;}
.y1a3{bottom:105.152000pt;}
.y6f{bottom:107.872000pt;}
.y4f{bottom:109.952000pt;}
.y1c8{bottom:114.272000pt;}
.y20{bottom:114.912000pt;}
.y15f{bottom:119.872000pt;}
.y16a{bottom:120.512000pt;}
.y89{bottom:120.832000pt;}
.y141{bottom:120.992000pt;}
.y1b5{bottom:121.312000pt;}
.y18a{bottom:121.792000pt;}
.y4e{bottom:126.272000pt;}
.yd6{bottom:126.912000pt;}
.y129{bottom:128.352000pt;}
.yb5{bottom:131.072000pt;}
.y121{bottom:133.786667pt;}
.y10c{bottom:135.066667pt;}
.y6e{bottom:139.546667pt;}
.yf1{bottom:140.826667pt;}
.y4d{bottom:141.786667pt;}
.y1f{bottom:145.786667pt;}
.y1a0{bottom:147.066667pt;}
.y15e{bottom:149.146667pt;}
.y169{bottom:149.786667pt;}
.y88{bottom:150.106667pt;}
.y140{bottom:150.266667pt;}
.y188{bottom:151.066667pt;}
.y1c9{bottom:151.866667pt;}
.y1c7{bottom:153.306667pt;}
.yd5{bottom:156.346667pt;}
.y4c{bottom:157.306667pt;}
.y128{bottom:157.626667pt;}
.yb4{bottom:160.346667pt;}
.ybd{bottom:162.906667pt;}
.y120{bottom:163.066667pt;}
.y10b{bottom:164.346667pt;}
.y6d{bottom:171.386667pt;}
.y1c6{bottom:172.826667pt;}
.y4b{bottom:173.626667pt;}
.y1e{bottom:176.826667pt;}
.y15d{bottom:178.426667pt;}
.y168{bottom:179.066667pt;}
.y87{bottom:179.386667pt;}
.y13f{bottom:179.546667pt;}
.y1b4{bottom:179.866667pt;}
.yf0{bottom:180.826667pt;}
.yd4{bottom:185.626667pt;}
.y127{bottom:186.906667pt;}
.yb3{bottom:189.626667pt;}
.y4a{bottom:189.786667pt;}
.y19f{bottom:192.186667pt;}
.y11f{bottom:192.346667pt;}
.y10a{bottom:193.626667pt;}
.y1b3{bottom:199.386667pt;}
.y186{bottom:200.346667pt;}
.ybc{bottom:202.906667pt;}
.y6c{bottom:203.066667pt;}
.y49{bottom:205.946667pt;}
.y1d{bottom:207.706667pt;}
.y167{bottom:208.346667pt;}
.y86{bottom:208.826667pt;}
.y1c5{bottom:211.866667pt;}
.yd3{bottom:214.906667pt;}
.y126{bottom:216.346667pt;}
.yb2{bottom:218.906667pt;}
.yef{bottom:220.826667pt;}
.y19e{bottom:221.466667pt;}
.y11e{bottom:221.626667pt;}
.y48{bottom:222.106667pt;}
.y109{bottom:222.906667pt;}
.y1c4{bottom:231.386667pt;}
.y6b{bottom:234.906667pt;}
.y15c{bottom:236.986667pt;}
.y166{bottom:237.626667pt;}
.y85{bottom:238.106667pt;}
.y47{bottom:238.426667pt;}
.y1c{bottom:238.746667pt;}
.y1a1{bottom:238.906667pt;}
.ybb{bottom:242.906667pt;}
.yd2{bottom:244.186667pt;}
.y125{bottom:245.626667pt;}
.yb1{bottom:248.346667pt;}
.y19d{bottom:250.746667pt;}
.y11d{bottom:250.906667pt;}
.y108{bottom:252.186667pt;}
.y46{bottom:254.586667pt;}
.y1b2{bottom:258.106667pt;}
.yee{bottom:260.666667pt;}
.y9d{bottom:264.346667pt;}
.y15b{bottom:266.266667pt;}
.y6a{bottom:266.586667pt;}
.y165{bottom:266.906667pt;}
.y84{bottom:267.386667pt;}
.y13d{bottom:267.546667pt;}
.y1b{bottom:269.626667pt;}
.y1c3{bottom:270.426667pt;}
.y45{bottom:270.746667pt;}
.yd1{bottom:273.466667pt;}
.y124{bottom:274.906667pt;}
.yb0{bottom:277.626667pt;}
.y11c{bottom:280.346667pt;}
.y19b{bottom:280.826667pt;}
.y107{bottom:281.466667pt;}
.y25{bottom:282.266667pt;}
.yba{bottom:282.906667pt;}
.y44{bottom:286.906667pt;}
.y183{bottom:288.186667pt;}
.yed{bottom:290.106667pt;}
.y15a{bottom:295.586667pt;}
.y9c{bottom:296.066667pt;}
.y164{bottom:296.226667pt;}
.y83{bottom:296.706667pt;}
.y13c{bottom:296.866667pt;}
.y1b1{bottom:297.186667pt;}
.y69{bottom:298.306667pt;}
.y1a{bottom:300.666667pt;}
.yd0{bottom:302.786667pt;}
.y43{bottom:303.266667pt;}
.y123{bottom:304.226667pt;}
.yaf{bottom:306.946667pt;}
.y11b{bottom:309.666667pt;}
.y106{bottom:310.946667pt;}
.y1b0{bottom:316.706667pt;}
.y42{bottom:319.426667pt;}
.yb9{bottom:322.786667pt;}
.y159{bottom:324.866667pt;}
.y163{bottom:325.506667pt;}
.y82{bottom:325.986667pt;}
.y13b{bottom:326.146667pt;}
.y68{bottom:327.746667pt;}
.y1c2{bottom:329.186667pt;}
.y19{bottom:331.546667pt;}
.ycf{bottom:332.066667pt;}
.y41{bottom:335.586667pt;}
.yae{bottom:336.226667pt;}
.y11a{bottom:338.946667pt;}
.y105{bottom:340.226667pt;}
.yec{bottom:348.706667pt;}
.y17f{bottom:351.426667pt;}
.y40{bottom:351.906667pt;}
.y158{bottom:354.306667pt;}
.y162{bottom:354.946667pt;}
.y81{bottom:355.266667pt;}
.y13a{bottom:355.426667pt;}
.y1af{bottom:355.746667pt;}
.y9b{bottom:359.586667pt;}
.y18{bottom:362.626667pt;}
.yb8{bottom:362.786667pt;}
.yad{bottom:365.506667pt;}
.y3f{bottom:368.066667pt;}
.y119{bottom:368.226667pt;}
.y104{bottom:369.506667pt;}
.yce{bottom:372.066667pt;}
.y1ae{bottom:375.266667pt;}
.yeb{bottom:377.986667pt;}
.y161{bottom:384.226667pt;}
.y139{bottom:384.706667pt;}
.y3e{bottom:386.466667pt;}
.y80{bottom:386.946667pt;}
.y1c1{bottom:387.746667pt;}
.y67{bottom:389.026667pt;}
.y9a{bottom:391.266667pt;}
.y17{bottom:393.506667pt;}
.yac{bottom:394.786667pt;}
.y157{bottom:396.866667pt;}
.y118{bottom:397.506667pt;}
.y103{bottom:398.786667pt;}
.yb7{bottom:402.786667pt;}
.yea{bottom:407.266667pt;}
.ycd{bottom:408.066667pt;}
.y3d{bottom:409.986667pt;}
.y160{bottom:413.506667pt;}
.y138{bottom:413.986667pt;}
.y1ad{bottom:414.306667pt;}
.y7f{bottom:416.386667pt;}
.y99{bottom:423.106667pt;}
.yab{bottom:424.066667pt;}
.y16{bottom:424.546667pt;}
.y156{bottom:426.146667pt;}
.y117{bottom:426.786667pt;}
.y102{bottom:428.066667pt;}
.y3c{bottom:431.586667pt;}
.y1ac{bottom:433.826667pt;}
.ye9{bottom:436.546667pt;}
.yb6{bottom:442.786667pt;}
.y137{bottom:443.266667pt;}
.ycc{bottom:443.906667pt;}
.y1c0{bottom:446.306667pt;}
.y17b{bottom:446.466667pt;}
.y66{bottom:450.306667pt;}
.yaa{bottom:453.346667pt;}
.y98{bottom:454.786667pt;}
.y15{bottom:455.426667pt;}
.y116{bottom:456.066667pt;}
.y3b{bottom:456.706667pt;}
.y101{bottom:457.346667pt;}
.ye8{bottom:465.826667pt;}
.y19a{bottom:468.706667pt;}
.y7e{bottom:469.346667pt;}
.y136{bottom:472.546667pt;}
.y1ab{bottom:472.866667pt;}
.ycb{bottom:479.906667pt;}
.y3a{bottom:480.066667pt;}
.ya9{bottom:482.626667pt;}
.y155{bottom:484.706667pt;}
.y115{bottom:485.346667pt;}
.y14{bottom:486.466667pt;}
.y100{bottom:486.626667pt;}
.y1aa{bottom:492.386667pt;}
.ye7{bottom:495.106667pt;}
.y65{bottom:497.506667pt;}
.y199{bottom:497.986667pt;}
.y23{bottom:498.626667pt;}
.y134{bottom:502.626667pt;}
.y1bf{bottom:504.866667pt;}
.ya8{bottom:511.906667pt;}
.y154{bottom:513.986667pt;}
.y114{bottom:514.626667pt;}
.yca{bottom:515.906667pt;}
.y13{bottom:517.346667pt;}
.y97{bottom:518.306667pt;}
.ye6{bottom:524.386667pt;}
.y39{bottom:525.986667pt;}
.y198{bottom:527.266667pt;}
.y7d{bottom:527.906667pt;}
.y1a9{bottom:531.613333pt;}
.ya7{bottom:541.373333pt;}
.y153{bottom:543.293333pt;}
.y113{bottom:543.933333pt;}
.yff{bottom:545.213333pt;}
.y12{bottom:548.386667pt;}
.y96{bottom:550.013333pt;}
.y1a8{bottom:551.133333pt;}
.yc9{bottom:551.933333pt;}
.ye5{bottom:553.853333pt;}
.y197{bottom:556.573333pt;}
.y7c{bottom:557.373333pt;}
.y38{bottom:558.493333pt;}
.y133{bottom:559.933333pt;}
.y64{bottom:563.453333pt;}
.y1be{bottom:563.613333pt;}
.ya6{bottom:570.653333pt;}
.y152{bottom:572.573333pt;}
.y112{bottom:573.373333pt;}
.yfe{bottom:574.493333pt;}
.y95{bottom:579.293333pt;}
.y11{bottom:579.453333pt;}
.ye4{bottom:583.133333pt;}
.y196{bottom:586.013333pt;}
.y7b{bottom:586.653333pt;}
.yc8{bottom:587.933333pt;}
.y132{bottom:589.213333pt;}
.y1a7{bottom:590.173333pt;}
.y37{bottom:590.813333pt;}
.y63{bottom:598.973333pt;}
.ya5{bottom:599.933333pt;}
.y151{bottom:602.013333pt;}
.y111{bottom:602.653333pt;}
.yfd{bottom:603.933333pt;}
.y1a6{bottom:609.693333pt;}
.y10{bottom:610.333333pt;}
.ye3{bottom:612.413333pt;}
.y195{bottom:615.293333pt;}
.y7a{bottom:615.933333pt;}
.y131{bottom:618.493333pt;}
.y1bd{bottom:622.173333pt;}
.y36{bottom:623.293333pt;}
.yc7{bottom:623.773333pt;}
.y62{bottom:626.493333pt;}
.ya4{bottom:629.213333pt;}
.y150{bottom:631.293333pt;}
.y110{bottom:631.933333pt;}
.y94{bottom:640.733333pt;}
.ye2{bottom:641.693333pt;}
.y194{bottom:644.573333pt;}
.y174{bottom:645.053333pt;}
.y79{bottom:645.213333pt;}
.y61{bottom:646.013333pt;}
.y130{bottom:647.933333pt;}
.y1a5{bottom:648.733333pt;}
.y35{bottom:655.773333pt;}
.ya3{bottom:658.493333pt;}
.yc6{bottom:659.773333pt;}
.y14f{bottom:660.573333pt;}
.y60{bottom:661.213333pt;}
.yfc{bottom:665.213333pt;}
.y1a4{bottom:668.253333pt;}
.yf{bottom:669.533333pt;}
.ye1{bottom:670.973333pt;}
.y193{bottom:673.853333pt;}
.y78{bottom:674.493333pt;}
.y12f{bottom:677.213333pt;}
.y1bc{bottom:680.733333pt;}
.ya2{bottom:687.773333pt;}
.y34{bottom:689.373333pt;}
.y14e{bottom:689.853333pt;}
.y10f{bottom:690.493333pt;}
.y93{bottom:693.693333pt;}
.yfb{bottom:694.493333pt;}
.yc5{bottom:695.773333pt;}
.y5f{bottom:697.533333pt;}
.ye{bottom:698.013333pt;}
.ye0{bottom:700.253333pt;}
.y192{bottom:703.133333pt;}
.y77{bottom:703.773333pt;}
.y12e{bottom:706.493333pt;}
.y5e{bottom:717.053333pt;}
.y33{bottom:717.853333pt;}
.y92{bottom:718.653333pt;}
.y14d{bottom:719.133333pt;}
.y10e{bottom:719.773333pt;}
.yfa{bottom:723.773333pt;}
.yd{bottom:726.333333pt;}
.ydf{bottom:729.533333pt;}
.yc4{bottom:731.773333pt;}
.y191{bottom:732.413333pt;}
.y76{bottom:733.053333pt;}
.y12d{bottom:735.773333pt;}
.y171{bottom:739.133333pt;}
.y1bb{bottom:739.293333pt;}
.y32{bottom:744.413333pt;}
.y5d{bottom:746.333333pt;}
.y14c{bottom:748.413333pt;}
.y10d{bottom:749.053333pt;}
.yc{bottom:753.053333pt;}
.yde{bottom:758.813333pt;}
.y190{bottom:761.693333pt;}
.y75{bottom:762.333333pt;}
.y12c{bottom:765.053333pt;}
.yc3{bottom:767.653333pt;}
.y31{bottom:774.813333pt;}
.y5c{bottom:775.653333pt;}
.y14b{bottom:777.733333pt;}
.y91{bottom:778.373333pt;}
.yf9{bottom:782.373333pt;}
.yb{bottom:782.493333pt;}
.ydd{bottom:788.133333pt;}
.y18f{bottom:791.013333pt;}
.y74{bottom:791.653333pt;}
.y12b{bottom:794.373333pt;}
.y1ba{bottom:797.893333pt;}
.yc2{bottom:803.653333pt;}
.y5b{bottom:805.093333pt;}
.y14a{bottom:807.013333pt;}
.y90{bottom:807.653333pt;}
.ya{bottom:808.453333pt;}
.yf8{bottom:811.653333pt;}
.y30{bottom:815.333333pt;}
.ydc{bottom:817.413333pt;}
.y18e{bottom:820.293333pt;}
.y73{bottom:821.093333pt;}
.y16f{bottom:827.013333pt;}
.y2f{bottom:831.653333pt;}
.y9{bottom:831.973333pt;}
.ya1{bottom:834.373333pt;}
.y149{bottom:836.293333pt;}
.y8f{bottom:837.093333pt;}
.yc1{bottom:839.653333pt;}
.yf7{bottom:840.933333pt;}
.y5a{bottom:842.373333pt;}
.ydb{bottom:846.853333pt;}
.y2e{bottom:847.813333pt;}
.y72{bottom:850.373333pt;}
.y148{bottom:852.293333pt;}
.y1b9{bottom:856.613333pt;}
.y8{bottom:858.213333pt;}
.ya0{bottom:863.653333pt;}
.y2d{bottom:863.973333pt;}
.y18d{bottom:865.573333pt;}
.y8e{bottom:866.373333pt;}
.yf6{bottom:870.213333pt;}
.y59{bottom:871.653333pt;}
.yc0{bottom:875.653333pt;}
.yda{bottom:876.133333pt;}
.y71{bottom:879.653333pt;}
.y2c{bottom:880.133333pt;}
.y147{bottom:881.573333pt;}
.y7{bottom:884.613333pt;}
.y16e{bottom:888.773333pt;}
.y9f{bottom:892.933333pt;}
.y18c{bottom:895.013333pt;}
.y8d{bottom:895.653333pt;}
.y2b{bottom:896.453333pt;}
.yf5{bottom:899.653333pt;}
.yd9{bottom:905.413333pt;}
.y58{bottom:908.933333pt;}
.y6{bottom:910.853333pt;}
.ybf{bottom:911.653333pt;}
.y2a{bottom:912.613333pt;}
.y1b8{bottom:915.173333pt;}
.y9e{bottom:922.213333pt;}
.y18b{bottom:924.293333pt;}
.y8c{bottom:924.933333pt;}
.y29{bottom:928.773333pt;}
.yf4{bottom:928.933333pt;}
.yd8{bottom:934.693333pt;}
.y5{bottom:937.253333pt;}
.y57{bottom:938.213333pt;}
.y146{bottom:940.133333pt;}
.y16d{bottom:943.493333pt;}
.y28{bottom:945.093333pt;}
.ybe{bottom:947.493333pt;}
.y8b{bottom:954.213333pt;}
.yf3{bottom:958.213333pt;}
.y4{bottom:963.013333pt;}
.yd7{bottom:963.973333pt;}
.y56{bottom:967.493333pt;}
.y145{bottom:969.413333pt;}
.y16c{bottom:972.773333pt;}
.y1b7{bottom:973.733333pt;}
.y8a{bottom:983.493333pt;}
.y3{bottom:985.413333pt;}
.yf2{bottom:987.493333pt;}
.y1b6{bottom:993.253333pt;}
.y143{bottom:998.693333pt;}
.y55{bottom:1012.800000pt;}
.y70{bottom:1012.960000pt;}
.y2{bottom:1022.853333pt;}
.y27{bottom:1026.213333pt;}
.y1{bottom:1035.200000pt;}
.h21{height:29.280000pt;}
.h20{height:29.312000pt;}
.h22{height:29.440000pt;}
.h11{height:32.578750pt;}
.h1a{height:38.413750pt;}
.h14{height:40.358750pt;}
.h1e{height:48.812500pt;}
.h2c{height:49.280000pt;}
.ha{height:52.834688pt;}
.h2{height:54.598989pt;}
.h1f{height:55.968750pt;}
.h18{height:56.891250pt;}
.h6{height:57.096875pt;}
.h2d{height:58.560000pt;}
.h1d{height:58.563750pt;}
.h23{height:61.120000pt;}
.h2a{height:63.232000pt;}
.hf{height:63.656250pt;}
.hc{height:65.531227pt;}
.hd{height:65.531250pt;}
.h24{height:65.781915pt;}
.h5{height:67.006250pt;}
.h7{height:70.992500pt;}
.h15{height:72.937500pt;}
.h17{height:74.477812pt;}
.h19{height:76.671562pt;}
.h13{height:79.570312pt;}
.h8{height:79.846875pt;}
.h16{height:81.203750pt;}
.h12{height:81.914062pt;}
.h2b{height:87.840000pt;}
.h25{height:87.872000pt;}
.h4{height:90.391875pt;}
.h3{height:93.054375pt;}
.h26{height:94.080000pt;}
.h29{height:95.040000pt;}
.h28{height:97.472000pt;}
.h27{height:101.120000pt;}
.h10{height:108.032000pt;}
.h9{height:113.793750pt;}
.h2e{height:117.152000pt;}
.he{height:206.266667pt;}
.hb{height:293.466667pt;}
.h1b{height:1122.560000pt;}
.h1c{height:1122.666667pt;}
.h0{height:1145.280000pt;}
.h1{height:1145.333333pt;}
.w5{width:19.200000pt;}
.w4{width:22.240000pt;}
.w3{width:41.120000pt;}
.w12{width:47.200000pt;}
.w10{width:47.232000pt;}
.w11{width:47.360000pt;}
.w17{width:51.680000pt;}
.w13{width:56.640000pt;}
.w14{width:56.672000pt;}
.w15{width:56.800000pt;}
.w16{width:56.832000pt;}
.w20{width:65.440000pt;}
.w1b{width:73.280000pt;}
.w1f{width:120.672000pt;}
.wf{width:130.080000pt;}
.w1e{width:139.066667pt;}
.w1c{width:139.520000pt;}
.we{width:143.706667pt;}
.w18{width:150.240000pt;}
.w1d{width:153.946667pt;}
.wd{width:160.666667pt;}
.w19{width:168.826667pt;}
.w1a{width:226.786667pt;}
.wc{width:309.626667pt;}
.wb{width:793.759988pt;}
.w9{width:793.760000pt;}
.wa{width:794.000000pt;}
.w8{width:816.639988pt;}
.w6{width:816.640000pt;}
.w7{width:816.666667pt;}
.w1{width:1686.000000pt;}
.w2{width:1686.079975pt;}
.w0{width:1686.080000pt;}
.x0{left:0.000000pt;}
.x28{left:7.200000pt;}
.x3f{left:9.440000pt;}
.x52{left:10.400000pt;}
.x41{left:11.680000pt;}
.xa{left:14.240000pt;}
.x6{left:16.160000pt;}
.x35{left:19.520000pt;}
.x3d{left:21.760000pt;}
.x42{left:23.360000pt;}
.x37{left:24.320000pt;}
.x3e{left:26.080000pt;}
.x40{left:28.320000pt;}
.x55{left:29.440000pt;}
.x4d{left:32.960000pt;}
.x51{left:34.400000pt;}
.x7{left:36.160000pt;}
.x48{left:37.480000pt;}
.x54{left:38.400000pt;}
.x4a{left:40.520000pt;}
.x50{left:41.960000pt;}
.x47{left:43.560000pt;}
.x4c{left:44.506667pt;}
.x53{left:45.960000pt;}
.x49{left:48.200000pt;}
.x2f{left:57.640000pt;}
.x30{left:61.640000pt;}
.x2b{left:66.120000pt;}
.x2e{left:68.186667pt;}
.x2d{left:71.880000pt;}
.x29{left:75.066667pt;}
.x31{left:76.186667pt;}
.x2c{left:80.346667pt;}
.x27{left:87.392000pt;}
.xf{left:94.591988pt;}
.xc{left:114.751988pt;}
.x10{left:125.311988pt;}
.x23{left:132.351988pt;}
.x16{left:141.786655pt;}
.x11{left:182.586655pt;}
.x1b{left:202.586655pt;}
.x32{left:217.466667pt;}
.x46{left:226.906667pt;}
.x43{left:237.626667pt;}
.x2{left:245.306642pt;}
.x33{left:264.706667pt;}
.x56{left:282.146655pt;}
.x17{left:293.346655pt;}
.x1c{left:297.186655pt;}
.x22{left:300.706655pt;}
.xd{left:309.026654pt;}
.x34{left:312.066667pt;}
.x18{left:336.066655pt;}
.x20{left:339.586655pt;}
.x15{left:342.786655pt;}
.x26{left:354.306655pt;}
.x58{left:358.146655pt;}
.x36{left:359.266667pt;}
.x24{left:360.386655pt;}
.x57{left:363.106655pt;}
.x25{left:365.186655pt;}
.x1d{left:369.506655pt;}
.x19{left:370.626655pt;}
.x59{left:375.746655pt;}
.x1f{left:376.866655pt;}
.x4b{left:380.866667pt;}
.x21{left:388.546655pt;}
.x1e{left:390.306655pt;}
.x14{left:391.906655pt;}
.xe{left:393.506655pt;}
.x13{left:396.866655pt;}
.x44{left:406.466667pt;}
.x38{left:415.906667pt;}
.x1a{left:420.573322pt;}
.x39{left:472.573333pt;}
.x12{left:477.373322pt;}
.xb{left:508.093321pt;}
.x4e{left:519.933333pt;}
.x3a{left:529.373333pt;}
.x2a{left:557.693333pt;}
.x3b{left:586.013333pt;}
.x45{left:633.253333pt;}
.x4f{left:640.613333pt;}
.x3c{left:642.853333pt;}
.x5a{left:692.293322pt;}
.x5{left:820.546667pt;}
.x8{left:834.946667pt;}
.x9{left:837.506667pt;}
.x1{left:867.426642pt;}
.x3{left:1179.293308pt;}
.x4{left:1180.893308pt;}
}




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