
    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_f995fae5c074047b27b27ac3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9a4bb35a1d8bb1b0e1af03e5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.115234;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_4403ac677f29367d3cf98a70.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.401855;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_bc6bf72effb4409c1d9dc9f8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1e31bf989c2f6394da9bae5a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.977539;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_289993a9eb1b41662987d516.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.977539;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);}
.v3{vertical-align:-95.640000px;}
.v2{vertical-align:-84.420000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:127.584000px;}
.ls10{letter-spacing:-2.340000px;}
.lsd{letter-spacing:-0.990000px;}
.ls17{letter-spacing:-0.672000px;}
.lse{letter-spacing:-0.540000px;}
.ls1e{letter-spacing:-0.380400px;}
.ls27{letter-spacing:-0.350400px;}
.ls23{letter-spacing:-0.306600px;}
.lsc{letter-spacing:-0.270000px;}
.ls16{letter-spacing:-0.223800px;}
.ls29{letter-spacing:-0.197400px;}
.ls9{letter-spacing:-0.189600px;}
.ls1c{letter-spacing:-0.186600px;}
.ls2{letter-spacing:-0.181200px;}
.ls2c{letter-spacing:-0.117600px;}
.ls24{letter-spacing:-0.106800px;}
.ls14{letter-spacing:-0.090600px;}
.ls6{letter-spacing:-0.072000px;}
.ls1d{letter-spacing:-0.053280px;}
.lsf{letter-spacing:-0.045360px;}
.ls28{letter-spacing:-0.037440px;}
.ls26{letter-spacing:-0.018720px;}
.ls0{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.000006px;}
.lsa{letter-spacing:0.018720px;}
.ls7{letter-spacing:0.037440px;}
.ls1{letter-spacing:0.045360px;}
.ls12{letter-spacing:0.126000px;}
.ls5{letter-spacing:0.144000px;}
.ls25{letter-spacing:0.162000px;}
.ls8{letter-spacing:0.181200px;}
.ls1a{letter-spacing:0.206400px;}
.ls1f{letter-spacing:0.211800px;}
.ls4{letter-spacing:0.223800px;}
.ls1b{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.269400px;}
.ls22{letter-spacing:0.288000px;}
.ls2b{letter-spacing:0.301200px;}
.lsb{letter-spacing:0.360000px;}
.ls2a{letter-spacing:0.369600px;}
.ls11{letter-spacing:0.496200px;}
.ls15{letter-spacing:0.538800px;}
.ls18{letter-spacing:17.098560px;}
.ls19{letter-spacing:17.549280px;}
.ls21{letter-spacing:19.848000px;}
.ls13{letter-spacing:27.898560px;}
.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;}
}
.ws29{word-spacing:-26.621280px;}
.ws41{word-spacing:-25.380000px;}
.ws33{word-spacing:-25.020000px;}
.ws11a{word-spacing:-23.458752px;}
.wsf9{word-spacing:-23.418720px;}
.ws21{word-spacing:-20.016000px;}
.wsff{word-spacing:-16.819680px;}
.wsee{word-spacing:-16.653312px;}
.wsf4{word-spacing:-16.613280px;}
.ws4d{word-spacing:-15.012000px;}
.ws8a{word-spacing:-13.456080px;}
.ws6c{word-spacing:-13.450752px;}
.ws1{word-spacing:-13.410720px;}
.ws6e{word-spacing:-13.320120px;}
.ws116{word-spacing:-2.809152px;}
.ws30{word-spacing:-2.070000px;}
.ws8e{word-spacing:-1.882320px;}
.ws117{word-spacing:-1.858608px;}
.ws90{word-spacing:-1.836960px;}
.wsec{word-spacing:-1.669248px;}
.ws55{word-spacing:-1.656000px;}
.ws11b{word-spacing:-1.655424px;}
.ws107{word-spacing:-1.460880px;}
.ws53{word-spacing:-1.440000px;}
.wsb4{word-spacing:-1.352160px;}
.ws119{word-spacing:-1.342080px;}
.ws105{word-spacing:-1.222560px;}
.ws1d{word-spacing:-1.080000px;}
.ws118{word-spacing:-1.066464px;}
.ws52{word-spacing:-0.936000px;}
.wsb6{word-spacing:-0.910080px;}
.wsf6{word-spacing:-0.864000px;}
.ws67{word-spacing:-0.774000px;}
.ws18{word-spacing:-0.722880px;}
.ws31{word-spacing:-0.720000px;}
.ws4e{word-spacing:-0.672000px;}
.ws2d{word-spacing:-0.666000px;}
.wsda{word-spacing:-0.632160px;}
.wsaa{word-spacing:-0.602880px;}
.ws1c{word-spacing:-0.600000px;}
.ws8f{word-spacing:-0.586800px;}
.ws1f{word-spacing:-0.576000px;}
.ws4a{word-spacing:-0.572400px;}
.wsf1{word-spacing:-0.552240px;}
.wsf3{word-spacing:-0.524400px;}
.ws4c{word-spacing:-0.504000px;}
.wsb8{word-spacing:-0.496080px;}
.ws6a{word-spacing:-0.451080px;}
.ws91{word-spacing:-0.421440px;}
.ws2f{word-spacing:-0.360000px;}
.ws15{word-spacing:-0.359640px;}
.wsed{word-spacing:-0.353448px;}
.wsfa{word-spacing:-0.288000px;}
.ws49{word-spacing:-0.287280px;}
.ws4b{word-spacing:-0.252000px;}
.ws25{word-spacing:-0.245520px;}
.wsf5{word-spacing:-0.240017px;}
.ws2{word-spacing:-0.237600px;}
.ws4f{word-spacing:-0.216000px;}
.ws100{word-spacing:-0.213120px;}
.ws6b{word-spacing:-0.172800px;}
.ws19{word-spacing:-0.163680px;}
.ws38{word-spacing:-0.090000px;}
.ws109{word-spacing:-0.075120px;}
.ws51{word-spacing:-0.072000px;}
.ws87{word-spacing:-0.056160px;}
.wsfb{word-spacing:-0.024000px;}
.ws46{word-spacing:-0.018720px;}
.ws4{word-spacing:-0.002880px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:0.110880px;}
.ws9{word-spacing:0.117120px;}
.wsb5{word-spacing:0.123840px;}
.wse7{word-spacing:0.124560px;}
.wsa{word-spacing:0.136080px;}
.ws1b{word-spacing:0.144000px;}
.ws5{word-spacing:0.153360px;}
.ws24{word-spacing:0.187200px;}
.wsf8{word-spacing:0.192000px;}
.ws8{word-spacing:0.213120px;}
.wse6{word-spacing:0.267840px;}
.ws71{word-spacing:0.268920px;}
.ws16{word-spacing:0.280800px;}
.ws6f{word-spacing:0.314640px;}
.ws2e{word-spacing:0.360000px;}
.wsf0{word-spacing:0.361440px;}
.ws108{word-spacing:0.420720px;}
.ws2b{word-spacing:0.435600px;}
.ws17{word-spacing:0.436320px;}
.wsab{word-spacing:0.450720px;}
.ws20{word-spacing:0.468000px;}
.wsb7{word-spacing:0.473760px;}
.ws54{word-spacing:0.504000px;}
.ws37{word-spacing:0.570000px;}
.ws69{word-spacing:0.574560px;}
.ws1e{word-spacing:0.576000px;}
.ws2a{word-spacing:0.661680px;}
.ws6{word-spacing:0.676800px;}
.ws70{word-spacing:0.717120px;}
.wsa0{word-spacing:0.720000px;}
.ws2c{word-spacing:0.738720px;}
.ws50{word-spacing:0.756000px;}
.ws7{word-spacing:0.800640px;}
.ws34{word-spacing:0.810000px;}
.ws1a{word-spacing:0.810720px;}
.ws48{word-spacing:0.842880px;}
.ws74{word-spacing:0.853920px;}
.ws73{word-spacing:0.861840px;}
.wsa4{word-spacing:0.881280px;}
.ws28{word-spacing:0.918720px;}
.ws42{word-spacing:0.928800px;}
.ws26{word-spacing:0.933600px;}
.ws6d{word-spacing:0.953040px;}
.ws9d{word-spacing:0.988920px;}
.ws72{word-spacing:1.004160px;}
.wsf7{word-spacing:1.080000px;}
.wsa6{word-spacing:1.122480px;}
.ws27{word-spacing:1.155600px;}
.ws44{word-spacing:1.155840px;}
.ws68{word-spacing:1.170000px;}
.ws106{word-spacing:1.173240px;}
.ws32{word-spacing:1.200000px;}
.ws23{word-spacing:1.229760px;}
.wsa1{word-spacing:1.344240px;}
.ws36{word-spacing:1.350000px;}
.ws9b{word-spacing:1.437120px;}
.wsd8{word-spacing:1.470960px;}
.ws47{word-spacing:1.498320px;}
.ws9c{word-spacing:1.527840px;}
.wsca{word-spacing:1.540080px;}
.wsd9{word-spacing:1.617120px;}
.wsa5{word-spacing:1.620720px;}
.wsa2{word-spacing:1.632960px;}
.wscb{word-spacing:1.748160px;}
.ws35{word-spacing:1.800000px;}
.wsa7{word-spacing:1.851120px;}
.wsdd{word-spacing:1.855200px;}
.wsac{word-spacing:1.902720px;}
.wsa9{word-spacing:1.908000px;}
.ws14{word-spacing:1.978560px;}
.wsa8{word-spacing:2.009760px;}
.ws9a{word-spacing:2.047440px;}
.wsdb{word-spacing:2.157120px;}
.wsd1{word-spacing:2.247840px;}
.ws9f{word-spacing:2.340720px;}
.ws43{word-spacing:2.366640px;}
.ws9e{word-spacing:2.506320px;}
.wsdc{word-spacing:2.567040px;}
.wsb2{word-spacing:2.610720px;}
.wsb3{word-spacing:2.877120px;}
.wsae{word-spacing:2.946240px;}
.wse0{word-spacing:2.967840px;}
.ws83{word-spacing:3.016800px;}
.wsa3{word-spacing:3.096000px;}
.wsb0{word-spacing:3.348720px;}
.wsdf{word-spacing:3.420360px;}
.ws82{word-spacing:3.543840px;}
.ws10e{word-spacing:3.546000px;}
.wsaf{word-spacing:3.556800px;}
.ws85{word-spacing:3.597120px;}
.wsad{word-spacing:3.645360px;}
.ws84{word-spacing:3.761280px;}
.wsb1{word-spacing:3.780720px;}
.ws59{word-spacing:3.781080px;}
.ws5a{word-spacing:3.816000px;}
.ws86{word-spacing:3.833040px;}
.wse4{word-spacing:3.868920px;}
.wsd0{word-spacing:3.870720px;}
.ws10c{word-spacing:3.969360px;}
.wse2{word-spacing:3.971520px;}
.wsde{word-spacing:4.276800px;}
.ws10a{word-spacing:4.279680px;}
.ws57{word-spacing:4.317120px;}
.wse3{word-spacing:4.343040px;}
.ws5c{word-spacing:4.419360px;}
.ws5b{word-spacing:4.437120px;}
.wse1{word-spacing:4.453200px;}
.ws5e{word-spacing:4.470480px;}
.ws5d{word-spacing:4.500720px;}
.ws56{word-spacing:4.539360px;}
.ws45{word-spacing:4.555200px;}
.ws10d{word-spacing:4.604400px;}
.ws58{word-spacing:4.716720px;}
.ws103{word-spacing:4.746240px;}
.ws10b{word-spacing:4.870800px;}
.wse5{word-spacing:4.952880px;}
.wsea{word-spacing:5.800680px;}
.wse9{word-spacing:6.087840px;}
.wse8{word-spacing:6.379920px;}
.wseb{word-spacing:6.390000px;}
.ws98{word-spacing:6.567840px;}
.ws99{word-spacing:6.703920px;}
.ws93{word-spacing:6.829200px;}
.wsf2{word-spacing:7.093440px;}
.ws13{word-spacing:7.197120px;}
.wsb{word-spacing:7.287840px;}
.ws96{word-spacing:7.392960px;}
.wse{word-spacing:7.468920px;}
.ws12{word-spacing:7.605360px;}
.ws94{word-spacing:7.644240px;}
.ws97{word-spacing:7.650000px;}
.wsbd{word-spacing:7.846560px;}
.wsbb{word-spacing:7.871760px;}
.wsc{word-spacing:7.917120px;}
.ws92{word-spacing:7.965360px;}
.ws10{word-spacing:8.047440px;}
.wsb9{word-spacing:8.059680px;}
.ws11{word-spacing:8.096400px;}
.ws95{word-spacing:8.100720px;}
.wsf{word-spacing:8.130960px;}
.ws7a{word-spacing:8.143920px;}
.wsc9{word-spacing:8.177040px;}
.wsd{word-spacing:8.197200px;}
.wsbe{word-spacing:8.367840px;}
.wsc6{word-spacing:8.370000px;}
.wsbf{word-spacing:8.487360px;}
.ws77{word-spacing:8.560800px;}
.wsc0{word-spacing:8.596800px;}
.ws7e{word-spacing:8.637120px;}
.ws75{word-spacing:8.706000px;}
.ws76{word-spacing:8.773200px;}
.ws7b{word-spacing:8.773920px;}
.ws81{word-spacing:8.774400px;}
.ws7f{word-spacing:8.776080px;}
.ws78{word-spacing:8.863920px;}
.wsc2{word-spacing:8.908920px;}
.ws7d{word-spacing:8.923680px;}
.ws7c{word-spacing:9.047040px;}
.wsc4{word-spacing:9.357120px;}
.ws79{word-spacing:9.411120px;}
.ws80{word-spacing:9.540720px;}
.wsc3{word-spacing:9.543600px;}
.wsc1{word-spacing:9.660240px;}
.wsbc{word-spacing:9.668400px;}
.wsc7{word-spacing:9.686160px;}
.wsc5{word-spacing:9.921600px;}
.wsc8{word-spacing:10.260720px;}
.wsd5{word-spacing:13.047840px;}
.wsd7{word-spacing:13.748400px;}
.ws8b{word-spacing:13.980240px;}
.ws8c{word-spacing:14.068920px;}
.ws88{word-spacing:14.174640px;}
.wsd6{word-spacing:14.265840px;}
.ws8d{word-spacing:14.451840px;}
.ws89{word-spacing:15.071400px;}
.wsd4{word-spacing:18.807840px;}
.wsd3{word-spacing:19.437120px;}
.ws64{word-spacing:19.440000px;}
.wsd2{word-spacing:19.599120px;}
.ws63{word-spacing:20.877120px;}
.wsfd{word-spacing:21.024000px;}
.ws61{word-spacing:21.148920px;}
.ws5f{word-spacing:21.224160px;}
.wsba{word-spacing:21.506400px;}
.ws60{word-spacing:21.597120px;}
.ws66{word-spacing:21.833280px;}
.ws65{word-spacing:22.170000px;}
.ws62{word-spacing:22.170240px;}
.wsfc{word-spacing:22.224000px;}
.ws3f{word-spacing:23.760000px;}
.ws39{word-spacing:24.300000px;}
.ws40{word-spacing:24.750000px;}
.ws3a{word-spacing:24.840000px;}
.ws3c{word-spacing:25.020000px;}
.ws3b{word-spacing:25.110000px;}
.ws3e{word-spacing:25.380000px;}
.ws3d{word-spacing:26.400000px;}
.ws114{word-spacing:27.340560px;}
.ws115{word-spacing:28.323120px;}
.ws110{word-spacing:32.451600px;}
.ws111{word-spacing:33.157440px;}
.ws112{word-spacing:33.762240px;}
.ws10f{word-spacing:33.811200px;}
.ws113{word-spacing:33.864120px;}
.wsfe{word-spacing:44.312400px;}
.wscf{word-spacing:46.274160px;}
.wsef{word-spacing:46.545120px;}
.wsce{word-spacing:46.926000px;}
.wscd{word-spacing:47.052000px;}
.wscc{word-spacing:47.358000px;}
.ws102{word-spacing:132.027840px;}
.ws101{word-spacing:132.220080px;}
.ws104{word-spacing:163.440000px;}
.ws22{word-spacing:1609.382400px;}
._7{margin-left:-10.661280px;}
._1a{margin-left:-9.013680px;}
._19{margin-left:-6.464304px;}
._c{margin-left:-5.040000px;}
._2{margin-left:-3.112848px;}
._0{margin-left:-1.225152px;}
._1{width:1.440000px;}
._3{width:3.015504px;}
._b{width:4.911552px;}
._1b{width:11.952000px;}
._10{width:13.253760px;}
._4{width:14.263632px;}
._f{width:15.832848px;}
._11{width:17.377776px;}
._15{width:18.594432px;}
._d{width:19.910304px;}
._5{width:21.184848px;}
._12{width:22.569360px;}
._13{width:24.022512px;}
._8{width:26.316000px;}
._9{width:27.414000px;}
._6{width:28.696320px;}
._14{width:33.432912px;}
._e{width:35.050944px;}
._a{width:50.629152px;}
._16{width:64.377552px;}
._17{width:80.240352px;}
._18{width:91.085040px;}
.fce{color:rgb(0,153,153);}
.fc4{color:rgb(255,0,0);}
.fc1{color:rgb(0,176,80);}
.fcd{color:rgb(153,0,153);}
.fc2{color:rgb(51,102,255);}
.fc3{color:rgb(232,56,148);}
.fc5{color:rgb(34,34,104);}
.fc7{color:rgb(66,66,194);}
.fc6{color:rgb(51,51,204);}
.fc0{color:rgb(0,0,102);}
.fc8{color:rgb(192,0,0);}
.fca{color:rgb(0,112,192);}
.fc9{color:rgb(0,32,96);}
.fcb{color:rgb(0,0,255);}
.fcc{color:rgb(0,204,102);}
.fs3{font-size:48.240000px;}
.fs9{font-size:48.384000px;}
.fs2{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs8{font-size:59.904000px;}
.fs1{font-size:72.000000px;}
.fsa{font-size:72.144000px;}
.fs5{font-size:84.240000px;}
.fsb{font-size:84.384000px;}
.fs6{font-size:90.000000px;}
.fs4{font-size:95.760000px;}
.fs0{font-size:408.384000px;}
.y0{bottom:0.000000px;}
.y114{bottom:0.431985px;}
.ydc{bottom:4.932000px;}
.y109{bottom:9.108000px;}
.y102{bottom:9.792000px;}
.y5b{bottom:12.204000px;}
.y7d{bottom:14.796000px;}
.yc6{bottom:15.408000px;}
.y113{bottom:16.632000px;}
.y1d{bottom:19.512000px;}
.ydb{bottom:22.932000px;}
.y12c{bottom:25.236000px;}
.y108{bottom:25.308000px;}
.y5a{bottom:26.604000px;}
.y66{bottom:28.440000px;}
.y112{bottom:32.832000px;}
.yc5{bottom:33.408000px;}
.y11f{bottom:33.480000px;}
.y125{bottom:36.180000px;}
.y96{bottom:38.304000px;}
.y59{bottom:41.004000px;}
.y107{bottom:41.544000px;}
.yee{bottom:43.776000px;}
.yda{bottom:44.568000px;}
.y65{bottom:44.676000px;}
.yb1{bottom:45.036000px;}
.y12b{bottom:46.836000px;}
.y111{bottom:49.032000px;}
.yc4{bottom:51.408000px;}
.y1c{bottom:52.992000px;}
.y95{bottom:56.304000px;}
.yd2{bottom:57.060000px;}
.y106{bottom:57.744000px;}
.y58{bottom:58.284000px;}
.y64{bottom:60.876000px;}
.y3{bottom:60.912000px;}
.yd9{bottom:62.568000px;}
.yb0{bottom:63.036000px;}
.yf9{bottom:63.792000px;}
.y110{bottom:65.232000px;}
.yed{bottom:65.376000px;}
.y1b{bottom:67.392000px;}
.y12a{bottom:68.436000px;}
.y133{bottom:69.408000px;}
.y57{bottom:72.684000px;}
.y124{bottom:73.980000px;}
.yd1{bottom:75.060000px;}
.y63{bottom:77.076000px;}
.yc3{bottom:78.732000px;}
.y20{bottom:79.416000px;}
.yaf{bottom:81.036000px;}
.yf8{bottom:81.792000px;}
.y1a{bottom:81.828000px;}
.yd8{bottom:84.168000px;}
.y56{bottom:87.084000px;}
.y132{bottom:87.444000px;}
.y74{bottom:91.008000px;}
.yec{bottom:91.332000px;}
.y62{bottom:93.276000px;}
.y129{bottom:94.356000px;}
.y19{bottom:96.228000px;}
.y88{bottom:98.568000px;}
.yae{bottom:99.072000px;}
.y101{bottom:99.900000px;}
.yd0{bottom:102.060000px;}
.y55{bottom:104.400000px;}
.y131{bottom:105.444000px;}
.yd7{bottom:105.768000px;}
.y1f{bottom:108.252000px;}
.y73{bottom:109.008000px;}
.y87{bottom:112.968000px;}
.y18{bottom:113.508000px;}
.yad{bottom:117.072000px;}
.yeb{bottom:117.252000px;}
.ycf{bottom:120.060000px;}
.y128{bottom:120.312000px;}
.y100{bottom:121.500000px;}
.y54{bottom:121.680000px;}
.y130{bottom:123.444000px;}
.y72{bottom:127.008000px;}
.y86{bottom:127.368000px;}
.y17{bottom:127.908000px;}
.y5d{bottom:131.076000px;}
.yac{bottom:135.072000px;}
.y53{bottom:136.080000px;}
.yea{bottom:138.852000px;}
.yf7{bottom:140.328000px;}
.ybe{bottom:141.192000px;}
.y12f{bottom:141.444000px;}
.y85{bottom:141.768000px;}
.y16{bottom:142.308000px;}
.yb9{bottom:143.208000px;}
.y71{bottom:145.008000px;}
.y127{bottom:146.232000px;}
.y9b{bottom:147.996000px;}
.y52{bottom:150.480000px;}
.yf3{bottom:150.915000px;}
.yab{bottom:153.075000px;}
.y84{bottom:156.165000px;}
.yf6{bottom:158.325000px;}
.y15{bottom:159.585000px;}
.ybd{bottom:162.795000px;}
.y70{bottom:163.005000px;}
.ye9{bottom:164.775000px;}
.yb8{bottom:164.805000px;}
.y51{bottom:164.880000px;}
.y9a{bottom:166.035000px;}
.y83{bottom:170.610000px;}
.y126{bottom:172.155000px;}
.yf2{bottom:172.515000px;}
.yaa{bottom:180.075000px;}
.y6f{bottom:181.005000px;}
.y50{bottom:182.160000px;}
.yff{bottom:183.090000px;}
.y99{bottom:184.035000px;}
.y61{bottom:184.395000px;}
.yc0{bottom:185.040000px;}
.y118{bottom:186.225000px;}
.y10f{bottom:189.390000px;}
.y3e{bottom:190.155000px;}
.ye8{bottom:190.695000px;}
.y14{bottom:194.190000px;}
.ya9{bottom:198.105000px;}
.y6e{bottom:199.050000px;}
.y4f{bottom:199.440000px;}
.y117{bottom:204.090000px;}
.y10e{bottom:205.590000px;}
.y60{bottom:206.025000px;}
.ybf{bottom:206.640000px;}
.y2{bottom:207.870000px;}
.y13{bottom:208.590000px;}
.ycc{bottom:210.780000px;}
.ye7{bottom:212.325000px;}
.ya8{bottom:216.105000px;}
.y4e{bottom:216.750000px;}
.y6d{bottom:217.050000px;}
.y116{bottom:220.290000px;}
.y2c{bottom:221.370000px;}
.y10d{bottom:221.790000px;}
.y12{bottom:222.990000px;}
.y5f{bottom:227.625000px;}
.ye6{bottom:233.925000px;}
.y4d{bottom:234.030000px;}
.ya7{bottom:234.105000px;}
.y6c{bottom:235.050000px;}
.y115{bottom:236.490000px;}
.y38{bottom:236.670000px;}
.y10c{bottom:238.035000px;}
.y2b{bottom:239.370000px;}
.y11{bottom:240.270000px;}
.y31{bottom:247.965000px;}
.y4c{bottom:248.430000px;}
.y5e{bottom:249.225000px;}
.ya6{bottom:252.105000px;}
.y10b{bottom:254.235000px;}
.y10{bottom:254.670000px;}
.y2a{bottom:257.370000px;}
.y91{bottom:257.685000px;}
.ye5{bottom:259.845000px;}
.y4b{bottom:265.710000px;}
.y30{bottom:266.010000px;}
.y7c{bottom:268.740000px;}
.ya5{bottom:270.105000px;}
.y10a{bottom:270.435000px;}
.yf{bottom:271.950000px;}
.y29{bottom:275.370000px;}
.y11c{bottom:275.550000px;}
.yf5{bottom:276.480000px;}
.y4a{bottom:280.110000px;}
.y123{bottom:280.290000px;}
.y2f{bottom:284.010000px;}
.yc8{bottom:285.120000px;}
.ye4{bottom:285.765000px;}
.ya4{bottom:288.105000px;}
.ye{bottom:289.230000px;}
.y7b{bottom:290.340000px;}
.y28{bottom:293.370000px;}
.y11b{bottom:293.550000px;}
.yf4{bottom:294.480000px;}
.y49{bottom:294.510000px;}
.yf0{bottom:300.060000px;}
.y2e{bottom:302.010000px;}
.yc7{bottom:303.120000px;}
.yd{bottom:303.660000px;}
.ye3{bottom:307.365000px;}
.y48{bottom:308.910000px;}
.y27{bottom:311.370000px;}
.y11a{bottom:311.580000px;}
.y7a{bottom:311.940000px;}
.y82{bottom:312.810000px;}
.ya3{bottom:315.150000px;}
.y98{bottom:319.065000px;}
.y2d{bottom:320.010000px;}
.yc{bottom:320.940000px;}
.y47{bottom:326.235000px;}
.y1{bottom:330.300000px;}
.ya2{bottom:333.150000px;}
.ye2{bottom:333.330000px;}
.y79{bottom:333.540000px;}
.y97{bottom:337.065000px;}
.yb{bottom:338.220000px;}
.y3d{bottom:342.255000px;}
.y46{bottom:343.515000px;}
.y9d{bottom:344.010000px;}
.yfe{bottom:344.775000px;}
.yb7{bottom:349.740000px;}
.ya1{bottom:351.150000px;}
.ya{bottom:352.620000px;}
.yc2{bottom:354.135000px;}
.ye1{bottom:354.930000px;}
.y78{bottom:355.170000px;}
.y45{bottom:357.915000px;}
.y9c{bottom:362.010000px;}
.y80{bottom:365.550000px;}
.y37{bottom:366.150000px;}
.y9{bottom:367.020000px;}
.yb6{bottom:367.740000px;}
.ya0{bottom:369.150000px;}
.y44{bottom:372.315000px;}
.y94{bottom:375.660000px;}
.ye0{bottom:376.530000px;}
.y77{bottom:376.770000px;}
.y7f{bottom:379.950000px;}
.y119{bottom:382.320000px;}
.y36{bottom:383.430000px;}
.y8{bottom:384.300000px;}
.y6b{bottom:384.555000px;}
.yb5{bottom:385.770000px;}
.y9f{bottom:387.150000px;}
.y43{bottom:389.595000px;}
.yfd{bottom:394.170000px;}
.y7e{bottom:394.350000px;}
.yc1{bottom:396.720000px;}
.y35{bottom:397.830000px;}
.ydf{bottom:398.130000px;}
.y76{bottom:399.705000px;}
.ybc{bottom:400.320000px;}
.y93{bottom:400.860000px;}
.y7{bottom:403.020000px;}
.y12e{bottom:404.250000px;}
.y9e{bottom:405.150000px;}
.y6a{bottom:406.185000px;}
.y42{bottom:406.875000px;}
.y90{bottom:407.445000px;}
.yb4{bottom:413.490000px;}
.y136{bottom:414.105000px;}
.y34{bottom:415.155000px;}
.yfc{bottom:415.770000px;}
.y122{bottom:417.060000px;}
.yd6{bottom:419.325000px;}
.y8f{bottom:421.845000px;}
.ybb{bottom:421.920000px;}
.y41{bottom:424.155000px;}
.y75{bottom:424.905000px;}
.y69{bottom:427.785000px;}
.y33{bottom:432.435000px;}
.y105{bottom:432.510000px;}
.y25{bottom:433.470000px;}
.y135{bottom:435.750000px;}
.y8e{bottom:436.245000px;}
.yd5{bottom:437.325000px;}
.ycb{bottom:437.580000px;}
.y92{bottom:438.660000px;}
.y121{bottom:442.260000px;}
.y11e{bottom:442.590000px;}
.yf1{bottom:445.680000px;}
.y6{bottom:447.330000px;}
.y8d{bottom:450.645000px;}
.yde{bottom:450.720000px;}
.yd4{bottom:452.625000px;}
.y40{bottom:453.315000px;}
.yfb{bottom:454.110000px;}
.y67{bottom:455.790000px;}
.yb3{bottom:456.195000px;}
.yca{bottom:457.020000px;}
.y12d{bottom:459.150000px;}
.y1e{bottom:459.465000px;}
.y24{bottom:460.470000px;}
.y81{bottom:461.730000px;}
.y104{bottom:462.750000px;}
.y134{bottom:462.930000px;}
.y5{bottom:463.530000px;}
.y68{bottom:464.400000px;}
.y8c{bottom:465.045000px;}
.yef{bottom:465.990000px;}
.y21{bottom:467.430000px;}
.yba{bottom:467.460000px;}
.y120{bottom:467.490000px;}
.y11d{bottom:467.790000px;}
.y22{bottom:467.895000px;}
.yd3{bottom:469.365000px;}
.y5c{bottom:471.345000px;}
.ydd{bottom:475.920000px;}
.y8b{bottom:479.445000px;}
.y4{bottom:480.810000px;}
.yb2{bottom:481.245000px;}
.yc9{bottom:482.220000px;}
.y26{bottom:482.865000px;}
.yfa{bottom:484.350000px;}
.y3f{bottom:485.745000px;}
.y23{bottom:487.470000px;}
.y32{bottom:488.625000px;}
.y103{bottom:492.990000px;}
.y8a{bottom:493.845000px;}
.y3c{bottom:496.875000px;}
.yce{bottom:501.945000px;}
.y89{bottom:508.650000px;}
.y3b{bottom:518.475000px;}
.ycd{bottom:519.945000px;}
.y3a{bottom:540.105000px;}
.y39{bottom:561.705000px;}
.h5{height:50.312812px;}
.hc{height:50.463000px;}
.hf{height:54.069961px;}
.h10{height:54.200250px;}
.h4{height:56.320312px;}
.h12{height:57.410156px;}
.h13{height:57.524977px;}
.ha{height:62.327813px;}
.hb{height:62.478000px;}
.h14{height:65.274820px;}
.h3{height:75.093750px;}
.hd{height:75.243937px;}
.h11{height:76.355508px;}
.h9{height:87.859687px;}
.he{height:88.009875px;}
.h8{height:93.867188px;}
.h6{height:99.874688px;}
.h7{height:215.443688px;}
.h2{height:425.931750px;}
.h0{height:595.260000px;}
.h1{height:595.500000px;}
.w1{width:807.750000px;}
.w2{width:808.019988px;}
.w0{width:808.020000px;}
.x0{left:0.000000px;}
.x32{left:2.123988px;}
.x31{left:5.003988px;}
.x5{left:10.799988px;}
.x23{left:14.867988px;}
.x30{left:16.559988px;}
.x8{left:23.543988px;}
.x14{left:26.567988px;}
.x4{left:32.003988px;}
.xd{left:34.991988px;}
.x2c{left:37.043988px;}
.x6{left:59.687988px;}
.x3a{left:69.299988px;}
.x7{left:72.287988px;}
.x34{left:91.619988px;}
.x2a{left:116.891988px;}
.x2e{left:151.019988px;}
.x33{left:159.479988px;}
.x2{left:168.659988px;}
.x20{left:170.024988px;}
.x15{left:178.454988px;}
.x1{left:191.519988px;}
.x39{left:193.604988px;}
.x1e{left:228.854988px;}
.x1b{left:236.234988px;}
.x3{left:239.579988px;}
.xa{left:244.649988px;}
.x1c{left:245.984988px;}
.xc{left:252.104988px;}
.x19{left:270.179988px;}
.x37{left:278.789988px;}
.x1d{left:295.664988px;}
.x38{left:312.734988px;}
.x24{left:330.374988px;}
.x35{left:338.249988px;}
.x2d{left:347.009988px;}
.x12{left:372.569988px;}
.x1a{left:389.264988px;}
.x27{left:397.874988px;}
.x21{left:406.334988px;}
.x18{left:423.284988px;}
.x25{left:440.279988px;}
.x16{left:465.584988px;}
.x17{left:474.044988px;}
.x1f{left:480.164988px;}
.x22{left:482.219988px;}
.x29{left:491.474988px;}
.xe{left:498.749988px;}
.x2b{left:508.289988px;}
.x10{left:516.209988px;}
.x9{left:524.669988px;}
.xf{left:527.549988px;}
.x13{left:541.544988px;}
.x11{left:544.139988px;}
.x28{left:550.904988px;}
.x36{left:576.434988px;}
.x2f{left:606.029988px;}
.x26{left:659.699988px;}
.xb{left:701.894988px;}
@media print{
.v3{vertical-align:-85.013333pt;}
.v2{vertical-align:-75.040000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:113.408000pt;}
.ls10{letter-spacing:-2.080000pt;}
.lsd{letter-spacing:-0.880000pt;}
.ls17{letter-spacing:-0.597333pt;}
.lse{letter-spacing:-0.480000pt;}
.ls1e{letter-spacing:-0.338133pt;}
.ls27{letter-spacing:-0.311467pt;}
.ls23{letter-spacing:-0.272533pt;}
.lsc{letter-spacing:-0.240000pt;}
.ls16{letter-spacing:-0.198933pt;}
.ls29{letter-spacing:-0.175467pt;}
.ls9{letter-spacing:-0.168533pt;}
.ls1c{letter-spacing:-0.165867pt;}
.ls2{letter-spacing:-0.161067pt;}
.ls2c{letter-spacing:-0.104533pt;}
.ls24{letter-spacing:-0.094933pt;}
.ls14{letter-spacing:-0.080533pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls1d{letter-spacing:-0.047360pt;}
.lsf{letter-spacing:-0.040320pt;}
.ls28{letter-spacing:-0.033280pt;}
.ls26{letter-spacing:-0.016640pt;}
.ls0{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.000005pt;}
.lsa{letter-spacing:0.016640pt;}
.ls7{letter-spacing:0.033280pt;}
.ls1{letter-spacing:0.040320pt;}
.ls12{letter-spacing:0.112000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls25{letter-spacing:0.144000pt;}
.ls8{letter-spacing:0.161067pt;}
.ls1a{letter-spacing:0.183467pt;}
.ls1f{letter-spacing:0.188267pt;}
.ls4{letter-spacing:0.198933pt;}
.ls1b{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.239467pt;}
.ls22{letter-spacing:0.256000pt;}
.ls2b{letter-spacing:0.267733pt;}
.lsb{letter-spacing:0.320000pt;}
.ls2a{letter-spacing:0.328533pt;}
.ls11{letter-spacing:0.441067pt;}
.ls15{letter-spacing:0.478933pt;}
.ls18{letter-spacing:15.198720pt;}
.ls19{letter-spacing:15.599360pt;}
.ls21{letter-spacing:17.642667pt;}
.ls13{letter-spacing:24.798720pt;}
.ws29{word-spacing:-23.663360pt;}
.ws41{word-spacing:-22.560000pt;}
.ws33{word-spacing:-22.240000pt;}
.ws11a{word-spacing:-20.852224pt;}
.wsf9{word-spacing:-20.816640pt;}
.ws21{word-spacing:-17.792000pt;}
.wsff{word-spacing:-14.950827pt;}
.wsee{word-spacing:-14.802944pt;}
.wsf4{word-spacing:-14.767360pt;}
.ws4d{word-spacing:-13.344000pt;}
.ws8a{word-spacing:-11.960960pt;}
.ws6c{word-spacing:-11.956224pt;}
.ws1{word-spacing:-11.920640pt;}
.ws6e{word-spacing:-11.840107pt;}
.ws116{word-spacing:-2.497024pt;}
.ws30{word-spacing:-1.840000pt;}
.ws8e{word-spacing:-1.673173pt;}
.ws117{word-spacing:-1.652096pt;}
.ws90{word-spacing:-1.632853pt;}
.wsec{word-spacing:-1.483776pt;}
.ws55{word-spacing:-1.472000pt;}
.ws11b{word-spacing:-1.471488pt;}
.ws107{word-spacing:-1.298560pt;}
.ws53{word-spacing:-1.280000pt;}
.wsb4{word-spacing:-1.201920pt;}
.ws119{word-spacing:-1.192960pt;}
.ws105{word-spacing:-1.086720pt;}
.ws1d{word-spacing:-0.960000pt;}
.ws118{word-spacing:-0.947968pt;}
.ws52{word-spacing:-0.832000pt;}
.wsb6{word-spacing:-0.808960pt;}
.wsf6{word-spacing:-0.768000pt;}
.ws67{word-spacing:-0.688000pt;}
.ws18{word-spacing:-0.642560pt;}
.ws31{word-spacing:-0.640000pt;}
.ws4e{word-spacing:-0.597333pt;}
.ws2d{word-spacing:-0.592000pt;}
.wsda{word-spacing:-0.561920pt;}
.wsaa{word-spacing:-0.535893pt;}
.ws1c{word-spacing:-0.533333pt;}
.ws8f{word-spacing:-0.521600pt;}
.ws1f{word-spacing:-0.512000pt;}
.ws4a{word-spacing:-0.508800pt;}
.wsf1{word-spacing:-0.490880pt;}
.wsf3{word-spacing:-0.466133pt;}
.ws4c{word-spacing:-0.448000pt;}
.wsb8{word-spacing:-0.440960pt;}
.ws6a{word-spacing:-0.400960pt;}
.ws91{word-spacing:-0.374613pt;}
.ws2f{word-spacing:-0.320000pt;}
.ws15{word-spacing:-0.319680pt;}
.wsed{word-spacing:-0.314176pt;}
.wsfa{word-spacing:-0.256000pt;}
.ws49{word-spacing:-0.255360pt;}
.ws4b{word-spacing:-0.224000pt;}
.ws25{word-spacing:-0.218240pt;}
.wsf5{word-spacing:-0.213349pt;}
.ws2{word-spacing:-0.211200pt;}
.ws4f{word-spacing:-0.192000pt;}
.ws100{word-spacing:-0.189440pt;}
.ws6b{word-spacing:-0.153600pt;}
.ws19{word-spacing:-0.145493pt;}
.ws38{word-spacing:-0.080000pt;}
.ws109{word-spacing:-0.066773pt;}
.ws51{word-spacing:-0.064000pt;}
.ws87{word-spacing:-0.049920pt;}
.wsfb{word-spacing:-0.021333pt;}
.ws46{word-spacing:-0.016640pt;}
.ws4{word-spacing:-0.002560pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:0.098560pt;}
.ws9{word-spacing:0.104107pt;}
.wsb5{word-spacing:0.110080pt;}
.wse7{word-spacing:0.110720pt;}
.wsa{word-spacing:0.120960pt;}
.ws1b{word-spacing:0.128000pt;}
.ws5{word-spacing:0.136320pt;}
.ws24{word-spacing:0.166400pt;}
.wsf8{word-spacing:0.170667pt;}
.ws8{word-spacing:0.189440pt;}
.wse6{word-spacing:0.238080pt;}
.ws71{word-spacing:0.239040pt;}
.ws16{word-spacing:0.249600pt;}
.ws6f{word-spacing:0.279680pt;}
.ws2e{word-spacing:0.320000pt;}
.wsf0{word-spacing:0.321280pt;}
.ws108{word-spacing:0.373973pt;}
.ws2b{word-spacing:0.387200pt;}
.ws17{word-spacing:0.387840pt;}
.wsab{word-spacing:0.400640pt;}
.ws20{word-spacing:0.416000pt;}
.wsb7{word-spacing:0.421120pt;}
.ws54{word-spacing:0.448000pt;}
.ws37{word-spacing:0.506667pt;}
.ws69{word-spacing:0.510720pt;}
.ws1e{word-spacing:0.512000pt;}
.ws2a{word-spacing:0.588160pt;}
.ws6{word-spacing:0.601600pt;}
.ws70{word-spacing:0.637440pt;}
.wsa0{word-spacing:0.640000pt;}
.ws2c{word-spacing:0.656640pt;}
.ws50{word-spacing:0.672000pt;}
.ws7{word-spacing:0.711680pt;}
.ws34{word-spacing:0.720000pt;}
.ws1a{word-spacing:0.720640pt;}
.ws48{word-spacing:0.749227pt;}
.ws74{word-spacing:0.759040pt;}
.ws73{word-spacing:0.766080pt;}
.wsa4{word-spacing:0.783360pt;}
.ws28{word-spacing:0.816640pt;}
.ws42{word-spacing:0.825600pt;}
.ws26{word-spacing:0.829867pt;}
.ws6d{word-spacing:0.847147pt;}
.ws9d{word-spacing:0.879040pt;}
.ws72{word-spacing:0.892587pt;}
.wsf7{word-spacing:0.960000pt;}
.wsa6{word-spacing:0.997760pt;}
.ws27{word-spacing:1.027200pt;}
.ws44{word-spacing:1.027413pt;}
.ws68{word-spacing:1.040000pt;}
.ws106{word-spacing:1.042880pt;}
.ws32{word-spacing:1.066667pt;}
.ws23{word-spacing:1.093120pt;}
.wsa1{word-spacing:1.194880pt;}
.ws36{word-spacing:1.200000pt;}
.ws9b{word-spacing:1.277440pt;}
.wsd8{word-spacing:1.307520pt;}
.ws47{word-spacing:1.331840pt;}
.ws9c{word-spacing:1.358080pt;}
.wsca{word-spacing:1.368960pt;}
.wsd9{word-spacing:1.437440pt;}
.wsa5{word-spacing:1.440640pt;}
.wsa2{word-spacing:1.451520pt;}
.wscb{word-spacing:1.553920pt;}
.ws35{word-spacing:1.600000pt;}
.wsa7{word-spacing:1.645440pt;}
.wsdd{word-spacing:1.649067pt;}
.wsac{word-spacing:1.691307pt;}
.wsa9{word-spacing:1.696000pt;}
.ws14{word-spacing:1.758720pt;}
.wsa8{word-spacing:1.786453pt;}
.ws9a{word-spacing:1.819947pt;}
.wsdb{word-spacing:1.917440pt;}
.wsd1{word-spacing:1.998080pt;}
.ws9f{word-spacing:2.080640pt;}
.ws43{word-spacing:2.103680pt;}
.ws9e{word-spacing:2.227840pt;}
.wsdc{word-spacing:2.281813pt;}
.wsb2{word-spacing:2.320640pt;}
.wsb3{word-spacing:2.557440pt;}
.wsae{word-spacing:2.618880pt;}
.wse0{word-spacing:2.638080pt;}
.ws83{word-spacing:2.681600pt;}
.wsa3{word-spacing:2.752000pt;}
.wsb0{word-spacing:2.976640pt;}
.wsdf{word-spacing:3.040320pt;}
.ws82{word-spacing:3.150080pt;}
.ws10e{word-spacing:3.152000pt;}
.wsaf{word-spacing:3.161600pt;}
.ws85{word-spacing:3.197440pt;}
.wsad{word-spacing:3.240320pt;}
.ws84{word-spacing:3.343360pt;}
.wsb1{word-spacing:3.360640pt;}
.ws59{word-spacing:3.360960pt;}
.ws5a{word-spacing:3.392000pt;}
.ws86{word-spacing:3.407147pt;}
.wse4{word-spacing:3.439040pt;}
.wsd0{word-spacing:3.440640pt;}
.ws10c{word-spacing:3.528320pt;}
.wse2{word-spacing:3.530240pt;}
.wsde{word-spacing:3.801600pt;}
.ws10a{word-spacing:3.804160pt;}
.ws57{word-spacing:3.837440pt;}
.wse3{word-spacing:3.860480pt;}
.ws5c{word-spacing:3.928320pt;}
.ws5b{word-spacing:3.944107pt;}
.wse1{word-spacing:3.958400pt;}
.ws5e{word-spacing:3.973760pt;}
.ws5d{word-spacing:4.000640pt;}
.ws56{word-spacing:4.034987pt;}
.ws45{word-spacing:4.049067pt;}
.ws10d{word-spacing:4.092800pt;}
.ws58{word-spacing:4.192640pt;}
.ws103{word-spacing:4.218880pt;}
.ws10b{word-spacing:4.329600pt;}
.wse5{word-spacing:4.402560pt;}
.wsea{word-spacing:5.156160pt;}
.wse9{word-spacing:5.411413pt;}
.wse8{word-spacing:5.671040pt;}
.wseb{word-spacing:5.680000pt;}
.ws98{word-spacing:5.838080pt;}
.ws99{word-spacing:5.959040pt;}
.ws93{word-spacing:6.070400pt;}
.wsf2{word-spacing:6.305280pt;}
.ws13{word-spacing:6.397440pt;}
.wsb{word-spacing:6.478080pt;}
.ws96{word-spacing:6.571520pt;}
.wse{word-spacing:6.639040pt;}
.ws12{word-spacing:6.760320pt;}
.ws94{word-spacing:6.794880pt;}
.ws97{word-spacing:6.800000pt;}
.wsbd{word-spacing:6.974720pt;}
.wsbb{word-spacing:6.997120pt;}
.wsc{word-spacing:7.037440pt;}
.ws92{word-spacing:7.080320pt;}
.ws10{word-spacing:7.153280pt;}
.wsb9{word-spacing:7.164160pt;}
.ws11{word-spacing:7.196800pt;}
.ws95{word-spacing:7.200640pt;}
.wsf{word-spacing:7.227520pt;}
.ws7a{word-spacing:7.239040pt;}
.wsc9{word-spacing:7.268480pt;}
.wsd{word-spacing:7.286400pt;}
.wsbe{word-spacing:7.438080pt;}
.wsc6{word-spacing:7.440000pt;}
.wsbf{word-spacing:7.544320pt;}
.ws77{word-spacing:7.609600pt;}
.wsc0{word-spacing:7.641600pt;}
.ws7e{word-spacing:7.677440pt;}
.ws75{word-spacing:7.738667pt;}
.ws76{word-spacing:7.798400pt;}
.ws7b{word-spacing:7.799040pt;}
.ws81{word-spacing:7.799467pt;}
.ws7f{word-spacing:7.800960pt;}
.ws78{word-spacing:7.879040pt;}
.wsc2{word-spacing:7.919040pt;}
.ws7d{word-spacing:7.932160pt;}
.ws7c{word-spacing:8.041813pt;}
.wsc4{word-spacing:8.317440pt;}
.ws79{word-spacing:8.365440pt;}
.ws80{word-spacing:8.480640pt;}
.wsc3{word-spacing:8.483200pt;}
.wsc1{word-spacing:8.586880pt;}
.wsbc{word-spacing:8.594133pt;}
.wsc7{word-spacing:8.609920pt;}
.wsc5{word-spacing:8.819200pt;}
.wsc8{word-spacing:9.120640pt;}
.wsd5{word-spacing:11.598080pt;}
.wsd7{word-spacing:12.220800pt;}
.ws8b{word-spacing:12.426880pt;}
.ws8c{word-spacing:12.505707pt;}
.ws88{word-spacing:12.599680pt;}
.wsd6{word-spacing:12.680747pt;}
.ws8d{word-spacing:12.846080pt;}
.ws89{word-spacing:13.396800pt;}
.wsd4{word-spacing:16.718080pt;}
.wsd3{word-spacing:17.277440pt;}
.ws64{word-spacing:17.280000pt;}
.wsd2{word-spacing:17.421440pt;}
.ws63{word-spacing:18.557440pt;}
.wsfd{word-spacing:18.688000pt;}
.ws61{word-spacing:18.799040pt;}
.ws5f{word-spacing:18.865920pt;}
.wsba{word-spacing:19.116800pt;}
.ws60{word-spacing:19.197440pt;}
.ws66{word-spacing:19.407360pt;}
.ws65{word-spacing:19.706667pt;}
.ws62{word-spacing:19.706880pt;}
.wsfc{word-spacing:19.754667pt;}
.ws3f{word-spacing:21.120000pt;}
.ws39{word-spacing:21.600000pt;}
.ws40{word-spacing:22.000000pt;}
.ws3a{word-spacing:22.080000pt;}
.ws3c{word-spacing:22.240000pt;}
.ws3b{word-spacing:22.320000pt;}
.ws3e{word-spacing:22.560000pt;}
.ws3d{word-spacing:23.466667pt;}
.ws114{word-spacing:24.302720pt;}
.ws115{word-spacing:25.176107pt;}
.ws110{word-spacing:28.845867pt;}
.ws111{word-spacing:29.473280pt;}
.ws112{word-spacing:30.010880pt;}
.ws10f{word-spacing:30.054400pt;}
.ws113{word-spacing:30.101440pt;}
.wsfe{word-spacing:39.388800pt;}
.wscf{word-spacing:41.132587pt;}
.wsef{word-spacing:41.373440pt;}
.wsce{word-spacing:41.712000pt;}
.wscd{word-spacing:41.824000pt;}
.wscc{word-spacing:42.096000pt;}
.ws102{word-spacing:117.358080pt;}
.ws101{word-spacing:117.528960pt;}
.ws104{word-spacing:145.280000pt;}
.ws22{word-spacing:1430.562133pt;}
._7{margin-left:-9.476693pt;}
._1a{margin-left:-8.012160pt;}
._19{margin-left:-5.746048pt;}
._c{margin-left:-4.480000pt;}
._2{margin-left:-2.766976pt;}
._0{margin-left:-1.089024pt;}
._1{width:1.280000pt;}
._3{width:2.680448pt;}
._b{width:4.365824pt;}
._1b{width:10.624000pt;}
._10{width:11.781120pt;}
._4{width:12.678784pt;}
._f{width:14.073643pt;}
._11{width:15.446912pt;}
._15{width:16.528384pt;}
._d{width:17.698048pt;}
._5{width:18.830976pt;}
._12{width:20.061653pt;}
._13{width:21.353344pt;}
._8{width:23.392000pt;}
._9{width:24.368000pt;}
._6{width:25.507840pt;}
._14{width:29.718144pt;}
._e{width:31.156395pt;}
._a{width:45.003691pt;}
._16{width:57.224491pt;}
._17{width:71.324757pt;}
._18{width:80.964480pt;}
.fs3{font-size:42.880000pt;}
.fs9{font-size:43.008000pt;}
.fs2{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs8{font-size:53.248000pt;}
.fs1{font-size:64.000000pt;}
.fsa{font-size:64.128000pt;}
.fs5{font-size:74.880000pt;}
.fsb{font-size:75.008000pt;}
.fs6{font-size:80.000000pt;}
.fs4{font-size:85.120000pt;}
.fs0{font-size:363.008000pt;}
.y0{bottom:0.000000pt;}
.y114{bottom:0.383987pt;}
.ydc{bottom:4.384000pt;}
.y109{bottom:8.096000pt;}
.y102{bottom:8.704000pt;}
.y5b{bottom:10.848000pt;}
.y7d{bottom:13.152000pt;}
.yc6{bottom:13.696000pt;}
.y113{bottom:14.784000pt;}
.y1d{bottom:17.344000pt;}
.ydb{bottom:20.384000pt;}
.y12c{bottom:22.432000pt;}
.y108{bottom:22.496000pt;}
.y5a{bottom:23.648000pt;}
.y66{bottom:25.280000pt;}
.y112{bottom:29.184000pt;}
.yc5{bottom:29.696000pt;}
.y11f{bottom:29.760000pt;}
.y125{bottom:32.160000pt;}
.y96{bottom:34.048000pt;}
.y59{bottom:36.448000pt;}
.y107{bottom:36.928000pt;}
.yee{bottom:38.912000pt;}
.yda{bottom:39.616000pt;}
.y65{bottom:39.712000pt;}
.yb1{bottom:40.032000pt;}
.y12b{bottom:41.632000pt;}
.y111{bottom:43.584000pt;}
.yc4{bottom:45.696000pt;}
.y1c{bottom:47.104000pt;}
.y95{bottom:50.048000pt;}
.yd2{bottom:50.720000pt;}
.y106{bottom:51.328000pt;}
.y58{bottom:51.808000pt;}
.y64{bottom:54.112000pt;}
.y3{bottom:54.144000pt;}
.yd9{bottom:55.616000pt;}
.yb0{bottom:56.032000pt;}
.yf9{bottom:56.704000pt;}
.y110{bottom:57.984000pt;}
.yed{bottom:58.112000pt;}
.y1b{bottom:59.904000pt;}
.y12a{bottom:60.832000pt;}
.y133{bottom:61.696000pt;}
.y57{bottom:64.608000pt;}
.y124{bottom:65.760000pt;}
.yd1{bottom:66.720000pt;}
.y63{bottom:68.512000pt;}
.yc3{bottom:69.984000pt;}
.y20{bottom:70.592000pt;}
.yaf{bottom:72.032000pt;}
.yf8{bottom:72.704000pt;}
.y1a{bottom:72.736000pt;}
.yd8{bottom:74.816000pt;}
.y56{bottom:77.408000pt;}
.y132{bottom:77.728000pt;}
.y74{bottom:80.896000pt;}
.yec{bottom:81.184000pt;}
.y62{bottom:82.912000pt;}
.y129{bottom:83.872000pt;}
.y19{bottom:85.536000pt;}
.y88{bottom:87.616000pt;}
.yae{bottom:88.064000pt;}
.y101{bottom:88.800000pt;}
.yd0{bottom:90.720000pt;}
.y55{bottom:92.800000pt;}
.y131{bottom:93.728000pt;}
.yd7{bottom:94.016000pt;}
.y1f{bottom:96.224000pt;}
.y73{bottom:96.896000pt;}
.y87{bottom:100.416000pt;}
.y18{bottom:100.896000pt;}
.yad{bottom:104.064000pt;}
.yeb{bottom:104.224000pt;}
.ycf{bottom:106.720000pt;}
.y128{bottom:106.944000pt;}
.y100{bottom:108.000000pt;}
.y54{bottom:108.160000pt;}
.y130{bottom:109.728000pt;}
.y72{bottom:112.896000pt;}
.y86{bottom:113.216000pt;}
.y17{bottom:113.696000pt;}
.y5d{bottom:116.512000pt;}
.yac{bottom:120.064000pt;}
.y53{bottom:120.960000pt;}
.yea{bottom:123.424000pt;}
.yf7{bottom:124.736000pt;}
.ybe{bottom:125.504000pt;}
.y12f{bottom:125.728000pt;}
.y85{bottom:126.016000pt;}
.y16{bottom:126.496000pt;}
.yb9{bottom:127.296000pt;}
.y71{bottom:128.896000pt;}
.y127{bottom:129.984000pt;}
.y9b{bottom:131.552000pt;}
.y52{bottom:133.760000pt;}
.yf3{bottom:134.146667pt;}
.yab{bottom:136.066667pt;}
.y84{bottom:138.813333pt;}
.yf6{bottom:140.733333pt;}
.y15{bottom:141.853333pt;}
.ybd{bottom:144.706667pt;}
.y70{bottom:144.893333pt;}
.ye9{bottom:146.466667pt;}
.yb8{bottom:146.493333pt;}
.y51{bottom:146.560000pt;}
.y9a{bottom:147.586667pt;}
.y83{bottom:151.653333pt;}
.y126{bottom:153.026667pt;}
.yf2{bottom:153.346667pt;}
.yaa{bottom:160.066667pt;}
.y6f{bottom:160.893333pt;}
.y50{bottom:161.920000pt;}
.yff{bottom:162.746667pt;}
.y99{bottom:163.586667pt;}
.y61{bottom:163.906667pt;}
.yc0{bottom:164.480000pt;}
.y118{bottom:165.533333pt;}
.y10f{bottom:168.346667pt;}
.y3e{bottom:169.026667pt;}
.ye8{bottom:169.506667pt;}
.y14{bottom:172.613333pt;}
.ya9{bottom:176.093333pt;}
.y6e{bottom:176.933333pt;}
.y4f{bottom:177.280000pt;}
.y117{bottom:181.413333pt;}
.y10e{bottom:182.746667pt;}
.y60{bottom:183.133333pt;}
.ybf{bottom:183.680000pt;}
.y2{bottom:184.773333pt;}
.y13{bottom:185.413333pt;}
.ycc{bottom:187.360000pt;}
.ye7{bottom:188.733333pt;}
.ya8{bottom:192.093333pt;}
.y4e{bottom:192.666667pt;}
.y6d{bottom:192.933333pt;}
.y116{bottom:195.813333pt;}
.y2c{bottom:196.773333pt;}
.y10d{bottom:197.146667pt;}
.y12{bottom:198.213333pt;}
.y5f{bottom:202.333333pt;}
.ye6{bottom:207.933333pt;}
.y4d{bottom:208.026667pt;}
.ya7{bottom:208.093333pt;}
.y6c{bottom:208.933333pt;}
.y115{bottom:210.213333pt;}
.y38{bottom:210.373333pt;}
.y10c{bottom:211.586667pt;}
.y2b{bottom:212.773333pt;}
.y11{bottom:213.573333pt;}
.y31{bottom:220.413333pt;}
.y4c{bottom:220.826667pt;}
.y5e{bottom:221.533333pt;}
.ya6{bottom:224.093333pt;}
.y10b{bottom:225.986667pt;}
.y10{bottom:226.373333pt;}
.y2a{bottom:228.773333pt;}
.y91{bottom:229.053333pt;}
.ye5{bottom:230.973333pt;}
.y4b{bottom:236.186667pt;}
.y30{bottom:236.453333pt;}
.y7c{bottom:238.880000pt;}
.ya5{bottom:240.093333pt;}
.y10a{bottom:240.386667pt;}
.yf{bottom:241.733333pt;}
.y29{bottom:244.773333pt;}
.y11c{bottom:244.933333pt;}
.yf5{bottom:245.760000pt;}
.y4a{bottom:248.986667pt;}
.y123{bottom:249.146667pt;}
.y2f{bottom:252.453333pt;}
.yc8{bottom:253.440000pt;}
.ye4{bottom:254.013333pt;}
.ya4{bottom:256.093333pt;}
.ye{bottom:257.093333pt;}
.y7b{bottom:258.080000pt;}
.y28{bottom:260.773333pt;}
.y11b{bottom:260.933333pt;}
.yf4{bottom:261.760000pt;}
.y49{bottom:261.786667pt;}
.yf0{bottom:266.720000pt;}
.y2e{bottom:268.453333pt;}
.yc7{bottom:269.440000pt;}
.yd{bottom:269.920000pt;}
.ye3{bottom:273.213333pt;}
.y48{bottom:274.586667pt;}
.y27{bottom:276.773333pt;}
.y11a{bottom:276.960000pt;}
.y7a{bottom:277.280000pt;}
.y82{bottom:278.053333pt;}
.ya3{bottom:280.133333pt;}
.y98{bottom:283.613333pt;}
.y2d{bottom:284.453333pt;}
.yc{bottom:285.280000pt;}
.y47{bottom:289.986667pt;}
.y1{bottom:293.600000pt;}
.ya2{bottom:296.133333pt;}
.ye2{bottom:296.293333pt;}
.y79{bottom:296.480000pt;}
.y97{bottom:299.613333pt;}
.yb{bottom:300.640000pt;}
.y3d{bottom:304.226667pt;}
.y46{bottom:305.346667pt;}
.y9d{bottom:305.786667pt;}
.yfe{bottom:306.466667pt;}
.yb7{bottom:310.880000pt;}
.ya1{bottom:312.133333pt;}
.ya{bottom:313.440000pt;}
.yc2{bottom:314.786667pt;}
.ye1{bottom:315.493333pt;}
.y78{bottom:315.706667pt;}
.y45{bottom:318.146667pt;}
.y9c{bottom:321.786667pt;}
.y80{bottom:324.933333pt;}
.y37{bottom:325.466667pt;}
.y9{bottom:326.240000pt;}
.yb6{bottom:326.880000pt;}
.ya0{bottom:328.133333pt;}
.y44{bottom:330.946667pt;}
.y94{bottom:333.920000pt;}
.ye0{bottom:334.693333pt;}
.y77{bottom:334.906667pt;}
.y7f{bottom:337.733333pt;}
.y119{bottom:339.840000pt;}
.y36{bottom:340.826667pt;}
.y8{bottom:341.600000pt;}
.y6b{bottom:341.826667pt;}
.yb5{bottom:342.906667pt;}
.y9f{bottom:344.133333pt;}
.y43{bottom:346.306667pt;}
.yfd{bottom:350.373333pt;}
.y7e{bottom:350.533333pt;}
.yc1{bottom:352.640000pt;}
.y35{bottom:353.626667pt;}
.ydf{bottom:353.893333pt;}
.y76{bottom:355.293333pt;}
.ybc{bottom:355.840000pt;}
.y93{bottom:356.320000pt;}
.y7{bottom:358.240000pt;}
.y12e{bottom:359.333333pt;}
.y9e{bottom:360.133333pt;}
.y6a{bottom:361.053333pt;}
.y42{bottom:361.666667pt;}
.y90{bottom:362.173333pt;}
.yb4{bottom:367.546667pt;}
.y136{bottom:368.093333pt;}
.y34{bottom:369.026667pt;}
.yfc{bottom:369.573333pt;}
.y122{bottom:370.720000pt;}
.yd6{bottom:372.733333pt;}
.y8f{bottom:374.973333pt;}
.ybb{bottom:375.040000pt;}
.y41{bottom:377.026667pt;}
.y75{bottom:377.693333pt;}
.y69{bottom:380.253333pt;}
.y33{bottom:384.386667pt;}
.y105{bottom:384.453333pt;}
.y25{bottom:385.306667pt;}
.y135{bottom:387.333333pt;}
.y8e{bottom:387.773333pt;}
.yd5{bottom:388.733333pt;}
.ycb{bottom:388.960000pt;}
.y92{bottom:389.920000pt;}
.y121{bottom:393.120000pt;}
.y11e{bottom:393.413333pt;}
.yf1{bottom:396.160000pt;}
.y6{bottom:397.626667pt;}
.y8d{bottom:400.573333pt;}
.yde{bottom:400.640000pt;}
.yd4{bottom:402.333333pt;}
.y40{bottom:402.946667pt;}
.yfb{bottom:403.653333pt;}
.y67{bottom:405.146667pt;}
.yb3{bottom:405.506667pt;}
.yca{bottom:406.240000pt;}
.y12d{bottom:408.133333pt;}
.y1e{bottom:408.413333pt;}
.y24{bottom:409.306667pt;}
.y81{bottom:410.426667pt;}
.y104{bottom:411.333333pt;}
.y134{bottom:411.493333pt;}
.y5{bottom:412.026667pt;}
.y68{bottom:412.800000pt;}
.y8c{bottom:413.373333pt;}
.yef{bottom:414.213333pt;}
.y21{bottom:415.493333pt;}
.yba{bottom:415.520000pt;}
.y120{bottom:415.546667pt;}
.y11d{bottom:415.813333pt;}
.y22{bottom:415.906667pt;}
.yd3{bottom:417.213333pt;}
.y5c{bottom:418.973333pt;}
.ydd{bottom:423.040000pt;}
.y8b{bottom:426.173333pt;}
.y4{bottom:427.386667pt;}
.yb2{bottom:427.773333pt;}
.yc9{bottom:428.640000pt;}
.y26{bottom:429.213333pt;}
.yfa{bottom:430.533333pt;}
.y3f{bottom:431.773333pt;}
.y23{bottom:433.306667pt;}
.y32{bottom:434.333333pt;}
.y103{bottom:438.213333pt;}
.y8a{bottom:438.973333pt;}
.y3c{bottom:441.666667pt;}
.yce{bottom:446.173333pt;}
.y89{bottom:452.133333pt;}
.y3b{bottom:460.866667pt;}
.ycd{bottom:462.173333pt;}
.y3a{bottom:480.093333pt;}
.y39{bottom:499.293333pt;}
.h5{height:44.722500pt;}
.hc{height:44.856000pt;}
.hf{height:48.062188pt;}
.h10{height:48.178000pt;}
.h4{height:50.062500pt;}
.h12{height:51.031250pt;}
.h13{height:51.133312pt;}
.ha{height:55.402500pt;}
.hb{height:55.536000pt;}
.h14{height:58.022062pt;}
.h3{height:66.750000pt;}
.hd{height:66.883500pt;}
.h11{height:67.871563pt;}
.h9{height:78.097500pt;}
.he{height:78.231000pt;}
.h8{height:83.437500pt;}
.h6{height:88.777500pt;}
.h7{height:191.505500pt;}
.h2{height:378.606000pt;}
.h0{height:529.120000pt;}
.h1{height:529.333333pt;}
.w1{width:718.000000pt;}
.w2{width:718.239989pt;}
.w0{width:718.240000pt;}
.x0{left:0.000000pt;}
.x32{left:1.887989pt;}
.x31{left:4.447989pt;}
.x5{left:9.599989pt;}
.x23{left:13.215989pt;}
.x30{left:14.719989pt;}
.x8{left:20.927989pt;}
.x14{left:23.615989pt;}
.x4{left:28.447989pt;}
.xd{left:31.103989pt;}
.x2c{left:32.927989pt;}
.x6{left:53.055989pt;}
.x3a{left:61.599989pt;}
.x7{left:64.255989pt;}
.x34{left:81.439989pt;}
.x2a{left:103.903989pt;}
.x2e{left:134.239989pt;}
.x33{left:141.759989pt;}
.x2{left:149.919989pt;}
.x20{left:151.133323pt;}
.x15{left:158.626656pt;}
.x1{left:170.239989pt;}
.x39{left:172.093323pt;}
.x1e{left:203.426656pt;}
.x1b{left:209.986656pt;}
.x3{left:212.959989pt;}
.xa{left:217.466656pt;}
.x1c{left:218.653323pt;}
.xc{left:224.093323pt;}
.x19{left:240.159989pt;}
.x37{left:247.813323pt;}
.x1d{left:262.813323pt;}
.x38{left:277.986656pt;}
.x24{left:293.666656pt;}
.x35{left:300.666656pt;}
.x2d{left:308.453323pt;}
.x12{left:331.173323pt;}
.x1a{left:346.013323pt;}
.x27{left:353.666656pt;}
.x21{left:361.186656pt;}
.x18{left:376.253323pt;}
.x25{left:391.359989pt;}
.x16{left:413.853323pt;}
.x17{left:421.373323pt;}
.x1f{left:426.813323pt;}
.x22{left:428.639989pt;}
.x29{left:436.866656pt;}
.xe{left:443.333323pt;}
.x2b{left:451.813323pt;}
.x10{left:458.853323pt;}
.x9{left:466.373323pt;}
.xf{left:468.933323pt;}
.x13{left:481.373323pt;}
.x11{left:483.679989pt;}
.x28{left:489.693323pt;}
.x36{left:512.386656pt;}
.x2f{left:538.693323pt;}
.x26{left:586.399989pt;}
.xb{left:623.906656pt;}
}




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