
    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_3de8fc87d62190e59cdddd39.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.966797;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_28f0f09bab35137a15cba652.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_ea98924900d6b24e8eea47cf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_7a3b1a387a3454c997dbb0e8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941406;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_a393e3c65959ba4d21181810.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_50e2b50785e8bf8b118c0d2c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.966797;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_b7f803a3a12a8d4b47357bcb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c6a6e464d13101d7aacce30c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.939453;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_978ca5f915f2ac238b4b1601.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.952000;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_1305922e48fef3386cda7b13.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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_1d70ff64c21b9ba87f81dd4b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.850586;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_2d2bb3350a44f5032c627a17.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.948242;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_ba2f32e3a621c032c0146a5d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-70.500000px;}
.v3{vertical-align:-25.350000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:4.050000px;}
.v7{vertical-align:22.500000px;}
.v5{vertical-align:43.950000px;}
.v2{vertical-align:45.000000px;}
.v6{vertical-align:153.000000px;}
.ls24{letter-spacing:-1.638000px;}
.ls23{letter-spacing:-1.548000px;}
.ls29{letter-spacing:-1.110000px;}
.lsb{letter-spacing:-0.606000px;}
.lsc{letter-spacing:-0.522000px;}
.ls2b{letter-spacing:-0.372000px;}
.ls22{letter-spacing:-0.302400px;}
.ls34{letter-spacing:-0.119400px;}
.ls33{letter-spacing:-0.090600px;}
.ls35{letter-spacing:-0.059700px;}
.ls0{letter-spacing:0.000000px;}
.ls2f{letter-spacing:0.030600px;}
.ls21{letter-spacing:0.075000px;}
.ls8{letter-spacing:0.183600px;}
.ls9{letter-spacing:0.216300px;}
.ls7{letter-spacing:0.333600px;}
.ls1b{letter-spacing:0.342300px;}
.lsa{letter-spacing:0.384600px;}
.ls26{letter-spacing:0.432900px;}
.ls1f{letter-spacing:0.468000px;}
.ls30{letter-spacing:0.500400px;}
.ls2a{letter-spacing:0.534600px;}
.ls16{letter-spacing:0.618000px;}
.ls25{letter-spacing:0.689550px;}
.ls1a{letter-spacing:0.865800px;}
.ls19{letter-spacing:1.010100px;}
.ls27{letter-spacing:1.380000px;}
.ls28{letter-spacing:1.698000px;}
.ls6{letter-spacing:1.938000px;}
.ls1{letter-spacing:1.974000px;}
.ls11{letter-spacing:2.310000px;}
.ls10{letter-spacing:2.340000px;}
.ls1e{letter-spacing:2.442000px;}
.ls12{letter-spacing:2.490000px;}
.ls3{letter-spacing:22.075200px;}
.lsf{letter-spacing:22.098600px;}
.ls5{letter-spacing:22.158600px;}
.ls31{letter-spacing:38.339400px;}
.ls32{letter-spacing:38.430000px;}
.ls14{letter-spacing:55.747500px;}
.ls18{letter-spacing:55.800000px;}
.ls17{letter-spacing:55.807500px;}
.ls15{letter-spacing:55.860000px;}
.ls20{letter-spacing:55.867500px;}
.ls13{letter-spacing:55.897500px;}
.ls1c{letter-spacing:55.927500px;}
.ls1d{letter-spacing:55.980000px;}
.lse{letter-spacing:96.454800px;}
.lsd{letter-spacing:96.545400px;}
.ls2e{letter-spacing:96.827400px;}
.ls2{letter-spacing:97.215000px;}
.ls4{letter-spacing:97.267500px;}
.ls2d{letter-spacing:122.670000px;}
.ls2c{letter-spacing:122.722500px;}
.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;}
}
.ws5{word-spacing:-60.173100px;}
.ws4a{word-spacing:-53.876400px;}
.ws23{word-spacing:-50.123400px;}
.ws7{word-spacing:-30.065700px;}
.ws1d{word-spacing:-28.814700px;}
.ws1{word-spacing:-26.632200px;}
.ws4f{word-spacing:-25.684200px;}
.wsb{word-spacing:-25.061700px;}
.ws45{word-spacing:-24.874500px;}
.ws6{word-spacing:-24.692400px;}
.ws0{word-spacing:-24.658200px;}
.ws3{word-spacing:-23.852400px;}
.ws4{word-spacing:-23.810700px;}
.ws4e{word-spacing:-22.500000px;}
.ws4d{word-spacing:-22.469100px;}
.ws4b{word-spacing:-22.440300px;}
.ws2b{word-spacing:-20.923500px;}
.ws25{word-spacing:-20.634000px;}
.ws3b{word-spacing:-20.592300px;}
.ws36{word-spacing:-20.484000px;}
.ws31{word-spacing:-20.442300px;}
.ws1e{word-spacing:-20.057700px;}
.ws26{word-spacing:-20.016000px;}
.ws18{word-spacing:-19.528200px;}
.ws50{word-spacing:-18.502200px;}
.ws39{word-spacing:-18.002700px;}
.ws38{word-spacing:-17.684700px;}
.ws17{word-spacing:-16.450200px;}
.ws24{word-spacing:-16.304700px;}
.ws42{word-spacing:-16.263000px;}
.ws1a{word-spacing:-15.424200px;}
.ws19{word-spacing:-15.390000px;}
.ws3a{word-spacing:-15.194700px;}
.ws43{word-spacing:-13.761000px;}
.ws2a{word-spacing:-4.532400px;}
.ws33{word-spacing:-2.876250px;}
.wse{word-spacing:-2.529900px;}
.wsc{word-spacing:-2.416200px;}
.ws37{word-spacing:-2.322300px;}
.ws11{word-spacing:-2.059500px;}
.ws41{word-spacing:-2.052300px;}
.ws1f{word-spacing:-1.894350px;}
.ws12{word-spacing:-1.856100px;}
.ws35{word-spacing:-1.764000px;}
.ws2e{word-spacing:-1.739850px;}
.ws48{word-spacing:-1.731300px;}
.ws21{word-spacing:-1.687650px;}
.ws27{word-spacing:-1.572000px;}
.ws44{word-spacing:-1.537650px;}
.ws47{word-spacing:-1.269000px;}
.ws3c{word-spacing:-1.136250px;}
.ws29{word-spacing:-1.049550px;}
.ws10{word-spacing:-0.957450px;}
.ws4c{word-spacing:-0.667200px;}
.ws13{word-spacing:-0.651750px;}
.ws14{word-spacing:-0.629250px;}
.ws16{word-spacing:-0.396600px;}
.wsf{word-spacing:-0.365400px;}
.ws34{word-spacing:-0.130650px;}
.wsd{word-spacing:-0.079800px;}
.ws2{word-spacing:0.000000px;}
.ws46{word-spacing:0.028650px;}
.ws15{word-spacing:0.034800px;}
.ws49{word-spacing:0.082200px;}
.ws8{word-spacing:0.108000px;}
.ws20{word-spacing:0.133200px;}
.ws28{word-spacing:0.139050px;}
.ws3d{word-spacing:0.218400px;}
.ws3e{word-spacing:0.539850px;}
.ws2d{word-spacing:0.607650px;}
.ws30{word-spacing:0.845250px;}
.ws2f{word-spacing:0.955800px;}
.ws3f{word-spacing:1.037100px;}
.ws9{word-spacing:1.045650px;}
.ws40{word-spacing:1.247250px;}
.ws2c{word-spacing:2.002350px;}
.wsa{word-spacing:2.036400px;}
.ws32{word-spacing:6.536400px;}
.ws1c{word-spacing:54.672000px;}
.ws1b{word-spacing:54.757200px;}
.ws22{word-spacing:167.638800px;}
._c{margin-left:-5.109750px;}
._5{margin-left:-4.039350px;}
._4{margin-left:-2.704500px;}
._0{margin-left:-1.622700px;}
._3{width:1.081800px;}
._2{width:2.524200px;}
._1{width:3.786300px;}
._7{width:4.958250px;}
._b{width:18.183450px;}
._a{width:19.657800px;}
._12{width:23.742600px;}
._8{width:27.385650px;}
._11{width:29.056950px;}
._9{width:48.313800px;}
._f{width:640.906650px;}
._6{width:669.889350px;}
._d{width:739.787100px;}
._e{width:1207.957050px;}
._10{width:1655.581350px;}
.fc10{color:rgb(85,177,71);}
.fc11{color:rgb(0,151,167);}
.fce{color:rgb(255,192,0);}
.fc1{color:rgb(84,178,70);}
.fc3{color:rgb(0,0,0);}
.fcf{color:rgb(254,192,0);}
.fc6{color:rgb(102,102,102);}
.fc7{color:rgb(107,46,32);}
.fc9{color:rgb(0,176,80);}
.fcd{color:rgb(8,198,223);}
.fcb{color:rgb(89,89,89);}
.fc2{color:rgb(107,47,33);}
.fc0{color:rgb(255,255,255);}
.fc4{color:rgb(132,68,46);}
.fc5{color:transparent;}
.fca{color:rgb(22,102,128);}
.fc8{color:rgb(14,96,90);}
.fcc{color:rgb(0,111,138);}
.fs13{font-size:40.650000px;}
.fs15{font-size:49.500000px;}
.fs14{font-size:49.650000px;}
.fsa{font-size:54.150000px;}
.fs1d{font-size:58.500000px;}
.fs1c{font-size:58.650000px;}
.fs11{font-size:67.500000px;}
.fs12{font-size:67.650000px;}
.fsf{font-size:72.000000px;}
.fs10{font-size:72.150000px;}
.fs21{font-size:81.150000px;}
.fs5{font-size:85.650000px;}
.fs6{font-size:85.800000px;}
.fs9{font-size:90.150000px;}
.fsb{font-size:90.300000px;}
.fs3{font-size:94.650000px;}
.fs16{font-size:103.650000px;}
.fs17{font-size:103.800000px;}
.fs2{font-size:108.150000px;}
.fs1{font-size:108.300000px;}
.fs1f{font-size:112.650000px;}
.fs20{font-size:112.800000px;}
.fs19{font-size:121.650000px;}
.fsc{font-size:121.800000px;}
.fsd{font-size:157.800000px;}
.fse{font-size:166.800000px;}
.fs1e{font-size:166.950000px;}
.fs0{font-size:180.300000px;}
.fs1a{font-size:180.450000px;}
.fs4{font-size:193.800000px;}
.fs18{font-size:193.950000px;}
.fs1b{font-size:216.300000px;}
.fs7{font-size:216.450000px;}
.fs8{font-size:811.500000px;}
.y0{bottom:0.000000px;}
.yc2{bottom:12.412500px;}
.y7{bottom:13.537500px;}
.y12c{bottom:13.575000px;}
.y20{bottom:15.600000px;}
.y15e{bottom:15.825000px;}
.y19f{bottom:16.875000px;}
.y19e{bottom:17.100000px;}
.y167{bottom:17.400000px;}
.y91{bottom:18.037500px;}
.y18a{bottom:18.487500px;}
.y38{bottom:19.950000px;}
.ya8{bottom:20.137500px;}
.y135{bottom:20.175000px;}
.y103{bottom:24.600000px;}
.y9b{bottom:28.200000px;}
.y46{bottom:34.012500px;}
.y157{bottom:34.537500px;}
.y92{bottom:37.162500px;}
.ycd{bottom:37.500000px;}
.y19d{bottom:40.762500px;}
.y6{bottom:41.700000px;}
.y174{bottom:41.887500px;}
.y9a{bottom:42.862500px;}
.y166{bottom:43.950000px;}
.y59{bottom:45.337500px;}
.yeb{bottom:48.787500px;}
.y189{bottom:49.275000px;}
.ya7{bottom:50.587500px;}
.y72{bottom:52.837500px;}
.y8e{bottom:52.912500px;}
.y104{bottom:53.737500px;}
.y156{bottom:55.950000px;}
.y37{bottom:56.137500px;}
.y99{bottom:56.400000px;}
.y71{bottom:57.787500px;}
.yea{bottom:60.375000px;}
.yd7{bottom:60.750000px;}
.yda{bottom:60.900000px;}
.yc8{bottom:61.275000px;}
.y24{bottom:64.350000px;}
.y19c{bottom:65.587500px;}
.y8d{bottom:67.575000px;}
.y109{bottom:67.612500px;}
.y98{bottom:71.025000px;}
.y85{bottom:72.562500px;}
.ycf{bottom:72.937500px;}
.yc1{bottom:75.112500px;}
.y165{bottom:76.612500px;}
.y134{bottom:77.325000px;}
.y155{bottom:77.362500px;}
.y57{bottom:77.437500px;}
.ya6{bottom:81.000000px;}
.y122{bottom:81.150000px;}
.y36{bottom:83.212500px;}
.yd6{bottom:83.287500px;}
.yd9{bottom:83.437500px;}
.y188{bottom:85.350000px;}
.y97{bottom:85.687500px;}
.y54{bottom:86.925000px;}
.y108{bottom:89.025000px;}
.yff{bottom:90.525000px;}
.y23{bottom:91.425000px;}
.y5{bottom:96.225000px;}
.y133{bottom:98.737500px;}
.y154{bottom:98.775000px;}
.y96{bottom:100.350000px;}
.y173{bottom:100.500000px;}
.y141{bottom:102.375000px;}
.y121{bottom:102.562500px;}
.yd5{bottom:105.825000px;}
.yd8{bottom:105.975000px;}
.y56{bottom:110.100000px;}
.y35{bottom:110.250000px;}
.y107{bottom:110.437500px;}
.ya5{bottom:111.450000px;}
.yfe{bottom:111.937500px;}
.y19b{bottom:114.037500px;}
.y95{bottom:115.012500px;}
.y22{bottom:118.462500px;}
.y53{bottom:119.587500px;}
.y132{bottom:120.150000px;}
.y15a{bottom:121.837500px;}
.y150{bottom:121.987500px;}
.yc0{bottom:122.325000px;}
.y153{bottom:122.400000px;}
.y187{bottom:122.512500px;}
.y6b{bottom:122.662500px;}
.y180{bottom:123.412500px;}
.y140{bottom:123.825000px;}
.y120{bottom:123.975000px;}
.y7c{bottom:128.700000px;}
.y4{bottom:128.925000px;}
.y11{bottom:132.300000px;}
.yfd{bottom:133.350000px;}
.y172{bottom:134.287500px;}
.y18b{bottom:135.412500px;}
.y34{bottom:137.287500px;}
.y19a{bottom:138.825000px;}
.yec{bottom:138.862500px;}
.y159{bottom:139.875000px;}
.y5b{bottom:139.912500px;}
.y14f{bottom:139.987500px;}
.y152{bottom:140.437500px;}
.y164{bottom:140.850000px;}
.y131{bottom:141.562500px;}
.ya4{bottom:141.862500px;}
.ybf{bottom:143.737500px;}
.y6a{bottom:144.075000px;}
.y13f{bottom:145.237500px;}
.y11f{bottom:145.387500px;}
.y21{bottom:145.500000px;}
.y45{bottom:150.030000px;}
.y7b{bottom:150.120000px;}
.y17f{bottom:151.575000px;}
.y52{bottom:152.280000px;}
.y1f{bottom:152.475000px;}
.ycb{bottom:154.575000px;}
.yfc{bottom:154.770000px;}
.y10{bottom:157.095000px;}
.yb7{bottom:157.275000px;}
.y158{bottom:157.920000px;}
.y14e{bottom:158.025000px;}
.y151{bottom:158.475000px;}
.y3{bottom:161.625000px;}
.y199{bottom:162.480000px;}
.y33{bottom:164.355000px;}
.y106{bottom:165.495000px;}
.ybe{bottom:166.305000px;}
.y13e{bottom:166.650000px;}
.y186{bottom:167.625000px;}
.y171{bottom:169.230000px;}
.y7a{bottom:171.525000px;}
.y130{bottom:175.650000px;}
.yb6{bottom:176.430000px;}
.y55{bottom:178.425000px;}
.y11e{bottom:179.475000px;}
.y1e{bottom:179.505000px;}
.y17e{bottom:179.745000px;}
.y44{bottom:182.745000px;}
.yf{bottom:183.000000px;}
.ye0{bottom:184.425000px;}
.y3f{bottom:185.595000px;}
.y105{bottom:186.930000px;}
.yca{bottom:187.275000px;}
.ybd{bottom:187.725000px;}
.y70{bottom:188.400000px;}
.y17{bottom:188.805000px;}
.y51{bottom:191.025000px;}
.yb5{bottom:195.600000px;}
.yaf{bottom:196.095000px;}
.y12f{bottom:197.070000px;}
.ye9{bottom:197.595000px;}
.y14d{bottom:198.000000px;}
.y16a{bottom:198.150000px;}
.y69{bottom:198.570000px;}
.y13d{bottom:198.720000px;}
.y11d{bottom:200.895000px;}
.y61{bottom:201.120000px;}
.y170{bottom:203.070000px;}
.y185{bottom:203.655000px;}
.ya3{bottom:203.850000px;}
.y163{bottom:206.250000px;}
.y1d{bottom:206.550000px;}
.ydf{bottom:206.970000px;}
.y84{bottom:208.320000px;}
.ybc{bottom:209.130000px;}
.y6f{bottom:209.820000px;}
.y198{bottom:210.975000px;}
.y79{bottom:211.320000px;}
.y8c{bottom:211.950000px;}
.yfb{bottom:215.505000px;}
.yb4{bottom:215.880000px;}
.y17d{bottom:216.945000px;}
.y68{bottom:217.725000px;}
.y3e{bottom:218.250000px;}
.y12e{bottom:218.475000px;}
.y14c{bottom:219.450000px;}
.yc9{bottom:219.975000px;}
.ye8{bottom:220.125000px;}
.ye7{bottom:221.100000px;}
.y16{bottom:221.505000px;}
.y11c{bottom:222.300000px;}
.yae{bottom:224.295000px;}
.yde{bottom:229.500000px;}
.y83{bottom:229.725000px;}
.y78{bottom:230.475000px;}
.ybb{bottom:230.550000px;}
.y8b{bottom:231.120000px;}
.y6e{bottom:231.225000px;}
.y1c{bottom:233.625000px;}
.ye{bottom:233.745000px;}
.y60{bottom:233.775000px;}
.y18{bottom:233.850000px;}
.ya2{bottom:234.300000px;}
.yb3{bottom:235.050000px;}
.y197{bottom:235.755000px;}
.yfa{bottom:236.925000px;}
.y67{bottom:238.020000px;}
.y32{bottom:239.850000px;}
.y12d{bottom:239.880000px;}
.y14b{bottom:240.870000px;}
.yee{bottom:240.945000px;}
.y13c{bottom:241.530000px;}
.y11b{bottom:243.720000px;}
.y28{bottom:244.080000px;}
.y17c{bottom:245.130000px;}
.y169{bottom:246.750000px;}
.y2{bottom:250.395000px;}
.y77{bottom:250.770000px;}
.y3d{bottom:250.950000px;}
.y82{bottom:251.145000px;}
.y8a{bottom:251.400000px;}
.y4b{bottom:251.925000px;}
.yba{bottom:251.970000px;}
.y6d{bottom:252.630000px;}
.y4f{bottom:253.995000px;}
.yb2{bottom:254.205000px;}
.y66{bottom:257.175000px;}
.y13{bottom:257.580000px;}
.yf9{bottom:258.330000px;}
.yd{bottom:258.525000px;}
.y196{bottom:260.550000px;}
.y1b{bottom:260.655000px;}
.y14a{bottom:262.275000px;}
.y43{bottom:264.570000px;}
.ya1{bottom:264.720000px;}
.y5f{bottom:266.475000px;}
.y15d{bottom:266.850000px;}
.y31{bottom:266.880000px;}
.y76{bottom:269.925000px;}
.y162{bottom:270.495000px;}
.y89{bottom:270.570000px;}
.y27{bottom:271.155000px;}
.y16f{bottom:271.800000px;}
.y81{bottom:272.550000px;}
.y101{bottom:273.045000px;}
.y17b{bottom:273.300000px;}
.y6c{bottom:274.050000px;}
.y65{bottom:276.300000px;}
.y184{bottom:276.945000px;}
.yf8{bottom:279.750000px;}
.ye3{bottom:280.650000px;}
.ye6{bottom:281.400000px;}
.yad{bottom:281.775000px;}
.y3c{bottom:283.650000px;}
.y195{bottom:284.220000px;}
.y4a{bottom:284.625000px;}
.y149{bottom:284.820000px;}
.y1a{bottom:287.700000px;}
.y75{bottom:289.095000px;}
.y88{bottom:289.695000px;}
.ydd{bottom:291.270000px;}
.y39{bottom:293.880000px;}
.y30{bottom:293.925000px;}
.y80{bottom:293.955000px;}
.ya0{bottom:295.170000px;}
.y42{bottom:297.225000px;}
.y168{bottom:297.450000px;}
.y111{bottom:298.020000px;}
.y26{bottom:298.200000px;}
.y17a{bottom:301.455000px;}
.yb1{bottom:302.025000px;}
.ye2{bottom:302.070000px;}
.ye5{bottom:302.820000px;}
.yb9{bottom:304.155000px;}
.y1{bottom:304.500000px;}
.yed{bottom:305.175000px;}
.y16e{bottom:305.625000px;}
.yd4{bottom:308.550000px;}
.yc{bottom:309.255000px;}
.yac{bottom:311.070000px;}
.y183{bottom:314.130000px;}
.y3b{bottom:316.320000px;}
.y49{bottom:317.280000px;}
.y15c{bottom:317.580000px;}
.y110{bottom:319.425000px;}
.y64{bottom:319.905000px;}
.y2f{bottom:321.000000px;}
.y12{bottom:321.825000px;}
.yc6{bottom:322.170000px;}
.yb0{bottom:323.445000px;}
.y5e{bottom:324.030000px;}
.y4e{bottom:324.075000px;}
.y25{bottom:325.245000px;}
.yb8{bottom:325.575000px;}
.y7f{bottom:328.275000px;}
.yd3{bottom:331.080000px;}
.y194{bottom:332.700000px;}
.yf7{bottom:332.850000px;}
.yb{bottom:334.050000px;}
.y161{bottom:335.850000px;}
.y74{bottom:336.750000px;}
.y100{bottom:337.275000px;}
.y179{bottom:337.530000px;}
.y87{bottom:338.895000px;}
.y16d{bottom:340.575000px;}
.y10f{bottom:340.845000px;}
.y19{bottom:342.945000px;}
.y11a{bottom:345.450000px;}
.y63{bottom:345.870000px;}
.y12b{bottom:347.445000px;}
.y148{bottom:349.050000px;}
.y7e{bottom:349.695000px;}
.y48{bottom:349.995000px;}
.yd2{bottom:353.655000px;}
.yf6{bottom:354.270000px;}
.yc5{bottom:354.870000px;}
.y5d{bottom:356.700000px;}
.y9f{bottom:357.150000px;}
.ycc{bottom:357.345000px;}
.y193{bottom:357.495000px;}
.y73{bottom:358.155000px;}
.ydc{bottom:359.580000px;}
.y13b{bottom:359.925000px;}
.ya{bottom:359.970000px;}
.y86{bottom:360.300000px;}
.y10e{bottom:363.375000px;}
.y119{bottom:366.870000px;}
.yab{bottom:368.550000px;}
.y12a{bottom:368.850000px;}
.y147{bottom:370.470000px;}
.y178{bottom:370.650000px;}
.y7d{bottom:371.100000px;}
.y15{bottom:371.250000px;}
.y16c{bottom:374.370000px;}
.yf5{bottom:375.675000px;}
.yf0{bottom:376.395000px;}
.y192{bottom:382.275000px;}
.y13a{bottom:382.455000px;}
.y41{bottom:382.530000px;}
.y10d{bottom:384.780000px;}
.y50{bottom:386.070000px;}
.yc4{bottom:387.525000px;}
.y9e{bottom:387.570000px;}
.y118{bottom:388.275000px;}
.y5c{bottom:389.400000px;}
.y3a{bottom:390.120000px;}
.y129{bottom:390.255000px;}
.y4d{bottom:392.400000px;}
.y146{bottom:393.000000px;}
.yf4{bottom:397.095000px;}
.yaa{bottom:397.845000px;}
.y177{bottom:401.100000px;}
.y160{bottom:401.220000px;}
.y139{bottom:403.875000px;}
.y10c{bottom:406.200000px;}
.y9{bottom:409.575000px;}
.y117{bottom:409.695000px;}
.y128{bottom:412.800000px;}
.y145{bottom:414.405000px;}
.yf3{bottom:418.500000px;}
.yc3{bottom:420.225000px;}
.yd1{bottom:423.630000px;}
.y15b{bottom:424.470000px;}
.y138{bottom:425.280000px;}
.ya9{bottom:426.030000px;}
.y10b{bottom:427.620000px;}
.y176{bottom:430.380000px;}
.y191{bottom:430.755000px;}
.y9d{bottom:431.130000px;}
.y116{bottom:432.225000px;}
.y127{bottom:434.220000px;}
.y2e{bottom:434.625000px;}
.y14{bottom:435.495000px;}
.y144{bottom:435.825000px;}
.y2b{bottom:437.025000px;}
.y16b{bottom:438.600000px;}
.yef{bottom:440.625000px;}
.y137{bottom:446.700000px;}
.y10a{bottom:449.070000px;}
.y47{bottom:451.845000px;}
.y8{bottom:453.120000px;}
.y115{bottom:453.675000px;}
.y190{bottom:454.425000px;}
.y126{bottom:455.655000px;}
.y143{bottom:457.245000px;}
.y175{bottom:460.845000px;}
.y2d{bottom:461.655000px;}
.y2a{bottom:464.100000px;}
.y15f{bottom:464.655000px;}
.y40{bottom:464.775000px;}
.y4c{bottom:465.120000px;}
.y136{bottom:468.120000px;}
.y114{bottom:475.095000px;}
.yc7{bottom:475.695000px;}
.y125{bottom:477.075000px;}
.y142{bottom:478.650000px;}
.y18f{bottom:479.220000px;}
.y112{bottom:479.655000px;}
.y9c{bottom:485.250000px;}
.yf2{bottom:485.280000px;}
.ye1{bottom:486.870000px;}
.y2c{bottom:488.700000px;}
.y29{bottom:491.130000px;}
.y113{bottom:496.500000px;}
.y124{bottom:498.495000px;}
.y62{bottom:514.875000px;}
.y58{bottom:520.050000px;}
.y182{bottom:524.970000px;}
.y90{bottom:526.500000px;}
.y18e{bottom:527.655000px;}
.ydb{bottom:531.780000px;}
.yd0{bottom:536.280000px;}
.y102{bottom:537.120000px;}
.y5a{bottom:537.345000px;}
.yf1{bottom:539.400000px;}
.y94{bottom:543.075000px;}
.y8f{bottom:543.375000px;}
.y181{bottom:548.400000px;}
.y123{bottom:549.345000px;}
.ye4{bottom:550.005000px;}
.y18d{bottom:552.495000px;}
.y93{bottom:557.070000px;}
.yce{bottom:557.400000px;}
.y18c{bottom:576.150000px;}
.h22{height:29.713403px;}
.h24{height:36.182373px;}
.h23{height:36.292017px;}
.h2b{height:37.237500px;}
.h11{height:39.581323px;}
.h42{height:40.718262px;}
.h38{height:42.760986px;}
.h33{height:42.870630px;}
.h37{height:43.989258px;}
.h39{height:44.102051px;}
.h20{height:49.141846px;}
.h21{height:49.251050px;}
.h19{height:52.488281px;}
.h1b{height:52.527173px;}
.h1a{height:52.597632px;}
.h34{height:52.628906px;}
.h1d{height:52.738550px;}
.h30{height:54.140625px;}
.h1c{height:54.253418px;}
.h36{height:58.792017px;}
.h44{height:59.079419px;}
.h45{height:59.158667px;}
.h3e{height:59.317163px;}
.h41{height:59.871899px;}
.h3f{height:61.020996px;}
.h18{height:62.439185px;}
.h1e{height:62.548535px;}
.h9{height:62.606470px;}
.h6{height:62.716113px;}
.h8{height:64.404785px;}
.h10{height:65.895776px;}
.h2a{height:66.489185px;}
.hf{height:67.788574px;}
.h12{height:67.901367px;}
.h4{height:68.907788px;}
.h16{height:69.000220px;}
.h29{height:69.185083px;}
.h28{height:75.763696px;}
.h27{height:75.873340px;}
.h25{height:77.939941px;}
.h26{height:78.052734px;}
.hc{height:78.736157px;}
.h3{height:78.841772px;}
.hb{height:78.845361px;}
.h2{height:78.951123px;}
.h7{height:79.053003px;}
.he{height:81.323730px;}
.h3d{height:82.122290px;}
.h43{height:82.231641px;}
.h3b{height:82.342310px;}
.h3c{height:82.451953px;}
.h2d{height:88.564526px;}
.h13{height:91.587891px;}
.h2f{height:106.498535px;}
.h1f{height:107.439185px;}
.h15{height:114.882715px;}
.h14{height:118.658203px;}
.h17{height:125.425781px;}
.h3a{height:125.538574px;}
.h1{height:135.577148px;}
.h2e{height:135.689941px;}
.h40{height:140.574609px;}
.h32{height:141.091699px;}
.h5{height:145.728516px;}
.h2c{height:145.841309px;}
.h31{height:162.647461px;}
.ha{height:162.760254px;}
.h35{height:207.253418px;}
.h0{height:607.500000px;}
.hd{height:615.361084px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x97{left:10.799984px;}
.x9e{left:24.224984px;}
.x2{left:29.099984px;}
.x1{left:35.587484px;}
.x15{left:39.787484px;}
.xa0{left:41.024984px;}
.x86{left:44.662484px;}
.x9d{left:46.274984px;}
.x14{left:48.787484px;}
.x9c{left:52.349984px;}
.x1d{left:53.812484px;}
.x74{left:55.199984px;}
.x94{left:57.562484px;}
.x4a{left:59.812484px;}
.x7a{left:61.912484px;}
.x93{left:63.749984px;}
.x96{left:65.962484px;}
.x54{left:67.987484px;}
.x4{left:70.574984px;}
.x3{left:72.449984px;}
.x9{left:74.624984px;}
.x59{left:77.399984px;}
.x6{left:80.324984px;}
.x98{left:82.349984px;}
.x63{left:84.824984px;}
.x79{left:86.512484px;}
.x37{left:91.237484px;}
.x27{left:92.474984px;}
.xa1{left:95.062484px;}
.x1f{left:96.412484px;}
.x35{left:97.874984px;}
.x95{left:102.337484px;}
.x1c{left:106.874984px;}
.x23{left:110.999984px;}
.x4b{left:113.849984px;}
.x28{left:117.674984px;}
.xa{left:124.799984px;}
.x75{left:125.887484px;}
.x76{left:127.199984px;}
.x38{left:128.287484px;}
.x51{left:139.499984px;}
.x25{left:142.162484px;}
.x2f{left:147.487484px;}
.x29{left:149.399984px;}
.x34{left:154.649984px;}
.x4c{left:167.924984px;}
.x26{left:171.269984px;}
.x69{left:173.594984px;}
.x57{left:175.079984px;}
.x16{left:191.399984px;}
.x4e{left:194.969984px;}
.x36{left:198.194984px;}
.x21{left:211.349984px;}
.x9a{left:217.619984px;}
.x8e{left:226.619984px;}
.x22{left:230.474984px;}
.x99{left:236.279984px;}
.x8d{left:245.294984px;}
.x8f{left:267.344984px;}
.x60{left:290.474984px;}
.x5b{left:295.169984px;}
.x5a{left:305.219984px;}
.x6b{left:312.869984px;}
.x5c{left:324.569984px;}
.x61{left:328.769984px;}
.x6f{left:329.774984px;}
.x70{left:333.719984px;}
.x24{left:343.394984px;}
.x1a{left:354.494984px;}
.x62{left:355.619984px;}
.x68{left:367.424984px;}
.xb{left:390.224984px;}
.x90{left:391.799984px;}
.x53{left:393.899984px;}
.x11{left:418.529984px;}
.x31{left:423.674984px;}
.xe{left:427.349984px;}
.x40{left:436.319984px;}
.x10{left:439.274984px;}
.xd{left:451.874984px;}
.x5{left:453.374984px;}
.x43{left:454.799984px;}
.xf{left:460.124984px;}
.x72{left:461.894984px;}
.x32{left:462.944984px;}
.x8{left:466.124984px;}
.x12{left:470.624984px;}
.x52{left:473.819984px;}
.x33{left:474.854984px;}
.x9f{left:488.354984px;}
.xc{left:493.649984px;}
.xa3{left:495.524984px;}
.x7{left:499.904984px;}
.x42{left:502.724984px;}
.x44{left:506.504984px;}
.x71{left:521.594984px;}
.x30{left:522.824984px;}
.x41{left:530.624984px;}
.x6d{left:540.299984px;}
.xa2{left:549.524984px;}
.x80{left:558.674984px;}
.x48{left:561.944984px;}
.x5d{left:567.869984px;}
.x65{left:570.029984px;}
.x64{left:572.279984px;}
.x5e{left:573.869984px;}
.x6c{left:575.219984px;}
.x87{left:579.149984px;}
.x81{left:588.524984px;}
.x89{left:590.969984px;}
.x88{left:599.399984px;}
.x78{left:602.624984px;}
.x77{left:603.749984px;}
.xa4{left:611.669984px;}
.x5f{left:619.319984px;}
.x8a{left:620.774984px;}
.x73{left:634.274984px;}
.x8b{left:643.319984px;}
.x8c{left:663.569984px;}
.x17{left:672.029984px;}
.x1b{left:674.174984px;}
.x4d{left:685.574984px;}
.x20{left:688.424984px;}
.x91{left:695.444984px;}
.x9b{left:696.644984px;}
.x82{left:700.019984px;}
.x85{left:702.254984px;}
.x84{left:720.299984px;}
.x92{left:723.419984px;}
.x56{left:727.049984px;}
.x55{left:728.444984px;}
.x83{left:729.869984px;}
.x1e{left:743.324984px;}
.x7c{left:750.869984px;}
.x19{left:754.874984px;}
.x2c{left:756.404984px;}
.x3c{left:757.469984px;}
.x3e{left:760.994984px;}
.x7b{left:764.654984px;}
.x7d{left:771.119984px;}
.x3f{left:772.424984px;}
.x18{left:777.704984px;}
.x2d{left:779.069984px;}
.x2e{left:792.299984px;}
.x39{left:795.149984px;}
.x4f{left:797.204984px;}
.x3a{left:801.824984px;}
.x6e{left:807.194984px;}
.x7e{left:822.254984px;}
.x2a{left:824.774984px;}
.x3d{left:836.549984px;}
.x7f{left:842.549984px;}
.x45{left:843.824984px;}
.x2b{left:855.524984px;}
.x58{left:862.619984px;}
.x50{left:864.419984px;}
.x3b{left:869.399984px;}
.x6a{left:883.319984px;}
.x13{left:894.329984px;}
.x49{left:897.794984px;}
.x66{left:970.619984px;}
.x47{left:972.599984px;}
.x67{left:984.524984px;}
.x46{left:990.599984px;}
@media print{
.v1{vertical-align:-62.666667pt;}
.v3{vertical-align:-22.533333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:3.600000pt;}
.v7{vertical-align:20.000000pt;}
.v5{vertical-align:39.066667pt;}
.v2{vertical-align:40.000000pt;}
.v6{vertical-align:136.000000pt;}
.ls24{letter-spacing:-1.456000pt;}
.ls23{letter-spacing:-1.376000pt;}
.ls29{letter-spacing:-0.986667pt;}
.lsb{letter-spacing:-0.538667pt;}
.lsc{letter-spacing:-0.464000pt;}
.ls2b{letter-spacing:-0.330667pt;}
.ls22{letter-spacing:-0.268800pt;}
.ls34{letter-spacing:-0.106133pt;}
.ls33{letter-spacing:-0.080533pt;}
.ls35{letter-spacing:-0.053067pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2f{letter-spacing:0.027200pt;}
.ls21{letter-spacing:0.066667pt;}
.ls8{letter-spacing:0.163200pt;}
.ls9{letter-spacing:0.192267pt;}
.ls7{letter-spacing:0.296533pt;}
.ls1b{letter-spacing:0.304267pt;}
.lsa{letter-spacing:0.341867pt;}
.ls26{letter-spacing:0.384800pt;}
.ls1f{letter-spacing:0.416000pt;}
.ls30{letter-spacing:0.444800pt;}
.ls2a{letter-spacing:0.475200pt;}
.ls16{letter-spacing:0.549333pt;}
.ls25{letter-spacing:0.612933pt;}
.ls1a{letter-spacing:0.769600pt;}
.ls19{letter-spacing:0.897867pt;}
.ls27{letter-spacing:1.226667pt;}
.ls28{letter-spacing:1.509333pt;}
.ls6{letter-spacing:1.722667pt;}
.ls1{letter-spacing:1.754667pt;}
.ls11{letter-spacing:2.053333pt;}
.ls10{letter-spacing:2.080000pt;}
.ls1e{letter-spacing:2.170667pt;}
.ls12{letter-spacing:2.213333pt;}
.ls3{letter-spacing:19.622400pt;}
.lsf{letter-spacing:19.643200pt;}
.ls5{letter-spacing:19.696533pt;}
.ls31{letter-spacing:34.079467pt;}
.ls32{letter-spacing:34.160000pt;}
.ls14{letter-spacing:49.553333pt;}
.ls18{letter-spacing:49.600000pt;}
.ls17{letter-spacing:49.606667pt;}
.ls15{letter-spacing:49.653333pt;}
.ls20{letter-spacing:49.660000pt;}
.ls13{letter-spacing:49.686667pt;}
.ls1c{letter-spacing:49.713333pt;}
.ls1d{letter-spacing:49.760000pt;}
.lse{letter-spacing:85.737600pt;}
.lsd{letter-spacing:85.818133pt;}
.ls2e{letter-spacing:86.068800pt;}
.ls2{letter-spacing:86.413333pt;}
.ls4{letter-spacing:86.460000pt;}
.ls2d{letter-spacing:109.040000pt;}
.ls2c{letter-spacing:109.086667pt;}
.ws5{word-spacing:-53.487200pt;}
.ws4a{word-spacing:-47.890133pt;}
.ws23{word-spacing:-44.554133pt;}
.ws7{word-spacing:-26.725067pt;}
.ws1d{word-spacing:-25.613067pt;}
.ws1{word-spacing:-23.673067pt;}
.ws4f{word-spacing:-22.830400pt;}
.wsb{word-spacing:-22.277067pt;}
.ws45{word-spacing:-22.110667pt;}
.ws6{word-spacing:-21.948800pt;}
.ws0{word-spacing:-21.918400pt;}
.ws3{word-spacing:-21.202133pt;}
.ws4{word-spacing:-21.165067pt;}
.ws4e{word-spacing:-20.000000pt;}
.ws4d{word-spacing:-19.972533pt;}
.ws4b{word-spacing:-19.946933pt;}
.ws2b{word-spacing:-18.598667pt;}
.ws25{word-spacing:-18.341333pt;}
.ws3b{word-spacing:-18.304267pt;}
.ws36{word-spacing:-18.208000pt;}
.ws31{word-spacing:-18.170933pt;}
.ws1e{word-spacing:-17.829067pt;}
.ws26{word-spacing:-17.792000pt;}
.ws18{word-spacing:-17.358400pt;}
.ws50{word-spacing:-16.446400pt;}
.ws39{word-spacing:-16.002400pt;}
.ws38{word-spacing:-15.719733pt;}
.ws17{word-spacing:-14.622400pt;}
.ws24{word-spacing:-14.493067pt;}
.ws42{word-spacing:-14.456000pt;}
.ws1a{word-spacing:-13.710400pt;}
.ws19{word-spacing:-13.680000pt;}
.ws3a{word-spacing:-13.506400pt;}
.ws43{word-spacing:-12.232000pt;}
.ws2a{word-spacing:-4.028800pt;}
.ws33{word-spacing:-2.556667pt;}
.wse{word-spacing:-2.248800pt;}
.wsc{word-spacing:-2.147733pt;}
.ws37{word-spacing:-2.064267pt;}
.ws11{word-spacing:-1.830667pt;}
.ws41{word-spacing:-1.824267pt;}
.ws1f{word-spacing:-1.683867pt;}
.ws12{word-spacing:-1.649867pt;}
.ws35{word-spacing:-1.568000pt;}
.ws2e{word-spacing:-1.546533pt;}
.ws48{word-spacing:-1.538933pt;}
.ws21{word-spacing:-1.500133pt;}
.ws27{word-spacing:-1.397333pt;}
.ws44{word-spacing:-1.366800pt;}
.ws47{word-spacing:-1.128000pt;}
.ws3c{word-spacing:-1.010000pt;}
.ws29{word-spacing:-0.932933pt;}
.ws10{word-spacing:-0.851067pt;}
.ws4c{word-spacing:-0.593067pt;}
.ws13{word-spacing:-0.579333pt;}
.ws14{word-spacing:-0.559333pt;}
.ws16{word-spacing:-0.352533pt;}
.wsf{word-spacing:-0.324800pt;}
.ws34{word-spacing:-0.116133pt;}
.wsd{word-spacing:-0.070933pt;}
.ws2{word-spacing:0.000000pt;}
.ws46{word-spacing:0.025467pt;}
.ws15{word-spacing:0.030933pt;}
.ws49{word-spacing:0.073067pt;}
.ws8{word-spacing:0.096000pt;}
.ws20{word-spacing:0.118400pt;}
.ws28{word-spacing:0.123600pt;}
.ws3d{word-spacing:0.194133pt;}
.ws3e{word-spacing:0.479867pt;}
.ws2d{word-spacing:0.540133pt;}
.ws30{word-spacing:0.751333pt;}
.ws2f{word-spacing:0.849600pt;}
.ws3f{word-spacing:0.921867pt;}
.ws9{word-spacing:0.929467pt;}
.ws40{word-spacing:1.108667pt;}
.ws2c{word-spacing:1.779867pt;}
.wsa{word-spacing:1.810133pt;}
.ws32{word-spacing:5.810133pt;}
.ws1c{word-spacing:48.597333pt;}
.ws1b{word-spacing:48.673067pt;}
.ws22{word-spacing:149.012267pt;}
._c{margin-left:-4.542000pt;}
._5{margin-left:-3.590533pt;}
._4{margin-left:-2.404000pt;}
._0{margin-left:-1.442400pt;}
._3{width:0.961600pt;}
._2{width:2.243733pt;}
._1{width:3.365600pt;}
._7{width:4.407333pt;}
._b{width:16.163067pt;}
._a{width:17.473600pt;}
._12{width:21.104533pt;}
._8{width:24.342800pt;}
._11{width:25.828400pt;}
._9{width:42.945600pt;}
._f{width:569.694800pt;}
._6{width:595.457200pt;}
._d{width:657.588533pt;}
._e{width:1073.739600pt;}
._10{width:1471.627867pt;}
.fs13{font-size:36.133333pt;}
.fs15{font-size:44.000000pt;}
.fs14{font-size:44.133333pt;}
.fsa{font-size:48.133333pt;}
.fs1d{font-size:52.000000pt;}
.fs1c{font-size:52.133333pt;}
.fs11{font-size:60.000000pt;}
.fs12{font-size:60.133333pt;}
.fsf{font-size:64.000000pt;}
.fs10{font-size:64.133333pt;}
.fs21{font-size:72.133333pt;}
.fs5{font-size:76.133333pt;}
.fs6{font-size:76.266667pt;}
.fs9{font-size:80.133333pt;}
.fsb{font-size:80.266667pt;}
.fs3{font-size:84.133333pt;}
.fs16{font-size:92.133333pt;}
.fs17{font-size:92.266667pt;}
.fs2{font-size:96.133333pt;}
.fs1{font-size:96.266667pt;}
.fs1f{font-size:100.133333pt;}
.fs20{font-size:100.266667pt;}
.fs19{font-size:108.133333pt;}
.fsc{font-size:108.266667pt;}
.fsd{font-size:140.266667pt;}
.fse{font-size:148.266667pt;}
.fs1e{font-size:148.400000pt;}
.fs0{font-size:160.266667pt;}
.fs1a{font-size:160.400000pt;}
.fs4{font-size:172.266667pt;}
.fs18{font-size:172.400000pt;}
.fs1b{font-size:192.266667pt;}
.fs7{font-size:192.400000pt;}
.fs8{font-size:721.333333pt;}
.y0{bottom:0.000000pt;}
.yc2{bottom:11.033333pt;}
.y7{bottom:12.033333pt;}
.y12c{bottom:12.066667pt;}
.y20{bottom:13.866667pt;}
.y15e{bottom:14.066667pt;}
.y19f{bottom:15.000000pt;}
.y19e{bottom:15.200000pt;}
.y167{bottom:15.466667pt;}
.y91{bottom:16.033333pt;}
.y18a{bottom:16.433333pt;}
.y38{bottom:17.733333pt;}
.ya8{bottom:17.900000pt;}
.y135{bottom:17.933333pt;}
.y103{bottom:21.866667pt;}
.y9b{bottom:25.066667pt;}
.y46{bottom:30.233333pt;}
.y157{bottom:30.700000pt;}
.y92{bottom:33.033333pt;}
.ycd{bottom:33.333333pt;}
.y19d{bottom:36.233333pt;}
.y6{bottom:37.066667pt;}
.y174{bottom:37.233333pt;}
.y9a{bottom:38.100000pt;}
.y166{bottom:39.066667pt;}
.y59{bottom:40.300000pt;}
.yeb{bottom:43.366667pt;}
.y189{bottom:43.800000pt;}
.ya7{bottom:44.966667pt;}
.y72{bottom:46.966667pt;}
.y8e{bottom:47.033333pt;}
.y104{bottom:47.766667pt;}
.y156{bottom:49.733333pt;}
.y37{bottom:49.900000pt;}
.y99{bottom:50.133333pt;}
.y71{bottom:51.366667pt;}
.yea{bottom:53.666667pt;}
.yd7{bottom:54.000000pt;}
.yda{bottom:54.133333pt;}
.yc8{bottom:54.466667pt;}
.y24{bottom:57.200000pt;}
.y19c{bottom:58.300000pt;}
.y8d{bottom:60.066667pt;}
.y109{bottom:60.100000pt;}
.y98{bottom:63.133333pt;}
.y85{bottom:64.500000pt;}
.ycf{bottom:64.833333pt;}
.yc1{bottom:66.766667pt;}
.y165{bottom:68.100000pt;}
.y134{bottom:68.733333pt;}
.y155{bottom:68.766667pt;}
.y57{bottom:68.833333pt;}
.ya6{bottom:72.000000pt;}
.y122{bottom:72.133333pt;}
.y36{bottom:73.966667pt;}
.yd6{bottom:74.033333pt;}
.yd9{bottom:74.166667pt;}
.y188{bottom:75.866667pt;}
.y97{bottom:76.166667pt;}
.y54{bottom:77.266667pt;}
.y108{bottom:79.133333pt;}
.yff{bottom:80.466667pt;}
.y23{bottom:81.266667pt;}
.y5{bottom:85.533333pt;}
.y133{bottom:87.766667pt;}
.y154{bottom:87.800000pt;}
.y96{bottom:89.200000pt;}
.y173{bottom:89.333333pt;}
.y141{bottom:91.000000pt;}
.y121{bottom:91.166667pt;}
.yd5{bottom:94.066667pt;}
.yd8{bottom:94.200000pt;}
.y56{bottom:97.866667pt;}
.y35{bottom:98.000000pt;}
.y107{bottom:98.166667pt;}
.ya5{bottom:99.066667pt;}
.yfe{bottom:99.500000pt;}
.y19b{bottom:101.366667pt;}
.y95{bottom:102.233333pt;}
.y22{bottom:105.300000pt;}
.y53{bottom:106.300000pt;}
.y132{bottom:106.800000pt;}
.y15a{bottom:108.300000pt;}
.y150{bottom:108.433333pt;}
.yc0{bottom:108.733333pt;}
.y153{bottom:108.800000pt;}
.y187{bottom:108.900000pt;}
.y6b{bottom:109.033333pt;}
.y180{bottom:109.700000pt;}
.y140{bottom:110.066667pt;}
.y120{bottom:110.200000pt;}
.y7c{bottom:114.400000pt;}
.y4{bottom:114.600000pt;}
.y11{bottom:117.600000pt;}
.yfd{bottom:118.533333pt;}
.y172{bottom:119.366667pt;}
.y18b{bottom:120.366667pt;}
.y34{bottom:122.033333pt;}
.y19a{bottom:123.400000pt;}
.yec{bottom:123.433333pt;}
.y159{bottom:124.333333pt;}
.y5b{bottom:124.366667pt;}
.y14f{bottom:124.433333pt;}
.y152{bottom:124.833333pt;}
.y164{bottom:125.200000pt;}
.y131{bottom:125.833333pt;}
.ya4{bottom:126.100000pt;}
.ybf{bottom:127.766667pt;}
.y6a{bottom:128.066667pt;}
.y13f{bottom:129.100000pt;}
.y11f{bottom:129.233333pt;}
.y21{bottom:129.333333pt;}
.y45{bottom:133.360000pt;}
.y7b{bottom:133.440000pt;}
.y17f{bottom:134.733333pt;}
.y52{bottom:135.360000pt;}
.y1f{bottom:135.533333pt;}
.ycb{bottom:137.400000pt;}
.yfc{bottom:137.573333pt;}
.y10{bottom:139.640000pt;}
.yb7{bottom:139.800000pt;}
.y158{bottom:140.373333pt;}
.y14e{bottom:140.466667pt;}
.y151{bottom:140.866667pt;}
.y3{bottom:143.666667pt;}
.y199{bottom:144.426667pt;}
.y33{bottom:146.093333pt;}
.y106{bottom:147.106667pt;}
.ybe{bottom:147.826667pt;}
.y13e{bottom:148.133333pt;}
.y186{bottom:149.000000pt;}
.y171{bottom:150.426667pt;}
.y7a{bottom:152.466667pt;}
.y130{bottom:156.133333pt;}
.yb6{bottom:156.826667pt;}
.y55{bottom:158.600000pt;}
.y11e{bottom:159.533333pt;}
.y1e{bottom:159.560000pt;}
.y17e{bottom:159.773333pt;}
.y44{bottom:162.440000pt;}
.yf{bottom:162.666667pt;}
.ye0{bottom:163.933333pt;}
.y3f{bottom:164.973333pt;}
.y105{bottom:166.160000pt;}
.yca{bottom:166.466667pt;}
.ybd{bottom:166.866667pt;}
.y70{bottom:167.466667pt;}
.y17{bottom:167.826667pt;}
.y51{bottom:169.800000pt;}
.yb5{bottom:173.866667pt;}
.yaf{bottom:174.306667pt;}
.y12f{bottom:175.173333pt;}
.ye9{bottom:175.640000pt;}
.y14d{bottom:176.000000pt;}
.y16a{bottom:176.133333pt;}
.y69{bottom:176.506667pt;}
.y13d{bottom:176.640000pt;}
.y11d{bottom:178.573333pt;}
.y61{bottom:178.773333pt;}
.y170{bottom:180.506667pt;}
.y185{bottom:181.026667pt;}
.ya3{bottom:181.200000pt;}
.y163{bottom:183.333333pt;}
.y1d{bottom:183.600000pt;}
.ydf{bottom:183.973333pt;}
.y84{bottom:185.173333pt;}
.ybc{bottom:185.893333pt;}
.y6f{bottom:186.506667pt;}
.y198{bottom:187.533333pt;}
.y79{bottom:187.840000pt;}
.y8c{bottom:188.400000pt;}
.yfb{bottom:191.560000pt;}
.yb4{bottom:191.893333pt;}
.y17d{bottom:192.840000pt;}
.y68{bottom:193.533333pt;}
.y3e{bottom:194.000000pt;}
.y12e{bottom:194.200000pt;}
.y14c{bottom:195.066667pt;}
.yc9{bottom:195.533333pt;}
.ye8{bottom:195.666667pt;}
.ye7{bottom:196.533333pt;}
.y16{bottom:196.893333pt;}
.y11c{bottom:197.600000pt;}
.yae{bottom:199.373333pt;}
.yde{bottom:204.000000pt;}
.y83{bottom:204.200000pt;}
.y78{bottom:204.866667pt;}
.ybb{bottom:204.933333pt;}
.y8b{bottom:205.440000pt;}
.y6e{bottom:205.533333pt;}
.y1c{bottom:207.666667pt;}
.ye{bottom:207.773333pt;}
.y60{bottom:207.800000pt;}
.y18{bottom:207.866667pt;}
.ya2{bottom:208.266667pt;}
.yb3{bottom:208.933333pt;}
.y197{bottom:209.560000pt;}
.yfa{bottom:210.600000pt;}
.y67{bottom:211.573333pt;}
.y32{bottom:213.200000pt;}
.y12d{bottom:213.226667pt;}
.y14b{bottom:214.106667pt;}
.yee{bottom:214.173333pt;}
.y13c{bottom:214.693333pt;}
.y11b{bottom:216.640000pt;}
.y28{bottom:216.960000pt;}
.y17c{bottom:217.893333pt;}
.y169{bottom:219.333333pt;}
.y2{bottom:222.573333pt;}
.y77{bottom:222.906667pt;}
.y3d{bottom:223.066667pt;}
.y82{bottom:223.240000pt;}
.y8a{bottom:223.466667pt;}
.y4b{bottom:223.933333pt;}
.yba{bottom:223.973333pt;}
.y6d{bottom:224.560000pt;}
.y4f{bottom:225.773333pt;}
.yb2{bottom:225.960000pt;}
.y66{bottom:228.600000pt;}
.y13{bottom:228.960000pt;}
.yf9{bottom:229.626667pt;}
.yd{bottom:229.800000pt;}
.y196{bottom:231.600000pt;}
.y1b{bottom:231.693333pt;}
.y14a{bottom:233.133333pt;}
.y43{bottom:235.173333pt;}
.ya1{bottom:235.306667pt;}
.y5f{bottom:236.866667pt;}
.y15d{bottom:237.200000pt;}
.y31{bottom:237.226667pt;}
.y76{bottom:239.933333pt;}
.y162{bottom:240.440000pt;}
.y89{bottom:240.506667pt;}
.y27{bottom:241.026667pt;}
.y16f{bottom:241.600000pt;}
.y81{bottom:242.266667pt;}
.y101{bottom:242.706667pt;}
.y17b{bottom:242.933333pt;}
.y6c{bottom:243.600000pt;}
.y65{bottom:245.600000pt;}
.y184{bottom:246.173333pt;}
.yf8{bottom:248.666667pt;}
.ye3{bottom:249.466667pt;}
.ye6{bottom:250.133333pt;}
.yad{bottom:250.466667pt;}
.y3c{bottom:252.133333pt;}
.y195{bottom:252.640000pt;}
.y4a{bottom:253.000000pt;}
.y149{bottom:253.173333pt;}
.y1a{bottom:255.733333pt;}
.y75{bottom:256.973333pt;}
.y88{bottom:257.506667pt;}
.ydd{bottom:258.906667pt;}
.y39{bottom:261.226667pt;}
.y30{bottom:261.266667pt;}
.y80{bottom:261.293333pt;}
.ya0{bottom:262.373333pt;}
.y42{bottom:264.200000pt;}
.y168{bottom:264.400000pt;}
.y111{bottom:264.906667pt;}
.y26{bottom:265.066667pt;}
.y17a{bottom:267.960000pt;}
.yb1{bottom:268.466667pt;}
.ye2{bottom:268.506667pt;}
.ye5{bottom:269.173333pt;}
.yb9{bottom:270.360000pt;}
.y1{bottom:270.666667pt;}
.yed{bottom:271.266667pt;}
.y16e{bottom:271.666667pt;}
.yd4{bottom:274.266667pt;}
.yc{bottom:274.893333pt;}
.yac{bottom:276.506667pt;}
.y183{bottom:279.226667pt;}
.y3b{bottom:281.173333pt;}
.y49{bottom:282.026667pt;}
.y15c{bottom:282.293333pt;}
.y110{bottom:283.933333pt;}
.y64{bottom:284.360000pt;}
.y2f{bottom:285.333333pt;}
.y12{bottom:286.066667pt;}
.yc6{bottom:286.373333pt;}
.yb0{bottom:287.506667pt;}
.y5e{bottom:288.026667pt;}
.y4e{bottom:288.066667pt;}
.y25{bottom:289.106667pt;}
.yb8{bottom:289.400000pt;}
.y7f{bottom:291.800000pt;}
.yd3{bottom:294.293333pt;}
.y194{bottom:295.733333pt;}
.yf7{bottom:295.866667pt;}
.yb{bottom:296.933333pt;}
.y161{bottom:298.533333pt;}
.y74{bottom:299.333333pt;}
.y100{bottom:299.800000pt;}
.y179{bottom:300.026667pt;}
.y87{bottom:301.240000pt;}
.y16d{bottom:302.733333pt;}
.y10f{bottom:302.973333pt;}
.y19{bottom:304.840000pt;}
.y11a{bottom:307.066667pt;}
.y63{bottom:307.440000pt;}
.y12b{bottom:308.840000pt;}
.y148{bottom:310.266667pt;}
.y7e{bottom:310.840000pt;}
.y48{bottom:311.106667pt;}
.yd2{bottom:314.360000pt;}
.yf6{bottom:314.906667pt;}
.yc5{bottom:315.440000pt;}
.y5d{bottom:317.066667pt;}
.y9f{bottom:317.466667pt;}
.ycc{bottom:317.640000pt;}
.y193{bottom:317.773333pt;}
.y73{bottom:318.360000pt;}
.ydc{bottom:319.626667pt;}
.y13b{bottom:319.933333pt;}
.ya{bottom:319.973333pt;}
.y86{bottom:320.266667pt;}
.y10e{bottom:323.000000pt;}
.y119{bottom:326.106667pt;}
.yab{bottom:327.600000pt;}
.y12a{bottom:327.866667pt;}
.y147{bottom:329.306667pt;}
.y178{bottom:329.466667pt;}
.y7d{bottom:329.866667pt;}
.y15{bottom:330.000000pt;}
.y16c{bottom:332.773333pt;}
.yf5{bottom:333.933333pt;}
.yf0{bottom:334.573333pt;}
.y192{bottom:339.800000pt;}
.y13a{bottom:339.960000pt;}
.y41{bottom:340.026667pt;}
.y10d{bottom:342.026667pt;}
.y50{bottom:343.173333pt;}
.yc4{bottom:344.466667pt;}
.y9e{bottom:344.506667pt;}
.y118{bottom:345.133333pt;}
.y5c{bottom:346.133333pt;}
.y3a{bottom:346.773333pt;}
.y129{bottom:346.893333pt;}
.y4d{bottom:348.800000pt;}
.y146{bottom:349.333333pt;}
.yf4{bottom:352.973333pt;}
.yaa{bottom:353.640000pt;}
.y177{bottom:356.533333pt;}
.y160{bottom:356.640000pt;}
.y139{bottom:359.000000pt;}
.y10c{bottom:361.066667pt;}
.y9{bottom:364.066667pt;}
.y117{bottom:364.173333pt;}
.y128{bottom:366.933333pt;}
.y145{bottom:368.360000pt;}
.yf3{bottom:372.000000pt;}
.yc3{bottom:373.533333pt;}
.yd1{bottom:376.560000pt;}
.y15b{bottom:377.306667pt;}
.y138{bottom:378.026667pt;}
.ya9{bottom:378.693333pt;}
.y10b{bottom:380.106667pt;}
.y176{bottom:382.560000pt;}
.y191{bottom:382.893333pt;}
.y9d{bottom:383.226667pt;}
.y116{bottom:384.200000pt;}
.y127{bottom:385.973333pt;}
.y2e{bottom:386.333333pt;}
.y14{bottom:387.106667pt;}
.y144{bottom:387.400000pt;}
.y2b{bottom:388.466667pt;}
.y16b{bottom:389.866667pt;}
.yef{bottom:391.666667pt;}
.y137{bottom:397.066667pt;}
.y10a{bottom:399.173333pt;}
.y47{bottom:401.640000pt;}
.y8{bottom:402.773333pt;}
.y115{bottom:403.266667pt;}
.y190{bottom:403.933333pt;}
.y126{bottom:405.026667pt;}
.y143{bottom:406.440000pt;}
.y175{bottom:409.640000pt;}
.y2d{bottom:410.360000pt;}
.y2a{bottom:412.533333pt;}
.y15f{bottom:413.026667pt;}
.y40{bottom:413.133333pt;}
.y4c{bottom:413.440000pt;}
.y136{bottom:416.106667pt;}
.y114{bottom:422.306667pt;}
.yc7{bottom:422.840000pt;}
.y125{bottom:424.066667pt;}
.y142{bottom:425.466667pt;}
.y18f{bottom:425.973333pt;}
.y112{bottom:426.360000pt;}
.y9c{bottom:431.333333pt;}
.yf2{bottom:431.360000pt;}
.ye1{bottom:432.773333pt;}
.y2c{bottom:434.400000pt;}
.y29{bottom:436.560000pt;}
.y113{bottom:441.333333pt;}
.y124{bottom:443.106667pt;}
.y62{bottom:457.666667pt;}
.y58{bottom:462.266667pt;}
.y182{bottom:466.640000pt;}
.y90{bottom:468.000000pt;}
.y18e{bottom:469.026667pt;}
.ydb{bottom:472.693333pt;}
.yd0{bottom:476.693333pt;}
.y102{bottom:477.440000pt;}
.y5a{bottom:477.640000pt;}
.yf1{bottom:479.466667pt;}
.y94{bottom:482.733333pt;}
.y8f{bottom:483.000000pt;}
.y181{bottom:487.466667pt;}
.y123{bottom:488.306667pt;}
.ye4{bottom:488.893333pt;}
.y18d{bottom:491.106667pt;}
.y93{bottom:495.173333pt;}
.yce{bottom:495.466667pt;}
.y18c{bottom:512.133333pt;}
.h22{height:26.411914pt;}
.h24{height:32.162109pt;}
.h23{height:32.259570pt;}
.h2b{height:33.100000pt;}
.h11{height:35.183398pt;}
.h42{height:36.194010pt;}
.h38{height:38.009766pt;}
.h33{height:38.107227pt;}
.h37{height:39.101562pt;}
.h39{height:39.201823pt;}
.h20{height:43.681641pt;}
.h21{height:43.778711pt;}
.h19{height:46.656250pt;}
.h1b{height:46.690820pt;}
.h1a{height:46.753451pt;}
.h34{height:46.781250pt;}
.h1d{height:46.878711pt;}
.h30{height:48.125000pt;}
.h1c{height:48.225260pt;}
.h36{height:52.259570pt;}
.h44{height:52.515039pt;}
.h45{height:52.585482pt;}
.h3e{height:52.726367pt;}
.h41{height:53.219466pt;}
.h3f{height:54.240885pt;}
.h18{height:55.501497pt;}
.h1e{height:55.598698pt;}
.h9{height:55.650195pt;}
.h6{height:55.747656pt;}
.h8{height:57.248698pt;}
.h10{height:58.574023pt;}
.h2a{height:59.101497pt;}
.hf{height:60.256510pt;}
.h12{height:60.356771pt;}
.h4{height:61.251367pt;}
.h16{height:61.333529pt;}
.h29{height:61.497852pt;}
.h28{height:67.345508pt;}
.h27{height:67.442969pt;}
.h25{height:69.279948pt;}
.h26{height:69.380208pt;}
.hc{height:69.987695pt;}
.h3{height:70.081576pt;}
.hb{height:70.084766pt;}
.h2{height:70.178776pt;}
.h7{height:70.269336pt;}
.he{height:72.287760pt;}
.h3d{height:72.997591pt;}
.h43{height:73.094792pt;}
.h3b{height:73.193164pt;}
.h3c{height:73.290625pt;}
.h2d{height:78.724023pt;}
.h13{height:81.411458pt;}
.h2f{height:94.665365pt;}
.h1f{height:95.501497pt;}
.h15{height:102.117969pt;}
.h14{height:105.473958pt;}
.h17{height:111.489583pt;}
.h3a{height:111.589844pt;}
.h1{height:120.513021pt;}
.h2e{height:120.613281pt;}
.h40{height:124.955208pt;}
.h32{height:125.414844pt;}
.h5{height:129.536458pt;}
.h2c{height:129.636719pt;}
.h31{height:144.575521pt;}
.ha{height:144.675781pt;}
.h35{height:184.225260pt;}
.h0{height:540.000000pt;}
.hd{height:546.987630pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x97{left:9.599986pt;}
.x9e{left:21.533319pt;}
.x2{left:25.866652pt;}
.x1{left:31.633319pt;}
.x15{left:35.366652pt;}
.xa0{left:36.466652pt;}
.x86{left:39.699986pt;}
.x9d{left:41.133319pt;}
.x14{left:43.366652pt;}
.x9c{left:46.533319pt;}
.x1d{left:47.833319pt;}
.x74{left:49.066652pt;}
.x94{left:51.166652pt;}
.x4a{left:53.166652pt;}
.x7a{left:55.033319pt;}
.x93{left:56.666652pt;}
.x96{left:58.633319pt;}
.x54{left:60.433319pt;}
.x4{left:62.733319pt;}
.x3{left:64.399986pt;}
.x9{left:66.333319pt;}
.x59{left:68.799986pt;}
.x6{left:71.399986pt;}
.x98{left:73.199986pt;}
.x63{left:75.399986pt;}
.x79{left:76.899986pt;}
.x37{left:81.099986pt;}
.x27{left:82.199986pt;}
.xa1{left:84.499986pt;}
.x1f{left:85.699986pt;}
.x35{left:86.999986pt;}
.x95{left:90.966652pt;}
.x1c{left:94.999986pt;}
.x23{left:98.666652pt;}
.x4b{left:101.199986pt;}
.x28{left:104.599986pt;}
.xa{left:110.933319pt;}
.x75{left:111.899986pt;}
.x76{left:113.066652pt;}
.x38{left:114.033319pt;}
.x51{left:123.999986pt;}
.x25{left:126.366652pt;}
.x2f{left:131.099986pt;}
.x29{left:132.799986pt;}
.x34{left:137.466652pt;}
.x4c{left:149.266652pt;}
.x26{left:152.239986pt;}
.x69{left:154.306652pt;}
.x57{left:155.626652pt;}
.x16{left:170.133319pt;}
.x4e{left:173.306652pt;}
.x36{left:176.173319pt;}
.x21{left:187.866652pt;}
.x9a{left:193.439986pt;}
.x8e{left:201.439986pt;}
.x22{left:204.866652pt;}
.x99{left:210.026652pt;}
.x8d{left:218.039986pt;}
.x8f{left:237.639986pt;}
.x60{left:258.199986pt;}
.x5b{left:262.373319pt;}
.x5a{left:271.306652pt;}
.x6b{left:278.106652pt;}
.x5c{left:288.506652pt;}
.x61{left:292.239986pt;}
.x6f{left:293.133319pt;}
.x70{left:296.639986pt;}
.x24{left:305.239986pt;}
.x1a{left:315.106652pt;}
.x62{left:316.106652pt;}
.x68{left:326.599986pt;}
.xb{left:346.866652pt;}
.x90{left:348.266652pt;}
.x53{left:350.133319pt;}
.x11{left:372.026652pt;}
.x31{left:376.599986pt;}
.xe{left:379.866652pt;}
.x40{left:387.839986pt;}
.x10{left:390.466652pt;}
.xd{left:401.666652pt;}
.x5{left:402.999986pt;}
.x43{left:404.266652pt;}
.xf{left:408.999986pt;}
.x72{left:410.573319pt;}
.x32{left:411.506652pt;}
.x8{left:414.333319pt;}
.x12{left:418.333319pt;}
.x52{left:421.173319pt;}
.x33{left:422.093319pt;}
.x9f{left:434.093319pt;}
.xc{left:438.799986pt;}
.xa3{left:440.466652pt;}
.x7{left:444.359986pt;}
.x42{left:446.866652pt;}
.x44{left:450.226652pt;}
.x71{left:463.639986pt;}
.x30{left:464.733319pt;}
.x41{left:471.666652pt;}
.x6d{left:480.266652pt;}
.xa2{left:488.466652pt;}
.x80{left:496.599986pt;}
.x48{left:499.506652pt;}
.x5d{left:504.773319pt;}
.x65{left:506.693319pt;}
.x64{left:508.693319pt;}
.x5e{left:510.106652pt;}
.x6c{left:511.306652pt;}
.x87{left:514.799986pt;}
.x81{left:523.133319pt;}
.x89{left:525.306652pt;}
.x88{left:532.799986pt;}
.x78{left:535.666652pt;}
.x77{left:536.666652pt;}
.xa4{left:543.706652pt;}
.x5f{left:550.506652pt;}
.x8a{left:551.799986pt;}
.x73{left:563.799986pt;}
.x8b{left:571.839986pt;}
.x8c{left:589.839986pt;}
.x17{left:597.359986pt;}
.x1b{left:599.266652pt;}
.x4d{left:609.399986pt;}
.x20{left:611.933319pt;}
.x91{left:618.173319pt;}
.x9b{left:619.239986pt;}
.x82{left:622.239986pt;}
.x85{left:624.226652pt;}
.x84{left:640.266652pt;}
.x92{left:643.039986pt;}
.x56{left:646.266652pt;}
.x55{left:647.506652pt;}
.x83{left:648.773319pt;}
.x1e{left:660.733319pt;}
.x7c{left:667.439986pt;}
.x19{left:670.999986pt;}
.x2c{left:672.359986pt;}
.x3c{left:673.306652pt;}
.x3e{left:676.439986pt;}
.x7b{left:679.693319pt;}
.x7d{left:685.439986pt;}
.x3f{left:686.599986pt;}
.x18{left:691.293319pt;}
.x2d{left:692.506652pt;}
.x2e{left:704.266652pt;}
.x39{left:706.799986pt;}
.x4f{left:708.626652pt;}
.x3a{left:712.733319pt;}
.x6e{left:717.506652pt;}
.x7e{left:730.893319pt;}
.x2a{left:733.133319pt;}
.x3d{left:743.599986pt;}
.x7f{left:748.933319pt;}
.x45{left:750.066652pt;}
.x2b{left:760.466652pt;}
.x58{left:766.773319pt;}
.x50{left:768.373319pt;}
.x3b{left:772.799986pt;}
.x6a{left:785.173319pt;}
.x13{left:794.959986pt;}
.x49{left:798.039986pt;}
.x66{left:862.773319pt;}
.x47{left:864.533319pt;}
.x67{left:875.133319pt;}
.x46{left:880.533319pt;}
}




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