
    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_f77019c773f8f3c5dae344f3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_429daf9194207edd4b2063cc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_9d70d1de516db770700f7135.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_c3a6c80975474d73e6a857c8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_b87444467a102aee52b375a9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_d74b4ace65817fba3430d716.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_b06b1604501a7018353a4442.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.944336;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_6c513ec73afd331333cac0a3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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_b0926ef3732b51345efd1de0.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;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_b1a09960441485080d424fe1.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;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_04e26a4a32fc7d74d958c410.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.040039;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_875b6e09eaf8d939c1a33f27.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.921387;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_050185815eaee3b272993aa4.woff2')format("woff");}.fff{font-family:fff;line-height:1.112305;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_c055aff9ff829c13f668f190.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.112305;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_33ac3e08d7cef1ebfef01d3a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.934082;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_6eea7bfa84a10a578d99d334.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.921387;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-20.856000px;}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls11{letter-spacing:-4.680000px;}
.lsb{letter-spacing:-1.440000px;}
.lsa{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.612000px;}
.ls9{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls13{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.132600px;}
.ls6{letter-spacing:0.174240px;}
.lse{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259920px;}
.lsd{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.ls3{letter-spacing:0.786240px;}
.ls10{letter-spacing:16.506720px;}
.lsc{letter-spacing:41.706720px;}
.lsf{letter-spacing:46.026720px;}
.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;}
}
.ws2{word-spacing:-16.626360px;}
.ws3{word-spacing:-16.493760px;}
.ws8{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.238800px;}
.ws9{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.580000px;}
.ws7{word-spacing:-14.220000px;}
.wsb{word-spacing:-13.505760px;}
.ws6{word-spacing:-12.854880px;}
.ws0{word-spacing:-12.204000px;}
.ws1{word-spacing:-12.186000px;}
.ws10{word-spacing:-10.260000px;}
.wsc{word-spacing:-9.720000px;}
.ws4{word-spacing:-8.786880px;}
.wsd{word-spacing:-8.280000px;}
.ws5{word-spacing:-8.136000px;}
.wse{word-spacing:0.000000px;}
._27{margin-left:-7.073760px;}
._3{margin-left:-5.557680px;}
._4{margin-left:-4.086000px;}
._2{margin-left:-2.358720px;}
._0{margin-left:-1.104000px;}
._1{width:1.020000px;}
._7{width:2.328000px;}
._5{width:3.948240px;}
._6{width:5.440320px;}
._a{width:6.671280px;}
._f{width:8.082960px;}
._10{width:9.796560px;}
._11{width:11.017440px;}
._12{width:12.099360px;}
._26{width:13.530000px;}
._25{width:15.951840px;}
._e{width:16.967760px;}
._d{width:18.292800px;}
._c{width:19.422000px;}
._b{width:20.732640px;}
._9{width:22.155840px;}
._8{width:23.242560px;}
._28{width:24.501600px;}
._29{width:25.508880px;}
._14{width:29.640960px;}
._17{width:30.955680px;}
._13{width:34.118880px;}
._1c{width:37.170720px;}
._1b{width:38.421600px;}
._18{width:42.907680px;}
._23{width:44.162640px;}
._24{width:46.608720px;}
._1f{width:69.321600px;}
._22{width:70.572480px;}
._16{width:73.381200px;}
._1e{width:76.488720px;}
._21{width:89.281440px;}
._1a{width:128.304720px;}
._15{width:133.890480px;}
._19{width:149.698800px;}
._1d{width:161.738880px;}
._20{width:164.160720px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3d{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.y42{bottom:3.960000px;}
.y18{bottom:4.860000px;}
.ye{bottom:9.540000px;}
.y40{bottom:10.620000px;}
.y1a{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y4{bottom:17.316000px;}
.y2{bottom:20.196000px;}
.ya9{bottom:20.340000px;}
.y3c{bottom:20.520000px;}
.y41{bottom:22.140000px;}
.y3f{bottom:25.200000px;}
.y17{bottom:29.385000px;}
.yb{bottom:30.240000px;}
.y5{bottom:31.320000px;}
.y97{bottom:37.620000px;}
.y3b{bottom:37.800000px;}
.y99{bottom:37.830000px;}
.y16{bottom:45.945000px;}
.ya{bottom:46.440000px;}
.y1{bottom:52.380000px;}
.ya4{bottom:54.900000px;}
.y3a{bottom:55.080000px;}
.ya2{bottom:55.110000px;}
.y15{bottom:61.605000px;}
.y2a{bottom:63.360000px;}
.y14{bottom:72.045000px;}
.y39{bottom:72.180000px;}
.ya1{bottom:72.210000px;}
.ya8{bottom:72.225000px;}
.y95{bottom:72.360000px;}
.y9{bottom:73.440000px;}
.y29{bottom:78.660000px;}
.y38{bottom:89.460000px;}
.ya0{bottom:89.490000px;}
.ya7{bottom:89.505000px;}
.y13{bottom:90.405000px;}
.y8{bottom:93.090000px;}
.y28{bottom:96.300000px;}
.yef{bottom:102.096000px;}
.y37{bottom:106.740000px;}
.y9d{bottom:106.785000px;}
.yb7{bottom:107.316000px;}
.y96{bottom:108.756000px;}
.y12{bottom:109.485000px;}
.yc1{bottom:110.916000px;}
.y56{bottom:111.096000px;}
.y7{bottom:111.270000px;}
.yb2{bottom:111.816000px;}
.y27{bottom:113.580000px;}
.yee{bottom:119.376000px;}
.yb6{bottom:121.176000px;}
.y36{bottom:124.050000px;}
.yc0{bottom:124.956000px;}
.y55{bottom:128.376000px;}
.yb1{bottom:129.096000px;}
.y26{bottom:130.890000px;}
.y11{bottom:135.225000px;}
.yed{bottom:136.476000px;}
.y35{bottom:141.330000px;}
.y54{bottom:145.656000px;}
.yb0{bottom:146.376000px;}
.y25{bottom:148.710000px;}
.yec{bottom:153.750000px;}
.y34{bottom:158.610000px;}
.y10{bottom:159.525000px;}
.y94{bottom:161.130000px;}
.y53{bottom:162.930000px;}
.yaf{bottom:163.470000px;}
.y24{bottom:165.270000px;}
.yeb{bottom:171.030000px;}
.y33{bottom:175.710000px;}
.y52{bottom:180.210000px;}
.yae{bottom:180.750000px;}
.y23{bottom:181.650000px;}
.yea{bottom:188.310000px;}
.y32{bottom:192.990000px;}
.y51{bottom:197.310000px;}
.yad{bottom:198.030000px;}
.y22{bottom:198.750000px;}
.ye9{bottom:205.590000px;}
.y31{bottom:210.270000px;}
.y50{bottom:214.590000px;}
.yac{bottom:215.310000px;}
.y21{bottom:216.210000px;}
.ye8{bottom:222.870000px;}
.y30{bottom:227.550000px;}
.y4f{bottom:231.870000px;}
.yab{bottom:232.590000px;}
.y20{bottom:233.670000px;}
.ye7{bottom:239.970000px;}
.y2f{bottom:244.830000px;}
.y4e{bottom:249.150000px;}
.ye1{bottom:249.690000px;}
.yaa{bottom:249.870000px;}
.y1f{bottom:250.950000px;}
.ye6{bottom:257.250000px;}
.y2e{bottom:262.110000px;}
.ya6{bottom:264.630000px;}
.y93{bottom:265.350000px;}
.y4d{bottom:266.430000px;}
.ye0{bottom:266.970000px;}
.y1e{bottom:271.290000px;}
.ye5{bottom:274.530000px;}
.y2d{bottom:279.210000px;}
.y4c{bottom:283.530000px;}
.ydf{bottom:284.250000px;}
.ye4{bottom:291.810000px;}
.y2c{bottom:296.490000px;}
.y1d{bottom:298.650000px;}
.y4b{bottom:300.810000px;}
.yde{bottom:301.530000px;}
.y92{bottom:303.870000px;}
.ye3{bottom:309.090000px;}
.y2b{bottom:313.770000px;}
.y1c{bottom:316.470000px;}
.y4a{bottom:318.090000px;}
.ydd{bottom:318.810000px;}
.y91{bottom:321.150000px;}
.ye2{bottom:326.370000px;}
.y49{bottom:335.370000px;}
.ydc{bottom:336.090000px;}
.y90{bottom:338.475000px;}
.y86{bottom:343.515000px;}
.y48{bottom:352.695000px;}
.ydb{bottom:353.235000px;}
.y8f{bottom:355.755000px;}
.y85{bottom:360.795000px;}
.ya5{bottom:368.895000px;}
.y47{bottom:369.975000px;}
.yda{bottom:370.515000px;}
.y8e{bottom:373.035000px;}
.y84{bottom:378.075000px;}
.y46{bottom:387.075000px;}
.yd9{bottom:387.795000px;}
.y8d{bottom:390.135000px;}
.y83{bottom:395.355000px;}
.y45{bottom:404.355000px;}
.yd8{bottom:405.075000px;}
.y8c{bottom:407.415000px;}
.y82{bottom:412.635000px;}
.y44{bottom:421.635000px;}
.yd7{bottom:422.355000px;}
.y8b{bottom:424.695000px;}
.y81{bottom:429.915000px;}
.y43{bottom:438.915000px;}
.yd6{bottom:439.635000px;}
.y8a{bottom:441.975000px;}
.y80{bottom:447.015000px;}
.y3e{bottom:452.955000px;}
.ya3{bottom:455.835000px;}
.yd5{bottom:456.735000px;}
.y89{bottom:459.255000px;}
.y7f{bottom:464.295000px;}
.yd4{bottom:474.015000px;}
.y88{bottom:476.535000px;}
.y7e{bottom:481.575000px;}
.y1b{bottom:489.495000px;}
.y87{bottom:490.395000px;}
.yd3{bottom:491.295000px;}
.y7d{bottom:498.855000px;}
.yd2{bottom:508.575000px;}
.y7c{bottom:516.135000px;}
.ybf{bottom:520.455000px;}
.yd1{bottom:525.855000px;}
.y7b{bottom:533.235000px;}
.ybe{bottom:537.735000px;}
.yd0{bottom:542.955000px;}
.y7a{bottom:550.515000px;}
.ybd{bottom:555.015000px;}
.y9f{bottom:560.055000px;}
.ycf{bottom:560.235000px;}
.y79{bottom:567.795000px;}
.ybc{bottom:572.295000px;}
.yce{bottom:577.515000px;}
.y78{bottom:585.075000px;}
.ybb{bottom:589.575000px;}
.ycd{bottom:594.795000px;}
.y77{bottom:602.355000px;}
.yba{bottom:606.885000px;}
.ycc{bottom:612.105000px;}
.y76{bottom:619.665000px;}
.yb9{bottom:623.985000px;}
.ycb{bottom:629.385000px;}
.y75{bottom:636.765000px;}
.yb8{bottom:638.025000px;}
.yca{bottom:646.485000px;}
.y74{bottom:654.045000px;}
.yc9{bottom:663.765000px;}
.y9e{bottom:664.305000px;}
.y73{bottom:671.325000px;}
.yc8{bottom:681.045000px;}
.y72{bottom:688.605000px;}
.yc7{bottom:698.325000px;}
.y71{bottom:705.885000px;}
.yc6{bottom:715.605000px;}
.y70{bottom:723.165000px;}
.yc5{bottom:732.885000px;}
.y6f{bottom:740.265000px;}
.yc4{bottom:749.985000px;}
.y6e{bottom:757.545000px;}
.yc3{bottom:767.265000px;}
.y9c{bottom:768.525000px;}
.y6d{bottom:774.825000px;}
.yc2{bottom:781.305000px;}
.y6c{bottom:792.105000px;}
.y6b{bottom:809.385000px;}
.y19{bottom:817.305000px;}
.y6a{bottom:826.485000px;}
.y69{bottom:843.765000px;}
.yf{bottom:846.825000px;}
.y68{bottom:861.045000px;}
.y67{bottom:878.370000px;}
.y9b{bottom:890.070000px;}
.y66{bottom:895.650000px;}
.y65{bottom:912.930000px;}
.yb5{bottom:923.370000px;}
.y64{bottom:930.030000px;}
.yb4{bottom:940.650000px;}
.y63{bottom:947.310000px;}
.yb3{bottom:954.510000px;}
.y62{bottom:964.590000px;}
.y61{bottom:981.870000px;}
.y60{bottom:999.150000px;}
.y9a{bottom:1011.570000px;}
.y5f{bottom:1016.430000px;}
.yd{bottom:1021.470000px;}
.y5e{bottom:1033.530000px;}
.y6{bottom:1046.850000px;}
.y5d{bottom:1050.810000px;}
.y5c{bottom:1068.090000px;}
.y5b{bottom:1085.370000px;}
.y5a{bottom:1102.650000px;}
.y98{bottom:1115.790000px;}
.y59{bottom:1119.930000px;}
.y58{bottom:1137.030000px;}
.y57{bottom:1154.340000px;}
.hc{height:25.020000px;}
.h13{height:28.968750px;}
.h14{height:29.520000px;}
.h2{height:32.976000px;}
.h23{height:34.560000px;}
.h12{height:35.806641px;}
.h9{height:36.180000px;}
.h1e{height:36.540000px;}
.h1c{height:38.818125px;}
.h20{height:42.164648px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h1a{height:45.770625px;}
.h19{height:46.881563px;}
.h17{height:47.980898px;}
.h1f{height:48.088125px;}
.h1b{height:49.255313px;}
.h25{height:51.660000px;}
.h26{height:51.876000px;}
.h1d{height:53.573906px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h22{height:55.711312px;}
.h21{height:55.735312px;}
.h2b{height:55.915312px;}
.h18{height:56.574492px;}
.h10{height:59.439023px;}
.h11{height:61.189805px;}
.hf{height:63.180000px;}
.h6{height:65.884219px;}
.h5{height:67.824844px;}
.h8{height:71.613281px;}
.h15{height:73.722656px;}
.h2a{height:86.220000px;}
.h24{height:103.500000px;}
.h29{height:103.536000px;}
.h27{height:120.780000px;}
.h28{height:120.816000px;}
.h7{height:121.536000px;}
.hd{height:174.630000px;}
.h16{height:327.810000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.080000px;}
.wf{width:82.080000px;}
.we{width:82.116000px;}
.w10{width:83.556000px;}
.wc{width:84.960000px;}
.wd{width:89.820000px;}
.wb{width:94.716000px;}
.wa{width:101.376000px;}
.w11{width:105.840000px;}
.w5{width:151.950000px;}
.w8{width:223.455000px;}
.w9{width:507.675000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:7.560000px;}
.x2{left:8.676000px;}
.xf{left:10.476000px;}
.x12{left:12.600000px;}
.xb{left:18.576000px;}
.xe{left:72.390000px;}
.x1{left:81.000000px;}
.x4{left:98.130000px;}
.x22{left:101.015987px;}
.x23{left:105.155987px;}
.x26{left:108.035987px;}
.x20{left:111.275987px;}
.xc{left:184.710000px;}
.x10{left:215.175000px;}
.x5{left:232.950000px;}
.xd{left:258.015000px;}
.x8{left:272.235000px;}
.x15{left:279.255000px;}
.x14{left:284.294987px;}
.x11{left:304.455000px;}
.x6{left:331.995000px;}
.x1f{left:349.094987px;}
.x7{left:351.255000px;}
.x1c{left:361.154987px;}
.xa{left:365.475000px;}
.x25{left:396.074987px;}
.x24{left:417.134987px;}
.x9{left:439.500000px;}
.x1d{left:446.474987px;}
.x17{left:455.655000px;}
.x18{left:538.485000px;}
.x19{left:621.285000px;}
.x1e{left:694.049987px;}
.x1a{left:705.570000px;}
.x3{left:739.050000px;}
.x13{left:763.349987px;}
.x1b{left:785.129987px;}
.x21{left:801.329987px;}
@media print{
.v3{vertical-align:-18.538667pt;}
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls11{letter-spacing:-4.160000pt;}
.lsb{letter-spacing:-1.280000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.544000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls13{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.117867pt;}
.ls6{letter-spacing:0.154880pt;}
.lse{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.231040pt;}
.lsd{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls3{letter-spacing:0.698880pt;}
.ls10{letter-spacing:14.672640pt;}
.lsc{letter-spacing:37.072640pt;}
.lsf{letter-spacing:40.912640pt;}
.ws2{word-spacing:-14.778987pt;}
.ws3{word-spacing:-14.661120pt;}
.ws8{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.545600pt;}
.ws9{word-spacing:-13.280000pt;}
.wsa{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.640000pt;}
.wsb{word-spacing:-12.005120pt;}
.ws6{word-spacing:-11.426560pt;}
.ws0{word-spacing:-10.848000pt;}
.ws1{word-spacing:-10.832000pt;}
.ws10{word-spacing:-9.120000pt;}
.wsc{word-spacing:-8.640000pt;}
.ws4{word-spacing:-7.810560pt;}
.wsd{word-spacing:-7.360000pt;}
.ws5{word-spacing:-7.232000pt;}
.wse{word-spacing:0.000000pt;}
._27{margin-left:-6.287787pt;}
._3{margin-left:-4.940160pt;}
._4{margin-left:-3.632000pt;}
._2{margin-left:-2.096640pt;}
._0{margin-left:-0.981333pt;}
._1{width:0.906667pt;}
._7{width:2.069333pt;}
._5{width:3.509547pt;}
._6{width:4.835840pt;}
._a{width:5.930027pt;}
._f{width:7.184853pt;}
._10{width:8.708053pt;}
._11{width:9.793280pt;}
._12{width:10.754987pt;}
._26{width:12.026667pt;}
._25{width:14.179413pt;}
._e{width:15.082453pt;}
._d{width:16.260267pt;}
._c{width:17.264000pt;}
._b{width:18.429013pt;}
._9{width:19.694080pt;}
._8{width:20.660053pt;}
._28{width:21.779200pt;}
._29{width:22.674560pt;}
._14{width:26.347520pt;}
._17{width:27.516160pt;}
._13{width:30.327893pt;}
._1c{width:33.040640pt;}
._1b{width:34.152533pt;}
._18{width:38.140160pt;}
._23{width:39.255680pt;}
._24{width:41.429973pt;}
._1f{width:61.619200pt;}
._22{width:62.731093pt;}
._16{width:65.227733pt;}
._1e{width:67.989973pt;}
._21{width:79.361280pt;}
._1a{width:114.048640pt;}
._15{width:119.013760pt;}
._19{width:133.065600pt;}
._1d{width:143.767893pt;}
._20{width:145.920640pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.y42{bottom:3.520000pt;}
.y18{bottom:4.320000pt;}
.ye{bottom:8.480000pt;}
.y40{bottom:9.440000pt;}
.y1a{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:15.392000pt;}
.y2{bottom:17.952000pt;}
.ya9{bottom:18.080000pt;}
.y3c{bottom:18.240000pt;}
.y41{bottom:19.680000pt;}
.y3f{bottom:22.400000pt;}
.y17{bottom:26.120000pt;}
.yb{bottom:26.880000pt;}
.y5{bottom:27.840000pt;}
.y97{bottom:33.440000pt;}
.y3b{bottom:33.600000pt;}
.y99{bottom:33.626667pt;}
.y16{bottom:40.840000pt;}
.ya{bottom:41.280000pt;}
.y1{bottom:46.560000pt;}
.ya4{bottom:48.800000pt;}
.y3a{bottom:48.960000pt;}
.ya2{bottom:48.986667pt;}
.y15{bottom:54.760000pt;}
.y2a{bottom:56.320000pt;}
.y14{bottom:64.040000pt;}
.y39{bottom:64.160000pt;}
.ya1{bottom:64.186667pt;}
.ya8{bottom:64.200000pt;}
.y95{bottom:64.320000pt;}
.y9{bottom:65.280000pt;}
.y29{bottom:69.920000pt;}
.y38{bottom:79.520000pt;}
.ya0{bottom:79.546667pt;}
.ya7{bottom:79.560000pt;}
.y13{bottom:80.360000pt;}
.y8{bottom:82.746667pt;}
.y28{bottom:85.600000pt;}
.yef{bottom:90.752000pt;}
.y37{bottom:94.880000pt;}
.y9d{bottom:94.920000pt;}
.yb7{bottom:95.392000pt;}
.y96{bottom:96.672000pt;}
.y12{bottom:97.320000pt;}
.yc1{bottom:98.592000pt;}
.y56{bottom:98.752000pt;}
.y7{bottom:98.906667pt;}
.yb2{bottom:99.392000pt;}
.y27{bottom:100.960000pt;}
.yee{bottom:106.112000pt;}
.yb6{bottom:107.712000pt;}
.y36{bottom:110.266667pt;}
.yc0{bottom:111.072000pt;}
.y55{bottom:114.112000pt;}
.yb1{bottom:114.752000pt;}
.y26{bottom:116.346667pt;}
.y11{bottom:120.200000pt;}
.yed{bottom:121.312000pt;}
.y35{bottom:125.626667pt;}
.y54{bottom:129.472000pt;}
.yb0{bottom:130.112000pt;}
.y25{bottom:132.186667pt;}
.yec{bottom:136.666667pt;}
.y34{bottom:140.986667pt;}
.y10{bottom:141.800000pt;}
.y94{bottom:143.226667pt;}
.y53{bottom:144.826667pt;}
.yaf{bottom:145.306667pt;}
.y24{bottom:146.906667pt;}
.yeb{bottom:152.026667pt;}
.y33{bottom:156.186667pt;}
.y52{bottom:160.186667pt;}
.yae{bottom:160.666667pt;}
.y23{bottom:161.466667pt;}
.yea{bottom:167.386667pt;}
.y32{bottom:171.546667pt;}
.y51{bottom:175.386667pt;}
.yad{bottom:176.026667pt;}
.y22{bottom:176.666667pt;}
.ye9{bottom:182.746667pt;}
.y31{bottom:186.906667pt;}
.y50{bottom:190.746667pt;}
.yac{bottom:191.386667pt;}
.y21{bottom:192.186667pt;}
.ye8{bottom:198.106667pt;}
.y30{bottom:202.266667pt;}
.y4f{bottom:206.106667pt;}
.yab{bottom:206.746667pt;}
.y20{bottom:207.706667pt;}
.ye7{bottom:213.306667pt;}
.y2f{bottom:217.626667pt;}
.y4e{bottom:221.466667pt;}
.ye1{bottom:221.946667pt;}
.yaa{bottom:222.106667pt;}
.y1f{bottom:223.066667pt;}
.ye6{bottom:228.666667pt;}
.y2e{bottom:232.986667pt;}
.ya6{bottom:235.226667pt;}
.y93{bottom:235.866667pt;}
.y4d{bottom:236.826667pt;}
.ye0{bottom:237.306667pt;}
.y1e{bottom:241.146667pt;}
.ye5{bottom:244.026667pt;}
.y2d{bottom:248.186667pt;}
.y4c{bottom:252.026667pt;}
.ydf{bottom:252.666667pt;}
.ye4{bottom:259.386667pt;}
.y2c{bottom:263.546667pt;}
.y1d{bottom:265.466667pt;}
.y4b{bottom:267.386667pt;}
.yde{bottom:268.026667pt;}
.y92{bottom:270.106667pt;}
.ye3{bottom:274.746667pt;}
.y2b{bottom:278.906667pt;}
.y1c{bottom:281.306667pt;}
.y4a{bottom:282.746667pt;}
.ydd{bottom:283.386667pt;}
.y91{bottom:285.466667pt;}
.ye2{bottom:290.106667pt;}
.y49{bottom:298.106667pt;}
.ydc{bottom:298.746667pt;}
.y90{bottom:300.866667pt;}
.y86{bottom:305.346667pt;}
.y48{bottom:313.506667pt;}
.ydb{bottom:313.986667pt;}
.y8f{bottom:316.226667pt;}
.y85{bottom:320.706667pt;}
.ya5{bottom:327.906667pt;}
.y47{bottom:328.866667pt;}
.yda{bottom:329.346667pt;}
.y8e{bottom:331.586667pt;}
.y84{bottom:336.066667pt;}
.y46{bottom:344.066667pt;}
.yd9{bottom:344.706667pt;}
.y8d{bottom:346.786667pt;}
.y83{bottom:351.426667pt;}
.y45{bottom:359.426667pt;}
.yd8{bottom:360.066667pt;}
.y8c{bottom:362.146667pt;}
.y82{bottom:366.786667pt;}
.y44{bottom:374.786667pt;}
.yd7{bottom:375.426667pt;}
.y8b{bottom:377.506667pt;}
.y81{bottom:382.146667pt;}
.y43{bottom:390.146667pt;}
.yd6{bottom:390.786667pt;}
.y8a{bottom:392.866667pt;}
.y80{bottom:397.346667pt;}
.y3e{bottom:402.626667pt;}
.ya3{bottom:405.186667pt;}
.yd5{bottom:405.986667pt;}
.y89{bottom:408.226667pt;}
.y7f{bottom:412.706667pt;}
.yd4{bottom:421.346667pt;}
.y88{bottom:423.586667pt;}
.y7e{bottom:428.066667pt;}
.y1b{bottom:435.106667pt;}
.y87{bottom:435.906667pt;}
.yd3{bottom:436.706667pt;}
.y7d{bottom:443.426667pt;}
.yd2{bottom:452.066667pt;}
.y7c{bottom:458.786667pt;}
.ybf{bottom:462.626667pt;}
.yd1{bottom:467.426667pt;}
.y7b{bottom:473.986667pt;}
.ybe{bottom:477.986667pt;}
.yd0{bottom:482.626667pt;}
.y7a{bottom:489.346667pt;}
.ybd{bottom:493.346667pt;}
.y9f{bottom:497.826667pt;}
.ycf{bottom:497.986667pt;}
.y79{bottom:504.706667pt;}
.ybc{bottom:508.706667pt;}
.yce{bottom:513.346667pt;}
.y78{bottom:520.066667pt;}
.ybb{bottom:524.066667pt;}
.ycd{bottom:528.706667pt;}
.y77{bottom:535.426667pt;}
.yba{bottom:539.453333pt;}
.ycc{bottom:544.093333pt;}
.y76{bottom:550.813333pt;}
.yb9{bottom:554.653333pt;}
.ycb{bottom:559.453333pt;}
.y75{bottom:566.013333pt;}
.yb8{bottom:567.133333pt;}
.yca{bottom:574.653333pt;}
.y74{bottom:581.373333pt;}
.yc9{bottom:590.013333pt;}
.y9e{bottom:590.493333pt;}
.y73{bottom:596.733333pt;}
.yc8{bottom:605.373333pt;}
.y72{bottom:612.093333pt;}
.yc7{bottom:620.733333pt;}
.y71{bottom:627.453333pt;}
.yc6{bottom:636.093333pt;}
.y70{bottom:642.813333pt;}
.yc5{bottom:651.453333pt;}
.y6f{bottom:658.013333pt;}
.yc4{bottom:666.653333pt;}
.y6e{bottom:673.373333pt;}
.yc3{bottom:682.013333pt;}
.y9c{bottom:683.133333pt;}
.y6d{bottom:688.733333pt;}
.yc2{bottom:694.493333pt;}
.y6c{bottom:704.093333pt;}
.y6b{bottom:719.453333pt;}
.y19{bottom:726.493333pt;}
.y6a{bottom:734.653333pt;}
.y69{bottom:750.013333pt;}
.yf{bottom:752.733333pt;}
.y68{bottom:765.373333pt;}
.y67{bottom:780.773333pt;}
.y9b{bottom:791.173333pt;}
.y66{bottom:796.133333pt;}
.y65{bottom:811.493333pt;}
.yb5{bottom:820.773333pt;}
.y64{bottom:826.693333pt;}
.yb4{bottom:836.133333pt;}
.y63{bottom:842.053333pt;}
.yb3{bottom:848.453333pt;}
.y62{bottom:857.413333pt;}
.y61{bottom:872.773333pt;}
.y60{bottom:888.133333pt;}
.y9a{bottom:899.173333pt;}
.y5f{bottom:903.493333pt;}
.yd{bottom:907.973333pt;}
.y5e{bottom:918.693333pt;}
.y6{bottom:930.533333pt;}
.y5d{bottom:934.053333pt;}
.y5c{bottom:949.413333pt;}
.y5b{bottom:964.773333pt;}
.y5a{bottom:980.133333pt;}
.y98{bottom:991.813333pt;}
.y59{bottom:995.493333pt;}
.y58{bottom:1010.693333pt;}
.y57{bottom:1026.080000pt;}
.hc{height:22.240000pt;}
.h13{height:25.750000pt;}
.h14{height:26.240000pt;}
.h2{height:29.312000pt;}
.h23{height:30.720000pt;}
.h12{height:31.828125pt;}
.h9{height:32.160000pt;}
.h1e{height:32.480000pt;}
.h1c{height:34.505000pt;}
.h20{height:37.479688pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h1a{height:40.685000pt;}
.h19{height:41.672500pt;}
.h17{height:42.649687pt;}
.h1f{height:42.745000pt;}
.h1b{height:43.782500pt;}
.h25{height:45.920000pt;}
.h26{height:46.112000pt;}
.h1d{height:47.621250pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h22{height:49.521167pt;}
.h21{height:49.542500pt;}
.h2b{height:49.702500pt;}
.h18{height:50.288438pt;}
.h10{height:52.834688pt;}
.h11{height:54.390938pt;}
.hf{height:56.160000pt;}
.h6{height:58.563750pt;}
.h5{height:60.288750pt;}
.h8{height:63.656250pt;}
.h15{height:65.531250pt;}
.h2a{height:76.640000pt;}
.h24{height:92.000000pt;}
.h29{height:92.032000pt;}
.h27{height:107.360000pt;}
.h28{height:107.392000pt;}
.h7{height:108.032000pt;}
.hd{height:155.226667pt;}
.h16{height:291.386667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.960000pt;}
.wf{width:72.960000pt;}
.we{width:72.992000pt;}
.w10{width:74.272000pt;}
.wc{width:75.520000pt;}
.wd{width:79.840000pt;}
.wb{width:84.192000pt;}
.wa{width:90.112000pt;}
.w11{width:94.080000pt;}
.w5{width:135.066667pt;}
.w8{width:198.626667pt;}
.w9{width:451.266667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:6.720000pt;}
.x2{left:7.712000pt;}
.xf{left:9.312000pt;}
.x12{left:11.200000pt;}
.xb{left:16.512000pt;}
.xe{left:64.346667pt;}
.x1{left:72.000000pt;}
.x4{left:87.226667pt;}
.x22{left:89.791988pt;}
.x23{left:93.471988pt;}
.x26{left:96.031988pt;}
.x20{left:98.911988pt;}
.xc{left:164.186667pt;}
.x10{left:191.266667pt;}
.x5{left:207.066667pt;}
.xd{left:229.346667pt;}
.x8{left:241.986667pt;}
.x15{left:248.226667pt;}
.x14{left:252.706655pt;}
.x11{left:270.626667pt;}
.x6{left:295.106667pt;}
.x1f{left:310.306655pt;}
.x7{left:312.226667pt;}
.x1c{left:321.026655pt;}
.xa{left:324.866667pt;}
.x25{left:352.066655pt;}
.x24{left:370.786655pt;}
.x9{left:390.666667pt;}
.x1d{left:396.866655pt;}
.x17{left:405.026667pt;}
.x18{left:478.653333pt;}
.x19{left:552.253333pt;}
.x1e{left:616.933322pt;}
.x1a{left:627.173333pt;}
.x3{left:656.933333pt;}
.x13{left:678.533322pt;}
.x1b{left:697.893322pt;}
.x21{left:712.293322pt;}
}




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