
    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_5a3e5c3960e66e7d35bdc590.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_55273c3dedc5db0a77470c74.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.435059;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_7087f35b3bfdd70a3d12af1f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084473;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_95d212fcffc1aa5919fccf35.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.090820;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_a6ee668ff9347fe73ce6878c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.927246;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_3ec4a3a002274db9de23b781.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.927246;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_14a3f93b0358a18980a267e2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.729980;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_c48236e1ad37918bbb50b886.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.060059;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_943c39037d839586f0705095.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.084473;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_985dca1f7d9929655e9cceb1.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.120117;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_7f2737bf1093a305d3af32ef.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.064941;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_300f60ad87e77930dbc0418b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d0702d9cdd099709e5e3c7a9.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.090820;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_a2de62059f6d9b0bde6c5ac4.woff2')format("woff");}.fff{font-family:fff;line-height:0.766602;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_07cc4aef6baa3fec9d01dc3e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.923828;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_2c857b135b076b840efbabc9.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.923828;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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.035156;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_7e2e50a58b72054b243c68dd.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.060059;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_b02dddf1510296e6cfe40790.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.120117;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_d247e52cf3ddcf1a4fc6bf93.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.774902;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-77.040000px;}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls21{letter-spacing:-0.984000px;}
.ls12{letter-spacing:-0.822000px;}
.ls20{letter-spacing:-0.720000px;}
.ls2a{letter-spacing:-0.372000px;}
.ls11{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.109200px;}
.ls7{letter-spacing:-0.106800px;}
.ls6{letter-spacing:-0.053280px;}
.ls2b{letter-spacing:-0.052560px;}
.ls27{letter-spacing:-0.010800px;}
.ls2{letter-spacing:-0.000003px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.010560px;}
.ls24{letter-spacing:0.012960px;}
.ls1{letter-spacing:0.023040px;}
.lsc{letter-spacing:0.047520px;}
.ls13{letter-spacing:0.048960px;}
.ls8{letter-spacing:0.054720px;}
.ls1b{letter-spacing:0.086400px;}
.ls2c{letter-spacing:0.126600px;}
.lsa{letter-spacing:0.144000px;}
.ls28{letter-spacing:0.211800px;}
.ls17{letter-spacing:0.262080px;}
.ls9{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.305400px;}
.lsf{letter-spacing:0.306720px;}
.ls25{letter-spacing:0.319680px;}
.ls4{letter-spacing:0.357000px;}
.ls26{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.612000px;}
.ls10{letter-spacing:0.663840px;}
.ls15{letter-spacing:0.666000px;}
.ls29{letter-spacing:0.708000px;}
.lsd{letter-spacing:0.767520px;}
.ls1d{letter-spacing:3.980160px;}
.ls23{letter-spacing:4.132800px;}
.ls18{letter-spacing:4.700160px;}
.ls1a{letter-spacing:6.860160px;}
.ls1c{letter-spacing:11.900160px;}
.ls22{letter-spacing:12.620160px;}
.ls19{letter-spacing:18.380160px;}
.ls1e{letter-spacing:19.820160px;}
.ls1f{letter-spacing:23.420160px;}
.lse{letter-spacing:39.427200px;}
.lsb{letter-spacing:498.780000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-72.000000px;}
.ws1{word-spacing:-24.418800px;}
.wsf{word-spacing:-21.067200px;}
.ws16{word-spacing:-18.572756px;}
.wse{word-spacing:-18.360000px;}
.wsd{word-spacing:-18.216000px;}
.ws0{word-spacing:-17.639997px;}
.ws11{word-spacing:-17.619840px;}
.ws17{word-spacing:-17.510640px;}
.ws15{word-spacing:-16.508160px;}
.ws9{word-spacing:-15.950880px;}
.wsa{word-spacing:-15.896160px;}
.ws7{word-spacing:-15.842880px;}
.ws8{word-spacing:-15.789360px;}
.ws13{word-spacing:-14.595840px;}
.ws4{word-spacing:-14.572800px;}
.ws12{word-spacing:-14.463600px;}
.ws2{word-spacing:-14.364000px;}
.ws14{word-spacing:-13.939200px;}
.ws10{word-spacing:-13.750800px;}
.ws6{word-spacing:-13.504200px;}
.ws19{word-spacing:-13.359000px;}
.ws1d{word-spacing:-13.273800px;}
.ws1c{word-spacing:-13.160160px;}
.ws5{word-spacing:-13.147200px;}
.ws18{word-spacing:-13.136400px;}
.ws1a{word-spacing:-13.094640px;}
.ws1b{word-spacing:-13.093920px;}
.ws3{word-spacing:-9.187200px;}
.wsb{word-spacing:0.000000px;}
._1d{margin-left:-4.802400px;}
._3{margin-left:-2.748960px;}
._1{margin-left:-1.080000px;}
._0{width:1.452009px;}
._6{width:2.717460px;}
._9{width:3.743074px;}
._8{width:4.780800px;}
._a{width:6.599983px;}
._4{width:8.246880px;}
._5{width:9.849086px;}
._16{width:10.969166px;}
._14{width:12.045600px;}
._2{width:13.098240px;}
._7{width:14.306863px;}
._b{width:15.511680px;}
._1c{width:16.513920px;}
._13{width:18.118080px;}
._12{width:19.200960px;}
._21{width:20.534400px;}
._19{width:23.443200px;}
._23{width:24.448320px;}
._22{width:25.655040px;}
._11{width:27.120960px;}
._1e{width:28.811031px;}
._25{width:31.728960px;}
._18{width:32.961600px;}
._17{width:34.087680px;}
._15{width:35.735040px;}
._1a{width:37.087920px;}
._f{width:38.753280px;}
._10{width:39.848151px;}
._1f{width:41.135040px;}
._20{width:42.459840px;}
._27{width:122.208951px;}
._26{width:123.583680px;}
._d{width:193.187031px;}
._c{width:194.428800px;}
._e{width:843.088800px;}
._24{width:848.316000px;}
._1b{width:849.583200px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc3{color:transparent;}
.fc0{color:rgb(56,86,35);}
.fs5{font-size:5.760000px;}
.fs3{font-size:18.000000px;}
.fs4{font-size:23.760000px;}
.fsa{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fsb{font-size:62.991941px;}
.fsc{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fsd{font-size:69.822393px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y82{bottom:3.420000px;}
.y7{bottom:3.960000px;}
.y9{bottom:4.500000px;}
.y49{bottom:5.580000px;}
.y86{bottom:5.760000px;}
.y17{bottom:6.120000px;}
.ya{bottom:10.080000px;}
.y40{bottom:15.120000px;}
.y8{bottom:21.060000px;}
.y6{bottom:22.320000px;}
.y48{bottom:25.200000px;}
.y81{bottom:31.005000px;}
.y47{bottom:44.640000px;}
.y85{bottom:44.820000px;}
.y3f{bottom:45.360000px;}
.yb{bottom:53.460000px;}
.y5{bottom:54.720000px;}
.y4e{bottom:58.320000px;}
.y80{bottom:58.365000px;}
.y46{bottom:64.260000px;}
.y3e{bottom:65.745000px;}
.y4d{bottom:75.240000px;}
.y7f{bottom:76.905000px;}
.y43{bottom:79.020000px;}
.y4c{bottom:80.820000px;}
.y4{bottom:81.360000px;}
.y6a{bottom:82.845000px;}
.y45{bottom:83.700000px;}
.y84{bottom:83.880000px;}
.y29{bottom:86.625000px;}
.y3d{bottom:95.085000px;}
.y42{bottom:101.340000px;}
.y44{bottom:103.320000px;}
.y7e{bottom:104.265000px;}
.y69{bottom:105.165000px;}
.y28{bottom:109.845000px;}
.yba{bottom:121.500000px;}
.y3c{bottom:125.325000px;}
.y68{bottom:126.945000px;}
.y27{bottom:131.985000px;}
.yb9{bottom:146.520000px;}
.y7d{bottom:149.625000px;}
.y26{bottom:154.125000px;}
.y3b{bottom:154.665000px;}
.yb8{bottom:165.270000px;}
.y7c{bottom:168.165000px;}
.y3a{bottom:174.825000px;}
.y25{bottom:176.445000px;}
.yb7{bottom:183.990000px;}
.y7b{bottom:186.525000px;}
.y67{bottom:193.545000px;}
.y39{bottom:194.985000px;}
.yb6{bottom:202.710000px;}
.y7a{bottom:205.065000px;}
.y4a{bottom:210.990000px;}
.y66{bottom:214.245000px;}
.y38{bottom:215.325000px;}
.yb5{bottom:221.430000px;}
.y88{bottom:223.050000px;}
.y79{bottom:223.425000px;}
.y41{bottom:233.850000px;}
.y37{bottom:235.485000px;}
.y65{bottom:236.565000px;}
.yb4{bottom:239.970000px;}
.y78{bottom:241.965000px;}
.y24{bottom:243.585000px;}
.y87{bottom:244.830000px;}
.y36{bottom:255.645000px;}
.yb3{bottom:258.690000px;}
.y64{bottom:258.705000px;}
.y83{bottom:259.050000px;}
.y77{bottom:260.325000px;}
.y23{bottom:265.365000px;}
.y35{bottom:275.985000px;}
.y76{bottom:278.895000px;}
.y63{bottom:281.055000px;}
.yb2{bottom:281.910000px;}
.y22{bottom:287.505000px;}
.y34{bottom:296.145000px;}
.y75{bottom:297.435000px;}
.yb1{bottom:300.630000px;}
.y62{bottom:303.195000px;}
.y21{bottom:309.855000px;}
.y74{bottom:315.795000px;}
.y33{bottom:316.515000px;}
.yb0{bottom:319.170000px;}
.y61{bottom:325.515000px;}
.y20{bottom:332.175000px;}
.y73{bottom:334.335000px;}
.y32{bottom:336.675000px;}
.yaf{bottom:337.890000px;}
.y60{bottom:347.835000px;}
.y18{bottom:351.030000px;}
.y72{bottom:352.695000px;}
.y1f{bottom:354.315000px;}
.yae{bottom:356.610000px;}
.y31{bottom:356.835000px;}
.y5f{bottom:369.975000px;}
.y71{bottom:371.235000px;}
.yad{bottom:375.330000px;}
.y59{bottom:376.230000px;}
.y1e{bottom:376.635000px;}
.y30{bottom:377.175000px;}
.y70{bottom:389.775000px;}
.y5e{bottom:392.295000px;}
.yac{bottom:393.870000px;}
.y2f{bottom:397.335000px;}
.y1d{bottom:398.775000px;}
.y6f{bottom:408.135000px;}
.y5d{bottom:414.435000px;}
.yab{bottom:417.135000px;}
.y2e{bottom:417.495000px;}
.y1c{bottom:421.095000px;}
.y6e{bottom:426.675000px;}
.yaa{bottom:435.855000px;}
.y5c{bottom:436.755000px;}
.y2d{bottom:437.835000px;}
.y1b{bottom:443.235000px;}
.y6d{bottom:445.035000px;}
.ya9{bottom:454.575000px;}
.y2c{bottom:457.995000px;}
.y5b{bottom:458.895000px;}
.y6c{bottom:463.575000px;}
.y1a{bottom:465.555000px;}
.ya8{bottom:473.115000px;}
.y2b{bottom:478.155000px;}
.y5a{bottom:481.215000px;}
.y19{bottom:487.875000px;}
.y6b{bottom:490.935000px;}
.ya7{bottom:491.835000px;}
.y2a{bottom:498.495000px;}
.ya6{bottom:510.555000px;}
.ya5{bottom:533.595000px;}
.ya4{bottom:552.315000px;}
.ya3{bottom:571.035000px;}
.ya2{bottom:589.755000px;}
.ya1{bottom:608.475000px;}
.ya0{bottom:627.015000px;}
.y9f{bottom:645.735000px;}
.y9e{bottom:664.485000px;}
.y9d{bottom:683.205000px;}
.y9c{bottom:706.245000px;}
.y9b{bottom:724.965000px;}
.y9a{bottom:743.685000px;}
.y99{bottom:762.405000px;}
.yce{bottom:767.625000px;}
.y98{bottom:780.945000px;}
.ycd{bottom:785.265000px;}
.y97{bottom:799.665000px;}
.ycc{bottom:807.225000px;}
.y96{bottom:818.385000px;}
.ycb{bottom:824.865000px;}
.yca{bottom:842.505000px;}
.y95{bottom:846.645000px;}
.y16{bottom:863.745000px;}
.yc9{bottom:864.465000px;}
.y94{bottom:876.165000px;}
.yc8{bottom:882.105000px;}
.y58{bottom:882.285000px;}
.y15{bottom:894.885000px;}
.yc7{bottom:904.290000px;}
.y57{bottom:913.470000px;}
.yc6{bottom:921.930000px;}
.y14{bottom:924.270000px;}
.y93{bottom:932.190000px;}
.y56{bottom:942.810000px;}
.yc5{bottom:949.110000px;}
.y13{bottom:950.190000px;}
.y92{bottom:950.910000px;}
.y12{bottom:967.110000px;}
.y55{bottom:968.910000px;}
.y91{bottom:969.630000px;}
.yc4{bottom:978.630000px;}
.y54{bottom:985.650000px;}
.y11{bottom:986.190000px;}
.y90{bottom:992.670000px;}
.yc3{bottom:997.350000px;}
.y53{bottom:1004.730000px;}
.y8f{bottom:1011.390000px;}
.y10{bottom:1015.350000px;}
.yc2{bottom:1015.890000px;}
.y8e{bottom:1030.110000px;}
.y52{bottom:1033.710000px;}
.yc1{bottom:1034.610000px;}
.yf{bottom:1047.930000px;}
.y8d{bottom:1048.830000px;}
.yc0{bottom:1053.330000px;}
.y51{bottom:1065.930000px;}
.y8c{bottom:1067.370000px;}
.ybf{bottom:1072.050000px;}
.ye{bottom:1080.510000px;}
.y8b{bottom:1086.090000px;}
.ybe{bottom:1090.590000px;}
.y50{bottom:1098.330000px;}
.y8a{bottom:1104.810000px;}
.ybd{bottom:1109.310000px;}
.yd{bottom:1113.090000px;}
.ybc{bottom:1128.030000px;}
.y4f{bottom:1130.730000px;}
.y89{bottom:1133.070000px;}
.yc{bottom:1138.650000px;}
.y3{bottom:1150.200000px;}
.ybb{bottom:1156.320000px;}
.y2{bottom:1171.980000px;}
.y4b{bottom:1192.680000px;}
.y1{bottom:1193.220000px;}
.h20{height:4.876875px;}
.ha{height:5.073750px;}
.h1f{height:5.729063px;}
.h6{height:17.903320px;}
.h8{height:20.929219px;}
.h10{height:21.420000px;}
.h21{height:21.456000px;}
.h1e{height:24.328477px;}
.h5{height:26.640000px;}
.hb{height:34.366289px;}
.he{height:42.257813px;}
.h14{height:47.189531px;}
.h16{height:50.229844px;}
.h23{height:50.597578px;}
.h17{height:51.764766px;}
.h19{height:52.640156px;}
.h2{height:54.000000px;}
.h1c{height:54.386719px;}
.h24{height:54.883125px;}
.h1a{height:55.487042px;}
.h15{height:56.084062px;}
.hf{height:57.377812px;}
.h11{height:58.348125px;}
.h13{height:59.706562px;}
.h25{height:60.960938px;}
.h26{height:61.503709px;}
.h3{height:62.211094px;}
.h7{height:62.367188px;}
.h9{height:63.421875px;}
.h4{height:65.884219px;}
.hc{height:68.219648px;}
.h1d{height:73.722656px;}
.hd{height:74.926406px;}
.h1b{height:81.078047px;}
.h18{height:117.180000px;}
.h22{height:506.055000px;}
.h12{height:512.715000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:149.040000px;}
.w7{width:159.660000px;}
.w4{width:240.690000px;}
.w3{width:240.870000px;}
.w8{width:569.130000px;}
.w6{width:578.310000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:8.100000px;}
.x4{left:84.996000px;}
.xa{left:93.995987px;}
.xf{left:95.615987px;}
.x15{left:99.575987px;}
.xb{left:111.995987px;}
.x7{left:115.740000px;}
.x6{left:120.240000px;}
.x1{left:122.615987px;}
.x1c{left:127.475987px;}
.x1f{left:141.875987px;}
.x2{left:147.815987px;}
.x1a{left:150.885000px;}
.x21{left:161.309987px;}
.x20{left:218.189987px;}
.x11{left:234.030000px;}
.x9{left:241.995000px;}
.x18{left:244.650000px;}
.x5{left:325.875000px;}
.x24{left:345.674987px;}
.x1e{left:357.734987px;}
.x1b{left:360.254987px;}
.x17{left:362.594987px;}
.xe{left:369.614987px;}
.xc{left:377.534987px;}
.x16{left:380.594987px;}
.x25{left:400.574987px;}
.x1d{left:402.734987px;}
.x22{left:421.094987px;}
.x13{left:430.140000px;}
.x14{left:441.794987px;}
.xd{left:446.504987px;}
.x19{left:475.860000px;}
.x23{left:497.444987px;}
.x12{left:541.200000px;}
.x8{left:566.565000px;}
.x3{left:808.019987px;}
@media print{
.v3{vertical-align:-68.480000pt;}
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls21{letter-spacing:-0.874667pt;}
.ls12{letter-spacing:-0.730667pt;}
.ls20{letter-spacing:-0.640000pt;}
.ls2a{letter-spacing:-0.330667pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.097067pt;}
.ls7{letter-spacing:-0.094933pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls2b{letter-spacing:-0.046720pt;}
.ls27{letter-spacing:-0.009600pt;}
.ls2{letter-spacing:-0.000003pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.009387pt;}
.ls24{letter-spacing:0.011520pt;}
.ls1{letter-spacing:0.020480pt;}
.lsc{letter-spacing:0.042240pt;}
.ls13{letter-spacing:0.043520pt;}
.ls8{letter-spacing:0.048640pt;}
.ls1b{letter-spacing:0.076800pt;}
.ls2c{letter-spacing:0.112533pt;}
.lsa{letter-spacing:0.128000pt;}
.ls28{letter-spacing:0.188267pt;}
.ls17{letter-spacing:0.232960pt;}
.ls9{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.271467pt;}
.lsf{letter-spacing:0.272640pt;}
.ls25{letter-spacing:0.284160pt;}
.ls4{letter-spacing:0.317333pt;}
.ls26{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.544000pt;}
.ls10{letter-spacing:0.590080pt;}
.ls15{letter-spacing:0.592000pt;}
.ls29{letter-spacing:0.629333pt;}
.lsd{letter-spacing:0.682240pt;}
.ls1d{letter-spacing:3.537920pt;}
.ls23{letter-spacing:3.673600pt;}
.ls18{letter-spacing:4.177920pt;}
.ls1a{letter-spacing:6.097920pt;}
.ls1c{letter-spacing:10.577920pt;}
.ls22{letter-spacing:11.217920pt;}
.ls19{letter-spacing:16.337920pt;}
.ls1e{letter-spacing:17.617920pt;}
.ls1f{letter-spacing:20.817920pt;}
.lse{letter-spacing:35.046400pt;}
.lsb{letter-spacing:443.360000pt;}
.wsc{word-spacing:-64.000000pt;}
.ws1{word-spacing:-21.705600pt;}
.wsf{word-spacing:-18.726400pt;}
.ws16{word-spacing:-16.509117pt;}
.wse{word-spacing:-16.320000pt;}
.wsd{word-spacing:-16.192000pt;}
.ws0{word-spacing:-15.679997pt;}
.ws11{word-spacing:-15.662080pt;}
.ws17{word-spacing:-15.565013pt;}
.ws15{word-spacing:-14.673920pt;}
.ws9{word-spacing:-14.178560pt;}
.wsa{word-spacing:-14.129920pt;}
.ws7{word-spacing:-14.082560pt;}
.ws8{word-spacing:-14.034987pt;}
.ws13{word-spacing:-12.974080pt;}
.ws4{word-spacing:-12.953600pt;}
.ws12{word-spacing:-12.856533pt;}
.ws2{word-spacing:-12.768000pt;}
.ws14{word-spacing:-12.390400pt;}
.ws10{word-spacing:-12.222933pt;}
.ws6{word-spacing:-12.003733pt;}
.ws19{word-spacing:-11.874667pt;}
.ws1d{word-spacing:-11.798933pt;}
.ws1c{word-spacing:-11.697920pt;}
.ws5{word-spacing:-11.686400pt;}
.ws18{word-spacing:-11.676800pt;}
.ws1a{word-spacing:-11.639680pt;}
.ws1b{word-spacing:-11.639040pt;}
.ws3{word-spacing:-8.166400pt;}
.wsb{word-spacing:0.000000pt;}
._1d{margin-left:-4.268800pt;}
._3{margin-left:-2.443520pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.290674pt;}
._6{width:2.415520pt;}
._9{width:3.327177pt;}
._8{width:4.249600pt;}
._a{width:5.866651pt;}
._4{width:7.330560pt;}
._5{width:8.754743pt;}
._16{width:9.750370pt;}
._14{width:10.707200pt;}
._2{width:11.642880pt;}
._7{width:12.717211pt;}
._b{width:13.788160pt;}
._1c{width:14.679040pt;}
._13{width:16.104960pt;}
._12{width:17.067520pt;}
._21{width:18.252800pt;}
._19{width:20.838400pt;}
._23{width:21.731840pt;}
._22{width:22.804480pt;}
._11{width:24.107520pt;}
._1e{width:25.609806pt;}
._25{width:28.203520pt;}
._18{width:29.299200pt;}
._17{width:30.300160pt;}
._15{width:31.764480pt;}
._1a{width:32.967040pt;}
._f{width:34.447360pt;}
._10{width:35.420579pt;}
._1f{width:36.564480pt;}
._20{width:37.742080pt;}
._27{width:108.630179pt;}
._26{width:109.852160pt;}
._d{width:171.721806pt;}
._c{width:172.825600pt;}
._e{width:749.412267pt;}
._24{width:754.058667pt;}
._1b{width:755.185067pt;}
.fs5{font-size:5.120000pt;}
.fs3{font-size:16.000000pt;}
.fs4{font-size:21.120000pt;}
.fsa{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fsb{font-size:55.992837pt;}
.fsc{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fsd{font-size:62.064349pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y82{bottom:3.040000pt;}
.y7{bottom:3.520000pt;}
.y9{bottom:4.000000pt;}
.y49{bottom:4.960000pt;}
.y86{bottom:5.120000pt;}
.y17{bottom:5.440000pt;}
.ya{bottom:8.960000pt;}
.y40{bottom:13.440000pt;}
.y8{bottom:18.720000pt;}
.y6{bottom:19.840000pt;}
.y48{bottom:22.400000pt;}
.y81{bottom:27.560000pt;}
.y47{bottom:39.680000pt;}
.y85{bottom:39.840000pt;}
.y3f{bottom:40.320000pt;}
.yb{bottom:47.520000pt;}
.y5{bottom:48.640000pt;}
.y4e{bottom:51.840000pt;}
.y80{bottom:51.880000pt;}
.y46{bottom:57.120000pt;}
.y3e{bottom:58.440000pt;}
.y4d{bottom:66.880000pt;}
.y7f{bottom:68.360000pt;}
.y43{bottom:70.240000pt;}
.y4c{bottom:71.840000pt;}
.y4{bottom:72.320000pt;}
.y6a{bottom:73.640000pt;}
.y45{bottom:74.400000pt;}
.y84{bottom:74.560000pt;}
.y29{bottom:77.000000pt;}
.y3d{bottom:84.520000pt;}
.y42{bottom:90.080000pt;}
.y44{bottom:91.840000pt;}
.y7e{bottom:92.680000pt;}
.y69{bottom:93.480000pt;}
.y28{bottom:97.640000pt;}
.yba{bottom:108.000000pt;}
.y3c{bottom:111.400000pt;}
.y68{bottom:112.840000pt;}
.y27{bottom:117.320000pt;}
.yb9{bottom:130.240000pt;}
.y7d{bottom:133.000000pt;}
.y26{bottom:137.000000pt;}
.y3b{bottom:137.480000pt;}
.yb8{bottom:146.906667pt;}
.y7c{bottom:149.480000pt;}
.y3a{bottom:155.400000pt;}
.y25{bottom:156.840000pt;}
.yb7{bottom:163.546667pt;}
.y7b{bottom:165.800000pt;}
.y67{bottom:172.040000pt;}
.y39{bottom:173.320000pt;}
.yb6{bottom:180.186667pt;}
.y7a{bottom:182.280000pt;}
.y4a{bottom:187.546667pt;}
.y66{bottom:190.440000pt;}
.y38{bottom:191.400000pt;}
.yb5{bottom:196.826667pt;}
.y88{bottom:198.266667pt;}
.y79{bottom:198.600000pt;}
.y41{bottom:207.866667pt;}
.y37{bottom:209.320000pt;}
.y65{bottom:210.280000pt;}
.yb4{bottom:213.306667pt;}
.y78{bottom:215.080000pt;}
.y24{bottom:216.520000pt;}
.y87{bottom:217.626667pt;}
.y36{bottom:227.240000pt;}
.yb3{bottom:229.946667pt;}
.y64{bottom:229.960000pt;}
.y83{bottom:230.266667pt;}
.y77{bottom:231.400000pt;}
.y23{bottom:235.880000pt;}
.y35{bottom:245.320000pt;}
.y76{bottom:247.906667pt;}
.y63{bottom:249.826667pt;}
.yb2{bottom:250.586667pt;}
.y22{bottom:255.560000pt;}
.y34{bottom:263.240000pt;}
.y75{bottom:264.386667pt;}
.yb1{bottom:267.226667pt;}
.y62{bottom:269.506667pt;}
.y21{bottom:275.426667pt;}
.y74{bottom:280.706667pt;}
.y33{bottom:281.346667pt;}
.yb0{bottom:283.706667pt;}
.y61{bottom:289.346667pt;}
.y20{bottom:295.266667pt;}
.y73{bottom:297.186667pt;}
.y32{bottom:299.266667pt;}
.yaf{bottom:300.346667pt;}
.y60{bottom:309.186667pt;}
.y18{bottom:312.026667pt;}
.y72{bottom:313.506667pt;}
.y1f{bottom:314.946667pt;}
.yae{bottom:316.986667pt;}
.y31{bottom:317.186667pt;}
.y5f{bottom:328.866667pt;}
.y71{bottom:329.986667pt;}
.yad{bottom:333.626667pt;}
.y59{bottom:334.426667pt;}
.y1e{bottom:334.786667pt;}
.y30{bottom:335.266667pt;}
.y70{bottom:346.466667pt;}
.y5e{bottom:348.706667pt;}
.yac{bottom:350.106667pt;}
.y2f{bottom:353.186667pt;}
.y1d{bottom:354.466667pt;}
.y6f{bottom:362.786667pt;}
.y5d{bottom:368.386667pt;}
.yab{bottom:370.786667pt;}
.y2e{bottom:371.106667pt;}
.y1c{bottom:374.306667pt;}
.y6e{bottom:379.266667pt;}
.yaa{bottom:387.426667pt;}
.y5c{bottom:388.226667pt;}
.y2d{bottom:389.186667pt;}
.y1b{bottom:393.986667pt;}
.y6d{bottom:395.586667pt;}
.ya9{bottom:404.066667pt;}
.y2c{bottom:407.106667pt;}
.y5b{bottom:407.906667pt;}
.y6c{bottom:412.066667pt;}
.y1a{bottom:413.826667pt;}
.ya8{bottom:420.546667pt;}
.y2b{bottom:425.026667pt;}
.y5a{bottom:427.746667pt;}
.y19{bottom:433.666667pt;}
.y6b{bottom:436.386667pt;}
.ya7{bottom:437.186667pt;}
.y2a{bottom:443.106667pt;}
.ya6{bottom:453.826667pt;}
.ya5{bottom:474.306667pt;}
.ya4{bottom:490.946667pt;}
.ya3{bottom:507.586667pt;}
.ya2{bottom:524.226667pt;}
.ya1{bottom:540.866667pt;}
.ya0{bottom:557.346667pt;}
.y9f{bottom:573.986667pt;}
.y9e{bottom:590.653333pt;}
.y9d{bottom:607.293333pt;}
.y9c{bottom:627.773333pt;}
.y9b{bottom:644.413333pt;}
.y9a{bottom:661.053333pt;}
.y99{bottom:677.693333pt;}
.yce{bottom:682.333333pt;}
.y98{bottom:694.173333pt;}
.ycd{bottom:698.013333pt;}
.y97{bottom:710.813333pt;}
.ycc{bottom:717.533333pt;}
.y96{bottom:727.453333pt;}
.ycb{bottom:733.213333pt;}
.yca{bottom:748.893333pt;}
.y95{bottom:752.573333pt;}
.y16{bottom:767.773333pt;}
.yc9{bottom:768.413333pt;}
.y94{bottom:778.813333pt;}
.yc8{bottom:784.093333pt;}
.y58{bottom:784.253333pt;}
.y15{bottom:795.453333pt;}
.yc7{bottom:803.813333pt;}
.y57{bottom:811.973333pt;}
.yc6{bottom:819.493333pt;}
.y14{bottom:821.573333pt;}
.y93{bottom:828.613333pt;}
.y56{bottom:838.053333pt;}
.yc5{bottom:843.653333pt;}
.y13{bottom:844.613333pt;}
.y92{bottom:845.253333pt;}
.y12{bottom:859.653333pt;}
.y55{bottom:861.253333pt;}
.y91{bottom:861.893333pt;}
.yc4{bottom:869.893333pt;}
.y54{bottom:876.133333pt;}
.y11{bottom:876.613333pt;}
.y90{bottom:882.373333pt;}
.yc3{bottom:886.533333pt;}
.y53{bottom:893.093333pt;}
.y8f{bottom:899.013333pt;}
.y10{bottom:902.533333pt;}
.yc2{bottom:903.013333pt;}
.y8e{bottom:915.653333pt;}
.y52{bottom:918.853333pt;}
.yc1{bottom:919.653333pt;}
.yf{bottom:931.493333pt;}
.y8d{bottom:932.293333pt;}
.yc0{bottom:936.293333pt;}
.y51{bottom:947.493333pt;}
.y8c{bottom:948.773333pt;}
.ybf{bottom:952.933333pt;}
.ye{bottom:960.453333pt;}
.y8b{bottom:965.413333pt;}
.ybe{bottom:969.413333pt;}
.y50{bottom:976.293333pt;}
.y8a{bottom:982.053333pt;}
.ybd{bottom:986.053333pt;}
.yd{bottom:989.413333pt;}
.ybc{bottom:1002.693333pt;}
.y4f{bottom:1005.093333pt;}
.y89{bottom:1007.173333pt;}
.yc{bottom:1012.133333pt;}
.y3{bottom:1022.400000pt;}
.ybb{bottom:1027.840000pt;}
.y2{bottom:1041.760000pt;}
.y4b{bottom:1060.160000pt;}
.y1{bottom:1060.640000pt;}
.h20{height:4.335000pt;}
.ha{height:4.510000pt;}
.h1f{height:5.092500pt;}
.h6{height:15.914062pt;}
.h8{height:18.603750pt;}
.h10{height:19.040000pt;}
.h21{height:19.072000pt;}
.h1e{height:21.625312pt;}
.h5{height:23.680000pt;}
.hb{height:30.547812pt;}
.he{height:37.562500pt;}
.h14{height:41.946250pt;}
.h16{height:44.648750pt;}
.h23{height:44.975625pt;}
.h17{height:46.013125pt;}
.h19{height:46.791250pt;}
.h2{height:48.000000pt;}
.h1c{height:48.343750pt;}
.h24{height:48.785000pt;}
.h1a{height:49.321815pt;}
.h15{height:49.852500pt;}
.hf{height:51.002500pt;}
.h11{height:51.865000pt;}
.h13{height:53.072500pt;}
.h25{height:54.187500pt;}
.h26{height:54.669964pt;}
.h3{height:55.298750pt;}
.h7{height:55.437500pt;}
.h9{height:56.375000pt;}
.h4{height:58.563750pt;}
.hc{height:60.639687pt;}
.h1d{height:65.531250pt;}
.hd{height:66.601250pt;}
.h1b{height:72.069375pt;}
.h18{height:104.160000pt;}
.h22{height:449.826667pt;}
.h12{height:455.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:132.480000pt;}
.w7{width:141.920000pt;}
.w4{width:213.946667pt;}
.w3{width:214.106667pt;}
.w8{width:505.893333pt;}
.w6{width:514.053333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:7.200000pt;}
.x4{left:75.552000pt;}
.xa{left:83.551988pt;}
.xf{left:84.991988pt;}
.x15{left:88.511988pt;}
.xb{left:99.551988pt;}
.x7{left:102.880000pt;}
.x6{left:106.880000pt;}
.x1{left:108.991988pt;}
.x1c{left:113.311988pt;}
.x1f{left:126.111988pt;}
.x2{left:131.391988pt;}
.x1a{left:134.120000pt;}
.x21{left:143.386655pt;}
.x20{left:193.946655pt;}
.x11{left:208.026667pt;}
.x9{left:215.106667pt;}
.x18{left:217.466667pt;}
.x5{left:289.666667pt;}
.x24{left:307.266655pt;}
.x1e{left:317.986655pt;}
.x1b{left:320.226655pt;}
.x17{left:322.306655pt;}
.xe{left:328.546655pt;}
.xc{left:335.586655pt;}
.x16{left:338.306655pt;}
.x25{left:356.066655pt;}
.x1d{left:357.986655pt;}
.x22{left:374.306655pt;}
.x13{left:382.346667pt;}
.x14{left:392.706655pt;}
.xd{left:396.893322pt;}
.x19{left:422.986667pt;}
.x23{left:442.173322pt;}
.x12{left:481.066667pt;}
.x8{left:503.613333pt;}
.x3{left:718.239988pt;}
}




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