
    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_e0e26908c8de041a73c1d0d6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4315c860c5b2ed0e1e5440d1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.091309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e9f4d487285dc1162cd549a1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.862793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ed84dd1038dbefb0a4c706bb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.692383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_afbc5aaea645d5d63a9c5364.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893066;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_032f2c12793d7eeeb6d6756d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_dcdb7d5eabe9ee530843424d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0f9629b638d251c381d402a7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6f416db7129eff55c61df48f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.862793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e7614fa1620e0d1ae8380d6b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.762207;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_93082a81219bb5f500ff3bb1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.856934;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_34508df881021d2444cfc525.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.871094;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_7e0a19a2af110a48293cc1e7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.893555;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_70cea920c3e7096dee3b027f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.693359;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_b7468fa57281aeed31984e6d.woff2')format("woff");}.fff{font-family:fff;line-height:0.691406;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_f9e478321fd0a2dc53c4e4a2.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.891602;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_e57a173b7981e424af5c2944.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.ls5a{letter-spacing:-1.767456px;}
.ls40{letter-spacing:-1.712736px;}
.ls52{letter-spacing:-1.679904px;}
.ls20{letter-spacing:-1.663200px;}
.lsb{letter-spacing:-1.659456px;}
.ls46{letter-spacing:-1.645056px;}
.ls1d{letter-spacing:-1.614816px;}
.ls27{letter-spacing:-1.608768px;}
.ls1e{letter-spacing:-1.536192px;}
.ls1f{letter-spacing:-1.518048px;}
.lsc{letter-spacing:-1.514736px;}
.ls59{letter-spacing:-1.471968px;}
.ls28{letter-spacing:-1.463616px;}
.ls29{letter-spacing:-1.457568px;}
.ls22{letter-spacing:-1.439424px;}
.ls53{letter-spacing:-1.437408px;}
.lsa{letter-spacing:-1.418256px;}
.ls48{letter-spacing:-1.404288px;}
.ls43{letter-spacing:-1.397664px;}
.ls9{letter-spacing:-1.389312px;}
.ls41{letter-spacing:-1.364544px;}
.lsd{letter-spacing:-1.360368px;}
.ls45{letter-spacing:-1.357920px;}
.ls21{letter-spacing:-1.342656px;}
.ls47{letter-spacing:-1.324800px;}
.ls3f{letter-spacing:-1.318176px;}
.ls44{letter-spacing:-1.285056px;}
.ls42{letter-spacing:-1.278432px;}
.ls49{letter-spacing:-1.258560px;}
.ls8{letter-spacing:-1.040688px;}
.ls7{letter-spacing:-0.959904px;}
.ls6{letter-spacing:-0.926640px;}
.ls39{letter-spacing:-0.618336px;}
.ls2e{letter-spacing:-0.585504px;}
.ls16{letter-spacing:-0.524160px;}
.ls30{letter-spacing:-0.470592px;}
.ls31{letter-spacing:-0.448704px;}
.ls3a{letter-spacing:-0.437760px;}
.ls2b{letter-spacing:-0.432288px;}
.lse{letter-spacing:-0.426240px;}
.ls17{letter-spacing:-0.417312px;}
.ls2a{letter-spacing:-0.404928px;}
.ls19{letter-spacing:-0.403200px;}
.ls3e{letter-spacing:-0.399456px;}
.ls2f{letter-spacing:-0.393984px;}
.ls35{letter-spacing:-0.383040px;}
.ls12{letter-spacing:-0.381024px;}
.ls14{letter-spacing:-0.374400px;}
.ls37{letter-spacing:-0.372096px;}
.ls32{letter-spacing:-0.361152px;}
.ls2c{letter-spacing:-0.355680px;}
.ls33{letter-spacing:-0.344736px;}
.lsf{letter-spacing:-0.338688px;}
.ls11{letter-spacing:-0.320544px;}
.ls36{letter-spacing:-0.311904px;}
.ls3c{letter-spacing:-0.306432px;}
.ls23{letter-spacing:-0.302400px;}
.ls34{letter-spacing:-0.273600px;}
.ls10{letter-spacing:-0.260064px;}
.ls1c{letter-spacing:-0.241920px;}
.ls3d{letter-spacing:-0.240768px;}
.ls5f{letter-spacing:-0.238464px;}
.ls15{letter-spacing:-0.223776px;}
.ls3b{letter-spacing:-0.213408px;}
.ls38{letter-spacing:-0.207936px;}
.ls56{letter-spacing:-0.205344px;}
.ls5e{letter-spacing:-0.198720px;}
.ls55{letter-spacing:-0.158976px;}
.ls1b{letter-spacing:-0.157248px;}
.ls5d{letter-spacing:-0.152352px;}
.ls18{letter-spacing:-0.145152px;}
.ls58{letter-spacing:-0.139104px;}
.ls2d{letter-spacing:-0.136800px;}
.ls54{letter-spacing:-0.125856px;}
.ls1a{letter-spacing:-0.120960px;}
.ls13{letter-spacing:-0.119232px;}
.ls62{letter-spacing:-0.086112px;}
.ls4d{letter-spacing:-0.079488px;}
.ls5c{letter-spacing:-0.059616px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000576px;}
.ls1{letter-spacing:0.011520px;}
.ls2{letter-spacing:0.012096px;}
.ls4b{letter-spacing:1.292112px;}
.ls4f{letter-spacing:2.330640px;}
.ls25{letter-spacing:2.611152px;}
.ls51{letter-spacing:5.734944px;}
.ls50{letter-spacing:6.596640px;}
.ls5b{letter-spacing:7.968816px;}
.ls57{letter-spacing:10.051776px;}
.ls61{letter-spacing:10.740960px;}
.ls26{letter-spacing:12.525264px;}
.ls4e{letter-spacing:12.577248px;}
.ls60{letter-spacing:18.038880px;}
.ls4{letter-spacing:19.747728px;}
.ls4a{letter-spacing:20.411280px;}
.ls4c{letter-spacing:22.319856px;}
.ls0{letter-spacing:1030.699152px;}
.ls24{letter-spacing:1292.876064px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-20.289744px;}
.ws3{word-spacing:-18.000000px;}
.ws7{word-spacing:-16.560000px;}
.ws29{word-spacing:-16.480512px;}
.ws6{word-spacing:-16.440768px;}
.ws24{word-spacing:-16.434144px;}
.ws25{word-spacing:-16.401024px;}
.ws2a{word-spacing:-16.361280px;}
.ws26{word-spacing:-16.354656px;}
.ws13{word-spacing:-15.355872px;}
.ws1c{word-spacing:-15.281568px;}
.ws23{word-spacing:-15.274944px;}
.ws1b{word-spacing:-15.241824px;}
.ws1e{word-spacing:-15.235200px;}
.ws1f{word-spacing:-15.202080px;}
.ws1d{word-spacing:-15.195456px;}
.ws21{word-spacing:-15.162336px;}
.ws22{word-spacing:-15.122592px;}
.wsd{word-spacing:-15.120000px;}
.wsb{word-spacing:-14.974848px;}
.wse{word-spacing:-14.962752px;}
.ws8{word-spacing:-14.896224px;}
.wsf{word-spacing:-14.878080px;}
.ws5{word-spacing:-14.738976px;}
.wsa{word-spacing:-14.702688px;}
.wsc{word-spacing:-13.996800px;}
.ws4{word-spacing:-13.973760px;}
.ws9{word-spacing:-13.875840px;}
.ws10{word-spacing:-13.680576px;}
.ws15{word-spacing:-12.366720px;}
.ws27{word-spacing:-12.208032px;}
.ws12{word-spacing:-12.059712px;}
.ws19{word-spacing:-12.011040px;}
.ws1a{word-spacing:-12.005568px;}
.ws20{word-spacing:-12.000096px;}
.ws18{word-spacing:-11.967264px;}
.ws14{word-spacing:-11.961792px;}
.ws17{word-spacing:-11.928960px;}
.ws28{word-spacing:-11.912544px;}
.ws16{word-spacing:-11.896128px;}
.ws0{word-spacing:-11.880000px;}
.ws1{word-spacing:-10.920096px;}
.ws11{word-spacing:0.000000px;}
._11{margin-left:-3.908448px;}
._e{margin-left:-2.776032px;}
._0{margin-left:-1.601568px;}
._3{width:1.061280px;}
._9{width:2.408688px;}
._1{width:3.473280px;}
._2{width:4.631040px;}
._b{width:6.312960px;}
._4{width:8.192160px;}
._6{width:9.465984px;}
._5{width:10.671840px;}
._16{width:11.790720px;}
._c{width:13.504896px;}
._1a{width:14.837760px;}
._a{width:17.137440px;}
._7{width:18.446400px;}
._8{width:19.983168px;}
._12{width:21.284352px;}
._17{width:22.467888px;}
._18{width:23.581440px;}
._15{width:24.963264px;}
._14{width:26.032320px;}
._10{width:27.244080px;}
._f{width:29.186640px;}
._19{width:30.205440px;}
._1d{width:31.662720px;}
._2e{width:33.384960px;}
._d{width:34.473600px;}
._29{width:35.769600px;}
._24{width:37.337184px;}
._35{width:39.015360px;}
._34{width:40.472640px;}
._36{width:42.194880px;}
._21{width:43.718400px;}
._2d{width:46.434240px;}
._2f{width:48.090240px;}
._25{width:49.746240px;}
._1c{width:51.534720px;}
._1b{width:52.727040px;}
._28{width:55.575360px;}
._20{width:58.224960px;}
._27{width:60.212160px;}
._31{width:61.689168px;}
._2a{width:69.220800px;}
._26{width:75.381120px;}
._33{width:84.124800px;}
._22{width:88.165440px;}
._2c{width:92.868480px;}
._32{width:106.248960px;}
._1f{width:126.452160px;}
._2b{width:171.495360px;}
._30{width:190.373760px;}
._13{width:199.031184px;}
._23{width:273.041280px;}
._1e{width:396.115200px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:47.520000px;}
.fs0{font-size:54.720000px;}
.fs4{font-size:57.600000px;}
.fs5{font-size:60.480000px;}
.fs6{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y1e0{bottom:0.540000px;}
.y1e2{bottom:0.960000px;}
.y1de{bottom:1.620000px;}
.y12a{bottom:3.780000px;}
.y116{bottom:3.900000px;}
.y105{bottom:3.960000px;}
.y107{bottom:4.020000px;}
.y127{bottom:4.080000px;}
.y13b{bottom:4.140000px;}
.y10b{bottom:4.200000px;}
.y124{bottom:4.260000px;}
.y110{bottom:4.380000px;}
.y11a{bottom:4.440000px;}
.y1cb{bottom:4.500000px;}
.y113{bottom:4.560000px;}
.y147{bottom:4.620000px;}
.y139{bottom:4.800000px;}
.y1c8{bottom:4.920000px;}
.y155{bottom:4.980000px;}
.y136{bottom:5.040000px;}
.y140{bottom:5.100000px;}
.y11e{bottom:5.160000px;}
.y131{bottom:5.220000px;}
.y2d{bottom:7.980000px;}
.y1b7{bottom:12.480000px;}
.y1bd{bottom:12.600000px;}
.y180{bottom:12.720000px;}
.y194{bottom:12.780000px;}
.y185{bottom:12.840000px;}
.y199{bottom:12.900000px;}
.y18a{bottom:12.960000px;}
.y17e{bottom:13.020000px;}
.y191{bottom:13.080000px;}
.y1b3{bottom:13.140000px;}
.y196{bottom:13.200000px;}
.y1b9{bottom:13.260000px;}
.y1a8{bottom:13.320000px;}
.y18d{bottom:13.380000px;}
.y1b1{bottom:13.440000px;}
.y181{bottom:13.500000px;}
.y1b5{bottom:13.560000px;}
.y186{bottom:13.620000px;}
.y1bb{bottom:13.680000px;}
.y1da{bottom:13.740000px;}
.y183{bottom:13.920000px;}
.y1a5{bottom:13.980000px;}
.y188{bottom:14.040000px;}
.y1a9{bottom:14.100000px;}
.y18f{bottom:14.160000px;}
.y1dd{bottom:14.220000px;}
.y11f{bottom:20.280000px;}
.y132{bottom:20.340000px;}
.y150{bottom:22.860000px;}
.y123{bottom:22.980000px;}
.y12d{bottom:23.040000px;}
.y119{bottom:23.160000px;}
.y10a{bottom:23.280000px;}
.y10f{bottom:23.460000px;}
.y15c{bottom:23.640000px;}
.y146{bottom:23.700000px;}
.y11d{bottom:23.880000px;}
.y130{bottom:23.940000px;}
.y154{bottom:24.060000px;}
.y135{bottom:24.120000px;}
.y13f{bottom:24.180000px;}
.y161{bottom:24.240000px;}
.y151{bottom:28.620000px;}
.y12e{bottom:28.800000px;}
.y128{bottom:28.920000px;}
.y10c{bottom:29.040000px;}
.y111{bottom:29.220000px;}
.y11b{bottom:29.280000px;}
.y114{bottom:29.400000px;}
.y14b{bottom:29.640000px;}
.y156{bottom:29.820000px;}
.y137{bottom:30.240000px;}
.y1a2{bottom:32.160000px;}
.y125{bottom:38.460000px;}
.y158{bottom:38.640000px;}
.y15d{bottom:39.120000px;}
.y141{bottom:39.660000px;}
.y162{bottom:39.720000px;}
.y14f{bottom:41.940000px;}
.y122{bottom:42.060000px;}
.y12c{bottom:42.120000px;}
.y10e{bottom:42.180000px;}
.y118{bottom:42.240000px;}
.y109{bottom:42.360000px;}
.y15b{bottom:42.720000px;}
.y145{bottom:42.780000px;}
.y14a{bottom:42.960000px;}
.y153{bottom:43.140000px;}
.y134{bottom:43.200000px;}
.y13e{bottom:43.260000px;}
.y160{bottom:43.320000px;}
.y3{bottom:45.000000px;}
.y148{bottom:48.540000px;}
.y2{bottom:59.040000px;}
.y157{bottom:60.960000px;}
.y121{bottom:61.140000px;}
.y15a{bottom:61.440000px;}
.y144{bottom:61.860000px;}
.y13d{bottom:61.980000px;}
.y15f{bottom:62.040000px;}
.y143{bottom:80.580000px;}
.y117{bottom:96.000000px;}
.y189{bottom:99.000000px;}
.ye1{bottom:99.360000px;}
.y1ff{bottom:99.720000px;}
.y102{bottom:100.800000px;}
.y14e{bottom:103.500000px;}
.y2a{bottom:104.040000px;}
.y201{bottom:108.360000px;}
.ybd{bottom:109.800000px;}
.y5a{bottom:112.680000px;}
.ye0{bottom:118.080000px;}
.y1fe{bottom:118.800000px;}
.y1d8{bottom:119.160000px;}
.y101{bottom:119.880000px;}
.y29{bottom:121.320000px;}
.ya0{bottom:122.040000px;}
.y1af{bottom:123.120000px;}
.y187{bottom:126.000000px;}
.y200{bottom:127.080000px;}
.ybc{bottom:128.520000px;}
.y81{bottom:131.040000px;}
.y59{bottom:131.760000px;}
.y174{bottom:135.000000px;}
.ydf{bottom:137.160000px;}
.y1fd{bottom:137.880000px;}
.y1d7{bottom:138.240000px;}
.y28{bottom:138.600000px;}
.y100{bottom:138.960000px;}
.y9f{bottom:141.120000px;}
.y1ae{bottom:141.840000px;}
.ybb{bottom:146.160000px;}
.y80{bottom:150.120000px;}
.y58{bottom:150.480000px;}
.y173{bottom:153.720000px;}
.y115{bottom:154.500000px;}
.y27{bottom:155.880000px;}
.yde{bottom:156.240000px;}
.y1fc{bottom:156.960000px;}
.y1d6{bottom:157.320000px;}
.yff{bottom:158.040000px;}
.y9e{bottom:160.200000px;}
.y14d{bottom:160.500000px;}
.y1ad{bottom:160.920000px;}
.yba{bottom:165.240000px;}
.y7f{bottom:169.200000px;}
.y57{bottom:169.560000px;}
.y172{bottom:172.800000px;}
.y26{bottom:173.160000px;}
.y112{bottom:174.000000px;}
.ydd{bottom:174.960000px;}
.y1fb{bottom:175.680000px;}
.y1d5{bottom:176.040000px;}
.yfe{bottom:176.760000px;}
.y9d{bottom:178.920000px;}
.y1ac{bottom:180.000000px;}
.y184{bottom:183.000000px;}
.yb9{bottom:183.960000px;}
.y7e{bottom:187.920000px;}
.y56{bottom:188.640000px;}
.y25{bottom:190.440000px;}
.y171{bottom:191.880000px;}
.ydc{bottom:194.040000px;}
.y1fa{bottom:194.760000px;}
.y1d4{bottom:195.120000px;}
.yfd{bottom:195.840000px;}
.y9c{bottom:198.000000px;}
.y1ab{bottom:198.720000px;}
.yb8{bottom:203.040000px;}
.y7d{bottom:207.000000px;}
.y55{bottom:207.360000px;}
.y24{bottom:207.720000px;}
.y182{bottom:210.000000px;}
.y170{bottom:210.960000px;}
.ydb{bottom:213.120000px;}
.y1f9{bottom:213.840000px;}
.y1d3{bottom:214.200000px;}
.yfc{bottom:214.920000px;}
.y9b{bottom:217.080000px;}
.y1aa{bottom:217.800000px;}
.yb7{bottom:222.120000px;}
.y23{bottom:225.000000px;}
.y7c{bottom:226.080000px;}
.y54{bottom:226.440000px;}
.y16f{bottom:229.680000px;}
.yda{bottom:232.200000px;}
.y10d{bottom:232.500000px;}
.y1f8{bottom:232.560000px;}
.y1d2{bottom:233.280000px;}
.yfb{bottom:233.640000px;}
.y9a{bottom:236.160000px;}
.y14c{bottom:238.500000px;}
.yb6{bottom:241.200000px;}
.y22{bottom:241.920000px;}
.y7b{bottom:244.800000px;}
.y53{bottom:245.520000px;}
.y16e{bottom:248.760000px;}
.yd9{bottom:250.920000px;}
.y1f7{bottom:251.640000px;}
.y1d1{bottom:252.000000px;}
.yfa{bottom:252.720000px;}
.y99{bottom:254.880000px;}
.y149{bottom:258.000000px;}
.y21{bottom:259.200000px;}
.yb5{bottom:259.920000px;}
.y1a7{bottom:261.000000px;}
.y7a{bottom:263.880000px;}
.y52{bottom:264.240000px;}
.y17f{bottom:267.000000px;}
.y16d{bottom:267.840000px;}
.yd8{bottom:270.000000px;}
.y1f6{bottom:270.720000px;}
.yf9{bottom:271.800000px;}
.y98{bottom:273.960000px;}
.y20{bottom:276.480000px;}
.yb4{bottom:279.000000px;}
.y79{bottom:282.960000px;}
.y51{bottom:283.320000px;}
.y16c{bottom:286.560000px;}
.yd7{bottom:289.080000px;}
.y1a6{bottom:289.500000px;}
.y1f5{bottom:289.800000px;}
.yf8{bottom:290.520000px;}
.y108{bottom:291.000000px;}
.y97{bottom:293.040000px;}
.y1f{bottom:293.760000px;}
.y17d{bottom:295.500000px;}
.yb3{bottom:298.080000px;}
.y78{bottom:301.680000px;}
.y50{bottom:302.400000px;}
.y16b{bottom:305.640000px;}
.yd6{bottom:307.800000px;}
.y1f4{bottom:308.520000px;}
.yf7{bottom:309.600000px;}
.y1d0{bottom:310.500000px;}
.y1e{bottom:311.400000px;}
.y96{bottom:311.760000px;}
.y142{bottom:316.500000px;}
.yb2{bottom:316.800000px;}
.y77{bottom:320.760000px;}
.y4f{bottom:321.480000px;}
.y16a{bottom:324.720000px;}
.yd5{bottom:326.880000px;}
.y1f3{bottom:327.600000px;}
.yf6{bottom:328.680000px;}
.y1d{bottom:330.120000px;}
.y95{bottom:330.840000px;}
.y1cf{bottom:331.500000px;}
.yb1{bottom:335.880000px;}
.y17c{bottom:337.320000px;}
.y76{bottom:339.840000px;}
.y4e{bottom:340.200000px;}
.y169{bottom:343.800000px;}
.y1a4{bottom:345.000000px;}
.yd4{bottom:345.960000px;}
.y1f2{bottom:346.680000px;}
.y1c{bottom:347.400000px;}
.yf5{bottom:347.760000px;}
.y106{bottom:349.500000px;}
.y94{bottom:349.920000px;}
.y1ce{bottom:354.000000px;}
.yb0{bottom:354.960000px;}
.y75{bottom:358.920000px;}
.y4d{bottom:359.280000px;}
.y168{bottom:362.520000px;}
.y1b{bottom:364.680000px;}
.y17b{bottom:365.400000px;}
.yf4{bottom:366.480000px;}
.y93{bottom:368.640000px;}
.y104{bottom:369.000000px;}
.y1a3{bottom:373.500000px;}
.yaf{bottom:373.680000px;}
.y1cd{bottom:375.000000px;}
.y74{bottom:377.640000px;}
.y4c{bottom:378.360000px;}
.y167{bottom:381.600000px;}
.y1a{bottom:382.680000px;}
.yd3{bottom:383.760000px;}
.y17a{bottom:384.480000px;}
.yf3{bottom:385.560000px;}
.y92{bottom:387.720000px;}
.yae{bottom:392.760000px;}
.y73{bottom:396.720000px;}
.y4b{bottom:397.080000px;}
.y1cc{bottom:397.500000px;}
.y1a1{bottom:402.000000px;}
.yd2{bottom:402.840000px;}
.y179{bottom:403.200000px;}
.y1f1{bottom:403.560000px;}
.yf2{bottom:404.640000px;}
.y91{bottom:406.800000px;}
.y166{bottom:409.680000px;}
.y19{bottom:411.840000px;}
.y13c{bottom:412.500000px;}
.y72{bottom:415.800000px;}
.y4a{bottom:416.160000px;}
.y1ca{bottom:418.500000px;}
.yd1{bottom:421.920000px;}
.y178{bottom:422.280000px;}
.yf1{bottom:423.360000px;}
.y90{bottom:425.880000px;}
.y18{bottom:430.560000px;}
.yad{bottom:430.920000px;}
.y71{bottom:434.520000px;}
.y49{bottom:435.240000px;}
.y165{bottom:439.200000px;}
.y1c9{bottom:439.500000px;}
.yd0{bottom:440.640000px;}
.y177{bottom:441.360000px;}
.yf0{bottom:442.440000px;}
.y8f{bottom:444.600000px;}
.y17{bottom:447.840000px;}
.yac{bottom:449.640000px;}
.y70{bottom:453.600000px;}
.y1a0{bottom:453.960000px;}
.y176{bottom:456.840000px;}
.y164{bottom:458.280000px;}
.ycf{bottom:459.720000px;}
.y48{bottom:460.080000px;}
.y1f0{bottom:460.440000px;}
.yef{bottom:461.520000px;}
.y1c7{bottom:462.000000px;}
.y8e{bottom:463.680000px;}
.y16{bottom:465.120000px;}
.yab{bottom:468.720000px;}
.y6f{bottom:472.680000px;}
.y47{bottom:476.640000px;}
.y163{bottom:477.360000px;}
.yce{bottom:478.800000px;}
.y1ef{bottom:479.520000px;}
.yee{bottom:480.240000px;}
.y8d{bottom:482.760000px;}
.y15{bottom:483.120000px;}
.yaa{bottom:487.800000px;}
.y1c6{bottom:489.240000px;}
.y13a{bottom:490.500000px;}
.y6e{bottom:491.400000px;}
.y19f{bottom:491.760000px;}
.y15e{bottom:492.000000px;}
.y46{bottom:493.200000px;}
.ycd{bottom:497.520000px;}
.y1ee{bottom:498.240000px;}
.yed{bottom:499.320000px;}
.y8c{bottom:501.480000px;}
.ya9{bottom:506.520000px;}
.y1c5{bottom:508.320000px;}
.y45{bottom:509.760000px;}
.y138{bottom:510.000000px;}
.y6d{bottom:510.480000px;}
.y19e{bottom:510.840000px;}
.y14{bottom:513.000000px;}
.ycc{bottom:516.600000px;}
.y1ed{bottom:517.320000px;}
.yec{bottom:518.400000px;}
.y8b{bottom:520.560000px;}
.ya8{bottom:525.600000px;}
.y44{bottom:525.960000px;}
.y1c4{bottom:527.400000px;}
.y6c{bottom:529.560000px;}
.y19d{bottom:529.920000px;}
.y13{bottom:532.800000px;}
.ycb{bottom:535.680000px;}
.y1ec{bottom:536.400000px;}
.yeb{bottom:537.480000px;}
.y8a{bottom:539.640000px;}
.y43{bottom:542.520000px;}
.ya7{bottom:544.680000px;}
.y1c3{bottom:546.120000px;}
.y6b{bottom:548.640000px;}
.y133{bottom:549.000000px;}
.y12{bottom:549.720000px;}
.yca{bottom:554.400000px;}
.y1eb{bottom:555.120000px;}
.yea{bottom:556.200000px;}
.y89{bottom:558.360000px;}
.y42{bottom:559.080000px;}
.ya6{bottom:563.400000px;}
.y1c2{bottom:565.200000px;}
.y11{bottom:567.000000px;}
.y6a{bottom:567.360000px;}
.y19c{bottom:567.720000px;}
.y159{bottom:570.000000px;}
.yc9{bottom:573.480000px;}
.y1ea{bottom:574.200000px;}
.ye9{bottom:575.280000px;}
.y41{bottom:575.640000px;}
.y88{bottom:577.440000px;}
.ya5{bottom:582.480000px;}
.y1c1{bottom:584.280000px;}
.y10{bottom:585.360000px;}
.y69{bottom:586.440000px;}
.y19b{bottom:586.800000px;}
.y40{bottom:591.840000px;}
.yc8{bottom:592.560000px;}
.y1e9{bottom:593.280000px;}
.ye8{bottom:594.360000px;}
.y87{bottom:596.520000px;}
.ya4{bottom:601.560000px;}
.y68{bottom:601.920000px;}
.y1c0{bottom:603.000000px;}
.yf{bottom:605.520000px;}
.y12f{bottom:607.500000px;}
.y3f{bottom:608.400000px;}
.yc7{bottom:611.640000px;}
.y1e8{bottom:612.000000px;}
.ye7{bottom:613.080000px;}
.y86{bottom:615.600000px;}
.ya3{bottom:620.640000px;}
.y1bf{bottom:622.080000px;}
.ye{bottom:624.240000px;}
.y3e{bottom:624.960000px;}
.yc6{bottom:630.360000px;}
.y1e7{bottom:631.080000px;}
.ye6{bottom:632.160000px;}
.y19a{bottom:633.600000px;}
.y85{bottom:634.320000px;}
.ya2{bottom:639.360000px;}
.y3d{bottom:641.520000px;}
.yd{bottom:642.960000px;}
.y12b{bottom:648.000000px;}
.yc5{bottom:649.440000px;}
.y198{bottom:649.500000px;}
.y1be{bottom:650.160000px;}
.ye5{bottom:651.240000px;}
.y84{bottom:653.400000px;}
.y3c{bottom:658.080000px;}
.ya1{bottom:658.440000px;}
.yc{bottom:660.240000px;}
.y1bc{bottom:666.000000px;}
.y67{bottom:668.520000px;}
.y1e6{bottom:669.240000px;}
.ye4{bottom:670.320000px;}
.y83{bottom:672.480000px;}
.y3b{bottom:674.280000px;}
.y197{bottom:676.500000px;}
.yb{bottom:677.520000px;}
.yc4{bottom:687.240000px;}
.y82{bottom:687.600000px;}
.y1e5{bottom:687.960000px;}
.y3a{bottom:690.840000px;}
.y1ba{bottom:693.000000px;}
.ya{bottom:695.520000px;}
.y66{bottom:696.240000px;}
.ye3{bottom:698.040000px;}
.y1e4{bottom:703.500000px;}
.y195{bottom:705.000000px;}
.yc3{bottom:706.320000px;}
.y129{bottom:706.500000px;}
.y39{bottom:707.400000px;}
.y65{bottom:715.320000px;}
.ye2{bottom:716.760000px;}
.y1b8{bottom:721.500000px;}
.y38{bottom:723.960000px;}
.yc2{bottom:725.400000px;}
.y126{bottom:726.000000px;}
.y1e3{bottom:732.000000px;}
.y9{bottom:732.240000px;}
.y193{bottom:733.500000px;}
.y64{bottom:734.400000px;}
.y37{bottom:740.160000px;}
.yc1{bottom:744.480000px;}
.y1b6{bottom:750.000000px;}
.y63{bottom:753.480000px;}
.y36{bottom:756.720000px;}
.y1e1{bottom:759.000000px;}
.y192{bottom:760.500000px;}
.y8{bottom:761.760000px;}
.yc0{bottom:763.200000px;}
.y62{bottom:772.200000px;}
.y35{bottom:773.280000px;}
.y1b4{bottom:777.000000px;}
.ybf{bottom:782.280000px;}
.y120{bottom:784.500000px;}
.y1df{bottom:787.500000px;}
.y190{bottom:789.000000px;}
.y34{bottom:789.840000px;}
.y7{bottom:790.920000px;}
.y61{bottom:791.280000px;}
.ybe{bottom:801.360000px;}
.y152{bottom:802.500000px;}
.y1b2{bottom:805.500000px;}
.y33{bottom:806.400000px;}
.y175{bottom:810.000000px;}
.y60{bottom:810.360000px;}
.y1dc{bottom:814.500000px;}
.y18e{bottom:816.000000px;}
.y6{bottom:820.080000px;}
.y32{bottom:822.600000px;}
.y5f{bottom:829.080000px;}
.y1b0{bottom:834.000000px;}
.y31{bottom:839.160000px;}
.y1db{bottom:843.000000px;}
.y18c{bottom:844.500000px;}
.y5e{bottom:848.160000px;}
.y5{bottom:849.600000px;}
.y30{bottom:855.720000px;}
.y11c{bottom:861.000000px;}
.y103{bottom:866.880000px;}
.y5d{bottom:867.240000px;}
.y1d9{bottom:871.500000px;}
.y2f{bottom:872.280000px;}
.y18b{bottom:873.000000px;}
.y4{bottom:878.760000px;}
.y5c{bottom:885.960000px;}
.y2e{bottom:888.480000px;}
.y5b{bottom:919.800000px;}
.y2c{bottom:925.500000px;}
.y2b{bottom:938.160000px;}
.y1{bottom:939.960000px;}
.hd{height:19.500000px;}
.h1b{height:22.500000px;}
.h1a{height:24.000000px;}
.h9{height:27.000000px;}
.h17{height:28.500000px;}
.h18{height:30.000000px;}
.h2{height:36.471094px;}
.hb{height:37.913906px;}
.h12{height:39.000000px;}
.hf{height:40.500000px;}
.h8{height:41.402813px;}
.h3{height:41.696016px;}
.h6{height:42.022969px;}
.hc{height:44.893125px;}
.ha{height:45.360000px;}
.h1c{height:45.992813px;}
.h7{height:46.025156px;}
.h19{height:48.000000px;}
.h16{height:48.761719px;}
.h5{height:50.540625px;}
.h15{height:57.000000px;}
.he{height:58.500000px;}
.h11{height:60.000000px;}
.h4{height:66.047344px;}
.h10{height:76.500000px;}
.h13{height:78.000000px;}
.h14{height:96.000000px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w7{width:3.000000px;}
.wb{width:45.000000px;}
.wa{width:46.500000px;}
.w9{width:48.000000px;}
.wf{width:49.500000px;}
.w8{width:54.000000px;}
.w2{width:60.000000px;}
.w13{width:67.500000px;}
.w12{width:87.000000px;}
.w3{width:90.000000px;}
.wc{width:100.500000px;}
.w10{width:127.500000px;}
.wd{width:129.000000px;}
.we{width:136.500000px;}
.w11{width:144.000000px;}
.w5{width:175.500000px;}
.w4{width:265.500000px;}
.w6{width:531.000000px;}
.w0{width:722.925000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x11{left:1.320000px;}
.x1f{left:5.280036px;}
.x13{left:6.299928px;}
.xc{left:8.040144px;}
.x6{left:35.310060px;}
.xe{left:40.350216px;}
.x28{left:53.234986px;}
.x5{left:94.500000px;}
.x2{left:95.760144px;}
.x27{left:106.409916px;}
.x4{left:122.760144px;}
.xb{left:127.710216px;}
.x7{left:138.285288px;}
.x14{left:147.000000px;}
.x12{left:149.760144px;}
.xd{left:186.000000px;}
.x15{left:193.500000px;}
.x22{left:220.500000px;}
.x1d{left:234.000000px;}
.x1a{left:237.000000px;}
.x16{left:238.500000px;}
.x1e{left:282.000000px;}
.x17{left:285.000000px;}
.x20{left:328.500000px;}
.x18{left:331.500000px;}
.x8{left:356.404932px;}
.x23{left:363.000000px;}
.x1b{left:364.500000px;}
.x21{left:376.500000px;}
.x19{left:378.000000px;}
.x24{left:411.000000px;}
.xf{left:450.000000px;}
.x25{left:463.500000px;}
.x1{left:467.010000px;}
.x1c{left:492.000000px;}
.x3{left:547.444080px;}
.x26{left:549.000000px;}
.x9{left:568.500000px;}
.x10{left:624.000000px;}
.xa{left:627.120000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5a{letter-spacing:-1.571072pt;}
.ls40{letter-spacing:-1.522432pt;}
.ls52{letter-spacing:-1.493248pt;}
.ls20{letter-spacing:-1.478400pt;}
.lsb{letter-spacing:-1.475072pt;}
.ls46{letter-spacing:-1.462272pt;}
.ls1d{letter-spacing:-1.435392pt;}
.ls27{letter-spacing:-1.430016pt;}
.ls1e{letter-spacing:-1.365504pt;}
.ls1f{letter-spacing:-1.349376pt;}
.lsc{letter-spacing:-1.346432pt;}
.ls59{letter-spacing:-1.308416pt;}
.ls28{letter-spacing:-1.300992pt;}
.ls29{letter-spacing:-1.295616pt;}
.ls22{letter-spacing:-1.279488pt;}
.ls53{letter-spacing:-1.277696pt;}
.lsa{letter-spacing:-1.260672pt;}
.ls48{letter-spacing:-1.248256pt;}
.ls43{letter-spacing:-1.242368pt;}
.ls9{letter-spacing:-1.234944pt;}
.ls41{letter-spacing:-1.212928pt;}
.lsd{letter-spacing:-1.209216pt;}
.ls45{letter-spacing:-1.207040pt;}
.ls21{letter-spacing:-1.193472pt;}
.ls47{letter-spacing:-1.177600pt;}
.ls3f{letter-spacing:-1.171712pt;}
.ls44{letter-spacing:-1.142272pt;}
.ls42{letter-spacing:-1.136384pt;}
.ls49{letter-spacing:-1.118720pt;}
.ls8{letter-spacing:-0.925056pt;}
.ls7{letter-spacing:-0.853248pt;}
.ls6{letter-spacing:-0.823680pt;}
.ls39{letter-spacing:-0.549632pt;}
.ls2e{letter-spacing:-0.520448pt;}
.ls16{letter-spacing:-0.465920pt;}
.ls30{letter-spacing:-0.418304pt;}
.ls31{letter-spacing:-0.398848pt;}
.ls3a{letter-spacing:-0.389120pt;}
.ls2b{letter-spacing:-0.384256pt;}
.lse{letter-spacing:-0.378880pt;}
.ls17{letter-spacing:-0.370944pt;}
.ls2a{letter-spacing:-0.359936pt;}
.ls19{letter-spacing:-0.358400pt;}
.ls3e{letter-spacing:-0.355072pt;}
.ls2f{letter-spacing:-0.350208pt;}
.ls35{letter-spacing:-0.340480pt;}
.ls12{letter-spacing:-0.338688pt;}
.ls14{letter-spacing:-0.332800pt;}
.ls37{letter-spacing:-0.330752pt;}
.ls32{letter-spacing:-0.321024pt;}
.ls2c{letter-spacing:-0.316160pt;}
.ls33{letter-spacing:-0.306432pt;}
.lsf{letter-spacing:-0.301056pt;}
.ls11{letter-spacing:-0.284928pt;}
.ls36{letter-spacing:-0.277248pt;}
.ls3c{letter-spacing:-0.272384pt;}
.ls23{letter-spacing:-0.268800pt;}
.ls34{letter-spacing:-0.243200pt;}
.ls10{letter-spacing:-0.231168pt;}
.ls1c{letter-spacing:-0.215040pt;}
.ls3d{letter-spacing:-0.214016pt;}
.ls5f{letter-spacing:-0.211968pt;}
.ls15{letter-spacing:-0.198912pt;}
.ls3b{letter-spacing:-0.189696pt;}
.ls38{letter-spacing:-0.184832pt;}
.ls56{letter-spacing:-0.182528pt;}
.ls5e{letter-spacing:-0.176640pt;}
.ls55{letter-spacing:-0.141312pt;}
.ls1b{letter-spacing:-0.139776pt;}
.ls5d{letter-spacing:-0.135424pt;}
.ls18{letter-spacing:-0.129024pt;}
.ls58{letter-spacing:-0.123648pt;}
.ls2d{letter-spacing:-0.121600pt;}
.ls54{letter-spacing:-0.111872pt;}
.ls1a{letter-spacing:-0.107520pt;}
.ls13{letter-spacing:-0.105984pt;}
.ls62{letter-spacing:-0.076544pt;}
.ls4d{letter-spacing:-0.070656pt;}
.ls5c{letter-spacing:-0.052992pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000512pt;}
.ls1{letter-spacing:0.010240pt;}
.ls2{letter-spacing:0.010752pt;}
.ls4b{letter-spacing:1.148544pt;}
.ls4f{letter-spacing:2.071680pt;}
.ls25{letter-spacing:2.321024pt;}
.ls51{letter-spacing:5.097728pt;}
.ls50{letter-spacing:5.863680pt;}
.ls5b{letter-spacing:7.083392pt;}
.ls57{letter-spacing:8.934912pt;}
.ls61{letter-spacing:9.547520pt;}
.ls26{letter-spacing:11.133568pt;}
.ls4e{letter-spacing:11.179776pt;}
.ls60{letter-spacing:16.034560pt;}
.ls4{letter-spacing:17.553536pt;}
.ls4a{letter-spacing:18.143360pt;}
.ls4c{letter-spacing:19.839872pt;}
.ls0{letter-spacing:916.177024pt;}
.ls24{letter-spacing:1149.223168pt;}
.ws2{word-spacing:-18.035328pt;}
.ws3{word-spacing:-16.000000pt;}
.ws7{word-spacing:-14.720000pt;}
.ws29{word-spacing:-14.649344pt;}
.ws6{word-spacing:-14.614016pt;}
.ws24{word-spacing:-14.608128pt;}
.ws25{word-spacing:-14.578688pt;}
.ws2a{word-spacing:-14.543360pt;}
.ws26{word-spacing:-14.537472pt;}
.ws13{word-spacing:-13.649664pt;}
.ws1c{word-spacing:-13.583616pt;}
.ws23{word-spacing:-13.577728pt;}
.ws1b{word-spacing:-13.548288pt;}
.ws1e{word-spacing:-13.542400pt;}
.ws1f{word-spacing:-13.512960pt;}
.ws1d{word-spacing:-13.507072pt;}
.ws21{word-spacing:-13.477632pt;}
.ws22{word-spacing:-13.442304pt;}
.wsd{word-spacing:-13.440000pt;}
.wsb{word-spacing:-13.310976pt;}
.wse{word-spacing:-13.300224pt;}
.ws8{word-spacing:-13.241088pt;}
.wsf{word-spacing:-13.224960pt;}
.ws5{word-spacing:-13.101312pt;}
.wsa{word-spacing:-13.069056pt;}
.wsc{word-spacing:-12.441600pt;}
.ws4{word-spacing:-12.421120pt;}
.ws9{word-spacing:-12.334080pt;}
.ws10{word-spacing:-12.160512pt;}
.ws15{word-spacing:-10.992640pt;}
.ws27{word-spacing:-10.851584pt;}
.ws12{word-spacing:-10.719744pt;}
.ws19{word-spacing:-10.676480pt;}
.ws1a{word-spacing:-10.671616pt;}
.ws20{word-spacing:-10.666752pt;}
.ws18{word-spacing:-10.637568pt;}
.ws14{word-spacing:-10.632704pt;}
.ws17{word-spacing:-10.603520pt;}
.ws28{word-spacing:-10.588928pt;}
.ws16{word-spacing:-10.574336pt;}
.ws0{word-spacing:-10.560000pt;}
.ws1{word-spacing:-9.706752pt;}
.ws11{word-spacing:0.000000pt;}
._11{margin-left:-3.474176pt;}
._e{margin-left:-2.467584pt;}
._0{margin-left:-1.423616pt;}
._3{width:0.943360pt;}
._9{width:2.141056pt;}
._1{width:3.087360pt;}
._2{width:4.116480pt;}
._b{width:5.611520pt;}
._4{width:7.281920pt;}
._6{width:8.414208pt;}
._5{width:9.486080pt;}
._16{width:10.480640pt;}
._c{width:12.004352pt;}
._1a{width:13.189120pt;}
._a{width:15.233280pt;}
._7{width:16.396800pt;}
._8{width:17.762816pt;}
._12{width:18.919424pt;}
._17{width:19.971456pt;}
._18{width:20.961280pt;}
._15{width:22.189568pt;}
._14{width:23.139840pt;}
._10{width:24.216960pt;}
._f{width:25.943680pt;}
._19{width:26.849280pt;}
._1d{width:28.144640pt;}
._2e{width:29.675520pt;}
._d{width:30.643200pt;}
._29{width:31.795200pt;}
._24{width:33.188608pt;}
._35{width:34.680320pt;}
._34{width:35.975680pt;}
._36{width:37.506560pt;}
._21{width:38.860800pt;}
._2d{width:41.274880pt;}
._2f{width:42.746880pt;}
._25{width:44.218880pt;}
._1c{width:45.808640pt;}
._1b{width:46.868480pt;}
._28{width:49.400320pt;}
._20{width:51.755520pt;}
._27{width:53.521920pt;}
._31{width:54.834816pt;}
._2a{width:61.529600pt;}
._26{width:67.005440pt;}
._33{width:74.777600pt;}
._22{width:78.369280pt;}
._2c{width:82.549760pt;}
._32{width:94.443520pt;}
._1f{width:112.401920pt;}
._2b{width:152.440320pt;}
._30{width:169.221120pt;}
._13{width:176.916608pt;}
._23{width:242.703360pt;}
._1e{width:352.102400pt;}
.fs1{font-size:42.240000pt;}
.fs0{font-size:48.640000pt;}
.fs4{font-size:51.200000pt;}
.fs5{font-size:53.760000pt;}
.fs6{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y1e0{bottom:0.480000pt;}
.y1e2{bottom:0.853333pt;}
.y1de{bottom:1.440000pt;}
.y12a{bottom:3.360000pt;}
.y116{bottom:3.466667pt;}
.y105{bottom:3.520000pt;}
.y107{bottom:3.573333pt;}
.y127{bottom:3.626667pt;}
.y13b{bottom:3.680000pt;}
.y10b{bottom:3.733333pt;}
.y124{bottom:3.786667pt;}
.y110{bottom:3.893333pt;}
.y11a{bottom:3.946667pt;}
.y1cb{bottom:4.000000pt;}
.y113{bottom:4.053333pt;}
.y147{bottom:4.106667pt;}
.y139{bottom:4.266667pt;}
.y1c8{bottom:4.373333pt;}
.y155{bottom:4.426667pt;}
.y136{bottom:4.480000pt;}
.y140{bottom:4.533333pt;}
.y11e{bottom:4.586667pt;}
.y131{bottom:4.640000pt;}
.y2d{bottom:7.093333pt;}
.y1b7{bottom:11.093333pt;}
.y1bd{bottom:11.200000pt;}
.y180{bottom:11.306667pt;}
.y194{bottom:11.360000pt;}
.y185{bottom:11.413333pt;}
.y199{bottom:11.466667pt;}
.y18a{bottom:11.520000pt;}
.y17e{bottom:11.573333pt;}
.y191{bottom:11.626667pt;}
.y1b3{bottom:11.680000pt;}
.y196{bottom:11.733333pt;}
.y1b9{bottom:11.786667pt;}
.y1a8{bottom:11.840000pt;}
.y18d{bottom:11.893333pt;}
.y1b1{bottom:11.946667pt;}
.y181{bottom:12.000000pt;}
.y1b5{bottom:12.053333pt;}
.y186{bottom:12.106667pt;}
.y1bb{bottom:12.160000pt;}
.y1da{bottom:12.213333pt;}
.y183{bottom:12.373333pt;}
.y1a5{bottom:12.426667pt;}
.y188{bottom:12.480000pt;}
.y1a9{bottom:12.533333pt;}
.y18f{bottom:12.586667pt;}
.y1dd{bottom:12.640000pt;}
.y11f{bottom:18.026667pt;}
.y132{bottom:18.080000pt;}
.y150{bottom:20.320000pt;}
.y123{bottom:20.426667pt;}
.y12d{bottom:20.480000pt;}
.y119{bottom:20.586667pt;}
.y10a{bottom:20.693333pt;}
.y10f{bottom:20.853333pt;}
.y15c{bottom:21.013333pt;}
.y146{bottom:21.066667pt;}
.y11d{bottom:21.226667pt;}
.y130{bottom:21.280000pt;}
.y154{bottom:21.386667pt;}
.y135{bottom:21.440000pt;}
.y13f{bottom:21.493333pt;}
.y161{bottom:21.546667pt;}
.y151{bottom:25.440000pt;}
.y12e{bottom:25.600000pt;}
.y128{bottom:25.706667pt;}
.y10c{bottom:25.813333pt;}
.y111{bottom:25.973333pt;}
.y11b{bottom:26.026667pt;}
.y114{bottom:26.133333pt;}
.y14b{bottom:26.346667pt;}
.y156{bottom:26.506667pt;}
.y137{bottom:26.880000pt;}
.y1a2{bottom:28.586667pt;}
.y125{bottom:34.186667pt;}
.y158{bottom:34.346667pt;}
.y15d{bottom:34.773333pt;}
.y141{bottom:35.253333pt;}
.y162{bottom:35.306667pt;}
.y14f{bottom:37.280000pt;}
.y122{bottom:37.386667pt;}
.y12c{bottom:37.440000pt;}
.y10e{bottom:37.493333pt;}
.y118{bottom:37.546667pt;}
.y109{bottom:37.653333pt;}
.y15b{bottom:37.973333pt;}
.y145{bottom:38.026667pt;}
.y14a{bottom:38.186667pt;}
.y153{bottom:38.346667pt;}
.y134{bottom:38.400000pt;}
.y13e{bottom:38.453333pt;}
.y160{bottom:38.506667pt;}
.y3{bottom:40.000000pt;}
.y148{bottom:43.146667pt;}
.y2{bottom:52.480000pt;}
.y157{bottom:54.186667pt;}
.y121{bottom:54.346667pt;}
.y15a{bottom:54.613333pt;}
.y144{bottom:54.986667pt;}
.y13d{bottom:55.093333pt;}
.y15f{bottom:55.146667pt;}
.y143{bottom:71.626667pt;}
.y117{bottom:85.333333pt;}
.y189{bottom:88.000000pt;}
.ye1{bottom:88.320000pt;}
.y1ff{bottom:88.640000pt;}
.y102{bottom:89.600000pt;}
.y14e{bottom:92.000000pt;}
.y2a{bottom:92.480000pt;}
.y201{bottom:96.320000pt;}
.ybd{bottom:97.600000pt;}
.y5a{bottom:100.160000pt;}
.ye0{bottom:104.960000pt;}
.y1fe{bottom:105.600000pt;}
.y1d8{bottom:105.920000pt;}
.y101{bottom:106.560000pt;}
.y29{bottom:107.840000pt;}
.ya0{bottom:108.480000pt;}
.y1af{bottom:109.440000pt;}
.y187{bottom:112.000000pt;}
.y200{bottom:112.960000pt;}
.ybc{bottom:114.240000pt;}
.y81{bottom:116.480000pt;}
.y59{bottom:117.120000pt;}
.y174{bottom:120.000000pt;}
.ydf{bottom:121.920000pt;}
.y1fd{bottom:122.560000pt;}
.y1d7{bottom:122.880000pt;}
.y28{bottom:123.200000pt;}
.y100{bottom:123.520000pt;}
.y9f{bottom:125.440000pt;}
.y1ae{bottom:126.080000pt;}
.ybb{bottom:129.920000pt;}
.y80{bottom:133.440000pt;}
.y58{bottom:133.760000pt;}
.y173{bottom:136.640000pt;}
.y115{bottom:137.333333pt;}
.y27{bottom:138.560000pt;}
.yde{bottom:138.880000pt;}
.y1fc{bottom:139.520000pt;}
.y1d6{bottom:139.840000pt;}
.yff{bottom:140.480000pt;}
.y9e{bottom:142.400000pt;}
.y14d{bottom:142.666667pt;}
.y1ad{bottom:143.040000pt;}
.yba{bottom:146.880000pt;}
.y7f{bottom:150.400000pt;}
.y57{bottom:150.720000pt;}
.y172{bottom:153.600000pt;}
.y26{bottom:153.920000pt;}
.y112{bottom:154.666667pt;}
.ydd{bottom:155.520000pt;}
.y1fb{bottom:156.160000pt;}
.y1d5{bottom:156.480000pt;}
.yfe{bottom:157.120000pt;}
.y9d{bottom:159.040000pt;}
.y1ac{bottom:160.000000pt;}
.y184{bottom:162.666667pt;}
.yb9{bottom:163.520000pt;}
.y7e{bottom:167.040000pt;}
.y56{bottom:167.680000pt;}
.y25{bottom:169.280000pt;}
.y171{bottom:170.560000pt;}
.ydc{bottom:172.480000pt;}
.y1fa{bottom:173.120000pt;}
.y1d4{bottom:173.440000pt;}
.yfd{bottom:174.080000pt;}
.y9c{bottom:176.000000pt;}
.y1ab{bottom:176.640000pt;}
.yb8{bottom:180.480000pt;}
.y7d{bottom:184.000000pt;}
.y55{bottom:184.320000pt;}
.y24{bottom:184.640000pt;}
.y182{bottom:186.666667pt;}
.y170{bottom:187.520000pt;}
.ydb{bottom:189.440000pt;}
.y1f9{bottom:190.080000pt;}
.y1d3{bottom:190.400000pt;}
.yfc{bottom:191.040000pt;}
.y9b{bottom:192.960000pt;}
.y1aa{bottom:193.600000pt;}
.yb7{bottom:197.440000pt;}
.y23{bottom:200.000000pt;}
.y7c{bottom:200.960000pt;}
.y54{bottom:201.280000pt;}
.y16f{bottom:204.160000pt;}
.yda{bottom:206.400000pt;}
.y10d{bottom:206.666667pt;}
.y1f8{bottom:206.720000pt;}
.y1d2{bottom:207.360000pt;}
.yfb{bottom:207.680000pt;}
.y9a{bottom:209.920000pt;}
.y14c{bottom:212.000000pt;}
.yb6{bottom:214.400000pt;}
.y22{bottom:215.040000pt;}
.y7b{bottom:217.600000pt;}
.y53{bottom:218.240000pt;}
.y16e{bottom:221.120000pt;}
.yd9{bottom:223.040000pt;}
.y1f7{bottom:223.680000pt;}
.y1d1{bottom:224.000000pt;}
.yfa{bottom:224.640000pt;}
.y99{bottom:226.560000pt;}
.y149{bottom:229.333333pt;}
.y21{bottom:230.400000pt;}
.yb5{bottom:231.040000pt;}
.y1a7{bottom:232.000000pt;}
.y7a{bottom:234.560000pt;}
.y52{bottom:234.880000pt;}
.y17f{bottom:237.333333pt;}
.y16d{bottom:238.080000pt;}
.yd8{bottom:240.000000pt;}
.y1f6{bottom:240.640000pt;}
.yf9{bottom:241.600000pt;}
.y98{bottom:243.520000pt;}
.y20{bottom:245.760000pt;}
.yb4{bottom:248.000000pt;}
.y79{bottom:251.520000pt;}
.y51{bottom:251.840000pt;}
.y16c{bottom:254.720000pt;}
.yd7{bottom:256.960000pt;}
.y1a6{bottom:257.333333pt;}
.y1f5{bottom:257.600000pt;}
.yf8{bottom:258.240000pt;}
.y108{bottom:258.666667pt;}
.y97{bottom:260.480000pt;}
.y1f{bottom:261.120000pt;}
.y17d{bottom:262.666667pt;}
.yb3{bottom:264.960000pt;}
.y78{bottom:268.160000pt;}
.y50{bottom:268.800000pt;}
.y16b{bottom:271.680000pt;}
.yd6{bottom:273.600000pt;}
.y1f4{bottom:274.240000pt;}
.yf7{bottom:275.200000pt;}
.y1d0{bottom:276.000000pt;}
.y1e{bottom:276.800000pt;}
.y96{bottom:277.120000pt;}
.y142{bottom:281.333333pt;}
.yb2{bottom:281.600000pt;}
.y77{bottom:285.120000pt;}
.y4f{bottom:285.760000pt;}
.y16a{bottom:288.640000pt;}
.yd5{bottom:290.560000pt;}
.y1f3{bottom:291.200000pt;}
.yf6{bottom:292.160000pt;}
.y1d{bottom:293.440000pt;}
.y95{bottom:294.080000pt;}
.y1cf{bottom:294.666667pt;}
.yb1{bottom:298.560000pt;}
.y17c{bottom:299.840000pt;}
.y76{bottom:302.080000pt;}
.y4e{bottom:302.400000pt;}
.y169{bottom:305.600000pt;}
.y1a4{bottom:306.666667pt;}
.yd4{bottom:307.520000pt;}
.y1f2{bottom:308.160000pt;}
.y1c{bottom:308.800000pt;}
.yf5{bottom:309.120000pt;}
.y106{bottom:310.666667pt;}
.y94{bottom:311.040000pt;}
.y1ce{bottom:314.666667pt;}
.yb0{bottom:315.520000pt;}
.y75{bottom:319.040000pt;}
.y4d{bottom:319.360000pt;}
.y168{bottom:322.240000pt;}
.y1b{bottom:324.160000pt;}
.y17b{bottom:324.800000pt;}
.yf4{bottom:325.760000pt;}
.y93{bottom:327.680000pt;}
.y104{bottom:328.000000pt;}
.y1a3{bottom:332.000000pt;}
.yaf{bottom:332.160000pt;}
.y1cd{bottom:333.333333pt;}
.y74{bottom:335.680000pt;}
.y4c{bottom:336.320000pt;}
.y167{bottom:339.200000pt;}
.y1a{bottom:340.160000pt;}
.yd3{bottom:341.120000pt;}
.y17a{bottom:341.760000pt;}
.yf3{bottom:342.720000pt;}
.y92{bottom:344.640000pt;}
.yae{bottom:349.120000pt;}
.y73{bottom:352.640000pt;}
.y4b{bottom:352.960000pt;}
.y1cc{bottom:353.333333pt;}
.y1a1{bottom:357.333333pt;}
.yd2{bottom:358.080000pt;}
.y179{bottom:358.400000pt;}
.y1f1{bottom:358.720000pt;}
.yf2{bottom:359.680000pt;}
.y91{bottom:361.600000pt;}
.y166{bottom:364.160000pt;}
.y19{bottom:366.080000pt;}
.y13c{bottom:366.666667pt;}
.y72{bottom:369.600000pt;}
.y4a{bottom:369.920000pt;}
.y1ca{bottom:372.000000pt;}
.yd1{bottom:375.040000pt;}
.y178{bottom:375.360000pt;}
.yf1{bottom:376.320000pt;}
.y90{bottom:378.560000pt;}
.y18{bottom:382.720000pt;}
.yad{bottom:383.040000pt;}
.y71{bottom:386.240000pt;}
.y49{bottom:386.880000pt;}
.y165{bottom:390.400000pt;}
.y1c9{bottom:390.666667pt;}
.yd0{bottom:391.680000pt;}
.y177{bottom:392.320000pt;}
.yf0{bottom:393.280000pt;}
.y8f{bottom:395.200000pt;}
.y17{bottom:398.080000pt;}
.yac{bottom:399.680000pt;}
.y70{bottom:403.200000pt;}
.y1a0{bottom:403.520000pt;}
.y176{bottom:406.080000pt;}
.y164{bottom:407.360000pt;}
.ycf{bottom:408.640000pt;}
.y48{bottom:408.960000pt;}
.y1f0{bottom:409.280000pt;}
.yef{bottom:410.240000pt;}
.y1c7{bottom:410.666667pt;}
.y8e{bottom:412.160000pt;}
.y16{bottom:413.440000pt;}
.yab{bottom:416.640000pt;}
.y6f{bottom:420.160000pt;}
.y47{bottom:423.680000pt;}
.y163{bottom:424.320000pt;}
.yce{bottom:425.600000pt;}
.y1ef{bottom:426.240000pt;}
.yee{bottom:426.880000pt;}
.y8d{bottom:429.120000pt;}
.y15{bottom:429.440000pt;}
.yaa{bottom:433.600000pt;}
.y1c6{bottom:434.880000pt;}
.y13a{bottom:436.000000pt;}
.y6e{bottom:436.800000pt;}
.y19f{bottom:437.120000pt;}
.y15e{bottom:437.333333pt;}
.y46{bottom:438.400000pt;}
.ycd{bottom:442.240000pt;}
.y1ee{bottom:442.880000pt;}
.yed{bottom:443.840000pt;}
.y8c{bottom:445.760000pt;}
.ya9{bottom:450.240000pt;}
.y1c5{bottom:451.840000pt;}
.y45{bottom:453.120000pt;}
.y138{bottom:453.333333pt;}
.y6d{bottom:453.760000pt;}
.y19e{bottom:454.080000pt;}
.y14{bottom:456.000000pt;}
.ycc{bottom:459.200000pt;}
.y1ed{bottom:459.840000pt;}
.yec{bottom:460.800000pt;}
.y8b{bottom:462.720000pt;}
.ya8{bottom:467.200000pt;}
.y44{bottom:467.520000pt;}
.y1c4{bottom:468.800000pt;}
.y6c{bottom:470.720000pt;}
.y19d{bottom:471.040000pt;}
.y13{bottom:473.600000pt;}
.ycb{bottom:476.160000pt;}
.y1ec{bottom:476.800000pt;}
.yeb{bottom:477.760000pt;}
.y8a{bottom:479.680000pt;}
.y43{bottom:482.240000pt;}
.ya7{bottom:484.160000pt;}
.y1c3{bottom:485.440000pt;}
.y6b{bottom:487.680000pt;}
.y133{bottom:488.000000pt;}
.y12{bottom:488.640000pt;}
.yca{bottom:492.800000pt;}
.y1eb{bottom:493.440000pt;}
.yea{bottom:494.400000pt;}
.y89{bottom:496.320000pt;}
.y42{bottom:496.960000pt;}
.ya6{bottom:500.800000pt;}
.y1c2{bottom:502.400000pt;}
.y11{bottom:504.000000pt;}
.y6a{bottom:504.320000pt;}
.y19c{bottom:504.640000pt;}
.y159{bottom:506.666667pt;}
.yc9{bottom:509.760000pt;}
.y1ea{bottom:510.400000pt;}
.ye9{bottom:511.360000pt;}
.y41{bottom:511.680000pt;}
.y88{bottom:513.280000pt;}
.ya5{bottom:517.760000pt;}
.y1c1{bottom:519.360000pt;}
.y10{bottom:520.320000pt;}
.y69{bottom:521.280000pt;}
.y19b{bottom:521.600000pt;}
.y40{bottom:526.080000pt;}
.yc8{bottom:526.720000pt;}
.y1e9{bottom:527.360000pt;}
.ye8{bottom:528.320000pt;}
.y87{bottom:530.240000pt;}
.ya4{bottom:534.720000pt;}
.y68{bottom:535.040000pt;}
.y1c0{bottom:536.000000pt;}
.yf{bottom:538.240000pt;}
.y12f{bottom:540.000000pt;}
.y3f{bottom:540.800000pt;}
.yc7{bottom:543.680000pt;}
.y1e8{bottom:544.000000pt;}
.ye7{bottom:544.960000pt;}
.y86{bottom:547.200000pt;}
.ya3{bottom:551.680000pt;}
.y1bf{bottom:552.960000pt;}
.ye{bottom:554.880000pt;}
.y3e{bottom:555.520000pt;}
.yc6{bottom:560.320000pt;}
.y1e7{bottom:560.960000pt;}
.ye6{bottom:561.920000pt;}
.y19a{bottom:563.200000pt;}
.y85{bottom:563.840000pt;}
.ya2{bottom:568.320000pt;}
.y3d{bottom:570.240000pt;}
.yd{bottom:571.520000pt;}
.y12b{bottom:576.000000pt;}
.yc5{bottom:577.280000pt;}
.y198{bottom:577.333333pt;}
.y1be{bottom:577.920000pt;}
.ye5{bottom:578.880000pt;}
.y84{bottom:580.800000pt;}
.y3c{bottom:584.960000pt;}
.ya1{bottom:585.280000pt;}
.yc{bottom:586.880000pt;}
.y1bc{bottom:592.000000pt;}
.y67{bottom:594.240000pt;}
.y1e6{bottom:594.880000pt;}
.ye4{bottom:595.840000pt;}
.y83{bottom:597.760000pt;}
.y3b{bottom:599.360000pt;}
.y197{bottom:601.333333pt;}
.yb{bottom:602.240000pt;}
.yc4{bottom:610.880000pt;}
.y82{bottom:611.200000pt;}
.y1e5{bottom:611.520000pt;}
.y3a{bottom:614.080000pt;}
.y1ba{bottom:616.000000pt;}
.ya{bottom:618.240000pt;}
.y66{bottom:618.880000pt;}
.ye3{bottom:620.480000pt;}
.y1e4{bottom:625.333333pt;}
.y195{bottom:626.666667pt;}
.yc3{bottom:627.840000pt;}
.y129{bottom:628.000000pt;}
.y39{bottom:628.800000pt;}
.y65{bottom:635.840000pt;}
.ye2{bottom:637.120000pt;}
.y1b8{bottom:641.333333pt;}
.y38{bottom:643.520000pt;}
.yc2{bottom:644.800000pt;}
.y126{bottom:645.333333pt;}
.y1e3{bottom:650.666667pt;}
.y9{bottom:650.880000pt;}
.y193{bottom:652.000000pt;}
.y64{bottom:652.800000pt;}
.y37{bottom:657.920000pt;}
.yc1{bottom:661.760000pt;}
.y1b6{bottom:666.666667pt;}
.y63{bottom:669.760000pt;}
.y36{bottom:672.640000pt;}
.y1e1{bottom:674.666667pt;}
.y192{bottom:676.000000pt;}
.y8{bottom:677.120000pt;}
.yc0{bottom:678.400000pt;}
.y62{bottom:686.400000pt;}
.y35{bottom:687.360000pt;}
.y1b4{bottom:690.666667pt;}
.ybf{bottom:695.360000pt;}
.y120{bottom:697.333333pt;}
.y1df{bottom:700.000000pt;}
.y190{bottom:701.333333pt;}
.y34{bottom:702.080000pt;}
.y7{bottom:703.040000pt;}
.y61{bottom:703.360000pt;}
.ybe{bottom:712.320000pt;}
.y152{bottom:713.333333pt;}
.y1b2{bottom:716.000000pt;}
.y33{bottom:716.800000pt;}
.y175{bottom:720.000000pt;}
.y60{bottom:720.320000pt;}
.y1dc{bottom:724.000000pt;}
.y18e{bottom:725.333333pt;}
.y6{bottom:728.960000pt;}
.y32{bottom:731.200000pt;}
.y5f{bottom:736.960000pt;}
.y1b0{bottom:741.333333pt;}
.y31{bottom:745.920000pt;}
.y1db{bottom:749.333333pt;}
.y18c{bottom:750.666667pt;}
.y5e{bottom:753.920000pt;}
.y5{bottom:755.200000pt;}
.y30{bottom:760.640000pt;}
.y11c{bottom:765.333333pt;}
.y103{bottom:770.560000pt;}
.y5d{bottom:770.880000pt;}
.y1d9{bottom:774.666667pt;}
.y2f{bottom:775.360000pt;}
.y18b{bottom:776.000000pt;}
.y4{bottom:781.120000pt;}
.y5c{bottom:787.520000pt;}
.y2e{bottom:789.760000pt;}
.y5b{bottom:817.600000pt;}
.y2c{bottom:822.666667pt;}
.y2b{bottom:833.920000pt;}
.y1{bottom:835.520000pt;}
.hd{height:17.333333pt;}
.h1b{height:20.000000pt;}
.h1a{height:21.333333pt;}
.h9{height:24.000000pt;}
.h17{height:25.333333pt;}
.h18{height:26.666667pt;}
.h2{height:32.418750pt;}
.hb{height:33.701250pt;}
.h12{height:34.666667pt;}
.hf{height:36.000000pt;}
.h8{height:36.802500pt;}
.h3{height:37.063125pt;}
.h6{height:37.353750pt;}
.hc{height:39.905000pt;}
.ha{height:40.320000pt;}
.h1c{height:40.882500pt;}
.h7{height:40.911250pt;}
.h19{height:42.666667pt;}
.h16{height:43.343750pt;}
.h5{height:44.925000pt;}
.h15{height:50.666667pt;}
.he{height:52.000000pt;}
.h11{height:53.333333pt;}
.h4{height:58.708750pt;}
.h10{height:68.000000pt;}
.h13{height:69.333333pt;}
.h14{height:85.333333pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w7{width:2.666667pt;}
.wb{width:40.000000pt;}
.wa{width:41.333333pt;}
.w9{width:42.666667pt;}
.wf{width:44.000000pt;}
.w8{width:48.000000pt;}
.w2{width:53.333333pt;}
.w13{width:60.000000pt;}
.w12{width:77.333333pt;}
.w3{width:80.000000pt;}
.wc{width:89.333333pt;}
.w10{width:113.333333pt;}
.wd{width:114.666667pt;}
.we{width:121.333333pt;}
.w11{width:128.000000pt;}
.w5{width:156.000000pt;}
.w4{width:236.000000pt;}
.w6{width:472.000000pt;}
.w0{width:642.600000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x11{left:1.173333pt;}
.x1f{left:4.693365pt;}
.x13{left:5.599936pt;}
.xc{left:7.146795pt;}
.x6{left:31.386720pt;}
.xe{left:35.866859pt;}
.x28{left:47.319987pt;}
.x5{left:84.000000pt;}
.x2{left:85.120128pt;}
.x27{left:94.586592pt;}
.x4{left:109.120128pt;}
.xb{left:113.520192pt;}
.x7{left:122.920256pt;}
.x14{left:130.666667pt;}
.x12{left:133.120128pt;}
.xd{left:165.333333pt;}
.x15{left:172.000000pt;}
.x22{left:196.000000pt;}
.x1d{left:208.000000pt;}
.x1a{left:210.666667pt;}
.x16{left:212.000000pt;}
.x1e{left:250.666667pt;}
.x17{left:253.333333pt;}
.x20{left:292.000000pt;}
.x18{left:294.666667pt;}
.x8{left:316.804384pt;}
.x23{left:322.666667pt;}
.x1b{left:324.000000pt;}
.x21{left:334.666667pt;}
.x19{left:336.000000pt;}
.x24{left:365.333333pt;}
.xf{left:400.000000pt;}
.x25{left:412.000000pt;}
.x1{left:415.120000pt;}
.x1c{left:437.333333pt;}
.x3{left:486.616960pt;}
.x26{left:488.000000pt;}
.x9{left:505.333333pt;}
.x10{left:554.666667pt;}
.xa{left:557.440000pt;}
}




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