
    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_1b57d1a39663355b90b63c97.woff')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_c75c90301a4e2205a12f8fb5.woff')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_cbbb4305328db1aed3d16e24.woff')format("woff");}.ff3{font-family:ff3;line-height:0.899000;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_8f77bed768ce0e53880a3179.woff')format("woff");}.ff4{font-family:ff4;line-height:1.056641;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_5a95352e1c2b33f53cff1ffa.woff')format("woff");}.ff5{font-family:ff5;line-height:0.388000;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_ef74b1de9b2165a72781224b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.672000;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);}
.v4{vertical-align:-21.654785px;}
.v2{vertical-align:-2.919071px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.919071px;}
.v1{vertical-align:21.654785px;}
.ls12{letter-spacing:-0.944454px;}
.lsc{letter-spacing:-0.025405px;}
.lse{letter-spacing:-0.023910px;}
.ls10{letter-spacing:-0.017933px;}
.ls6{letter-spacing:-0.011955px;}
.ls9{letter-spacing:-0.010760px;}
.lsb{letter-spacing:-0.010162px;}
.lsf{letter-spacing:-0.007173px;}
.ls5{letter-spacing:-0.005978px;}
.ls7{letter-spacing:-0.005380px;}
.lsa{letter-spacing:-0.005081px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.005380px;}
.lsd{letter-spacing:0.005978px;}
.ls11{letter-spacing:0.007173px;}
.ls16{letter-spacing:0.016140px;}
.ls14{letter-spacing:0.017933px;}
.ls13{letter-spacing:0.023910px;}
.ls17{letter-spacing:0.156015px;}
.ls3{letter-spacing:0.533981px;}
.ls0{letter-spacing:2.961940px;}
.ls1{letter-spacing:13.449600px;}
.ls2{letter-spacing:13.503398px;}
.ls15{letter-spacing:41.824986px;}
.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;}
}
.wsb0{word-spacing:-0.078904px;}
.ws4{word-spacing:-0.065873px;}
.wsb8{word-spacing:-0.053798px;}
.wsb4{word-spacing:-0.048419px;}
.ws3{word-spacing:-0.045430px;}
.ws15{word-spacing:-0.043039px;}
.ws51{word-spacing:-0.041843px;}
.ws28{word-spacing:-0.040647px;}
.ws36{word-spacing:-0.035865px;}
.ws29{word-spacing:0.000000px;}
.wsc1{word-spacing:7.623234px;}
.wsc{word-spacing:8.155837px;}
.wsc2{word-spacing:8.634643px;}
.wscd{word-spacing:9.398581px;}
.wsac{word-spacing:9.941944px;}
.ws86{word-spacing:10.024368px;}
.ws91{word-spacing:10.143919px;}
.ws11{word-spacing:10.318533px;}
.ws9d{word-spacing:10.508550px;}
.ws3d{word-spacing:10.669944px;}
.wsc4{word-spacing:10.797339px;}
.wsb{word-spacing:10.888796px;}
.ws35{word-spacing:10.891114px;}
.wsa{word-spacing:10.953354px;}
.ws37{word-spacing:11.070441px;}
.ws80{word-spacing:11.172059px;}
.ws81{word-spacing:11.225858px;}
.ws82{word-spacing:11.267700px;}
.wsf{word-spacing:11.399881px;}
.ws2f{word-spacing:11.548646px;}
.ws76{word-spacing:11.590489px;}
.ws43{word-spacing:11.686121px;}
.ws44{word-spacing:11.710040px;}
.wsc3{word-spacing:11.722672px;}
.wsb3{word-spacing:11.781849px;}
.wsd3{word-spacing:11.835648px;}
.ws7f{word-spacing:11.847524px;}
.ws12{word-spacing:11.937865px;}
.ws72{word-spacing:12.086626px;}
.ws64{word-spacing:12.128469px;}
.ws24{word-spacing:12.140424px;}
.wsd2{word-spacing:12.158438px;}
.ws90{word-spacing:12.182267px;}
.ws62{word-spacing:12.301819px;}
.wsa7{word-spacing:12.313773px;}
.wsb2{word-spacing:12.422051px;}
.ws4c{word-spacing:12.469189px;}
.ws1f{word-spacing:12.511033px;}
.ws27{word-spacing:12.646409px;}
.ws55{word-spacing:12.654494px;}
.ws26{word-spacing:12.661653px;}
.ws54{word-spacing:12.672427px;}
.ws9c{word-spacing:12.726225px;}
.ws93{word-spacing:12.899575px;}
.ws9e{word-spacing:12.953372px;}
.ws50{word-spacing:13.007170px;}
.ws52{word-spacing:13.049013px;}
.ws20{word-spacing:13.114766px;}
.wsaa{word-spacing:13.126809px;}
.wsa0{word-spacing:13.168565px;}
.ws23{word-spacing:13.270183px;}
.ws1b{word-spacing:13.276160px;}
.wsc5{word-spacing:13.282825px;}
.wsce{word-spacing:13.336623px;}
.wsbb{word-spacing:13.347383px;}
.wsc6{word-spacing:13.352763px;}
.wsbe{word-spacing:13.368903px;}
.ws97{word-spacing:13.377779px;}
.ws18{word-spacing:13.385042px;}
.wsbd{word-spacing:13.390422px;}
.ws5{word-spacing:13.395801px;}
.ws19{word-spacing:13.401181px;}
.ws17{word-spacing:13.433454px;}
.ws2a{word-spacing:13.438840px;}
.ws6{word-spacing:13.492639px;}
.wsd{word-spacing:13.557196px;}
.ws39{word-spacing:13.592971px;}
.ws92{word-spacing:13.640792px;}
.wsad{word-spacing:13.643275px;}
.ws13{word-spacing:13.664793px;}
.ws6f{word-spacing:13.694590px;}
.ws34{word-spacing:13.706545px;}
.ws21{word-spacing:13.855984px;}
.ws45{word-spacing:14.011400px;}
.ws33{word-spacing:14.358099px;}
.wsbc{word-spacing:14.369553px;}
.ws96{word-spacing:14.465694px;}
.wscc{word-spacing:14.477149px;}
.wsa5{word-spacing:14.507538px;}
.ws14{word-spacing:14.520188px;}
.wsc0{word-spacing:14.530948px;}
.wsa8{word-spacing:14.627089px;}
.ws56{word-spacing:14.656976px;}
.ws9b{word-spacing:14.668932px;}
.ws3e{word-spacing:14.788483px;}
.wsd0{word-spacing:14.789180px;}
.wsd1{word-spacing:14.832212px;}
.ws30{word-spacing:14.836304px;}
.ws2d{word-spacing:14.842281px;}
.ws73{word-spacing:14.884124px;}
.ws5f{word-spacing:14.896079px;}
.ws2b{word-spacing:14.925967px;}
.ws2{word-spacing:14.937922px;}
.ws5e{word-spacing:14.949877px;}
.wsc7{word-spacing:14.972095px;}
.ws25{word-spacing:14.985743px;}
.ws5d{word-spacing:14.991720px;}
.ws95{word-spacing:15.003675px;}
.ws3a{word-spacing:15.057473px;}
.ws6e{word-spacing:15.218867px;}
.wsba{word-spacing:15.230327px;}
.ws3c{word-spacing:15.272665px;}
.ws71{word-spacing:15.434060px;}
.wsb9{word-spacing:15.612296px;}
.wsab{word-spacing:15.692994px;}
.wsb6{word-spacing:15.709133px;}
.ws6a{word-spacing:15.726960px;}
.ws1c{word-spacing:15.750869px;}
.ws2c{word-spacing:15.762825px;}
.ws6b{word-spacing:15.804668px;}
.wsbf{word-spacing:15.816730px;}
.ws49{word-spacing:15.858467px;}
.ws42{word-spacing:15.924220px;}
.ws69{word-spacing:15.978018px;}
.ws22{word-spacing:16.019860px;}
.ws83{word-spacing:16.085613px;}
.ws68{word-spacing:16.133435px;}
.ws8{word-spacing:16.279396px;}
.ws57{word-spacing:16.300806px;}
.ws70{word-spacing:16.348625px;}
.ws38{word-spacing:16.396447px;}
.ws98{word-spacing:16.408401px;}
.ws9f{word-spacing:16.462201px;}
.ws4f{word-spacing:16.623594px;}
.wse{word-spacing:16.677504px;}
.wscf{word-spacing:16.693644px;}
.ws65{word-spacing:16.838786px;}
.ws85{word-spacing:16.892584px;}
.ws7b{word-spacing:17.042023px;}
.ws10{word-spacing:17.113271px;}
.ws88{word-spacing:17.119714px;}
.ws89{word-spacing:17.155596px;}
.ws9{word-spacing:17.167070px;}
.ws59{word-spacing:17.639779px;}
.ws58{word-spacing:17.693577px;}
.wsc9{word-spacing:17.726572px;}
.ws74{word-spacing:17.774842px;}
.ws40{word-spacing:17.831061px;}
.ws87{word-spacing:17.837039px;}
.ws3b{word-spacing:17.882438px;}
.ws7c{word-spacing:17.908769px;}
.ws47{word-spacing:17.962567px;}
.ws3f{word-spacing:18.010389px;}
.wsb1{word-spacing:18.253796px;}
.ws1{word-spacing:18.317228px;}
.wsae{word-spacing:18.318355px;}
.ws5c{word-spacing:18.404908px;}
.ws5a{word-spacing:18.500547px;}
.wsc8{word-spacing:18.528168px;}
.ws7a{word-spacing:18.661942px;}
.ws79{word-spacing:18.739631px;}
.wsa2{word-spacing:18.775515px;}
.ws8e{word-spacing:18.823335px;}
.ws8f{word-spacing:18.829313px;}
.ws1d{word-spacing:18.841269px;}
.ws6c{word-spacing:18.990708px;}
.ws4a{word-spacing:19.044505px;}
.ws8a{word-spacing:19.110259px;}
.wsb5{word-spacing:19.179129px;}
.ws6d{word-spacing:19.181990px;}
.ws99{word-spacing:19.187967px;}
.ws1e{word-spacing:19.199922px;}
.ws60{word-spacing:19.205901px;}
.ws67{word-spacing:19.313496px;}
.wsa6{word-spacing:19.373271px;}
.ws61{word-spacing:19.379249px;}
.ws8d{word-spacing:19.510755px;}
.ws77{word-spacing:19.755835px;}
.ws8c{word-spacing:19.899296px;}
.ws5b{word-spacing:19.971027px;}
.wsa1{word-spacing:20.120466px;}
.ws63{word-spacing:20.174264px;}
.wsca{word-spacing:20.201299px;}
.ws78{word-spacing:20.323703px;}
.ws48{word-spacing:20.568783px;}
.ws84{word-spacing:20.610627px;}
.ws75{word-spacing:20.622581px;}
.wsaf{word-spacing:20.728524px;}
.ws16{word-spacing:20.906058px;}
.ws94{word-spacing:20.999168px;}
.ws4b{word-spacing:21.052966px;}
.ws0{word-spacing:21.398792px;}
.ws9a{word-spacing:21.901779px;}
.ws4d{word-spacing:22.003398px;}
.ws4e{word-spacing:22.069151px;}
.wsa4{word-spacing:22.338142px;}
.ws66{word-spacing:22.445737px;}
.ws53{word-spacing:22.577243px;}
.ws31{word-spacing:22.714727px;}
.ws41{word-spacing:22.941875px;}
.wsa3{word-spacing:23.264663px;}
.ws8b{word-spacing:23.778734px;}
.ws7d{word-spacing:24.023814px;}
.ws7e{word-spacing:24.334646px;}
.ws32{word-spacing:24.454197px;}
.wsb7{word-spacing:24.618148px;}
.wscb{word-spacing:25.979247px;}
.ws46{word-spacing:26.761535px;}
.ws7{word-spacing:29.793554px;}
.wsa9{word-spacing:29.852708px;}
.ws2e{word-spacing:30.826276px;}
.ws1a{word-spacing:59.694206px;}
._0{margin-left:-7.121309px;}
._2{margin-left:-6.075438px;}
._4{margin-left:-4.314631px;}
._6{margin-left:-2.402977px;}
._1{margin-left:-1.344960px;}
._3{width:1.004431px;}
._f{width:11.199015px;}
._7{width:12.289871px;}
._8{width:14.322231px;}
._e{width:15.649254px;}
._5{width:17.742714px;}
._b{width:23.802652px;}
._a{width:31.902239px;}
._d{width:49.828937px;}
._c{width:59.773108px;}
._9{width:168.432028px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:44.832000px;}
.fs2{font-size:45.429600px;}
.fs6{font-size:50.809198px;}
.fs4{font-size:53.798400px;}
.fs1{font-size:59.775599px;}
.fs3{font-size:65.872799px;}
.fs5{font-size:71.730600px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y27{bottom:49.419492px;}
.y26{bottom:64.363747px;}
.y25{bottom:79.308002px;}
.yb5{bottom:94.007895px;}
.y70{bottom:94.021373px;}
.y4e{bottom:101.701407px;}
.yb4{bottom:110.437926px;}
.y24{bottom:111.030837px;}
.y6f{bottom:111.949570px;}
.y4d{bottom:119.629604px;}
.y90{bottom:125.611392px;}
.yb3{bottom:126.881407px;}
.y23{bottom:128.972483px;}
.y6e{bottom:129.877766px;}
.y4c{bottom:137.557800px;}
.yb2{bottom:142.933505px;}
.y8f{bottom:143.539589px;}
.y22{bottom:146.900680px;}
.y6d{bottom:147.819412px;}
.y4b{bottom:155.499446px;}
.yb1{bottom:159.363536px;}
.y8e{bottom:161.467785px;}
.y21{bottom:164.828876px;}
.y6c{bottom:165.747608px;}
.y4a{bottom:173.427642px;}
.yb0{bottom:175.807017px;}
.y8d{bottom:179.409431px;}
.y20{bottom:182.770522px;}
.y6b{bottom:183.689254px;}
.y49{bottom:191.355839px;}
.yaf{bottom:191.845665px;}
.y8c{bottom:197.337627px;}
.y1f{bottom:200.698718px;}
.y6a{bottom:201.617451px;}
.yae{bottom:208.289146px;}
.y48{bottom:209.297485px;}
.y8b{bottom:215.265824px;}
.y1e{bottom:218.626915px;}
.y69{bottom:219.545647px;}
.yad{bottom:224.732627px;}
.y47{bottom:227.225681px;}
.y8a{bottom:233.207470px;}
.y1d{bottom:236.568560px;}
.y68{bottom:237.487293px;}
.yac{bottom:240.771275px;}
.y46{bottom:245.153877px;}
.y89{bottom:251.135666px;}
.y1c{bottom:254.496757px;}
.y67{bottom:255.415489px;}
.yab{bottom:257.214756px;}
.y45{bottom:263.095523px;}
.y88{bottom:269.063863px;}
.y1b{bottom:272.424953px;}
.yaa{bottom:273.644787px;}
.y87{bottom:287.005508px;}
.y66{bottom:288.031654px;}
.ya9{bottom:289.696885px;}
.y1a{bottom:290.366599px;}
.y44{bottom:292.984815px;}
.ya8{bottom:306.126916px;}
.y19{bottom:308.294796px;}
.ya7{bottom:322.570397px;}
.y86{bottom:322.875160px;}
.y18{bottom:326.222992px;}
.y65{bottom:329.349831px;}
.y43{bottom:337.818007px;}
.ya6{bottom:338.622495px;}
.y64{bottom:347.291477px;}
.ya5{bottom:355.052526px;}
.y42{bottom:355.746204px;}
.y17{bottom:362.092506px;}
.y63{bottom:365.219673px;}
.y85{bottom:370.687645px;}
.ya4{bottom:371.104624px;}
.y41{bottom:373.674400px;}
.y62{bottom:383.161319px;}
.ya3{bottom:387.534655px;}
.y84{bottom:388.615841px;}
.y40{bottom:391.616046px;}
.y61{bottom:401.089516px;}
.ya2{bottom:403.978136px;}
.y83{bottom:406.557487px;}
.y3f{bottom:409.544242px;}
.y60{bottom:419.017712px;}
.ya1{bottom:420.016784px;}
.y82{bottom:424.485683px;}
.y16{bottom:425.656396px;}
.y3e{bottom:427.472439px;}
.ya0{bottom:436.460265px;}
.y5f{bottom:436.959358px;}
.y15{bottom:442.086428px;}
.y81{bottom:442.413880px;}
.y3d{bottom:445.414085px;}
.y9f{bottom:452.903746px;}
.y5e{bottom:454.887554px;}
.y80{bottom:460.355526px;}
.y3c{bottom:463.342281px;}
.y9e{bottom:469.333777px;}
.y5d{bottom:472.815751px;}
.y14{bottom:474.972045px;}
.y7f{bottom:478.283722px;}
.y3b{bottom:481.270477px;}
.y9d{bottom:485.385875px;}
.y5c{bottom:490.757397px;}
.y13{bottom:491.402076px;}
.y7e{bottom:496.211918px;}
.y9c{bottom:501.815906px;}
.y12{bottom:507.845557px;}
.y5b{bottom:508.685593px;}
.y3a{bottom:517.140015px;}
.y9b{bottom:517.868004px;}
.y7d{bottom:523.116915px;}
.y11{bottom:524.289038px;}
.y5a{bottom:526.613789px;}
.y9a{bottom:534.311485px;}
.y10{bottom:540.719069px;}
.y7c{bottom:541.045112px;}
.y59{bottom:544.555435px;}
.y99{bottom:550.741516px;}
.yf{bottom:557.162550px;}
.y7b{bottom:558.986758px;}
.y58{bottom:562.483632px;}
.y39{bottom:564.955792px;}
.ye{bottom:573.606031px;}
.y7a{bottom:576.914954px;}
.y57{bottom:580.411828px;}
.y38{bottom:582.897438px;}
.y98{bottom:583.533005px;}
.yd{bottom:590.036063px;}
.y79{bottom:594.843150px;}
.y56{bottom:598.353474px;}
.y37{bottom:600.825634px;}
.yc{bottom:606.479544px;}
.y78{bottom:612.784796px;}
.y55{bottom:616.281670px;}
.y36{bottom:618.753830px;}
.yb{bottom:622.923025px;}
.y77{bottom:630.712993px;}
.y54{bottom:634.209867px;}
.y35{bottom:636.695476px;}
.ya{bottom:639.353056px;}
.y97{bottom:641.175141px;}
.y76{bottom:648.641189px;}
.y53{bottom:652.151513px;}
.y34{bottom:654.623673px;}
.y9{bottom:655.796537px;}
.y96{bottom:657.605173px;}
.y75{bottom:666.582835px;}
.y52{bottom:670.079709px;}
.y8{bottom:672.226568px;}
.y33{bottom:672.551869px;}
.y95{bottom:674.048654px;}
.y74{bottom:684.511031px;}
.y51{bottom:688.021355px;}
.y7{bottom:688.670049px;}
.y94{bottom:690.492135px;}
.y32{bottom:690.493515px;}
.y73{bottom:702.439228px;}
.y93{bottom:706.922166px;}
.y50{bottom:714.657362px;}
.y72{bottom:720.380874px;}
.y92{bottom:723.365647px;}
.y31{bottom:726.349503px;}
.yc0{bottom:735.321693px;}
.y71{bottom:738.309070px;}
.y91{bottom:739.809128px;}
.y6{bottom:749.879179px;}
.ybf{bottom:751.751724px;}
.y4f{bottom:756.237266px;}
.y5{bottom:767.807496px;}
.ybe{bottom:768.195205px;}
.y30{bottom:774.178912px;}
.y4{bottom:784.250977px;}
.ybd{bottom:784.638686px;}
.y2f{bottom:792.107109px;}
.ybc{bottom:801.068718px;}
.y2e{bottom:810.035305px;}
.y3{bottom:814.301971px;}
.ybb{bottom:817.512199px;}
.y2d{bottom:827.976951px;}
.yba{bottom:833.955680px;}
.y2c{bottom:845.905147px;}
.yb9{bottom:850.385711px;}
.y2b{bottom:863.833344px;}
.yb8{bottom:866.829192px;}
.y2{bottom:872.824613px;}
.y2a{bottom:881.774990px;}
.yb7{bottom:883.272673px;}
.yb6{bottom:899.702704px;}
.y29{bottom:899.703186px;}
.y1{bottom:899.730194px;}
.y28{bottom:934.519684px;}
.h9{height:34.956728px;}
.h4{height:37.013299px;}
.h6{height:37.336090px;}
.h8{height:41.125612px;}
.ha{height:41.484265px;}
.h5{height:43.395975px;}
.h7{height:49.781036px;}
.h2{height:59.737577px;}
.h3{height:77.955360px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x7{left:59.103000px;}
.x3{left:69.835499px;}
.xc{left:76.964069px;}
.xa{left:80.365626px;}
.x5{left:82.295528px;}
.x2{left:95.242102px;}
.xb{left:98.295187px;}
.x6{left:101.627983px;}
.x9{left:102.775497px;}
.x4{left:126.481499px;}
.x1{left:140.062500px;}
.x8{left:322.029007px;}
@media print{
.v4{vertical-align:-19.248698pt;}
.v2{vertical-align:-2.594730pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.594730pt;}
.v1{vertical-align:19.248698pt;}
.ls12{letter-spacing:-0.839515pt;}
.lsc{letter-spacing:-0.022582pt;}
.lse{letter-spacing:-0.021254pt;}
.ls10{letter-spacing:-0.015940pt;}
.ls6{letter-spacing:-0.010627pt;}
.ls9{letter-spacing:-0.009564pt;}
.lsb{letter-spacing:-0.009033pt;}
.lsf{letter-spacing:-0.006376pt;}
.ls5{letter-spacing:-0.005313pt;}
.ls7{letter-spacing:-0.004782pt;}
.lsa{letter-spacing:-0.004516pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.004782pt;}
.lsd{letter-spacing:0.005313pt;}
.ls11{letter-spacing:0.006376pt;}
.ls16{letter-spacing:0.014346pt;}
.ls14{letter-spacing:0.015940pt;}
.ls13{letter-spacing:0.021254pt;}
.ls17{letter-spacing:0.138680pt;}
.ls3{letter-spacing:0.474650pt;}
.ls0{letter-spacing:2.632835pt;}
.ls1{letter-spacing:11.955200pt;}
.ls2{letter-spacing:12.003021pt;}
.ls15{letter-spacing:37.177766pt;}
.wsb0{word-spacing:-0.070137pt;}
.ws4{word-spacing:-0.058554pt;}
.wsb8{word-spacing:-0.047821pt;}
.wsb4{word-spacing:-0.043039pt;}
.ws3{word-spacing:-0.040382pt;}
.ws15{word-spacing:-0.038257pt;}
.ws51{word-spacing:-0.037194pt;}
.ws28{word-spacing:-0.036131pt;}
.ws36{word-spacing:-0.031880pt;}
.ws29{word-spacing:0.000000pt;}
.wsc1{word-spacing:6.776208pt;}
.wsc{word-spacing:7.249633pt;}
.wsc2{word-spacing:7.675238pt;}
.wscd{word-spacing:8.354294pt;}
.wsac{word-spacing:8.837284pt;}
.ws86{word-spacing:8.910549pt;}
.ws91{word-spacing:9.016817pt;}
.ws11{word-spacing:9.172029pt;}
.ws9d{word-spacing:9.340933pt;}
.ws3d{word-spacing:9.484395pt;}
.wsc4{word-spacing:9.597634pt;}
.wsb{word-spacing:9.678930pt;}
.ws35{word-spacing:9.680991pt;}
.wsa{word-spacing:9.736315pt;}
.ws37{word-spacing:9.840392pt;}
.ws80{word-spacing:9.930719pt;}
.ws81{word-spacing:9.978540pt;}
.ws82{word-spacing:10.015733pt;}
.wsf{word-spacing:10.133228pt;}
.ws2f{word-spacing:10.265463pt;}
.ws76{word-spacing:10.302657pt;}
.ws43{word-spacing:10.387663pt;}
.ws44{word-spacing:10.408924pt;}
.wsc3{word-spacing:10.420152pt;}
.wsb3{word-spacing:10.472755pt;}
.wsd3{word-spacing:10.520576pt;}
.ws7f{word-spacing:10.531132pt;}
.ws12{word-spacing:10.611436pt;}
.ws72{word-spacing:10.743668pt;}
.ws64{word-spacing:10.780861pt;}
.ws24{word-spacing:10.791488pt;}
.wsd2{word-spacing:10.807501pt;}
.ws90{word-spacing:10.828682pt;}
.ws62{word-spacing:10.934950pt;}
.wsa7{word-spacing:10.945576pt;}
.wsb2{word-spacing:11.041823pt;}
.ws4c{word-spacing:11.083724pt;}
.ws1f{word-spacing:11.120918pt;}
.ws27{word-spacing:11.241253pt;}
.ws55{word-spacing:11.248439pt;}
.ws26{word-spacing:11.254802pt;}
.ws54{word-spacing:11.264379pt;}
.ws9c{word-spacing:11.312200pt;}
.ws93{word-spacing:11.466288pt;}
.ws9e{word-spacing:11.514109pt;}
.ws50{word-spacing:11.561929pt;}
.ws52{word-spacing:11.599123pt;}
.ws20{word-spacing:11.657570pt;}
.wsaa{word-spacing:11.668275pt;}
.wsa0{word-spacing:11.705391pt;}
.ws23{word-spacing:11.795718pt;}
.ws1b{word-spacing:11.801031pt;}
.wsc5{word-spacing:11.806956pt;}
.wsce{word-spacing:11.854776pt;}
.wsbb{word-spacing:11.864341pt;}
.wsc6{word-spacing:11.869123pt;}
.wsbe{word-spacing:11.883469pt;}
.ws97{word-spacing:11.891359pt;}
.ws18{word-spacing:11.897815pt;}
.wsbd{word-spacing:11.902597pt;}
.ws5{word-spacing:11.907379pt;}
.ws19{word-spacing:11.912161pt;}
.ws17{word-spacing:11.940848pt;}
.ws2a{word-spacing:11.945636pt;}
.ws6{word-spacing:11.993456pt;}
.wsd{word-spacing:12.050841pt;}
.ws39{word-spacing:12.082641pt;}
.ws92{word-spacing:12.125148pt;}
.wsad{word-spacing:12.127355pt;}
.ws13{word-spacing:12.146483pt;}
.ws6f{word-spacing:12.172969pt;}
.ws34{word-spacing:12.183596pt;}
.ws21{word-spacing:12.316430pt;}
.ws45{word-spacing:12.454578pt;}
.ws33{word-spacing:12.762754pt;}
.wsbc{word-spacing:12.772936pt;}
.ws96{word-spacing:12.858395pt;}
.wscc{word-spacing:12.868577pt;}
.wsa5{word-spacing:12.895589pt;}
.ws14{word-spacing:12.906833pt;}
.wsc0{word-spacing:12.916398pt;}
.wsa8{word-spacing:13.001857pt;}
.ws56{word-spacing:13.028423pt;}
.ws9b{word-spacing:13.039051pt;}
.ws3e{word-spacing:13.145318pt;}
.wsd0{word-spacing:13.145937pt;}
.wsd1{word-spacing:13.184189pt;}
.ws30{word-spacing:13.187825pt;}
.ws2d{word-spacing:13.193139pt;}
.ws73{word-spacing:13.230332pt;}
.ws5f{word-spacing:13.240959pt;}
.ws2b{word-spacing:13.267527pt;}
.ws2{word-spacing:13.278153pt;}
.ws5e{word-spacing:13.288779pt;}
.wsc7{word-spacing:13.308529pt;}
.ws25{word-spacing:13.320660pt;}
.ws5d{word-spacing:13.325973pt;}
.ws95{word-spacing:13.336600pt;}
.ws3a{word-spacing:13.384421pt;}
.ws6e{word-spacing:13.527882pt;}
.wsba{word-spacing:13.538068pt;}
.ws3c{word-spacing:13.575702pt;}
.ws71{word-spacing:13.719164pt;}
.wsb9{word-spacing:13.877596pt;}
.wsab{word-spacing:13.949328pt;}
.wsb6{word-spacing:13.963674pt;}
.ws6a{word-spacing:13.979520pt;}
.ws1c{word-spacing:14.000773pt;}
.ws2c{word-spacing:14.011400pt;}
.ws6b{word-spacing:14.048593pt;}
.wsbf{word-spacing:14.059315pt;}
.ws49{word-spacing:14.096415pt;}
.ws42{word-spacing:14.154862pt;}
.ws69{word-spacing:14.202683pt;}
.ws22{word-spacing:14.239876pt;}
.ws83{word-spacing:14.298323pt;}
.ws68{word-spacing:14.340831pt;}
.ws8{word-spacing:14.470574pt;}
.ws57{word-spacing:14.489605pt;}
.ws70{word-spacing:14.532112pt;}
.ws38{word-spacing:14.574620pt;}
.ws98{word-spacing:14.585245pt;}
.ws9f{word-spacing:14.633067pt;}
.ws4f{word-spacing:14.776528pt;}
.wse{word-spacing:14.824448pt;}
.wscf{word-spacing:14.838795pt;}
.ws65{word-spacing:14.967810pt;}
.ws85{word-spacing:15.015630pt;}
.ws7b{word-spacing:15.148465pt;}
.ws10{word-spacing:15.211797pt;}
.ws88{word-spacing:15.217524pt;}
.ws89{word-spacing:15.249419pt;}
.ws9{word-spacing:15.259618pt;}
.ws59{word-spacing:15.679804pt;}
.ws58{word-spacing:15.727624pt;}
.wsc9{word-spacing:15.756953pt;}
.ws74{word-spacing:15.799860pt;}
.ws40{word-spacing:15.849832pt;}
.ws87{word-spacing:15.855145pt;}
.ws3b{word-spacing:15.895501pt;}
.ws7c{word-spacing:15.918906pt;}
.ws47{word-spacing:15.966726pt;}
.ws3f{word-spacing:16.009234pt;}
.wsb1{word-spacing:16.225597pt;}
.ws1{word-spacing:16.281981pt;}
.wsae{word-spacing:16.282982pt;}
.ws5c{word-spacing:16.359918pt;}
.ws5a{word-spacing:16.444931pt;}
.wsc8{word-spacing:16.469483pt;}
.ws7a{word-spacing:16.588393pt;}
.ws79{word-spacing:16.657450pt;}
.wsa2{word-spacing:16.689347pt;}
.ws8e{word-spacing:16.731854pt;}
.ws8f{word-spacing:16.737167pt;}
.ws1d{word-spacing:16.747794pt;}
.ws6c{word-spacing:16.880629pt;}
.ws4a{word-spacing:16.928449pt;}
.ws8a{word-spacing:16.986897pt;}
.wsb5{word-spacing:17.048115pt;}
.ws6d{word-spacing:17.050657pt;}
.ws99{word-spacing:17.055970pt;}
.ws1e{word-spacing:17.066598pt;}
.ws60{word-spacing:17.071912pt;}
.ws67{word-spacing:17.167552pt;}
.wsa6{word-spacing:17.220685pt;}
.ws61{word-spacing:17.225999pt;}
.ws8d{word-spacing:17.342894pt;}
.ws77{word-spacing:17.560742pt;}
.ws8c{word-spacing:17.688263pt;}
.ws5b{word-spacing:17.752024pt;}
.wsa1{word-spacing:17.884859pt;}
.ws63{word-spacing:17.932679pt;}
.wsca{word-spacing:17.956710pt;}
.ws78{word-spacing:18.065514pt;}
.ws48{word-spacing:18.283363pt;}
.ws84{word-spacing:18.320557pt;}
.ws75{word-spacing:18.331183pt;}
.wsaf{word-spacing:18.425355pt;}
.ws16{word-spacing:18.583163pt;}
.ws94{word-spacing:18.665927pt;}
.ws4b{word-spacing:18.713747pt;}
.ws0{word-spacing:19.021149pt;}
.ws9a{word-spacing:19.468248pt;}
.ws4d{word-spacing:19.558576pt;}
.ws4e{word-spacing:19.617023pt;}
.wsa4{word-spacing:19.856126pt;}
.ws66{word-spacing:19.951766pt;}
.ws53{word-spacing:20.068661pt;}
.ws31{word-spacing:20.190869pt;}
.ws41{word-spacing:20.392778pt;}
.wsa3{word-spacing:20.679700pt;}
.ws8b{word-spacing:21.136652pt;}
.ws7d{word-spacing:21.354501pt;}
.ws7e{word-spacing:21.630797pt;}
.ws32{word-spacing:21.737064pt;}
.wsb7{word-spacing:21.882798pt;}
.wscb{word-spacing:23.092664pt;}
.ws46{word-spacing:23.788032pt;}
.ws7{word-spacing:26.483159pt;}
.wsa9{word-spacing:26.535740pt;}
.ws2e{word-spacing:27.401134pt;}
.ws1a{word-spacing:53.061517pt;}
._0{margin-left:-6.330052pt;}
._2{margin-left:-5.400389pt;}
._4{margin-left:-3.835228pt;}
._6{margin-left:-2.135980pt;}
._1{margin-left:-1.195520pt;}
._3{width:0.892828pt;}
._f{width:9.954680pt;}
._7{width:10.924330pt;}
._8{width:12.730872pt;}
._e{width:13.910448pt;}
._5{width:15.771302pt;}
._b{width:21.157913pt;}
._a{width:28.357545pt;}
._d{width:44.292389pt;}
._c{width:53.131652pt;}
._9{width:149.717359pt;}
.fs7{font-size:39.850667pt;}
.fs2{font-size:40.381867pt;}
.fs6{font-size:45.163732pt;}
.fs4{font-size:47.820800pt;}
.fs1{font-size:53.133865pt;}
.fs3{font-size:58.553599pt;}
.fs5{font-size:63.760533pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:43.928437pt;}
.y26{bottom:57.212220pt;}
.y25{bottom:70.496002pt;}
.yb5{bottom:83.562573pt;}
.y70{bottom:83.574554pt;}
.y4e{bottom:90.401251pt;}
.yb4{bottom:98.167045pt;}
.y24{bottom:98.694078pt;}
.y6f{bottom:99.510729pt;}
.y4d{bottom:106.337426pt;}
.y90{bottom:111.654571pt;}
.yb3{bottom:112.783473pt;}
.y23{bottom:114.642207pt;}
.y6e{bottom:115.446903pt;}
.y4c{bottom:122.273600pt;}
.yb2{bottom:127.052004pt;}
.y8f{bottom:127.590746pt;}
.y22{bottom:130.578382pt;}
.y6d{bottom:131.395033pt;}
.y4b{bottom:138.221730pt;}
.yb1{bottom:141.656476pt;}
.y8e{bottom:143.526920pt;}
.y21{bottom:146.514556pt;}
.y6c{bottom:147.331207pt;}
.y4a{bottom:154.157904pt;}
.yb0{bottom:156.272904pt;}
.y8d{bottom:159.475050pt;}
.y20{bottom:162.462686pt;}
.y6b{bottom:163.279337pt;}
.y49{bottom:170.094079pt;}
.yaf{bottom:170.529480pt;}
.y8c{bottom:175.411224pt;}
.y1f{bottom:178.398861pt;}
.y6a{bottom:179.215512pt;}
.yae{bottom:185.145907pt;}
.y48{bottom:186.042209pt;}
.y8b{bottom:191.347399pt;}
.y1e{bottom:194.335035pt;}
.y69{bottom:195.151686pt;}
.yad{bottom:199.762335pt;}
.y47{bottom:201.978383pt;}
.y8a{bottom:207.295529pt;}
.y1d{bottom:210.283165pt;}
.y68{bottom:211.099816pt;}
.yac{bottom:214.018911pt;}
.y46{bottom:217.914558pt;}
.y89{bottom:223.231703pt;}
.y1c{bottom:226.219339pt;}
.y67{bottom:227.035990pt;}
.yab{bottom:228.635338pt;}
.y45{bottom:233.862687pt;}
.y88{bottom:239.167878pt;}
.y1b{bottom:242.155514pt;}
.yaa{bottom:243.239811pt;}
.y87{bottom:255.116007pt;}
.y66{bottom:256.028137pt;}
.ya9{bottom:257.508342pt;}
.y1a{bottom:258.103644pt;}
.y44{bottom:260.430947pt;}
.ya8{bottom:272.112814pt;}
.y19{bottom:274.039818pt;}
.ya7{bottom:286.729242pt;}
.y86{bottom:287.000142pt;}
.y18{bottom:289.975993pt;}
.y65{bottom:292.755405pt;}
.y43{bottom:300.282673pt;}
.ya6{bottom:300.997773pt;}
.y64{bottom:308.703535pt;}
.ya5{bottom:315.602245pt;}
.y42{bottom:316.218848pt;}
.y17{bottom:321.860006pt;}
.y63{bottom:324.639710pt;}
.y85{bottom:329.500129pt;}
.ya4{bottom:329.870777pt;}
.y41{bottom:332.155022pt;}
.y62{bottom:340.587839pt;}
.ya3{bottom:344.475249pt;}
.y84{bottom:345.436303pt;}
.y40{bottom:348.103152pt;}
.y61{bottom:356.524014pt;}
.ya2{bottom:359.091676pt;}
.y83{bottom:361.384433pt;}
.y3f{bottom:364.039326pt;}
.y60{bottom:372.460189pt;}
.ya1{bottom:373.348252pt;}
.y82{bottom:377.320607pt;}
.y16{bottom:378.361241pt;}
.y3e{bottom:379.975501pt;}
.ya0{bottom:387.964680pt;}
.y5f{bottom:388.408318pt;}
.y15{bottom:392.965714pt;}
.y81{bottom:393.256782pt;}
.y3d{bottom:395.923631pt;}
.y9f{bottom:402.581107pt;}
.y5e{bottom:404.344493pt;}
.y80{bottom:409.204912pt;}
.y3c{bottom:411.859805pt;}
.y9e{bottom:417.185580pt;}
.y5d{bottom:420.280667pt;}
.y14{bottom:422.197373pt;}
.y7f{bottom:425.141086pt;}
.y3b{bottom:427.795980pt;}
.y9d{bottom:431.454111pt;}
.y5c{bottom:436.228797pt;}
.y13{bottom:436.801845pt;}
.y7e{bottom:441.077261pt;}
.y9c{bottom:446.058583pt;}
.y12{bottom:451.418273pt;}
.y5b{bottom:452.164972pt;}
.y3a{bottom:459.680013pt;}
.y9b{bottom:460.327114pt;}
.y7d{bottom:464.992814pt;}
.y11{bottom:466.034700pt;}
.y5a{bottom:468.101146pt;}
.y9a{bottom:474.943542pt;}
.y10{bottom:480.639173pt;}
.y7c{bottom:480.928988pt;}
.y59{bottom:484.049276pt;}
.y99{bottom:489.548014pt;}
.yf{bottom:495.255600pt;}
.y7b{bottom:496.877118pt;}
.y58{bottom:499.985450pt;}
.y39{bottom:502.182926pt;}
.ye{bottom:509.872028pt;}
.y7a{bottom:512.813292pt;}
.y57{bottom:515.921625pt;}
.y38{bottom:518.131056pt;}
.y98{bottom:518.696004pt;}
.yd{bottom:524.476500pt;}
.y79{bottom:528.749467pt;}
.y56{bottom:531.869755pt;}
.y37{bottom:534.067230pt;}
.yc{bottom:539.092928pt;}
.y78{bottom:544.697597pt;}
.y55{bottom:547.805929pt;}
.y36{bottom:550.003405pt;}
.yb{bottom:553.709355pt;}
.y77{bottom:560.633771pt;}
.y54{bottom:563.742104pt;}
.y35{bottom:565.951535pt;}
.ya{bottom:568.313827pt;}
.y97{bottom:569.933459pt;}
.y76{bottom:576.569946pt;}
.y53{bottom:579.690234pt;}
.y34{bottom:581.887709pt;}
.y9{bottom:582.930255pt;}
.y96{bottom:584.537931pt;}
.y75{bottom:592.518076pt;}
.y52{bottom:595.626408pt;}
.y8{bottom:597.534727pt;}
.y33{bottom:597.823884pt;}
.y95{bottom:599.154359pt;}
.y74{bottom:608.454250pt;}
.y51{bottom:611.574538pt;}
.y7{bottom:612.151155pt;}
.y94{bottom:613.770786pt;}
.y32{bottom:613.772013pt;}
.y73{bottom:624.390425pt;}
.y93{bottom:628.375259pt;}
.y50{bottom:635.250988pt;}
.y72{bottom:640.338554pt;}
.y92{bottom:642.991686pt;}
.y31{bottom:645.644002pt;}
.yc0{bottom:653.619283pt;}
.y71{bottom:656.274729pt;}
.y91{bottom:657.608114pt;}
.y6{bottom:666.559270pt;}
.ybf{bottom:668.223755pt;}
.y4f{bottom:672.210903pt;}
.y5{bottom:682.495552pt;}
.ybe{bottom:682.840183pt;}
.y30{bottom:688.159033pt;}
.y4{bottom:697.111979pt;}
.ybd{bottom:697.456610pt;}
.y2f{bottom:704.095208pt;}
.ybc{bottom:712.061082pt;}
.y2e{bottom:720.031382pt;}
.y3{bottom:723.823975pt;}
.ybb{bottom:726.677510pt;}
.y2d{bottom:735.979512pt;}
.yba{bottom:741.293937pt;}
.y2c{bottom:751.915687pt;}
.yb9{bottom:755.898410pt;}
.y2b{bottom:767.851861pt;}
.yb8{bottom:770.514837pt;}
.y2{bottom:775.844101pt;}
.y2a{bottom:783.799991pt;}
.yb7{bottom:785.131265pt;}
.yb6{bottom:799.735737pt;}
.y29{bottom:799.736165pt;}
.y1{bottom:799.760173pt;}
.y28{bottom:830.684163pt;}
.h9{height:31.072648pt;}
.h4{height:32.900710pt;}
.h6{height:33.187635pt;}
.h8{height:36.556099pt;}
.ha{height:36.874903pt;}
.h5{height:38.574200pt;}
.h7{height:44.249810pt;}
.h2{height:53.100068pt;}
.h3{height:69.293654pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x7{left:52.536000pt;}
.x3{left:62.075999pt;}
.xc{left:68.412506pt;}
.xa{left:71.436112pt;}
.x5{left:73.151580pt;}
.x2{left:84.659646pt;}
.xb{left:87.373500pt;}
.x6{left:90.335985pt;}
.x9{left:91.355998pt;}
.x4{left:112.427999pt;}
.x1{left:124.500000pt;}
.x8{left:286.248006pt;}
}




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