
    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_5254ccbf824b1ec665361342.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_2ba8febbfe713d31d200b1ed.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959961;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_59b3c3d9786aefedaa4683be.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_49612a8c52aeb11c3cbf26c7.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_cbf26e65b8f093d3b6728437.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.952000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7c001c58d070701a154147b2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.952000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_0b8a7533456a32f0ec932c95.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.959000;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_bab187d8f3ff95c89656c3a9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.888000;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_6e7c8f8b79072c14fdc2522c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.710000;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_7753ec45aba1ffbbb6a44f38.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.952000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c0aaff6e73a4dae6d569ba96.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_18f8f9b5e9063cc1458e3406.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.565000;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_6c93447fe7481c5fcb29f3d5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.454000;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_3061eeede287750db0c50bdf.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;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_b28d17bc6a6fb01937a7e665.woff2')format("woff");}.fff{font-family:fff;line-height:0.658000;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_e4437147363493349956c437.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.497000;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_19d1ea2ee025baf8547f7e8e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.656000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_0103a9bcd47bc2175858677a.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_bd2a449eb2c18284d9115896.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.523000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_6730ea10eced233142412a41.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.577000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_3d75dc03cb964d97e02ed54b.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.046000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-38.400000px;}
.v4{vertical-align:-23.016000px;}
.v6{vertical-align:-20.922000px;}
.v2{vertical-align:-15.960000px;}
.v8{vertical-align:-9.852000px;}
.v7{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:13.890000px;}
.va{vertical-align:16.938000px;}
.v9{vertical-align:21.774000px;}
.v3{vertical-align:23.016000px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000144px;}
.ls3b{letter-spacing:0.000167px;}
.ls1f{letter-spacing:0.000222px;}
.ls29{letter-spacing:0.000236px;}
.ls28{letter-spacing:0.000259px;}
.ls27{letter-spacing:0.000275px;}
.ls7{letter-spacing:0.000288px;}
.ls1e{letter-spacing:0.000300px;}
.ls48{letter-spacing:0.000329px;}
.ls34{letter-spacing:0.000357px;}
.ls20{letter-spacing:0.000362px;}
.ls50{letter-spacing:0.000380px;}
.ls3e{letter-spacing:0.000387px;}
.ls15{letter-spacing:0.000445px;}
.ls57{letter-spacing:0.000467px;}
.ls37{letter-spacing:0.000494px;}
.ls9{letter-spacing:0.000600px;}
.ls17{letter-spacing:0.001572px;}
.lsf{letter-spacing:0.004112px;}
.ls2c{letter-spacing:0.006357px;}
.ls21{letter-spacing:0.006361px;}
.ls0{letter-spacing:0.019200px;}
.ls33{letter-spacing:0.222384px;}
.ls2d{letter-spacing:0.840275px;}
.ls2f{letter-spacing:1.080259px;}
.ls32{letter-spacing:1.500236px;}
.ls2a{letter-spacing:1.668282px;}
.ls5{letter-spacing:1.799964px;}
.ls4{letter-spacing:1.949961px;}
.ls23{letter-spacing:2.985120px;}
.ls31{letter-spacing:2.985983px;}
.ls38{letter-spacing:2.987751px;}
.lse{letter-spacing:2.988096px;}
.ls3a{letter-spacing:2.991120px;}
.ls14{letter-spacing:2.992608px;}
.ls60{letter-spacing:2.994096px;}
.ls3{letter-spacing:3.119961px;}
.ls6{letter-spacing:3.899961px;}
.ls46{letter-spacing:8.495296px;}
.ls43{letter-spacing:8.496288px;}
.ls44{letter-spacing:8.501296px;}
.ls45{letter-spacing:8.502365px;}
.ls3c{letter-spacing:9.996288px;}
.ls4d{letter-spacing:9.996467px;}
.ls4c{letter-spacing:10.002288px;}
.ls4e{letter-spacing:10.002362px;}
.ls26{letter-spacing:10.002467px;}
.ls61{letter-spacing:10.524294px;}
.ls5e{letter-spacing:11.034352px;}
.ls5b{letter-spacing:11.040262px;}
.ls2{letter-spacing:11.040294px;}
.ls59{letter-spacing:11.040332px;}
.ls5a{letter-spacing:11.040352px;}
.ls47{letter-spacing:11.040362px;}
.ls3f{letter-spacing:11.040365px;}
.ls5c{letter-spacing:11.040395px;}
.ls5f{letter-spacing:11.040437px;}
.ls42{letter-spacing:11.333296px;}
.ls41{letter-spacing:11.334380px;}
.ls1d{letter-spacing:12.416880px;}
.ls1a{letter-spacing:12.420288px;}
.ls12{letter-spacing:13.194144px;}
.lsa{letter-spacing:13.200600px;}
.ls55{letter-spacing:13.314144px;}
.ls4f{letter-spacing:13.332365px;}
.ls4a{letter-spacing:13.332380px;}
.ls4b{letter-spacing:13.332467px;}
.ls62{letter-spacing:13.440096px;}
.ls63{letter-spacing:13.650096px;}
.ls64{letter-spacing:13.656096px;}
.ls11{letter-spacing:13.794144px;}
.ls10{letter-spacing:13.800144px;}
.ls3d{letter-spacing:13.800288px;}
.ls52{letter-spacing:13.800365px;}
.ls49{letter-spacing:13.800380px;}
.ls58{letter-spacing:13.800600px;}
.ls5d{letter-spacing:13.896096px;}
.ls40{letter-spacing:13.920362px;}
.ls2b{letter-spacing:14.022384px;}
.ls25{letter-spacing:14.028096px;}
.ls56{letter-spacing:14.034096px;}
.ls22{letter-spacing:15.921120px;}
.ls53{letter-spacing:16.125120px;}
.ls54{letter-spacing:16.305120px;}
.ls35{letter-spacing:16.329120px;}
.ls39{letter-spacing:16.659120px;}
.ls30{letter-spacing:16.783398px;}
.ls36{letter-spacing:16.785120px;}
.ls2e{letter-spacing:16.789398px;}
.ls24{letter-spacing:16.791120px;}
.ls51{letter-spacing:17.400362px;}
.lsd{letter-spacing:24.819983px;}
.ls19{letter-spacing:24.840288px;}
.lsb{letter-spacing:26.688288px;}
.lsc{letter-spacing:29.676288px;}
.ls1c{letter-spacing:231.196608px;}
.ls13{letter-spacing:253.984608px;}
.ls18{letter-spacing:255.928608px;}
.ls16{letter-spacing:272.908608px;}
.ls1b{letter-spacing:278.716608px;}
.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;}
}
.ws5c{word-spacing:-55.007542px;}
.ws15{word-spacing:-50.423542px;}
.ws5d{word-spacing:-40.679661px;}
.ws1c{word-spacing:-40.607662px;}
.ws12{word-spacing:-36.671542px;}
.ws63{word-spacing:-34.847564px;}
.ws45{word-spacing:-33.839662px;}
.ws1b{word-spacing:-31.679712px;}
.ws22{word-spacing:-28.799712px;}
.ws25{word-spacing:-27.119661px;}
.ws13{word-spacing:-27.116941px;}
.ws11{word-spacing:-27.069733px;}
.ws4{word-spacing:-26.999700px;}
.ws27{word-spacing:-25.919712px;}
.ws73{word-spacing:-25.636954px;}
.ws79{word-spacing:-25.636660px;}
.ws61{word-spacing:-25.630954px;}
.ws69{word-spacing:-25.630660px;}
.wse{word-spacing:-25.559744px;}
.ws86{word-spacing:-24.369120px;}
.ws6e{word-spacing:-24.239697px;}
.ws72{word-spacing:-23.999700px;}
.ws7c{word-spacing:-23.903701px;}
.ws65{word-spacing:-23.855702px;}
.ws81{word-spacing:-23.853599px;}
.ws84{word-spacing:-23.853230px;}
.ws66{word-spacing:-23.853177px;}
.ws1{word-spacing:-23.822137px;}
.ws64{word-spacing:-23.812554px;}
.ws8a{word-spacing:-23.812024px;}
.ws6f{word-spacing:-23.810677px;}
.ws75{word-spacing:-23.810668px;}
.ws77{word-spacing:-23.810475px;}
.ws24{word-spacing:-23.807702px;}
.ws62{word-spacing:-23.763821px;}
.ws7f{word-spacing:-23.763346px;}
.ws88{word-spacing:-23.763320px;}
.ws7e{word-spacing:-23.762106px;}
.ws6c{word-spacing:-23.613895px;}
.ws68{word-spacing:-23.613202px;}
.ws70{word-spacing:-23.571202px;}
.ws3{word-spacing:-23.039712px;}
.ws54{word-spacing:-20.234880px;}
.ws4b{word-spacing:-18.803424px;}
.ws4a{word-spacing:-18.803136px;}
.ws5a{word-spacing:-18.797424px;}
.wsb{word-spacing:-18.599814px;}
.ws18{word-spacing:-17.225843px;}
.ws6{word-spacing:-16.949661px;}
.ws1a{word-spacing:-16.895846px;}
.ws9{word-spacing:-16.799664px;}
.ws17{word-spacing:-16.565849px;}
.ws20{word-spacing:-16.559834px;}
.ws16{word-spacing:-16.499850px;}
.ws19{word-spacing:-16.499136px;}
.ws40{word-spacing:-15.959840px;}
.ws37{word-spacing:-15.899841px;}
.ws1f{word-spacing:-15.779842px;}
.ws35{word-spacing:-15.719843px;}
.ws21{word-spacing:-15.659843px;}
.ws50{word-spacing:-15.599844px;}
.ws43{word-spacing:-15.539845px;}
.ws41{word-spacing:-15.479845px;}
.ws46{word-spacing:-15.419846px;}
.ws38{word-spacing:-15.359846px;}
.ws3b{word-spacing:-15.239848px;}
.ws44{word-spacing:-15.179848px;}
.ws3a{word-spacing:-15.119849px;}
.ws58{word-spacing:-15.062386px;}
.ws4e{word-spacing:-15.062347px;}
.ws5e{word-spacing:-15.061780px;}
.ws47{word-spacing:-15.061553px;}
.ws55{word-spacing:-15.061298px;}
.ws5f{word-spacing:-15.060683px;}
.ws1d{word-spacing:-15.059849px;}
.ws49{word-spacing:-15.059226px;}
.ws3f{word-spacing:-15.058312px;}
.ws3d{word-spacing:-15.058208px;}
.ws57{word-spacing:-15.057898px;}
.ws3c{word-spacing:-15.057478px;}
.ws36{word-spacing:-15.057475px;}
.ws59{word-spacing:-15.056099px;}
.ws60{word-spacing:-15.000711px;}
.ws1e{word-spacing:-14.999850px;}
.ws5b{word-spacing:-14.999136px;}
.ws3e{word-spacing:-14.998806px;}
.ws5{word-spacing:-14.879814px;}
.ws23{word-spacing:-13.967825px;}
.ws26{word-spacing:-13.553849px;}
.ws28{word-spacing:-13.499850px;}
.ws29{word-spacing:-13.499424px;}
.ws34{word-spacing:-13.499136px;}
.ws2c{word-spacing:-13.498992px;}
.ws82{word-spacing:-12.623842px;}
.ws89{word-spacing:-12.586517px;}
.ws85{word-spacing:-12.575843px;}
.ws4d{word-spacing:-12.431845px;}
.wsc{word-spacing:-12.419876px;}
.ws8c{word-spacing:-12.383845px;}
.wsd{word-spacing:-12.359876px;}
.ws8b{word-spacing:-12.335846px;}
.ws67{word-spacing:-12.239847px;}
.ws71{word-spacing:-12.191848px;}
.ws7a{word-spacing:-12.143848px;}
.ws7b{word-spacing:-12.095849px;}
.ws2{word-spacing:-12.047849px;}
.ws6d{word-spacing:-12.046058px;}
.ws6b{word-spacing:-12.045989px;}
.ws87{word-spacing:-12.044925px;}
.ws51{word-spacing:-12.043576px;}
.ws78{word-spacing:-12.003218px;}
.ws83{word-spacing:-12.002618px;}
.ws74{word-spacing:-12.002292px;}
.ws6a{word-spacing:-12.000812px;}
.ws80{word-spacing:-12.000182px;}
.ws10{word-spacing:-11.999850px;}
.ws14{word-spacing:-11.999568px;}
.ws7d{word-spacing:-11.998366px;}
.ws76{word-spacing:-11.955047px;}
.ws7{word-spacing:-10.240649px;}
.wsa{word-spacing:-10.199850px;}
.ws56{word-spacing:-7.244604px;}
.ws8{word-spacing:-5.639887px;}
.ws53{word-spacing:-3.484956px;}
.ws4f{word-spacing:-3.442896px;}
.ws52{word-spacing:-3.402936px;}
.ws4c{word-spacing:-2.160317px;}
.ws2f{word-spacing:-1.133987px;}
.ws48{word-spacing:-0.059999px;}
.ws2a{word-spacing:-0.053999px;}
.ws39{word-spacing:-0.047999px;}
.ws42{word-spacing:-0.041999px;}
.wsf{word-spacing:-0.035999px;}
.ws0{word-spacing:0.000000px;}
.ws31{word-spacing:207.960922px;}
.ws2e{word-spacing:256.488782px;}
.ws2d{word-spacing:328.362782px;}
.ws2b{word-spacing:363.404081px;}
.ws32{word-spacing:836.460782px;}
.ws33{word-spacing:879.090782px;}
.ws30{word-spacing:917.970782px;}
._25{margin-left:-9.719903px;}
._28{margin-left:-7.703928px;}
._8{margin-left:-6.299937px;}
._24{margin-left:-5.285943px;}
._4{margin-left:-4.211953px;}
._1{margin-left:-2.783965px;}
._5{margin-left:-1.007987px;}
._6{width:1.109978px;}
._3{width:2.783965px;}
._7{width:5.399940px;}
._23{width:9.425100px;}
._b{width:10.556175px;}
._9{width:11.987856px;}
._27{width:13.524638px;}
._0{width:14.558253px;}
._29{width:18.000732px;}
._14{width:24.781381px;}
._26{width:26.579734px;}
._c{width:191.234015px;}
._1e{width:215.393154px;}
._1f{width:220.827727px;}
._10{width:233.233529px;}
._22{width:247.393208px;}
._19{width:266.509391px;}
._1b{width:285.642154px;}
._1c{width:312.429552px;}
._e{width:313.634391px;}
._18{width:317.216656px;}
._17{width:330.876676px;}
._15{width:333.246842px;}
._d{width:340.994393px;}
._1a{width:343.136368px;}
._16{width:344.756350px;}
._13{width:351.401338px;}
._21{width:352.931593px;}
._20{width:365.186124px;}
._1d{width:367.851887px;}
._12{width:388.328704px;}
._11{width:393.158066px;}
._f{width:415.892673px;}
._2{width:1196.409461px;}
._a{width:1710.003461px;}
.fc5{color:rgb(167,208,57);}
.fc4{color:rgb(210,32,39);}
.fc3{color:rgb(47,122,181);}
.fc2{color:rgb(0,110,178);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:29.999400px;}
.fsf{font-size:33.724800px;}
.fsc{font-size:34.799400px;}
.fsd{font-size:35.999400px;}
.fse{font-size:37.799400px;}
.fs15{font-size:37.940400px;}
.fs9{font-size:40.799400px;}
.fs17{font-size:41.999400px;}
.fs5{font-size:42.000000px;}
.fs16{font-size:42.156000px;}
.fs11{font-size:46.371600px;}
.fs6{font-size:47.999400px;}
.fs3{font-size:48.000000px;}
.fs14{font-size:53.999400px;}
.fs0{font-size:54.000000px;}
.fsa{font-size:59.999400px;}
.fs12{font-size:65.699400px;}
.fs10{font-size:65.999400px;}
.fs13{font-size:71.999400px;}
.fs4{font-size:72.000000px;}
.fsb{font-size:75.881400px;}
.fs2{font-size:76.800000px;}
.fs1{font-size:96.000000px;}
.fs7{font-size:107.998800px;}
.y0{bottom:0.000000px;}
.yd3{bottom:39.301500px;}
.y87{bottom:39.391500px;}
.yc9{bottom:39.481500px;}
.yce{bottom:39.571500px;}
.y59{bottom:40.411500px;}
.y17{bottom:58.020000px;}
.y102{bottom:71.053500px;}
.y163{bottom:86.053500px;}
.y86{bottom:88.986000px;}
.y101{bottom:89.803500px;}
.y162{bottom:101.053500px;}
.y85{bottom:107.736000px;}
.y100{bottom:108.553500px;}
.yc8{bottom:110.925000px;}
.y161{bottom:116.053500px;}
.y58{bottom:120.748500px;}
.y84{bottom:126.486000px;}
.yff{bottom:127.303500px;}
.yc7{bottom:129.675000px;}
.y160{bottom:131.053500px;}
.y57{bottom:139.498500px;}
.y83{bottom:145.236000px;}
.yfe{bottom:146.053500px;}
.yc6{bottom:148.425000px;}
.y56{bottom:158.248500px;}
.y15f{bottom:161.053500px;}
.y82{bottom:163.986000px;}
.yfd{bottom:164.803500px;}
.yc5{bottom:167.175000px;}
.y15e{bottom:176.053500px;}
.y55{bottom:176.998500px;}
.y81{bottom:182.736000px;}
.y122{bottom:183.483000px;}
.yfc{bottom:183.553500px;}
.yc4{bottom:185.925000px;}
.y15d{bottom:191.053500px;}
.y54{bottom:195.748500px;}
.ya3{bottom:201.486000px;}
.yfb{bottom:202.303500px;}
.yc3{bottom:204.675000px;}
.y15c{bottom:206.053500px;}
.y53{bottom:214.498500px;}
.y80{bottom:220.165500px;}
.ya2{bottom:220.236000px;}
.y121{bottom:220.983000px;}
.yfa{bottom:221.053500px;}
.yc2{bottom:223.425000px;}
.y52{bottom:233.248500px;}
.y15b{bottom:236.053500px;}
.ya1{bottom:238.986000px;}
.y120{bottom:239.733000px;}
.yf9{bottom:239.803500px;}
.yc1{bottom:242.175000px;}
.y15a{bottom:251.053500px;}
.y51{bottom:251.998500px;}
.ya0{bottom:257.736000px;}
.y11f{bottom:258.483000px;}
.yf8{bottom:258.553500px;}
.y7f{bottom:259.140000px;}
.yc0{bottom:260.925000px;}
.y159{bottom:266.053500px;}
.y50{bottom:270.748500px;}
.y9f{bottom:276.486000px;}
.y11e{bottom:277.233000px;}
.yf7{bottom:277.303500px;}
.y7e{bottom:277.890000px;}
.ybf{bottom:279.675000px;}
.y158{bottom:281.053500px;}
.y4f{bottom:289.498500px;}
.y9e{bottom:295.236000px;}
.y11d{bottom:295.983000px;}
.yf6{bottom:296.053500px;}
.y7d{bottom:296.640000px;}
.ybe{bottom:298.425000px;}
.y4e{bottom:308.248500px;}
.yd2{bottom:310.003500px;}
.y157{bottom:311.053500px;}
.y9d{bottom:313.986000px;}
.y11c{bottom:314.733000px;}
.yf5{bottom:314.803500px;}
.y7c{bottom:315.390000px;}
.ybd{bottom:317.175000px;}
.yd1{bottom:323.503500px;}
.y156{bottom:326.053500px;}
.y4d{bottom:326.998500px;}
.y9c{bottom:332.736000px;}
.y11b{bottom:333.483000px;}
.yf4{bottom:333.553500px;}
.y7b{bottom:334.140000px;}
.ybc{bottom:335.925000px;}
.y155{bottom:341.053500px;}
.y4c{bottom:345.748500px;}
.y9b{bottom:351.486000px;}
.yf3{bottom:352.303500px;}
.y7a{bottom:352.890000px;}
.ybb{bottom:354.675000px;}
.y154{bottom:356.053500px;}
.y4b{bottom:364.498500px;}
.y9a{bottom:370.236000px;}
.y11a{bottom:370.912500px;}
.yf2{bottom:371.053500px;}
.y79{bottom:371.640000px;}
.yba{bottom:373.425000px;}
.y4a{bottom:383.248500px;}
.y153{bottom:386.053500px;}
.y99{bottom:388.986000px;}
.yf1{bottom:389.803500px;}
.y78{bottom:390.390000px;}
.yb9{bottom:392.175000px;}
.y152{bottom:401.052000px;}
.y98{bottom:407.736000px;}
.yf0{bottom:408.553500px;}
.y77{bottom:409.140000px;}
.yb8{bottom:410.925000px;}
.y119{bottom:415.536000px;}
.y151{bottom:416.052000px;}
.y49{bottom:420.678000px;}
.y97{bottom:426.486000px;}
.yef{bottom:427.303500px;}
.y76{bottom:427.890000px;}
.yb7{bottom:429.675000px;}
.y150{bottom:431.052000px;}
.y193{bottom:439.123500px;}
.y96{bottom:445.236000px;}
.y14f{bottom:446.052000px;}
.yee{bottom:446.053500px;}
.y75{bottom:446.640000px;}
.yb6{bottom:448.425000px;}
.y118{bottom:452.967000px;}
.y192{bottom:454.123500px;}
.y14e{bottom:461.052000px;}
.y95{bottom:463.986000px;}
.yed{bottom:464.803500px;}
.y74{bottom:465.390000px;}
.yb5{bottom:467.175000px;}
.y191{bottom:469.123500px;}
.y14d{bottom:476.052000px;}
.y94{bottom:482.736000px;}
.y48{bottom:483.483000px;}
.yec{bottom:483.553500px;}
.y190{bottom:484.123500px;}
.y73{bottom:484.140000px;}
.yb4{bottom:485.925000px;}
.y117{bottom:489.978000px;}
.y14c{bottom:491.052000px;}
.y18f{bottom:499.123500px;}
.y93{bottom:501.486000px;}
.yeb{bottom:502.303500px;}
.y72{bottom:502.890000px;}
.y47{bottom:503.733000px;}
.yb3{bottom:504.675000px;}
.y14b{bottom:506.052000px;}
.y116{bottom:508.728000px;}
.y18e{bottom:514.123500px;}
.y92{bottom:520.236000px;}
.y14a{bottom:521.052000px;}
.yea{bottom:521.053500px;}
.y71{bottom:521.640000px;}
.yb2{bottom:523.425000px;}
.y46{bottom:523.983000px;}
.y115{bottom:527.478000px;}
.y18d{bottom:529.123500px;}
.y149{bottom:536.052000px;}
.y91{bottom:538.986000px;}
.ye9{bottom:539.803500px;}
.y70{bottom:540.390000px;}
.yb1{bottom:542.175000px;}
.y18c{bottom:544.123500px;}
.y45{bottom:544.233000px;}
.y114{bottom:546.228000px;}
.y148{bottom:551.052000px;}
.y90{bottom:557.736000px;}
.ye8{bottom:558.553500px;}
.y18b{bottom:559.123500px;}
.y6f{bottom:559.140000px;}
.yb0{bottom:560.925000px;}
.y44{bottom:564.483000px;}
.y113{bottom:564.978000px;}
.y147{bottom:566.052000px;}
.y18a{bottom:574.123500px;}
.y8f{bottom:576.486000px;}
.ye7{bottom:577.303500px;}
.yaf{bottom:579.675000px;}
.y146{bottom:581.052000px;}
.y112{bottom:583.728000px;}
.y43{bottom:584.733000px;}
.y189{bottom:589.123500px;}
.yd8{bottom:589.783500px;}
.y8e{bottom:595.236000px;}
.y145{bottom:596.052000px;}
.ye6{bottom:596.053500px;}
.yae{bottom:598.425000px;}
.y111{bottom:602.478000px;}
.yd7{bottom:603.283500px;}
.y188{bottom:604.123500px;}
.y42{bottom:604.983000px;}
.y144{bottom:611.052000px;}
.y8d{bottom:613.986000px;}
.ye5{bottom:614.803500px;}
.yd6{bottom:616.783500px;}
.yad{bottom:617.175000px;}
.y187{bottom:619.123500px;}
.y6e{bottom:619.986000px;}
.y110{bottom:621.228000px;}
.y41{bottom:625.233000px;}
.y143{bottom:626.052000px;}
.yd5{bottom:630.283500px;}
.y8c{bottom:632.736000px;}
.ye4{bottom:633.553500px;}
.y186{bottom:634.123500px;}
.yac{bottom:635.925000px;}
.y6d{bottom:636.486000px;}
.y10f{bottom:639.978000px;}
.y142{bottom:641.052000px;}
.y40{bottom:645.483000px;}
.y185{bottom:649.123500px;}
.y8b{bottom:651.486000px;}
.ye3{bottom:652.303500px;}
.y6c{bottom:652.986000px;}
.yab{bottom:654.675000px;}
.y141{bottom:656.052000px;}
.y10e{bottom:658.728000px;}
.y184{bottom:664.123500px;}
.y3f{bottom:665.733000px;}
.y6b{bottom:669.486000px;}
.ycd{bottom:670.384500px;}
.y140{bottom:671.052000px;}
.ye2{bottom:671.053500px;}
.yaa{bottom:673.425000px;}
.y10d{bottom:677.478000px;}
.y183{bottom:679.123500px;}
.y3e{bottom:685.983000px;}
.y6a{bottom:685.986000px;}
.y13f{bottom:686.052000px;}
.ye1{bottom:689.803500px;}
.ya9{bottom:692.175000px;}
.y182{bottom:694.123500px;}
.y10c{bottom:696.228000px;}
.y13e{bottom:701.052000px;}
.y69{bottom:702.486000px;}
.y3d{bottom:706.233000px;}
.ycc{bottom:707.815500px;}
.ye0{bottom:708.553500px;}
.y181{bottom:709.123500px;}
.ya8{bottom:710.925000px;}
.y13d{bottom:716.052000px;}
.y68{bottom:718.986000px;}
.y2d{bottom:721.057500px;}
.y8a{bottom:723.582000px;}
.y180{bottom:724.123500px;}
.y3c{bottom:726.483000px;}
.ydf{bottom:727.303500px;}
.ya7{bottom:729.675000px;}
.y13c{bottom:731.052000px;}
.y2c{bottom:733.057500px;}
.y10b{bottom:733.657500px;}
.y67{bottom:735.486000px;}
.y89{bottom:737.082000px;}
.y17f{bottom:739.123500px;}
.y2b{bottom:745.057500px;}
.y13b{bottom:746.052000px;}
.yde{bottom:746.053500px;}
.y3b{bottom:746.733000px;}
.y88{bottom:750.582000px;}
.y66{bottom:751.986000px;}
.y17e{bottom:754.123500px;}
.y2a{bottom:757.057500px;}
.y13a{bottom:761.052000px;}
.ydd{bottom:764.803500px;}
.y65{bottom:768.486000px;}
.y29{bottom:769.057500px;}
.y17d{bottom:769.123500px;}
.y10a{bottom:770.670000px;}
.y139{bottom:776.052000px;}
.y28{bottom:781.057500px;}
.ycb{bottom:782.184000px;}
.ydc{bottom:783.702000px;}
.y17c{bottom:784.123500px;}
.y64{bottom:784.986000px;}
.y109{bottom:789.420000px;}
.y138{bottom:791.052000px;}
.yca{bottom:795.684000px;}
.y27{bottom:799.035000px;}
.y17b{bottom:799.123500px;}
.y3a{bottom:801.033000px;}
.y63{bottom:801.486000px;}
.y137{bottom:806.052000px;}
.y108{bottom:808.170000px;}
.ya6{bottom:810.711000px;}
.y26{bottom:811.035000px;}
.y17a{bottom:814.123500px;}
.y62{bottom:817.986000px;}
.y136{bottom:821.052000px;}
.y39{bottom:821.998500px;}
.y25{bottom:823.035000px;}
.ya5{bottom:824.211000px;}
.y107{bottom:826.920000px;}
.y179{bottom:829.123500px;}
.y61{bottom:834.486000px;}
.y24{bottom:835.035000px;}
.y135{bottom:836.052000px;}
.ya4{bottom:837.711000px;}
.y178{bottom:844.123500px;}
.y106{bottom:845.670000px;}
.y23{bottom:847.035000px;}
.y38{bottom:847.620000px;}
.yd0{bottom:850.624500px;}
.y60{bottom:850.986000px;}
.y134{bottom:851.052000px;}
.y177{bottom:859.123500px;}
.ydb{bottom:860.424000px;}
.y16{bottom:862.260000px;}
.ycf{bottom:864.124500px;}
.y133{bottom:866.052000px;}
.y5f{bottom:867.486000px;}
.yda{bottom:873.924000px;}
.y176{bottom:874.123500px;}
.y15{bottom:874.260000px;}
.y37{bottom:874.734000px;}
.y132{bottom:881.052000px;}
.y22{bottom:882.598500px;}
.y14{bottom:886.260000px;}
.yd9{bottom:887.424000px;}
.y175{bottom:889.123500px;}
.y36{bottom:889.734000px;}
.y6{bottom:894.705000px;}
.y21{bottom:894.922500px;}
.y131{bottom:896.052000px;}
.y5e{bottom:896.913000px;}
.y13{bottom:898.260000px;}
.y35{bottom:903.987000px;}
.y174{bottom:904.123500px;}
.yd4{bottom:907.657500px;}
.y105{bottom:908.478000px;}
.y12{bottom:910.260000px;}
.y130{bottom:911.052000px;}
.y20{bottom:914.422500px;}
.y34{bottom:918.987000px;}
.y173{bottom:919.123500px;}
.y104{bottom:921.978000px;}
.y5d{bottom:922.275000px;}
.y5{bottom:923.805000px;}
.y12f{bottom:926.052000px;}
.y1f{bottom:926.287500px;}
.y11{bottom:933.510000px;}
.y172{bottom:934.123500px;}
.y103{bottom:935.478000px;}
.y33{bottom:936.846000px;}
.y12e{bottom:941.052000px;}
.y10{bottom:945.510000px;}
.y1e{bottom:945.787500px;}
.y171{bottom:949.123500px;}
.y32{bottom:954.846000px;}
.y12d{bottom:956.052000px;}
.yf{bottom:957.510000px;}
.y1d{bottom:957.652500px;}
.y170{bottom:964.123500px;}
.y4{bottom:964.155000px;}
.ye{bottom:969.510000px;}
.y12c{bottom:971.052000px;}
.y31{bottom:972.846000px;}
.y1c{bottom:977.152500px;}
.y16f{bottom:979.123500px;}
.y5c{bottom:979.497000px;}
.yd{bottom:981.510000px;}
.y12b{bottom:986.052000px;}
.y1b{bottom:988.953000px;}
.y5b{bottom:992.997000px;}
.y16e{bottom:994.123500px;}
.y12a{bottom:1001.052000px;}
.yc{bottom:1004.760000px;}
.y16d{bottom:1009.123500px;}
.y30{bottom:1009.611000px;}
.y3{bottom:1011.165000px;}
.y129{bottom:1016.052000px;}
.yb{bottom:1016.760000px;}
.y16c{bottom:1024.123500px;}
.y1a{bottom:1024.785000px;}
.ya{bottom:1028.760000px;}
.y128{bottom:1031.052000px;}
.y16b{bottom:1039.123500px;}
.y2{bottom:1039.965000px;}
.y9{bottom:1040.760000px;}
.y2f{bottom:1041.111000px;}
.y127{bottom:1046.052000px;}
.y8{bottom:1052.760000px;}
.y16a{bottom:1054.123500px;}
.y126{bottom:1061.052000px;}
.y169{bottom:1069.123500px;}
.y7{bottom:1078.260000px;}
.y1{bottom:1081.485000px;}
.y2e{bottom:1082.064000px;}
.y168{bottom:1084.123500px;}
.y125{bottom:1094.731500px;}
.y167{bottom:1099.123500px;}
.y166{bottom:1114.123500px;}
.y165{bottom:1129.123500px;}
.y124{bottom:1140.373500px;}
.y164{bottom:1144.123500px;}
.y19{bottom:1151.571000px;}
.y123{bottom:1159.123500px;}
.y18{bottom:1199.496000px;}
.y5a{bottom:1211.496000px;}
.h10{height:17.171714px;}
.ha{height:20.999580px;}
.hf{height:27.102170px;}
.hb{height:29.253170px;}
.h9{height:33.599580px;}
.h11{height:34.079574px;}
.h7{height:34.415570px;}
.h17{height:38.717570px;}
.hc{height:41.999580px;}
.h1d{height:42.599574px;}
.h16{height:43.019570px;}
.h5{height:43.804688px;}
.h18{height:44.999550px;}
.h1c{height:45.245665px;}
.h1a{height:45.251665px;}
.h12{height:46.859574px;}
.h13{height:47.321570px;}
.hd{height:47.967170px;}
.h14{height:49.274550px;}
.h3{height:50.062500px;}
.h15{height:51.119574px;}
.h1b{height:51.993852px;}
.h19{height:51.999852px;}
.he{height:55.769581px;}
.h1{height:56.320312px;}
.h2{height:72.000000px;}
.h4{height:75.093750px;}
.h8{height:75.599160px;}
.h6{height:1262.835000px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.w1{width:892.920000px;}
.w2{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:58.500000px;}
.x7{left:63.780000px;}
.x6{left:178.582500px;}
.x10{left:184.362000px;}
.xa{left:193.975500px;}
.xd{left:200.998500px;}
.x11{left:203.502000px;}
.x5{left:216.450000px;}
.xc{left:271.755000px;}
.xb{left:309.142500px;}
.xf{left:326.709000px;}
.x13{left:335.668500px;}
.x8{left:405.475500px;}
.x9{left:436.810500px;}
.x12{left:439.257000px;}
.xe{left:442.857000px;}
.x2{left:605.490000px;}
.x4{left:627.990000px;}
.x3{left:634.410000px;}
@media print{
.v1{vertical-align:-34.133333pt;}
.v4{vertical-align:-20.458667pt;}
.v6{vertical-align:-18.597333pt;}
.v2{vertical-align:-14.186667pt;}
.v8{vertical-align:-8.757333pt;}
.v7{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:12.346667pt;}
.va{vertical-align:15.056000pt;}
.v9{vertical-align:19.354667pt;}
.v3{vertical-align:20.458667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000128pt;}
.ls3b{letter-spacing:0.000148pt;}
.ls1f{letter-spacing:0.000197pt;}
.ls29{letter-spacing:0.000210pt;}
.ls28{letter-spacing:0.000230pt;}
.ls27{letter-spacing:0.000245pt;}
.ls7{letter-spacing:0.000256pt;}
.ls1e{letter-spacing:0.000267pt;}
.ls48{letter-spacing:0.000293pt;}
.ls34{letter-spacing:0.000318pt;}
.ls20{letter-spacing:0.000321pt;}
.ls50{letter-spacing:0.000338pt;}
.ls3e{letter-spacing:0.000344pt;}
.ls15{letter-spacing:0.000395pt;}
.ls57{letter-spacing:0.000415pt;}
.ls37{letter-spacing:0.000439pt;}
.ls9{letter-spacing:0.000533pt;}
.ls17{letter-spacing:0.001397pt;}
.lsf{letter-spacing:0.003655pt;}
.ls2c{letter-spacing:0.005651pt;}
.ls21{letter-spacing:0.005655pt;}
.ls0{letter-spacing:0.017067pt;}
.ls33{letter-spacing:0.197675pt;}
.ls2d{letter-spacing:0.746911pt;}
.ls2f{letter-spacing:0.960230pt;}
.ls32{letter-spacing:1.333543pt;}
.ls2a{letter-spacing:1.482917pt;}
.ls5{letter-spacing:1.599968pt;}
.ls4{letter-spacing:1.733299pt;}
.ls23{letter-spacing:2.653440pt;}
.ls31{letter-spacing:2.654207pt;}
.ls38{letter-spacing:2.655779pt;}
.lse{letter-spacing:2.656085pt;}
.ls3a{letter-spacing:2.658773pt;}
.ls14{letter-spacing:2.660096pt;}
.ls60{letter-spacing:2.661419pt;}
.ls3{letter-spacing:2.773299pt;}
.ls6{letter-spacing:3.466632pt;}
.ls46{letter-spacing:7.551374pt;}
.ls43{letter-spacing:7.552256pt;}
.ls44{letter-spacing:7.556707pt;}
.ls45{letter-spacing:7.557658pt;}
.ls3c{letter-spacing:8.885589pt;}
.ls4d{letter-spacing:8.885748pt;}
.ls4c{letter-spacing:8.890923pt;}
.ls4e{letter-spacing:8.890989pt;}
.ls26{letter-spacing:8.891081pt;}
.ls61{letter-spacing:9.354928pt;}
.ls5e{letter-spacing:9.808313pt;}
.ls5b{letter-spacing:9.813566pt;}
.ls2{letter-spacing:9.813595pt;}
.ls59{letter-spacing:9.813629pt;}
.ls5a{letter-spacing:9.813646pt;}
.ls47{letter-spacing:9.813655pt;}
.ls3f{letter-spacing:9.813658pt;}
.ls5c{letter-spacing:9.813685pt;}
.ls5f{letter-spacing:9.813722pt;}
.ls42{letter-spacing:10.074041pt;}
.ls41{letter-spacing:10.075004pt;}
.ls1d{letter-spacing:11.037226pt;}
.ls1a{letter-spacing:11.040256pt;}
.ls12{letter-spacing:11.728128pt;}
.lsa{letter-spacing:11.733867pt;}
.ls55{letter-spacing:11.834795pt;}
.ls4f{letter-spacing:11.850991pt;}
.ls4a{letter-spacing:11.851004pt;}
.ls4b{letter-spacing:11.851081pt;}
.ls62{letter-spacing:11.946752pt;}
.ls63{letter-spacing:12.133419pt;}
.ls64{letter-spacing:12.138752pt;}
.ls11{letter-spacing:12.261461pt;}
.ls10{letter-spacing:12.266795pt;}
.ls3d{letter-spacing:12.266923pt;}
.ls52{letter-spacing:12.266991pt;}
.ls49{letter-spacing:12.267004pt;}
.ls58{letter-spacing:12.267200pt;}
.ls5d{letter-spacing:12.352085pt;}
.ls40{letter-spacing:12.373655pt;}
.ls2b{letter-spacing:12.464341pt;}
.ls25{letter-spacing:12.469419pt;}
.ls56{letter-spacing:12.474752pt;}
.ls22{letter-spacing:14.152107pt;}
.ls53{letter-spacing:14.333440pt;}
.ls54{letter-spacing:14.493440pt;}
.ls35{letter-spacing:14.514773pt;}
.ls39{letter-spacing:14.808107pt;}
.ls30{letter-spacing:14.918576pt;}
.ls36{letter-spacing:14.920107pt;}
.ls2e{letter-spacing:14.923909pt;}
.ls24{letter-spacing:14.925440pt;}
.ls51{letter-spacing:15.466989pt;}
.lsd{letter-spacing:22.062207pt;}
.ls19{letter-spacing:22.080256pt;}
.lsb{letter-spacing:23.722923pt;}
.lsc{letter-spacing:26.378923pt;}
.ls1c{letter-spacing:205.508096pt;}
.ls13{letter-spacing:225.764096pt;}
.ls18{letter-spacing:227.492096pt;}
.ls16{letter-spacing:242.585429pt;}
.ls1b{letter-spacing:247.748096pt;}
.ws5c{word-spacing:-48.895593pt;}
.ws15{word-spacing:-44.820926pt;}
.ws5d{word-spacing:-36.159699pt;}
.ws1c{word-spacing:-36.095699pt;}
.ws12{word-spacing:-32.596926pt;}
.ws63{word-spacing:-30.975613pt;}
.ws45{word-spacing:-30.079699pt;}
.ws1b{word-spacing:-28.159744pt;}
.ws22{word-spacing:-25.599744pt;}
.ws25{word-spacing:-24.106365pt;}
.ws13{word-spacing:-24.103947pt;}
.ws11{word-spacing:-24.061985pt;}
.ws4{word-spacing:-23.999733pt;}
.ws27{word-spacing:-23.039744pt;}
.ws73{word-spacing:-22.788403pt;}
.ws79{word-spacing:-22.788142pt;}
.ws61{word-spacing:-22.783070pt;}
.ws69{word-spacing:-22.782809pt;}
.wse{word-spacing:-22.719773pt;}
.ws86{word-spacing:-21.661440pt;}
.ws6e{word-spacing:-21.546397pt;}
.ws72{word-spacing:-21.333067pt;}
.ws7c{word-spacing:-21.247734pt;}
.ws65{word-spacing:-21.205068pt;}
.ws81{word-spacing:-21.203199pt;}
.ws84{word-spacing:-21.202871pt;}
.ws66{word-spacing:-21.202824pt;}
.ws1{word-spacing:-21.175233pt;}
.ws64{word-spacing:-21.166715pt;}
.ws8a{word-spacing:-21.166243pt;}
.ws6f{word-spacing:-21.165046pt;}
.ws75{word-spacing:-21.165038pt;}
.ws77{word-spacing:-21.164867pt;}
.ws24{word-spacing:-21.162402pt;}
.ws62{word-spacing:-21.123397pt;}
.ws7f{word-spacing:-21.122974pt;}
.ws88{word-spacing:-21.122951pt;}
.ws7e{word-spacing:-21.121872pt;}
.ws6c{word-spacing:-20.990129pt;}
.ws68{word-spacing:-20.989513pt;}
.ws70{word-spacing:-20.952180pt;}
.ws3{word-spacing:-20.479744pt;}
.ws54{word-spacing:-17.986560pt;}
.ws4b{word-spacing:-16.714155pt;}
.ws4a{word-spacing:-16.713899pt;}
.ws5a{word-spacing:-16.708821pt;}
.wsb{word-spacing:-16.533168pt;}
.ws18{word-spacing:-15.311861pt;}
.ws6{word-spacing:-15.066365pt;}
.ws1a{word-spacing:-15.018530pt;}
.ws9{word-spacing:-14.933035pt;}
.ws17{word-spacing:-14.725199pt;}
.ws20{word-spacing:-14.719853pt;}
.ws16{word-spacing:-14.666533pt;}
.ws19{word-spacing:-14.665899pt;}
.ws40{word-spacing:-14.186525pt;}
.ws37{word-spacing:-14.133192pt;}
.ws1f{word-spacing:-14.026526pt;}
.ws35{word-spacing:-13.973194pt;}
.ws21{word-spacing:-13.919861pt;}
.ws50{word-spacing:-13.866528pt;}
.ws43{word-spacing:-13.813195pt;}
.ws41{word-spacing:-13.759862pt;}
.ws46{word-spacing:-13.706530pt;}
.ws38{word-spacing:-13.653197pt;}
.ws3b{word-spacing:-13.546531pt;}
.ws44{word-spacing:-13.493198pt;}
.ws3a{word-spacing:-13.439866pt;}
.ws58{word-spacing:-13.388787pt;}
.ws4e{word-spacing:-13.388753pt;}
.ws5e{word-spacing:-13.388249pt;}
.ws47{word-spacing:-13.388047pt;}
.ws55{word-spacing:-13.387821pt;}
.ws5f{word-spacing:-13.387274pt;}
.ws1d{word-spacing:-13.386533pt;}
.ws49{word-spacing:-13.385979pt;}
.ws3f{word-spacing:-13.385166pt;}
.ws3d{word-spacing:-13.385074pt;}
.ws57{word-spacing:-13.384798pt;}
.ws3c{word-spacing:-13.384425pt;}
.ws36{word-spacing:-13.384422pt;}
.ws59{word-spacing:-13.383199pt;}
.ws60{word-spacing:-13.333965pt;}
.ws1e{word-spacing:-13.333200pt;}
.ws5b{word-spacing:-13.332565pt;}
.ws3e{word-spacing:-13.332272pt;}
.ws5{word-spacing:-13.226501pt;}
.ws23{word-spacing:-12.415845pt;}
.ws26{word-spacing:-12.047866pt;}
.ws28{word-spacing:-11.999867pt;}
.ws29{word-spacing:-11.999488pt;}
.ws34{word-spacing:-11.999232pt;}
.ws2c{word-spacing:-11.999104pt;}
.ws82{word-spacing:-11.221193pt;}
.ws89{word-spacing:-11.188015pt;}
.ws85{word-spacing:-11.178527pt;}
.ws4d{word-spacing:-11.050529pt;}
.wsc{word-spacing:-11.039890pt;}
.ws8c{word-spacing:-11.007862pt;}
.wsd{word-spacing:-10.986557pt;}
.ws8b{word-spacing:-10.965196pt;}
.ws67{word-spacing:-10.879864pt;}
.ws71{word-spacing:-10.837198pt;}
.ws7a{word-spacing:-10.794532pt;}
.ws7b{word-spacing:-10.751866pt;}
.ws2{word-spacing:-10.709199pt;}
.ws6d{word-spacing:-10.707607pt;}
.ws6b{word-spacing:-10.707546pt;}
.ws87{word-spacing:-10.706600pt;}
.ws51{word-spacing:-10.705401pt;}
.ws78{word-spacing:-10.669527pt;}
.ws83{word-spacing:-10.668994pt;}
.ws74{word-spacing:-10.668704pt;}
.ws6a{word-spacing:-10.667388pt;}
.ws80{word-spacing:-10.666829pt;}
.ws10{word-spacing:-10.666533pt;}
.ws14{word-spacing:-10.666283pt;}
.ws7d{word-spacing:-10.665214pt;}
.ws76{word-spacing:-10.626709pt;}
.ws7{word-spacing:-9.102799pt;}
.wsa{word-spacing:-9.066533pt;}
.ws56{word-spacing:-6.439648pt;}
.ws8{word-spacing:-5.013233pt;}
.ws53{word-spacing:-3.097739pt;}
.ws4f{word-spacing:-3.060352pt;}
.ws52{word-spacing:-3.024832pt;}
.ws4c{word-spacing:-1.920282pt;}
.ws2f{word-spacing:-1.007989pt;}
.ws48{word-spacing:-0.053333pt;}
.ws2a{word-spacing:-0.047999pt;}
.ws39{word-spacing:-0.042666pt;}
.ws42{word-spacing:-0.037333pt;}
.wsf{word-spacing:-0.031999pt;}
.ws0{word-spacing:0.000000pt;}
.ws31{word-spacing:184.854153pt;}
.ws2e{word-spacing:227.990029pt;}
.ws2d{word-spacing:291.878029pt;}
.ws2b{word-spacing:323.025850pt;}
.ws32{word-spacing:743.520695pt;}
.ws33{word-spacing:781.414029pt;}
.ws30{word-spacing:815.974029pt;}
._25{margin-left:-8.639914pt;}
._28{margin-left:-6.847936pt;}
._8{margin-left:-5.599944pt;}
._24{margin-left:-4.698616pt;}
._4{margin-left:-3.743958pt;}
._1{margin-left:-2.474636pt;}
._5{margin-left:-0.895989pt;}
._6{width:0.986647pt;}
._3{width:2.474636pt;}
._7{width:4.799947pt;}
._23{width:8.377867pt;}
._b{width:9.383267pt;}
._9{width:10.655872pt;}
._27{width:12.021901pt;}
._0{width:12.940669pt;}
._29{width:16.000651pt;}
._14{width:22.027894pt;}
._26{width:23.626430pt;}
._c{width:169.985791pt;}
._1e{width:191.460581pt;}
._1f{width:196.291313pt;}
._10{width:207.318693pt;}
._22{width:219.905074pt;}
._19{width:236.897237pt;}
._1b{width:253.904137pt;}
._1c{width:277.715157pt;}
._e{width:278.786125pt;}
._18{width:281.970361pt;}
._17{width:294.112601pt;}
._15{width:296.219415pt;}
._d{width:303.106127pt;}
._1a{width:305.010105pt;}
._16{width:306.450089pt;}
._13{width:312.356745pt;}
._21{width:313.716972pt;}
._20{width:324.609888pt;}
._1d{width:326.979455pt;}
._12{width:345.181070pt;}
._11{width:349.473836pt;}
._f{width:369.682376pt;}
._2{width:1063.475077pt;}
._a{width:1520.003077pt;}
.fs8{font-size:26.666133pt;}
.fsf{font-size:29.977600pt;}
.fsc{font-size:30.932800pt;}
.fsd{font-size:31.999467pt;}
.fse{font-size:33.599467pt;}
.fs15{font-size:33.724800pt;}
.fs9{font-size:36.266133pt;}
.fs17{font-size:37.332800pt;}
.fs5{font-size:37.333333pt;}
.fs16{font-size:37.472000pt;}
.fs11{font-size:41.219200pt;}
.fs6{font-size:42.666133pt;}
.fs3{font-size:42.666667pt;}
.fs14{font-size:47.999467pt;}
.fs0{font-size:48.000000pt;}
.fsa{font-size:53.332800pt;}
.fs12{font-size:58.399467pt;}
.fs10{font-size:58.666133pt;}
.fs13{font-size:63.999467pt;}
.fs4{font-size:64.000000pt;}
.fsb{font-size:67.450133pt;}
.fs2{font-size:68.266667pt;}
.fs1{font-size:85.333333pt;}
.fs7{font-size:95.998933pt;}
.y0{bottom:0.000000pt;}
.yd3{bottom:34.934667pt;}
.y87{bottom:35.014667pt;}
.yc9{bottom:35.094667pt;}
.yce{bottom:35.174667pt;}
.y59{bottom:35.921333pt;}
.y17{bottom:51.573333pt;}
.y102{bottom:63.158667pt;}
.y163{bottom:76.492000pt;}
.y86{bottom:79.098667pt;}
.y101{bottom:79.825333pt;}
.y162{bottom:89.825333pt;}
.y85{bottom:95.765333pt;}
.y100{bottom:96.492000pt;}
.yc8{bottom:98.600000pt;}
.y161{bottom:103.158667pt;}
.y58{bottom:107.332000pt;}
.y84{bottom:112.432000pt;}
.yff{bottom:113.158667pt;}
.yc7{bottom:115.266667pt;}
.y160{bottom:116.492000pt;}
.y57{bottom:123.998667pt;}
.y83{bottom:129.098667pt;}
.yfe{bottom:129.825333pt;}
.yc6{bottom:131.933333pt;}
.y56{bottom:140.665333pt;}
.y15f{bottom:143.158667pt;}
.y82{bottom:145.765333pt;}
.yfd{bottom:146.492000pt;}
.yc5{bottom:148.600000pt;}
.y15e{bottom:156.492000pt;}
.y55{bottom:157.332000pt;}
.y81{bottom:162.432000pt;}
.y122{bottom:163.096000pt;}
.yfc{bottom:163.158667pt;}
.yc4{bottom:165.266667pt;}
.y15d{bottom:169.825333pt;}
.y54{bottom:173.998667pt;}
.ya3{bottom:179.098667pt;}
.yfb{bottom:179.825333pt;}
.yc3{bottom:181.933333pt;}
.y15c{bottom:183.158667pt;}
.y53{bottom:190.665333pt;}
.y80{bottom:195.702667pt;}
.ya2{bottom:195.765333pt;}
.y121{bottom:196.429333pt;}
.yfa{bottom:196.492000pt;}
.yc2{bottom:198.600000pt;}
.y52{bottom:207.332000pt;}
.y15b{bottom:209.825333pt;}
.ya1{bottom:212.432000pt;}
.y120{bottom:213.096000pt;}
.yf9{bottom:213.158667pt;}
.yc1{bottom:215.266667pt;}
.y15a{bottom:223.158667pt;}
.y51{bottom:223.998667pt;}
.ya0{bottom:229.098667pt;}
.y11f{bottom:229.762667pt;}
.yf8{bottom:229.825333pt;}
.y7f{bottom:230.346667pt;}
.yc0{bottom:231.933333pt;}
.y159{bottom:236.492000pt;}
.y50{bottom:240.665333pt;}
.y9f{bottom:245.765333pt;}
.y11e{bottom:246.429333pt;}
.yf7{bottom:246.492000pt;}
.y7e{bottom:247.013333pt;}
.ybf{bottom:248.600000pt;}
.y158{bottom:249.825333pt;}
.y4f{bottom:257.332000pt;}
.y9e{bottom:262.432000pt;}
.y11d{bottom:263.096000pt;}
.yf6{bottom:263.158667pt;}
.y7d{bottom:263.680000pt;}
.ybe{bottom:265.266667pt;}
.y4e{bottom:273.998667pt;}
.yd2{bottom:275.558667pt;}
.y157{bottom:276.492000pt;}
.y9d{bottom:279.098667pt;}
.y11c{bottom:279.762667pt;}
.yf5{bottom:279.825333pt;}
.y7c{bottom:280.346667pt;}
.ybd{bottom:281.933333pt;}
.yd1{bottom:287.558667pt;}
.y156{bottom:289.825333pt;}
.y4d{bottom:290.665333pt;}
.y9c{bottom:295.765333pt;}
.y11b{bottom:296.429333pt;}
.yf4{bottom:296.492000pt;}
.y7b{bottom:297.013333pt;}
.ybc{bottom:298.600000pt;}
.y155{bottom:303.158667pt;}
.y4c{bottom:307.332000pt;}
.y9b{bottom:312.432000pt;}
.yf3{bottom:313.158667pt;}
.y7a{bottom:313.680000pt;}
.ybb{bottom:315.266667pt;}
.y154{bottom:316.492000pt;}
.y4b{bottom:323.998667pt;}
.y9a{bottom:329.098667pt;}
.y11a{bottom:329.700000pt;}
.yf2{bottom:329.825333pt;}
.y79{bottom:330.346667pt;}
.yba{bottom:331.933333pt;}
.y4a{bottom:340.665333pt;}
.y153{bottom:343.158667pt;}
.y99{bottom:345.765333pt;}
.yf1{bottom:346.492000pt;}
.y78{bottom:347.013333pt;}
.yb9{bottom:348.600000pt;}
.y152{bottom:356.490667pt;}
.y98{bottom:362.432000pt;}
.yf0{bottom:363.158667pt;}
.y77{bottom:363.680000pt;}
.yb8{bottom:365.266667pt;}
.y119{bottom:369.365333pt;}
.y151{bottom:369.824000pt;}
.y49{bottom:373.936000pt;}
.y97{bottom:379.098667pt;}
.yef{bottom:379.825333pt;}
.y76{bottom:380.346667pt;}
.yb7{bottom:381.933333pt;}
.y150{bottom:383.157333pt;}
.y193{bottom:390.332000pt;}
.y96{bottom:395.765333pt;}
.y14f{bottom:396.490667pt;}
.yee{bottom:396.492000pt;}
.y75{bottom:397.013333pt;}
.yb6{bottom:398.600000pt;}
.y118{bottom:402.637333pt;}
.y192{bottom:403.665333pt;}
.y14e{bottom:409.824000pt;}
.y95{bottom:412.432000pt;}
.yed{bottom:413.158667pt;}
.y74{bottom:413.680000pt;}
.yb5{bottom:415.266667pt;}
.y191{bottom:416.998667pt;}
.y14d{bottom:423.157333pt;}
.y94{bottom:429.098667pt;}
.y48{bottom:429.762667pt;}
.yec{bottom:429.825333pt;}
.y190{bottom:430.332000pt;}
.y73{bottom:430.346667pt;}
.yb4{bottom:431.933333pt;}
.y117{bottom:435.536000pt;}
.y14c{bottom:436.490667pt;}
.y18f{bottom:443.665333pt;}
.y93{bottom:445.765333pt;}
.yeb{bottom:446.492000pt;}
.y72{bottom:447.013333pt;}
.y47{bottom:447.762667pt;}
.yb3{bottom:448.600000pt;}
.y14b{bottom:449.824000pt;}
.y116{bottom:452.202667pt;}
.y18e{bottom:456.998667pt;}
.y92{bottom:462.432000pt;}
.y14a{bottom:463.157333pt;}
.yea{bottom:463.158667pt;}
.y71{bottom:463.680000pt;}
.yb2{bottom:465.266667pt;}
.y46{bottom:465.762667pt;}
.y115{bottom:468.869333pt;}
.y18d{bottom:470.332000pt;}
.y149{bottom:476.490667pt;}
.y91{bottom:479.098667pt;}
.ye9{bottom:479.825333pt;}
.y70{bottom:480.346667pt;}
.yb1{bottom:481.933333pt;}
.y18c{bottom:483.665333pt;}
.y45{bottom:483.762667pt;}
.y114{bottom:485.536000pt;}
.y148{bottom:489.824000pt;}
.y90{bottom:495.765333pt;}
.ye8{bottom:496.492000pt;}
.y18b{bottom:496.998667pt;}
.y6f{bottom:497.013333pt;}
.yb0{bottom:498.600000pt;}
.y44{bottom:501.762667pt;}
.y113{bottom:502.202667pt;}
.y147{bottom:503.157333pt;}
.y18a{bottom:510.332000pt;}
.y8f{bottom:512.432000pt;}
.ye7{bottom:513.158667pt;}
.yaf{bottom:515.266667pt;}
.y146{bottom:516.490667pt;}
.y112{bottom:518.869333pt;}
.y43{bottom:519.762667pt;}
.y189{bottom:523.665333pt;}
.yd8{bottom:524.252000pt;}
.y8e{bottom:529.098667pt;}
.y145{bottom:529.824000pt;}
.ye6{bottom:529.825333pt;}
.yae{bottom:531.933333pt;}
.y111{bottom:535.536000pt;}
.yd7{bottom:536.252000pt;}
.y188{bottom:536.998667pt;}
.y42{bottom:537.762667pt;}
.y144{bottom:543.157333pt;}
.y8d{bottom:545.765333pt;}
.ye5{bottom:546.492000pt;}
.yd6{bottom:548.252000pt;}
.yad{bottom:548.600000pt;}
.y187{bottom:550.332000pt;}
.y6e{bottom:551.098667pt;}
.y110{bottom:552.202667pt;}
.y41{bottom:555.762667pt;}
.y143{bottom:556.490667pt;}
.yd5{bottom:560.252000pt;}
.y8c{bottom:562.432000pt;}
.ye4{bottom:563.158667pt;}
.y186{bottom:563.665333pt;}
.yac{bottom:565.266667pt;}
.y6d{bottom:565.765333pt;}
.y10f{bottom:568.869333pt;}
.y142{bottom:569.824000pt;}
.y40{bottom:573.762667pt;}
.y185{bottom:576.998667pt;}
.y8b{bottom:579.098667pt;}
.ye3{bottom:579.825333pt;}
.y6c{bottom:580.432000pt;}
.yab{bottom:581.933333pt;}
.y141{bottom:583.157333pt;}
.y10e{bottom:585.536000pt;}
.y184{bottom:590.332000pt;}
.y3f{bottom:591.762667pt;}
.y6b{bottom:595.098667pt;}
.ycd{bottom:595.897333pt;}
.y140{bottom:596.490667pt;}
.ye2{bottom:596.492000pt;}
.yaa{bottom:598.600000pt;}
.y10d{bottom:602.202667pt;}
.y183{bottom:603.665333pt;}
.y3e{bottom:609.762667pt;}
.y6a{bottom:609.765333pt;}
.y13f{bottom:609.824000pt;}
.ye1{bottom:613.158667pt;}
.ya9{bottom:615.266667pt;}
.y182{bottom:616.998667pt;}
.y10c{bottom:618.869333pt;}
.y13e{bottom:623.157333pt;}
.y69{bottom:624.432000pt;}
.y3d{bottom:627.762667pt;}
.ycc{bottom:629.169333pt;}
.ye0{bottom:629.825333pt;}
.y181{bottom:630.332000pt;}
.ya8{bottom:631.933333pt;}
.y13d{bottom:636.490667pt;}
.y68{bottom:639.098667pt;}
.y2d{bottom:640.940000pt;}
.y8a{bottom:643.184000pt;}
.y180{bottom:643.665333pt;}
.y3c{bottom:645.762667pt;}
.ydf{bottom:646.492000pt;}
.ya7{bottom:648.600000pt;}
.y13c{bottom:649.824000pt;}
.y2c{bottom:651.606667pt;}
.y10b{bottom:652.140000pt;}
.y67{bottom:653.765333pt;}
.y89{bottom:655.184000pt;}
.y17f{bottom:656.998667pt;}
.y2b{bottom:662.273333pt;}
.y13b{bottom:663.157333pt;}
.yde{bottom:663.158667pt;}
.y3b{bottom:663.762667pt;}
.y88{bottom:667.184000pt;}
.y66{bottom:668.432000pt;}
.y17e{bottom:670.332000pt;}
.y2a{bottom:672.940000pt;}
.y13a{bottom:676.490667pt;}
.ydd{bottom:679.825333pt;}
.y65{bottom:683.098667pt;}
.y29{bottom:683.606667pt;}
.y17d{bottom:683.665333pt;}
.y10a{bottom:685.040000pt;}
.y139{bottom:689.824000pt;}
.y28{bottom:694.273333pt;}
.ycb{bottom:695.274667pt;}
.ydc{bottom:696.624000pt;}
.y17c{bottom:696.998667pt;}
.y64{bottom:697.765333pt;}
.y109{bottom:701.706667pt;}
.y138{bottom:703.157333pt;}
.yca{bottom:707.274667pt;}
.y27{bottom:710.253333pt;}
.y17b{bottom:710.332000pt;}
.y3a{bottom:712.029333pt;}
.y63{bottom:712.432000pt;}
.y137{bottom:716.490667pt;}
.y108{bottom:718.373333pt;}
.ya6{bottom:720.632000pt;}
.y26{bottom:720.920000pt;}
.y17a{bottom:723.665333pt;}
.y62{bottom:727.098667pt;}
.y136{bottom:729.824000pt;}
.y39{bottom:730.665333pt;}
.y25{bottom:731.586667pt;}
.ya5{bottom:732.632000pt;}
.y107{bottom:735.040000pt;}
.y179{bottom:736.998667pt;}
.y61{bottom:741.765333pt;}
.y24{bottom:742.253333pt;}
.y135{bottom:743.157333pt;}
.ya4{bottom:744.632000pt;}
.y178{bottom:750.332000pt;}
.y106{bottom:751.706667pt;}
.y23{bottom:752.920000pt;}
.y38{bottom:753.440000pt;}
.yd0{bottom:756.110667pt;}
.y60{bottom:756.432000pt;}
.y134{bottom:756.490667pt;}
.y177{bottom:763.665333pt;}
.ydb{bottom:764.821333pt;}
.y16{bottom:766.453333pt;}
.ycf{bottom:768.110667pt;}
.y133{bottom:769.824000pt;}
.y5f{bottom:771.098667pt;}
.yda{bottom:776.821333pt;}
.y176{bottom:776.998667pt;}
.y15{bottom:777.120000pt;}
.y37{bottom:777.541333pt;}
.y132{bottom:783.157333pt;}
.y22{bottom:784.532000pt;}
.y14{bottom:787.786667pt;}
.yd9{bottom:788.821333pt;}
.y175{bottom:790.332000pt;}
.y36{bottom:790.874667pt;}
.y6{bottom:795.293333pt;}
.y21{bottom:795.486667pt;}
.y131{bottom:796.490667pt;}
.y5e{bottom:797.256000pt;}
.y13{bottom:798.453333pt;}
.y35{bottom:803.544000pt;}
.y174{bottom:803.665333pt;}
.yd4{bottom:806.806667pt;}
.y105{bottom:807.536000pt;}
.y12{bottom:809.120000pt;}
.y130{bottom:809.824000pt;}
.y20{bottom:812.820000pt;}
.y34{bottom:816.877333pt;}
.y173{bottom:816.998667pt;}
.y104{bottom:819.536000pt;}
.y5d{bottom:819.800000pt;}
.y5{bottom:821.160000pt;}
.y12f{bottom:823.157333pt;}
.y1f{bottom:823.366667pt;}
.y11{bottom:829.786667pt;}
.y172{bottom:830.332000pt;}
.y103{bottom:831.536000pt;}
.y33{bottom:832.752000pt;}
.y12e{bottom:836.490667pt;}
.y10{bottom:840.453333pt;}
.y1e{bottom:840.700000pt;}
.y171{bottom:843.665333pt;}
.y32{bottom:848.752000pt;}
.y12d{bottom:849.824000pt;}
.yf{bottom:851.120000pt;}
.y1d{bottom:851.246667pt;}
.y170{bottom:856.998667pt;}
.y4{bottom:857.026667pt;}
.ye{bottom:861.786667pt;}
.y12c{bottom:863.157333pt;}
.y31{bottom:864.752000pt;}
.y1c{bottom:868.580000pt;}
.y16f{bottom:870.332000pt;}
.y5c{bottom:870.664000pt;}
.yd{bottom:872.453333pt;}
.y12b{bottom:876.490667pt;}
.y1b{bottom:879.069333pt;}
.y5b{bottom:882.664000pt;}
.y16e{bottom:883.665333pt;}
.y12a{bottom:889.824000pt;}
.yc{bottom:893.120000pt;}
.y16d{bottom:896.998667pt;}
.y30{bottom:897.432000pt;}
.y3{bottom:898.813333pt;}
.y129{bottom:903.157333pt;}
.yb{bottom:903.786667pt;}
.y16c{bottom:910.332000pt;}
.y1a{bottom:910.920000pt;}
.ya{bottom:914.453333pt;}
.y128{bottom:916.490667pt;}
.y16b{bottom:923.665333pt;}
.y2{bottom:924.413333pt;}
.y9{bottom:925.120000pt;}
.y2f{bottom:925.432000pt;}
.y127{bottom:929.824000pt;}
.y8{bottom:935.786667pt;}
.y16a{bottom:936.998667pt;}
.y126{bottom:943.157333pt;}
.y169{bottom:950.332000pt;}
.y7{bottom:958.453333pt;}
.y1{bottom:961.320000pt;}
.y2e{bottom:961.834667pt;}
.y168{bottom:963.665333pt;}
.y125{bottom:973.094667pt;}
.y167{bottom:976.998667pt;}
.y166{bottom:990.332000pt;}
.y165{bottom:1003.665333pt;}
.y124{bottom:1013.665333pt;}
.y164{bottom:1016.998667pt;}
.y19{bottom:1023.618667pt;}
.y123{bottom:1030.332000pt;}
.y18{bottom:1066.218667pt;}
.y5a{bottom:1076.885333pt;}
.h10{height:15.263746pt;}
.ha{height:18.666293pt;}
.hf{height:24.090818pt;}
.hb{height:26.002818pt;}
.h9{height:29.866293pt;}
.h11{height:30.292955pt;}
.h7{height:30.591618pt;}
.h17{height:34.415618pt;}
.hc{height:37.332960pt;}
.h1d{height:37.866288pt;}
.h16{height:38.239618pt;}
.h5{height:38.937500pt;}
.h18{height:39.999600pt;}
.h1c{height:40.218369pt;}
.h1a{height:40.223702pt;}
.h12{height:41.652955pt;}
.h13{height:42.063618pt;}
.hd{height:42.637484pt;}
.h14{height:43.799600pt;}
.h3{height:44.500000pt;}
.h15{height:45.439621pt;}
.h1b{height:46.216757pt;}
.h19{height:46.222091pt;}
.he{height:49.572961pt;}
.h1{height:50.062500pt;}
.h2{height:64.000000pt;}
.h4{height:66.750000pt;}
.h8{height:67.199253pt;}
.h6{height:1122.520000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.w1{width:793.706667pt;}
.w2{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:52.000000pt;}
.x7{left:56.693333pt;}
.x6{left:158.740000pt;}
.x10{left:163.877333pt;}
.xa{left:172.422667pt;}
.xd{left:178.665333pt;}
.x11{left:180.890667pt;}
.x5{left:192.400000pt;}
.xc{left:241.560000pt;}
.xb{left:274.793333pt;}
.xf{left:290.408000pt;}
.x13{left:298.372000pt;}
.x8{left:360.422667pt;}
.x9{left:388.276000pt;}
.x12{left:390.450667pt;}
.xe{left:393.650667pt;}
.x2{left:538.213333pt;}
.x4{left:558.213333pt;}
.x3{left:563.920000pt;}
}




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