
    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_b834c49484bfb8624ee28058.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.143111;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_78f01a9cef996641643cdbad.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_3b02aa796f113f23332d5771.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.166504;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_e3431232072b0fc76b70d940.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_36748eed48565b8577f919e6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.138222;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_5034b38e70d5963342d7e36a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.026667;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_c277c834b1113290bb84d19a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.125778;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_4c645242e413465e47540fee.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.142667;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_42dc6c5ff83f7af7ef10f9ad.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.142667;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_9e8a689253c6323460f3244b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.152889;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_789e403747ae545d19ccba21.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.125778;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_0725414053ce208a1dd1d072.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;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_3ce9021035a6562fa68b47d7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.960449;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_2cabfc8e2c84c892c39f11de.woff2')format("woff");}.fff{font-family:fff;line-height:1.402354;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_b2e4028384077ec0742d3ff7.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.690918;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_2f6c93cb409ab0b7ecedbeb2.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.914062;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_9f5f2ccecc1a6caad1c8507e.woff2')format("woff");}.ff12{font-family:ff12;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;}
.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:-61.920000px;}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.856000px;}
.v5{vertical-align:23.760000px;}
.v1{vertical-align:30.240000px;}
.ls1e{letter-spacing:-0.864000px;}
.ls15{letter-spacing:-0.792000px;}
.ls23{letter-spacing:-0.486000px;}
.ls8{letter-spacing:-0.324000px;}
.lsb{letter-spacing:-0.322800px;}
.ls7{letter-spacing:-0.298200px;}
.ls1c{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.247200px;}
.ls6{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.193800px;}
.ls1a{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.109200px;}
.ls19{letter-spacing:-0.072000px;}
.ls13{letter-spacing:-0.058320px;}
.ls22{letter-spacing:-0.018000px;}
.ls1f{letter-spacing:-0.000003px;}
.ls4{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000001px;}
.ls3{letter-spacing:0.053280px;}
.ls1d{letter-spacing:0.072000px;}
.lse{letter-spacing:0.083400px;}
.ls17{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.166800px;}
.ls11{letter-spacing:0.211800px;}
.ls5{letter-spacing:0.216000px;}
.ls20{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.322800px;}
.ls12{letter-spacing:0.357000px;}
.ls2{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.504000px;}
.ls21{letter-spacing:0.576000px;}
.ls16{letter-spacing:0.648000px;}
.lsd{letter-spacing:0.660000px;}
.ls1b{letter-spacing:54.864000px;}
.ls0{letter-spacing:98.874720px;}
.ls1{letter-spacing:837.900000px;}
.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;}
}
.ws16{word-spacing:-72.000000px;}
.wsf{word-spacing:-18.000000px;}
.ws12{word-spacing:-16.920000px;}
.ws19{word-spacing:-16.776000px;}
.ws1b{word-spacing:-16.704000px;}
.ws0{word-spacing:-16.632000px;}
.ws13{word-spacing:-16.560000px;}
.ws18{word-spacing:-16.488000px;}
.ws11{word-spacing:-16.416000px;}
.ws1a{word-spacing:-16.415997px;}
.ws1c{word-spacing:-16.344000px;}
.ws15{word-spacing:-16.272000px;}
.ws1{word-spacing:-16.200000px;}
.ws17{word-spacing:-16.128000px;}
.wse{word-spacing:-15.300000px;}
.wsd{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.285280px;}
.wsb{word-spacing:-13.982280px;}
.wsa{word-spacing:-13.837080px;}
.ws6{word-spacing:-13.708680px;}
.ws7{word-spacing:-13.625280px;}
.wsc{word-spacing:-13.566960px;}
.ws8{word-spacing:-13.516080px;}
.ws2{word-spacing:-13.505760px;}
.ws3{word-spacing:-13.176000px;}
.ws1e{word-spacing:-12.312000px;}
.ws1f{word-spacing:-12.311997px;}
.ws1d{word-spacing:-12.294000px;}
.ws14{word-spacing:-10.804920px;}
.ws4{word-spacing:-10.440000px;}
.ws9{word-spacing:-8.917920px;}
.ws10{word-spacing:0.000000px;}
._3{margin-left:-4.717440px;}
._4{margin-left:-3.577680px;}
._11{margin-left:-2.265600px;}
._1{margin-left:-1.224000px;}
._0{width:1.260000px;}
._2{width:2.325600px;}
._10{width:3.346560px;}
._6{width:4.520160px;}
._5{width:5.662800px;}
._e{width:6.786000px;}
._15{width:7.956000px;}
._c{width:8.964000px;}
._9{width:10.099440px;}
._8{width:11.295120px;}
._a{width:12.549600px;}
._14{width:13.591200px;}
._7{width:15.298560px;}
._d{width:16.434000px;}
._f{width:18.167040px;}
._17{width:19.527840px;}
._16{width:21.456000px;}
._18{width:22.482000px;}
._12{width:23.605200px;}
._13{width:24.807840px;}
._1a{width:26.526240px;}
._b{width:27.668880px;}
._21{width:30.108000px;}
._20{width:31.248000px;}
._24{width:33.216000px;}
._1d{width:37.296000px;}
._1e{width:38.868000px;}
._19{width:76.320000px;}
._22{width:122.232000px;}
._23{width:123.456000px;}
._1b{width:136.584000px;}
._1c{width:137.880000px;}
._1f{width:696.384000px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,102,0);}
.fc3{color:rgb(0,0,255);}
.fc6{color:rgb(192,0,0);}
.fc1{color:rgb(0,51,0);}
.fc2{color:rgb(0,91,0);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:30.240000px;}
.fs7{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fsa{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fsb{font-size:95.760000px;}
.fs8{font-size:162.000000px;}
.y41{bottom:-9.000000px;}
.y0{bottom:0.000000px;}
.y34{bottom:3.600000px;}
.yf{bottom:3.780000px;}
.y3{bottom:4.320000px;}
.y80{bottom:4.500000px;}
.y40{bottom:12.600000px;}
.y33{bottom:22.320000px;}
.y14{bottom:22.500000px;}
.y2{bottom:25.020000px;}
.y74{bottom:26.820000px;}
.y3f{bottom:32.580000px;}
.y13{bottom:41.220000px;}
.y2f{bottom:41.400000px;}
.y9f{bottom:49.314000px;}
.y9d{bottom:49.320000px;}
.y2e{bottom:58.500000px;}
.y12{bottom:59.940000px;}
.y3b{bottom:63.180000px;}
.y3e{bottom:65.340000px;}
.ya1{bottom:66.420000px;}
.y7c{bottom:68.760000px;}
.y71{bottom:70.920000px;}
.y2d{bottom:77.220000px;}
.y11{bottom:78.660000px;}
.y32{bottom:78.690000px;}
.y3d{bottom:80.820000px;}
.ya0{bottom:88.920000px;}
.y3a{bottom:89.640000px;}
.yc1{bottom:90.360000px;}
.y7b{bottom:91.296000px;}
.y70{bottom:93.456000px;}
.y2c{bottom:95.940000px;}
.y31{bottom:97.410000px;}
.y9e{bottom:107.856000px;}
.y7a{bottom:110.196000px;}
.y39{bottom:111.996000px;}
.yc0{bottom:112.896000px;}
.y2b{bottom:114.660000px;}
.y6f{bottom:115.956000px;}
.y38{bottom:130.716000px;}
.y79{bottom:132.696000px;}
.y2a{bottom:133.560000px;}
.y72{bottom:134.136000px;}
.ybf{bottom:135.396000px;}
.y6e{bottom:138.456000px;}
.y37{bottom:149.436000px;}
.y29{bottom:152.325000px;}
.y78{bottom:155.190000px;}
.ybe{bottom:157.890000px;}
.y6d{bottom:160.950000px;}
.y28{bottom:171.045000px;}
.y36{bottom:172.830000px;}
.y9c{bottom:175.350000px;}
.y77{bottom:177.690000px;}
.ybd{bottom:180.390000px;}
.y6c{bottom:183.450000px;}
.y27{bottom:189.765000px;}
.y15{bottom:192.270000px;}
.y35{bottom:198.945000px;}
.y76{bottom:200.190000px;}
.ybc{bottom:202.890000px;}
.y6b{bottom:205.950000px;}
.y26{bottom:208.485000px;}
.y73{bottom:223.410000px;}
.ybb{bottom:225.570000px;}
.y25{bottom:227.385000px;}
.y6a{bottom:228.450000px;}
.y9b{bottom:243.750000px;}
.y75{bottom:245.910000px;}
.y24{bottom:246.105000px;}
.yba{bottom:248.070000px;}
.y69{bottom:250.950000px;}
.ycf{bottom:259.050000px;}
.y23{bottom:264.825000px;}
.yb9{bottom:270.570000px;}
.y68{bottom:273.450000px;}
.yce{bottom:280.650000px;}
.y22{bottom:283.545000px;}
.yb8{bottom:293.070000px;}
.y9a{bottom:293.790000px;}
.y67{bottom:295.950000px;}
.y21{bottom:302.265000px;}
.ycd{bottom:307.290000px;}
.yb7{bottom:315.570000px;}
.y99{bottom:316.290000px;}
.y66{bottom:318.450000px;}
.y20{bottom:320.985000px;}
.ycc{bottom:329.790000px;}
.yb6{bottom:338.115000px;}
.y98{bottom:338.835000px;}
.y1f{bottom:339.885000px;}
.y65{bottom:340.995000px;}
.y1e{bottom:358.605000px;}
.yb5{bottom:360.615000px;}
.y97{bottom:361.335000px;}
.y64{bottom:363.495000px;}
.ycb{bottom:371.775000px;}
.y1d{bottom:377.325000px;}
.yb4{bottom:383.115000px;}
.y96{bottom:383.835000px;}
.y63{bottom:385.995000px;}
.yca{bottom:393.375000px;}
.y1c{bottom:396.075000px;}
.yb3{bottom:405.615000px;}
.y95{bottom:406.335000px;}
.y62{bottom:408.495000px;}
.yc9{bottom:410.295000px;}
.y1b{bottom:414.795000px;}
.yc8{bottom:427.215000px;}
.yb2{bottom:428.115000px;}
.y94{bottom:428.835000px;}
.y61{bottom:430.995000px;}
.y1a{bottom:433.695000px;}
.yc7{bottom:443.955000px;}
.yb1{bottom:450.615000px;}
.y93{bottom:451.335000px;}
.y19{bottom:452.415000px;}
.y60{bottom:453.495000px;}
.yc6{bottom:460.875000px;}
.y18{bottom:471.135000px;}
.yb0{bottom:473.115000px;}
.y92{bottom:473.835000px;}
.y5f{bottom:475.995000px;}
.yc5{bottom:477.795000px;}
.y17{bottom:489.855000px;}
.yc4{bottom:494.715000px;}
.yaf{bottom:495.615000px;}
.y91{bottom:496.335000px;}
.y5e{bottom:498.495000px;}
.y16{bottom:508.575000px;}
.y30{bottom:508.935000px;}
.yc3{bottom:511.635000px;}
.yae{bottom:518.115000px;}
.y90{bottom:518.835000px;}
.y5d{bottom:520.995000px;}
.yad{bottom:540.615000px;}
.y8f{bottom:541.335000px;}
.y5c{bottom:543.675000px;}
.yc2{bottom:546.195000px;}
.yac{bottom:563.115000px;}
.y8e{bottom:563.835000px;}
.y5b{bottom:566.175000px;}
.yab{bottom:585.645000px;}
.y8d{bottom:586.365000px;}
.y5a{bottom:588.705000px;}
.yaa{bottom:608.145000px;}
.y8c{bottom:608.865000px;}
.y59{bottom:611.205000px;}
.y10{bottom:622.185000px;}
.ya9{bottom:630.645000px;}
.y8b{bottom:631.365000px;}
.y58{bottom:633.705000px;}
.ya8{bottom:653.145000px;}
.y8a{bottom:653.865000px;}
.y57{bottom:656.205000px;}
.ya7{bottom:675.645000px;}
.y89{bottom:676.365000px;}
.y56{bottom:678.705000px;}
.ya6{bottom:698.145000px;}
.y88{bottom:698.865000px;}
.y55{bottom:701.205000px;}
.ye{bottom:716.685000px;}
.ya5{bottom:720.645000px;}
.y87{bottom:721.365000px;}
.y54{bottom:723.705000px;}
.yd{bottom:740.265000px;}
.ya4{bottom:743.145000px;}
.y86{bottom:743.865000px;}
.y53{bottom:746.205000px;}
.yc{bottom:760.965000px;}
.ya3{bottom:765.645000px;}
.y85{bottom:766.365000px;}
.y52{bottom:768.705000px;}
.y84{bottom:785.265000px;}
.yb{bottom:787.605000px;}
.ya2{bottom:788.325000px;}
.y51{bottom:791.205000px;}
.ya{bottom:802.185000px;}
.y83{bottom:807.765000px;}
.y50{bottom:813.705000px;}
.y9{bottom:828.870000px;}
.y82{bottom:830.310000px;}
.y4f{bottom:836.250000px;}
.y81{bottom:852.810000px;}
.y4e{bottom:858.750000px;}
.y8{bottom:868.110000px;}
.y7f{bottom:875.310000px;}
.y4d{bottom:881.250000px;}
.y7{bottom:884.670000px;}
.y7d{bottom:898.710000px;}
.y4c{bottom:903.750000px;}
.y6{bottom:908.070000px;}
.y7e{bottom:921.210000px;}
.y4b{bottom:926.250000px;}
.y5{bottom:934.350000px;}
.y4a{bottom:948.750000px;}
.y49{bottom:971.250000px;}
.y3c{bottom:973.770000px;}
.y48{bottom:993.750000px;}
.y47{bottom:1016.250000px;}
.y46{bottom:1038.750000px;}
.y45{bottom:1061.250000px;}
.y44{bottom:1083.780000px;}
.y43{bottom:1106.280000px;}
.y4{bottom:1127.520000px;}
.y42{bottom:1128.780000px;}
.y1{bottom:1159.020000px;}
.ha{height:18.900000px;}
.h1f{height:22.500000px;}
.h21{height:22.536000px;}
.h20{height:22.680000px;}
.h18{height:29.678906px;}
.h8{height:35.152640px;}
.h7{height:40.607360px;}
.h1e{height:45.000000px;}
.h25{height:45.336000px;}
.hb{height:49.534400px;}
.h10{height:49.587520px;}
.hd{height:50.171840px;}
.h12{height:50.437440px;}
.h14{height:53.497920px;}
.h9{height:53.875200px;}
.h6{height:58.560000px;}
.hf{height:58.651172px;}
.h15{height:59.680000px;}
.h1d{height:59.744000px;}
.h1a{height:60.448000px;}
.h1{height:60.768000px;}
.h3{height:61.189805px;}
.h1b{height:63.745600px;}
.h22{height:67.500000px;}
.h24{height:67.837500px;}
.h19{height:68.554688px;}
.h2{height:70.664062px;}
.h5{height:70.911360px;}
.h1c{height:74.004654px;}
.h23{height:74.953125px;}
.h4{height:75.696000px;}
.hc{height:93.780000px;}
.h26{height:99.687656px;}
.h11{height:112.536000px;}
.h16{height:118.476000px;}
.h17{height:158.915039px;}
.h13{height:315.930000px;}
.he{height:523.695000px;}
.h0{height:1188.000000px;}
.w1b{width:51.660000px;}
.w17{width:61.380000px;}
.w12{width:74.160000px;}
.wd{width:94.140000px;}
.wa{width:99.036000px;}
.w11{width:101.376000px;}
.w16{width:105.516000px;}
.wc{width:112.896000px;}
.w18{width:113.760000px;}
.w13{width:117.036000px;}
.w9{width:118.296000px;}
.w15{width:121.500000px;}
.w19{width:121.536000px;}
.wb{width:137.340000px;}
.w1a{width:144.756000px;}
.w5{width:146.880000px;}
.w14{width:160.230000px;}
.w8{width:161.850000px;}
.we{width:175.530000px;}
.w6{width:217.335000px;}
.w10{width:227.010000px;}
.w2{width:236.190000px;}
.w7{width:250.230000px;}
.wf{width:277.275000px;}
.w1c{width:283.935000px;}
.w3{width:541.545000px;}
.w4{width:674.070000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:8.100000px;}
.x19{left:10.620000px;}
.x17{left:18.360000px;}
.x8{left:36.540000px;}
.x1b{left:43.920000px;}
.x10{left:66.825000px;}
.x12{left:73.260000px;}
.x3{left:85.355986px;}
.xc{left:112.355986px;}
.xd{left:139.355986px;}
.x1f{left:146.736000px;}
.x16{left:179.490000px;}
.x7{left:195.690000px;}
.xa{left:197.505000px;}
.x9{left:228.825000px;}
.xf{left:232.230000px;}
.x1{left:253.289986px;}
.x20{left:260.490000px;}
.x1c{left:280.875000px;}
.x4{left:285.014986px;}
.x6{left:321.555000px;}
.xb{left:337.035000px;}
.x14{left:350.535000px;}
.x18{left:355.035000px;}
.x21{left:382.035000px;}
.x11{left:449.565000px;}
.x1d{left:472.065000px;}
.x22{left:526.785000px;}
.x23{left:578.445000px;}
.x15{left:586.905000px;}
.x1a{left:632.310000px;}
.x13{left:699.810000px;}
.x1e{left:753.810000px;}
.xe{left:780.269986px;}
.x2{left:836.099986px;}
@media print{
.v4{vertical-align:-55.040000pt;}
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.538667pt;}
.v5{vertical-align:21.120000pt;}
.v1{vertical-align:26.880000pt;}
.ls1e{letter-spacing:-0.768000pt;}
.ls15{letter-spacing:-0.704000pt;}
.ls23{letter-spacing:-0.432000pt;}
.ls8{letter-spacing:-0.288000pt;}
.lsb{letter-spacing:-0.286933pt;}
.ls7{letter-spacing:-0.265067pt;}
.ls1c{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.219733pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.172267pt;}
.ls1a{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.097067pt;}
.ls19{letter-spacing:-0.064000pt;}
.ls13{letter-spacing:-0.051840pt;}
.ls22{letter-spacing:-0.016000pt;}
.ls1f{letter-spacing:-0.000003pt;}
.ls4{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000001pt;}
.ls3{letter-spacing:0.047360pt;}
.ls1d{letter-spacing:0.064000pt;}
.lse{letter-spacing:0.074133pt;}
.ls17{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.148267pt;}
.ls11{letter-spacing:0.188267pt;}
.ls5{letter-spacing:0.192000pt;}
.ls20{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.286933pt;}
.ls12{letter-spacing:0.317333pt;}
.ls2{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.448000pt;}
.ls21{letter-spacing:0.512000pt;}
.ls16{letter-spacing:0.576000pt;}
.lsd{letter-spacing:0.586667pt;}
.ls1b{letter-spacing:48.768000pt;}
.ls0{letter-spacing:87.888640pt;}
.ls1{letter-spacing:744.800000pt;}
.ws16{word-spacing:-64.000000pt;}
.wsf{word-spacing:-16.000000pt;}
.ws12{word-spacing:-15.040000pt;}
.ws19{word-spacing:-14.912000pt;}
.ws1b{word-spacing:-14.848000pt;}
.ws0{word-spacing:-14.784000pt;}
.ws13{word-spacing:-14.720000pt;}
.ws18{word-spacing:-14.656000pt;}
.ws11{word-spacing:-14.592000pt;}
.ws1a{word-spacing:-14.591997pt;}
.ws1c{word-spacing:-14.528000pt;}
.ws15{word-spacing:-14.464000pt;}
.ws1{word-spacing:-14.400000pt;}
.ws17{word-spacing:-14.336000pt;}
.wse{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.327360pt;}
.ws5{word-spacing:-12.698027pt;}
.wsb{word-spacing:-12.428693pt;}
.wsa{word-spacing:-12.299627pt;}
.ws6{word-spacing:-12.185493pt;}
.ws7{word-spacing:-12.111360pt;}
.wsc{word-spacing:-12.059520pt;}
.ws8{word-spacing:-12.014293pt;}
.ws2{word-spacing:-12.005120pt;}
.ws3{word-spacing:-11.712000pt;}
.ws1e{word-spacing:-10.944000pt;}
.ws1f{word-spacing:-10.943997pt;}
.ws1d{word-spacing:-10.928000pt;}
.ws14{word-spacing:-9.604373pt;}
.ws4{word-spacing:-9.280000pt;}
.ws9{word-spacing:-7.927040pt;}
.ws10{word-spacing:0.000000pt;}
._3{margin-left:-4.193280pt;}
._4{margin-left:-3.180160pt;}
._11{margin-left:-2.013867pt;}
._1{margin-left:-1.088000pt;}
._0{width:1.120000pt;}
._2{width:2.067200pt;}
._10{width:2.974720pt;}
._6{width:4.017920pt;}
._5{width:5.033600pt;}
._e{width:6.032000pt;}
._15{width:7.072000pt;}
._c{width:7.968000pt;}
._9{width:8.977280pt;}
._8{width:10.040107pt;}
._a{width:11.155200pt;}
._14{width:12.081067pt;}
._7{width:13.598720pt;}
._d{width:14.608000pt;}
._f{width:16.148480pt;}
._17{width:17.358080pt;}
._16{width:19.072000pt;}
._18{width:19.984000pt;}
._12{width:20.982400pt;}
._13{width:22.051413pt;}
._1a{width:23.578880pt;}
._b{width:24.594560pt;}
._21{width:26.762667pt;}
._20{width:27.776000pt;}
._24{width:29.525333pt;}
._1d{width:33.152000pt;}
._1e{width:34.549333pt;}
._19{width:67.840000pt;}
._22{width:108.650667pt;}
._23{width:109.738667pt;}
._1b{width:121.408000pt;}
._1c{width:122.560000pt;}
._1f{width:619.008000pt;}
.fs9{font-size:26.880000pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fsa{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fsb{font-size:85.120000pt;}
.fs8{font-size:144.000000pt;}
.y41{bottom:-8.000000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:3.200000pt;}
.yf{bottom:3.360000pt;}
.y3{bottom:3.840000pt;}
.y80{bottom:4.000000pt;}
.y40{bottom:11.200000pt;}
.y33{bottom:19.840000pt;}
.y14{bottom:20.000000pt;}
.y2{bottom:22.240000pt;}
.y74{bottom:23.840000pt;}
.y3f{bottom:28.960000pt;}
.y13{bottom:36.640000pt;}
.y2f{bottom:36.800000pt;}
.y9f{bottom:43.834667pt;}
.y9d{bottom:43.840000pt;}
.y2e{bottom:52.000000pt;}
.y12{bottom:53.280000pt;}
.y3b{bottom:56.160000pt;}
.y3e{bottom:58.080000pt;}
.ya1{bottom:59.040000pt;}
.y7c{bottom:61.120000pt;}
.y71{bottom:63.040000pt;}
.y2d{bottom:68.640000pt;}
.y11{bottom:69.920000pt;}
.y32{bottom:69.946667pt;}
.y3d{bottom:71.840000pt;}
.ya0{bottom:79.040000pt;}
.y3a{bottom:79.680000pt;}
.yc1{bottom:80.320000pt;}
.y7b{bottom:81.152000pt;}
.y70{bottom:83.072000pt;}
.y2c{bottom:85.280000pt;}
.y31{bottom:86.586667pt;}
.y9e{bottom:95.872000pt;}
.y7a{bottom:97.952000pt;}
.y39{bottom:99.552000pt;}
.yc0{bottom:100.352000pt;}
.y2b{bottom:101.920000pt;}
.y6f{bottom:103.072000pt;}
.y38{bottom:116.192000pt;}
.y79{bottom:117.952000pt;}
.y2a{bottom:118.720000pt;}
.y72{bottom:119.232000pt;}
.ybf{bottom:120.352000pt;}
.y6e{bottom:123.072000pt;}
.y37{bottom:132.832000pt;}
.y29{bottom:135.400000pt;}
.y78{bottom:137.946667pt;}
.ybe{bottom:140.346667pt;}
.y6d{bottom:143.066667pt;}
.y28{bottom:152.040000pt;}
.y36{bottom:153.626667pt;}
.y9c{bottom:155.866667pt;}
.y77{bottom:157.946667pt;}
.ybd{bottom:160.346667pt;}
.y6c{bottom:163.066667pt;}
.y27{bottom:168.680000pt;}
.y15{bottom:170.906667pt;}
.y35{bottom:176.840000pt;}
.y76{bottom:177.946667pt;}
.ybc{bottom:180.346667pt;}
.y6b{bottom:183.066667pt;}
.y26{bottom:185.320000pt;}
.y73{bottom:198.586667pt;}
.ybb{bottom:200.506667pt;}
.y25{bottom:202.120000pt;}
.y6a{bottom:203.066667pt;}
.y9b{bottom:216.666667pt;}
.y75{bottom:218.586667pt;}
.y24{bottom:218.760000pt;}
.yba{bottom:220.506667pt;}
.y69{bottom:223.066667pt;}
.ycf{bottom:230.266667pt;}
.y23{bottom:235.400000pt;}
.yb9{bottom:240.506667pt;}
.y68{bottom:243.066667pt;}
.yce{bottom:249.466667pt;}
.y22{bottom:252.040000pt;}
.yb8{bottom:260.506667pt;}
.y9a{bottom:261.146667pt;}
.y67{bottom:263.066667pt;}
.y21{bottom:268.680000pt;}
.ycd{bottom:273.146667pt;}
.yb7{bottom:280.506667pt;}
.y99{bottom:281.146667pt;}
.y66{bottom:283.066667pt;}
.y20{bottom:285.320000pt;}
.ycc{bottom:293.146667pt;}
.yb6{bottom:300.546667pt;}
.y98{bottom:301.186667pt;}
.y1f{bottom:302.120000pt;}
.y65{bottom:303.106667pt;}
.y1e{bottom:318.760000pt;}
.yb5{bottom:320.546667pt;}
.y97{bottom:321.186667pt;}
.y64{bottom:323.106667pt;}
.ycb{bottom:330.466667pt;}
.y1d{bottom:335.400000pt;}
.yb4{bottom:340.546667pt;}
.y96{bottom:341.186667pt;}
.y63{bottom:343.106667pt;}
.yca{bottom:349.666667pt;}
.y1c{bottom:352.066667pt;}
.yb3{bottom:360.546667pt;}
.y95{bottom:361.186667pt;}
.y62{bottom:363.106667pt;}
.yc9{bottom:364.706667pt;}
.y1b{bottom:368.706667pt;}
.yc8{bottom:379.746667pt;}
.yb2{bottom:380.546667pt;}
.y94{bottom:381.186667pt;}
.y61{bottom:383.106667pt;}
.y1a{bottom:385.506667pt;}
.yc7{bottom:394.626667pt;}
.yb1{bottom:400.546667pt;}
.y93{bottom:401.186667pt;}
.y19{bottom:402.146667pt;}
.y60{bottom:403.106667pt;}
.yc6{bottom:409.666667pt;}
.y18{bottom:418.786667pt;}
.yb0{bottom:420.546667pt;}
.y92{bottom:421.186667pt;}
.y5f{bottom:423.106667pt;}
.yc5{bottom:424.706667pt;}
.y17{bottom:435.426667pt;}
.yc4{bottom:439.746667pt;}
.yaf{bottom:440.546667pt;}
.y91{bottom:441.186667pt;}
.y5e{bottom:443.106667pt;}
.y16{bottom:452.066667pt;}
.y30{bottom:452.386667pt;}
.yc3{bottom:454.786667pt;}
.yae{bottom:460.546667pt;}
.y90{bottom:461.186667pt;}
.y5d{bottom:463.106667pt;}
.yad{bottom:480.546667pt;}
.y8f{bottom:481.186667pt;}
.y5c{bottom:483.266667pt;}
.yc2{bottom:485.506667pt;}
.yac{bottom:500.546667pt;}
.y8e{bottom:501.186667pt;}
.y5b{bottom:503.266667pt;}
.yab{bottom:520.573333pt;}
.y8d{bottom:521.213333pt;}
.y5a{bottom:523.293333pt;}
.yaa{bottom:540.573333pt;}
.y8c{bottom:541.213333pt;}
.y59{bottom:543.293333pt;}
.y10{bottom:553.053333pt;}
.ya9{bottom:560.573333pt;}
.y8b{bottom:561.213333pt;}
.y58{bottom:563.293333pt;}
.ya8{bottom:580.573333pt;}
.y8a{bottom:581.213333pt;}
.y57{bottom:583.293333pt;}
.ya7{bottom:600.573333pt;}
.y89{bottom:601.213333pt;}
.y56{bottom:603.293333pt;}
.ya6{bottom:620.573333pt;}
.y88{bottom:621.213333pt;}
.y55{bottom:623.293333pt;}
.ye{bottom:637.053333pt;}
.ya5{bottom:640.573333pt;}
.y87{bottom:641.213333pt;}
.y54{bottom:643.293333pt;}
.yd{bottom:658.013333pt;}
.ya4{bottom:660.573333pt;}
.y86{bottom:661.213333pt;}
.y53{bottom:663.293333pt;}
.yc{bottom:676.413333pt;}
.ya3{bottom:680.573333pt;}
.y85{bottom:681.213333pt;}
.y52{bottom:683.293333pt;}
.y84{bottom:698.013333pt;}
.yb{bottom:700.093333pt;}
.ya2{bottom:700.733333pt;}
.y51{bottom:703.293333pt;}
.ya{bottom:713.053333pt;}
.y83{bottom:718.013333pt;}
.y50{bottom:723.293333pt;}
.y9{bottom:736.773333pt;}
.y82{bottom:738.053333pt;}
.y4f{bottom:743.333333pt;}
.y81{bottom:758.053333pt;}
.y4e{bottom:763.333333pt;}
.y8{bottom:771.653333pt;}
.y7f{bottom:778.053333pt;}
.y4d{bottom:783.333333pt;}
.y7{bottom:786.373333pt;}
.y7d{bottom:798.853333pt;}
.y4c{bottom:803.333333pt;}
.y6{bottom:807.173333pt;}
.y7e{bottom:818.853333pt;}
.y4b{bottom:823.333333pt;}
.y5{bottom:830.533333pt;}
.y4a{bottom:843.333333pt;}
.y49{bottom:863.333333pt;}
.y3c{bottom:865.573333pt;}
.y48{bottom:883.333333pt;}
.y47{bottom:903.333333pt;}
.y46{bottom:923.333333pt;}
.y45{bottom:943.333333pt;}
.y44{bottom:963.360000pt;}
.y43{bottom:983.360000pt;}
.y4{bottom:1002.240000pt;}
.y42{bottom:1003.360000pt;}
.y1{bottom:1030.240000pt;}
.ha{height:16.800000pt;}
.h1f{height:20.000000pt;}
.h21{height:20.032000pt;}
.h20{height:20.160000pt;}
.h18{height:26.381250pt;}
.h8{height:31.246791pt;}
.h7{height:36.095431pt;}
.h1e{height:40.000000pt;}
.h25{height:40.298667pt;}
.hb{height:44.030578pt;}
.h10{height:44.077796pt;}
.hd{height:44.597191pt;}
.h12{height:44.833280pt;}
.h14{height:47.553707pt;}
.h9{height:47.889067pt;}
.h6{height:52.053333pt;}
.hf{height:52.134375pt;}
.h15{height:53.048889pt;}
.h1d{height:53.105778pt;}
.h1a{height:53.731556pt;}
.h1{height:54.016000pt;}
.h3{height:54.390938pt;}
.h1b{height:56.662756pt;}
.h22{height:60.000000pt;}
.h24{height:60.300000pt;}
.h19{height:60.937500pt;}
.h2{height:62.812500pt;}
.h5{height:63.032320pt;}
.h1c{height:65.781915pt;}
.h23{height:66.625000pt;}
.h4{height:67.285333pt;}
.hc{height:83.360000pt;}
.h26{height:88.611250pt;}
.h11{height:100.032000pt;}
.h16{height:105.312000pt;}
.h17{height:141.257812pt;}
.h13{height:280.826667pt;}
.he{height:465.506667pt;}
.h0{height:1056.000000pt;}
.w1b{width:45.920000pt;}
.w17{width:54.560000pt;}
.w12{width:65.920000pt;}
.wd{width:83.680000pt;}
.wa{width:88.032000pt;}
.w11{width:90.112000pt;}
.w16{width:93.792000pt;}
.wc{width:100.352000pt;}
.w18{width:101.120000pt;}
.w13{width:104.032000pt;}
.w9{width:105.152000pt;}
.w15{width:108.000000pt;}
.w19{width:108.032000pt;}
.wb{width:122.080000pt;}
.w1a{width:128.672000pt;}
.w5{width:130.560000pt;}
.w14{width:142.426667pt;}
.w8{width:143.866667pt;}
.we{width:156.026667pt;}
.w6{width:193.186667pt;}
.w10{width:201.786667pt;}
.w2{width:209.946667pt;}
.w7{width:222.426667pt;}
.wf{width:246.466667pt;}
.w1c{width:252.386667pt;}
.w3{width:481.373333pt;}
.w4{width:599.173333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.200000pt;}
.x19{left:9.440000pt;}
.x17{left:16.320000pt;}
.x8{left:32.480000pt;}
.x1b{left:39.040000pt;}
.x10{left:59.400000pt;}
.x12{left:65.120000pt;}
.x3{left:75.871988pt;}
.xc{left:99.871988pt;}
.xd{left:123.871988pt;}
.x1f{left:130.432000pt;}
.x16{left:159.546667pt;}
.x7{left:173.946667pt;}
.xa{left:175.560000pt;}
.x9{left:203.400000pt;}
.xf{left:206.426667pt;}
.x1{left:225.146655pt;}
.x20{left:231.546667pt;}
.x1c{left:249.666667pt;}
.x4{left:253.346655pt;}
.x6{left:285.826667pt;}
.xb{left:299.586667pt;}
.x14{left:311.586667pt;}
.x18{left:315.586667pt;}
.x21{left:339.586667pt;}
.x11{left:399.613333pt;}
.x1d{left:419.613333pt;}
.x22{left:468.253333pt;}
.x23{left:514.173333pt;}
.x15{left:521.693333pt;}
.x1a{left:562.053333pt;}
.x13{left:622.053333pt;}
.x1e{left:670.053333pt;}
.xe{left:693.573321pt;}
.x2{left:743.199988pt;}
}




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