
    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_65641976105526792b4bf4f9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.962000;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_330a281a7a790a419931687f.woff2')format("woff");}.ff2{font-family:ff2;line-height:2.797852;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_fd4bd7433c99c7fa929007f3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.944000;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_15d04af717908b7dbbcf3932.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.924000;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_eb4802e1fce8907e98ebe3fb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.956000;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_bbbcdb86ae9ec6e5ec3c5f38.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.951000;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_27bcad0c78733aa7fe4afeec.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.700000;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_7002541e4c19e48e391871c0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.894000;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_ac07671d49953899f8136fe3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.700000;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_eaa9c2242f4cc6be2979c98f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.955000;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_f587a39a262d89b4183f0da9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.660000;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_1c2282d05dd1631aa671c57c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.660000;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_30ec6929c1ac7cd8c8dd5ca4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.717285;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_db33d9d067a810f44d3d4d36.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.837308;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_b92ec9a348ce7266a0cd7dcf.woff2')format("woff");}.fff{font-family:fff;line-height:0.717285;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_217654f6b7bf8b4d181c0706.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.930000;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_579bc58cd32325f9e102a3a1.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.660000;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_d528887ba84e82374aaad620.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.933000;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_41329890b65755d7e51207a9.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.719727;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_7d4a685689ec20243d340638.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.950000;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_9b6b1bb8095f005c7c3b2dc4.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.741211;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:ff16;src:url('chunks/assets/font_9b1b08c4662989c64faab83f.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.666504;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:ff17;src:url('chunks/assets/font_15955ba189d4040f2bfea32f.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.660000;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:ff18;src:url('chunks/assets/font_f7204f0e856e0481e99c343b.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.672000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.230126,-0.097683,0.097683,0.230126,0,0);-ms-transform:matrix(0.230126,-0.097683,0.097683,0.230126,0,0);-webkit-transform:matrix(0.230126,-0.097683,0.097683,0.230126,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);}
.v4{vertical-align:-8.331060px;}
.v3{vertical-align:-1.169400px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:36.051600px;}
.v1{vertical-align:39.808200px;}
.ls4{letter-spacing:-13.176000px;}
.ls2{letter-spacing:-5.952000px;}
.ls8{letter-spacing:-3.868800px;}
.lsd{letter-spacing:-0.051000px;}
.lse{letter-spacing:-0.038400px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.003000px;}
.ls1{letter-spacing:25.536000px;}
.lsb{letter-spacing:25.834080px;}
.ls7{letter-spacing:30.888000px;}
.ls5{letter-spacing:52.032000px;}
.ls3{letter-spacing:58.536120px;}
.lsa{letter-spacing:69.336000px;}
.ls9{letter-spacing:75.600000px;}
.lsc{letter-spacing:88.200000px;}
.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;}
}
.ws5{word-spacing:-72.576000px;}
.ws7{word-spacing:-61.824000px;}
.ws14{word-spacing:-48.807000px;}
.ws17{word-spacing:-45.945600px;}
.ws16{word-spacing:-38.208000px;}
.ws3{word-spacing:-38.130000px;}
.ws18{word-spacing:-34.440000px;}
.ws4{word-spacing:-30.504000px;}
.ws19{word-spacing:-27.552000px;}
.wsf{word-spacing:-26.635200px;}
.ws0{word-spacing:-25.740000px;}
.ws11{word-spacing:-21.816000px;}
.wsb{word-spacing:-21.384000px;}
.ws9{word-spacing:-20.736000px;}
.ws1{word-spacing:-20.592000px;}
.ws10{word-spacing:-20.412000px;}
.ws15{word-spacing:-17.550000px;}
.ws6{word-spacing:-12.120000px;}
.wsa{word-spacing:-10.908000px;}
.wsd{word-spacing:-8.484000px;}
.wsc{word-spacing:-7.560000px;}
.wse{word-spacing:-0.096000px;}
.ws12{word-spacing:-0.078000px;}
.ws8{word-spacing:-0.066000px;}
.ws2{word-spacing:0.000000px;}
.ws13{word-spacing:11.205480px;}
._12{margin-left:-3602.477580px;}
._8{margin-left:-13.176000px;}
._6{margin-left:-12.120000px;}
._d{margin-left:-9.270000px;}
._5{margin-left:-8.049600px;}
._3{margin-left:-6.758400px;}
._2{margin-left:-5.702400px;}
._9{margin-left:-4.500000px;}
._1{margin-left:-3.240000px;}
._4{margin-left:-2.088000px;}
._0{margin-left:-1.080000px;}
._7{width:1.116000px;}
._e{width:2.124000px;}
._c{width:4.728000px;}
._a{width:13.176000px;}
._10{width:19.053480px;}
._f{width:25.533480px;}
._b{width:1501.802460px;}
._11{width:1842.966960px;}
.fca{color:rgb(67,121,128);}
.fc8{color:rgb(126,24,72);}
.fc9{color:transparent;}
.fc7{color:rgb(139,2,74);}
.fc5{color:rgb(83,83,83);}
.fc4{color:rgb(255,255,255);}
.fc6{color:rgb(0,139,66);}
.fc3{color:rgb(0,139,66);}
.fc2{color:rgb(147,19,86);}
.fc1{color:rgb(162,0,85);}
.fc0{color:rgb(170,166,162);}
.fs19{font-size:36.000000px;}
.fs13{font-size:42.000000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fsf{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs16{font-size:78.000000px;}
.fs12{font-size:84.000000px;}
.fse{font-size:90.000000px;}
.fs14{font-size:96.000000px;}
.fs17{font-size:102.000000px;}
.fs4{font-size:105.600000px;}
.fs10{font-size:105.840000px;}
.fs2{font-size:108.000000px;}
.fsa{font-size:114.000000px;}
.fs3{font-size:132.000000px;}
.fs1b{font-size:134.400000px;}
.fsb{font-size:136.037965px;}
.fsc{font-size:137.138854px;}
.fsd{font-size:138.000000px;}
.fs1{font-size:144.000000px;}
.fs8{font-size:148.800000px;}
.fs9{font-size:162.000000px;}
.fs1a{font-size:168.000000px;}
.fs7{font-size:186.000000px;}
.fs15{font-size:192.000000px;}
.fs11{font-size:216.000000px;}
.fs18{font-size:228.000007px;}
.y0{bottom:0.000000px;}
.y78{bottom:2.566500px;}
.y82{bottom:8.266500px;}
.y60{bottom:9.495000px;}
.y86{bottom:11.451390px;}
.y6d{bottom:11.451450px;}
.y2e{bottom:12.332265px;}
.y39{bottom:14.094015px;}
.ybe{bottom:14.436217px;}
.yc2{bottom:14.580000px;}
.y49{bottom:15.855780px;}
.ya{bottom:17.567820px;}
.y9{bottom:17.914710px;}
.y2b{bottom:19.305750px;}
.y1{bottom:22.467090px;}
.y15{bottom:25.741500px;}
.ybd{bottom:27.526710px;}
.y41{bottom:28.698450px;}
.y4{bottom:32.700000px;}
.y88{bottom:32.941500px;}
.y5f{bottom:36.495000px;}
.y85{bottom:36.951390px;}
.y2d{bottom:37.284765px;}
.y80{bottom:37.701075px;}
.y2a{bottom:47.303700px;}
.y5e{bottom:55.995000px;}
.y17{bottom:58.482779px;}
.y19{bottom:59.306120px;}
.y14{bottom:60.241500px;}
.y84{bottom:62.451390px;}
.y7f{bottom:66.224355px;}
.ya3{bottom:69.621195px;}
.y53{bottom:71.554575px;}
.y69{bottom:72.645075px;}
.y5d{bottom:75.495075px;}
.y83{bottom:79.628490px;}
.y52{bottom:80.427435px;}
.y2c{bottom:82.858695px;}
.yb{bottom:83.466765px;}
.yb2{bottom:88.067715px;}
.yb8{bottom:88.297950px;}
.y5c{bottom:89.796825px;}
.y12{bottom:90.945495px;}
.y77{bottom:91.336125px;}
.y51{bottom:94.907115px;}
.ya2{bottom:95.121195px;}
.ybc{bottom:98.528895px;}
.y22{bottom:101.632710px;}
.y48{bottom:102.968085px;}
.y47{bottom:106.279395px;}
.y5b{bottom:109.578180px;}
.y11{bottom:110.445495px;}
.y50{bottom:115.206555px;}
.y8{bottom:117.181590px;}
.y1b{bottom:117.674655px;}
.ya8{bottom:118.924485px;}
.ya1{bottom:120.621195px;}
.y24{bottom:121.038195px;}
.y38{bottom:122.871540px;}
.y37{bottom:126.120465px;}
.y6b{bottom:130.491465px;}
.y68{bottom:130.791465px;}
.y94{bottom:134.778165px;}
.yc3{bottom:137.867760px;}
.yb1{bottom:142.217715px;}
.yaa{bottom:143.224455px;}
.yf{bottom:144.626235px;}
.y3f{bottom:145.678515px;}
.ya0{bottom:146.121195px;}
.y5a{bottom:150.978150px;}
.y36{bottom:151.024950px;}
.y1a{bottom:152.174700px;}
.y6a{bottom:155.039400px;}
.y4f{bottom:156.430800px;}
.y46{bottom:157.288950px;}
.y8f{bottom:160.270500px;}
.y7{bottom:162.181650px;}
.y81{bottom:165.270600px;}
.y9f{bottom:171.621150px;}
.ya9{bottom:171.724500px;}
.y67{bottom:172.191450px;}
.y93{bottom:176.470500px;}
.yb0{bottom:176.867700px;}
.y75{bottom:182.426100px;}
.y45{bottom:184.276050px;}
.y35{bottom:192.424950px;}
.y59{bottom:192.670500px;}
.y9e{bottom:194.121150px;}
.y66{bottom:203.639400px;}
.y1f{bottom:204.503100px;}
.yb7{bottom:204.559050px;}
.y23{bottom:204.656250px;}
.y4e{bottom:205.206600px;}
.y7e{bottom:206.719350px;}
.y8e{bottom:208.578150px;}
.ybb{bottom:213.554550px;}
.y3e{bottom:219.191400px;}
.y9d{bottom:219.621150px;}
.y76{bottom:223.826100px;}
.y34{bottom:223.872900px;}
.y92{bottom:225.070500px;}
.y3{bottom:225.948600px;}
.ya7{bottom:228.421650px;}
.yaf{bottom:236.539950px;}
.y29{bottom:236.615250px;}
.y1e{bottom:239.003100px;}
.y64{bottom:240.802500px;}
.y74{bottom:240.978150px;}
.y58{bottom:241.270500px;}
.y9c{bottom:245.121150px;}
.y3d{bottom:246.178500px;}
.y4d{bottom:246.430800px;}
.yb6{bottom:248.726100px;}
.y44{bottom:248.776050px;}
.y8d{bottom:250.270500px;}
.y65{bottom:252.239400px;}
.y7d{bottom:253.519350px;}
.y87{bottom:261.041700px;}
.yba{bottom:262.154550px;}
.y33{bottom:265.272900px;}
.y6c{bottom:269.518650px;}
.ye{bottom:269.888850px;}
.y9b{bottom:270.621150px;}
.y73{bottom:272.426100px;}
.y91{bottom:273.670500px;}
.y16{bottom:285.964500px;}
.yc0{bottom:289.058850px;}
.y63{bottom:289.402500px;}
.y57{bottom:289.578150px;}
.y1d{bottom:293.088900px;}
.y4c{bottom:295.206600px;}
.y9a{bottom:296.066100px;}
.y8c{bottom:296.859150px;}
.y26{bottom:297.274200px;}
.yb5{bottom:297.326100px;}
.y7c{bottom:300.319350px;}
.y32{bottom:306.672900px;}
.yae{bottom:307.482150px;}
.y3c{bottom:310.678500px;}
.yb9{bottom:310.754550px;}
.y43{bottom:313.276050px;}
.yab{bottom:313.482150px;}
.y72{bottom:321.026100px;}
.y99{bottom:321.566100px;}
.y90{bottom:322.270500px;}
.y1c{bottom:327.588900px;}
.y56{bottom:331.270500px;}
.y8b{bottom:332.859150px;}
.y2{bottom:333.648600px;}
.y4b{bottom:336.430800px;}
.y62{bottom:338.178150px;}
.yb4{bottom:345.926100px;}
.y98{bottom:347.066100px;}
.y7b{bottom:347.119350px;}
.ya6{bottom:351.421650px;}
.y31{bottom:358.024950px;}
.yc1{bottom:363.724800px;}
.yd{bottom:366.488850px;}
.y71{bottom:369.626100px;}
.y8a{bottom:370.870500px;}
.y97{bottom:372.566100px;}
.yad{bottom:372.879300px;}
.y18{bottom:373.863750px;}
.y13{bottom:376.076700px;}
.y61{bottom:379.402500px;}
.y55{bottom:379.870500px;}
.y21{bottom:381.674700px;}
.y3b{bottom:384.191400px;}
.y42{bottom:386.788950px;}
.y4a{bottom:387.606600px;}
.y25{bottom:389.969400px;}
.y28{bottom:391.673550px;}
.y7a{bottom:393.919350px;}
.y96{bottom:398.066100px;}
.yac{bottom:398.529300px;}
.y30{bottom:399.424950px;}
.y70{bottom:408.850050px;}
.ya5{bottom:412.921650px;}
.yb3{bottom:414.722850px;}
.y20{bottom:416.174700px;}
.ybf{bottom:421.058850px;}
.y89{bottom:421.578150px;}
.y40{bottom:423.876900px;}
.y54{bottom:430.578150px;}
.y27{bottom:434.573550px;}
.y95{bottom:439.578150px;}
.y6f{bottom:440.298000px;}
.y79{bottom:440.719350px;}
.y3a{bottom:449.977800px;}
.yc{bottom:463.088850px;}
.ya4{bottom:474.421650px;}
.y6{bottom:480.222600px;}
.y2f{bottom:482.394150px;}
.y6e{bottom:488.898000px;}
.y5{bottom:514.722600px;}
.y10{bottom:532.147050px;}
.h2c{height:16.200000px;}
.h30{height:24.300000px;}
.h3d{height:26.316000px;}
.h3e{height:30.702000px;}
.h17{height:30.744000px;}
.h2a{height:37.755780px;}
.h7{height:39.474000px;}
.h29{height:39.528000px;}
.h6{height:43.920000px;}
.h27{height:44.040000px;}
.h19{height:45.084030px;}
.h11{height:49.896000px;}
.h21{height:51.469530px;}
.h2b{height:51.480000px;}
.h1{height:52.632000px;}
.h37{height:52.848000px;}
.h35{height:52.852200px;}
.h36{height:53.068200px;}
.h15{height:55.499265px;}
.h32{height:57.018000px;}
.h16{height:61.488000px;}
.h1f{height:62.623530px;}
.h1a{height:63.360000px;}
.h34{height:63.504000px;}
.h39{height:63.540000px;}
.hc{height:65.250210px;}
.he{height:65.778255px;}
.h1e{height:69.312000px;}
.h1c{height:70.176000px;}
.h2f{height:72.576000px;}
.h2d{height:74.664000px;}
.h12{height:77.474880px;}
.h25{height:77.886600px;}
.h4{height:77.976000px;}
.h33{height:78.903045px;}
.hb{height:78.948000px;}
.h18{height:79.056000px;}
.h28{height:79.758600px;}
.h22{height:79.759200px;}
.h41{height:81.648000px;}
.h31{height:88.755780px;}
.hd{height:89.785057px;}
.h2e{height:90.282045px;}
.hf{height:90.511644px;}
.h5{height:93.192000px;}
.h13{height:93.854310px;}
.h26{height:96.300000px;}
.h10{height:96.600000px;}
.h24{height:104.328000px;}
.ha{height:104.943840px;}
.h9{height:113.400000px;}
.h42{height:123.312000px;}
.h1b{height:135.140625px;}
.h8{height:136.524000px;}
.h1d{height:137.718750px;}
.h20{height:138.187500px;}
.h14{height:154.933594px;}
.h3c{height:172.368005px;}
.h3{height:178.200000px;}
.h3a{height:180.187500px;}
.h23{height:180.738000px;}
.h38{height:191.449219px;}
.h3f{height:202.710938px;}
.h40{height:218.700000px;}
.h3b{height:220.092450px;}
.h2{height:270.281250px;}
.h0{height:607.500000px;}
.wc{width:23.447280px;}
.w7{width:65.208030px;}
.w3{width:65.250210px;}
.w4{width:65.778255px;}
.w9{width:122.595030px;}
.w6{width:157.351500px;}
.w2{width:194.953950px;}
.w12{width:199.469400px;}
.w10{width:200.065200px;}
.w13{width:200.826900px;}
.wf{width:201.312450px;}
.we{width:220.627950px;}
.wa{width:242.139750px;}
.w5{width:246.685500px;}
.wd{width:247.184850px;}
.w8{width:321.627750px;}
.w11{width:403.867650px;}
.wb{width:482.391150px;}
.w1{width:518.667750px;}
.w0{width:1080.000000px;}
.x14{left:-17.909959px;}
.x15{left:-13.751268px;}
.x0{left:0.000000px;}
.x41{left:3.299700px;}
.x38{left:5.400000px;}
.x20{left:6.599265px;}
.x1d{left:8.484765px;}
.x2a{left:10.311750px;}
.x11{left:12.805050px;}
.x2f{left:15.438750px;}
.x46{left:25.071750px;}
.xe{left:26.631495px;}
.x34{left:28.358880px;}
.x1e{left:33.984765px;}
.x3{left:35.639610px;}
.x33{left:37.234950px;}
.x12{left:38.711550px;}
.x39{left:40.463880px;}
.x47{left:53.325540px;}
.x5{left:56.863140px;}
.x17{left:58.668330px;}
.xc{left:65.082675px;}
.x4{left:68.680905px;}
.x42{left:74.200920px;}
.x1c{left:75.627525px;}
.x3a{left:76.913880px;}
.x36{left:78.825540px;}
.x48{left:81.675540px;}
.x22{left:83.060070px;}
.x1f{left:107.245155px;}
.x26{left:112.275690px;}
.x49{left:113.325540px;}
.x3e{left:115.275540px;}
.x2d{left:119.509635px;}
.x55{left:123.664755px;}
.x27{left:126.098250px;}
.x43{left:132.259965px;}
.x23{left:137.060070px;}
.x2{left:153.205350px;}
.x28{left:156.098250px;}
.xb{left:181.902150px;}
.x9{left:191.407800px;}
.xd{left:196.566750px;}
.xf{left:270.986100px;}
.x37{left:283.132500px;}
.x8{left:292.955400px;}
.x6{left:303.535800px;}
.x57{left:328.831950px;}
.x7{left:358.291800px;}
.xa{left:377.332500px;}
.x53{left:387.825600px;}
.x1{left:424.990350px;}
.x30{left:450.255750px;}
.x16{left:453.315000px;}
.x31{left:478.605750px;}
.x58{left:484.635000px;}
.x24{left:493.574400px;}
.x3b{left:497.460750px;}
.x4d{left:509.430450px;}
.x4c{left:520.151700px;}
.x4e{left:530.552250px;}
.x2e{left:533.643750px;}
.x3f{left:561.313200px;}
.x10{left:612.784200px;}
.x40{left:615.143700px;}
.x3c{left:639.104100px;}
.x45{left:641.920050px;}
.x25{left:691.139400px;}
.x4a{left:693.405000px;}
.x56{left:695.955450px;}
.x1b{left:696.974400px;}
.x29{left:717.155550px;}
.x19{left:721.867650px;}
.x2b{left:741.289950px;}
.x3d{left:746.514000px;}
.x18{left:750.471300px;}
.x1a{left:764.851800px;}
.x2c{left:771.289950px;}
.x52{left:778.857300px;}
.x32{left:783.901650px;}
.x35{left:785.943300px;}
.x4b{left:801.405000px;}
.x54{left:804.192000px;}
.x4f{left:806.069850px;}
.x44{left:850.309500px;}
.x50{left:894.048150px;}
.x13{left:932.542650px;}
.x51{left:938.826600px;}
.x21{left:1058.420700px;}
@media print{
.v4{vertical-align:-7.405387pt;}
.v3{vertical-align:-1.039467pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:32.045867pt;}
.v1{vertical-align:35.385067pt;}
.ls4{letter-spacing:-11.712000pt;}
.ls2{letter-spacing:-5.290667pt;}
.ls8{letter-spacing:-3.438933pt;}
.lsd{letter-spacing:-0.045333pt;}
.lse{letter-spacing:-0.034133pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.002667pt;}
.ls1{letter-spacing:22.698667pt;}
.lsb{letter-spacing:22.963627pt;}
.ls7{letter-spacing:27.456000pt;}
.ls5{letter-spacing:46.250667pt;}
.ls3{letter-spacing:52.032107pt;}
.lsa{letter-spacing:61.632000pt;}
.ls9{letter-spacing:67.200000pt;}
.lsc{letter-spacing:78.400000pt;}
.ws5{word-spacing:-64.512000pt;}
.ws7{word-spacing:-54.954667pt;}
.ws14{word-spacing:-43.384000pt;}
.ws17{word-spacing:-40.840533pt;}
.ws16{word-spacing:-33.962667pt;}
.ws3{word-spacing:-33.893333pt;}
.ws18{word-spacing:-30.613333pt;}
.ws4{word-spacing:-27.114667pt;}
.ws19{word-spacing:-24.490667pt;}
.wsf{word-spacing:-23.675733pt;}
.ws0{word-spacing:-22.880000pt;}
.ws11{word-spacing:-19.392000pt;}
.wsb{word-spacing:-19.008000pt;}
.ws9{word-spacing:-18.432000pt;}
.ws1{word-spacing:-18.304000pt;}
.ws10{word-spacing:-18.144000pt;}
.ws15{word-spacing:-15.600000pt;}
.ws6{word-spacing:-10.773333pt;}
.wsa{word-spacing:-9.696000pt;}
.wsd{word-spacing:-7.541333pt;}
.wsc{word-spacing:-6.720000pt;}
.wse{word-spacing:-0.085333pt;}
.ws12{word-spacing:-0.069333pt;}
.ws8{word-spacing:-0.058667pt;}
.ws2{word-spacing:0.000000pt;}
.ws13{word-spacing:9.960427pt;}
._12{margin-left:-3202.202293pt;}
._8{margin-left:-11.712000pt;}
._6{margin-left:-10.773333pt;}
._d{margin-left:-8.240000pt;}
._5{margin-left:-7.155200pt;}
._3{margin-left:-6.007467pt;}
._2{margin-left:-5.068800pt;}
._9{margin-left:-4.000000pt;}
._1{margin-left:-2.880000pt;}
._4{margin-left:-1.856000pt;}
._0{margin-left:-0.960000pt;}
._7{width:0.992000pt;}
._e{width:1.888000pt;}
._c{width:4.202667pt;}
._a{width:11.712000pt;}
._10{width:16.936427pt;}
._f{width:22.696427pt;}
._b{width:1334.935520pt;}
._11{width:1638.192853pt;}
.fs19{font-size:32.000000pt;}
.fs13{font-size:37.333333pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fsf{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs16{font-size:69.333333pt;}
.fs12{font-size:74.666667pt;}
.fse{font-size:80.000000pt;}
.fs14{font-size:85.333333pt;}
.fs17{font-size:90.666667pt;}
.fs4{font-size:93.866667pt;}
.fs10{font-size:94.080000pt;}
.fs2{font-size:96.000000pt;}
.fsa{font-size:101.333333pt;}
.fs3{font-size:117.333333pt;}
.fs1b{font-size:119.466667pt;}
.fsb{font-size:120.922636pt;}
.fsc{font-size:121.901204pt;}
.fsd{font-size:122.666667pt;}
.fs1{font-size:128.000000pt;}
.fs8{font-size:132.266667pt;}
.fs9{font-size:144.000000pt;}
.fs1a{font-size:149.333333pt;}
.fs7{font-size:165.333333pt;}
.fs15{font-size:170.666667pt;}
.fs11{font-size:192.000000pt;}
.fs18{font-size:202.666673pt;}
.y0{bottom:0.000000pt;}
.y78{bottom:2.281333pt;}
.y82{bottom:7.348000pt;}
.y60{bottom:8.440000pt;}
.y86{bottom:10.179013pt;}
.y6d{bottom:10.179067pt;}
.y2e{bottom:10.962013pt;}
.y39{bottom:12.528013pt;}
.ybe{bottom:12.832193pt;}
.yc2{bottom:12.960000pt;}
.y49{bottom:14.094027pt;}
.ya{bottom:15.615840pt;}
.y9{bottom:15.924187pt;}
.y2b{bottom:17.160667pt;}
.y1{bottom:19.970747pt;}
.y15{bottom:22.881333pt;}
.ybd{bottom:24.468187pt;}
.y41{bottom:25.509733pt;}
.y4{bottom:29.066667pt;}
.y88{bottom:29.281333pt;}
.y5f{bottom:32.440000pt;}
.y85{bottom:32.845680pt;}
.y2d{bottom:33.142013pt;}
.y80{bottom:33.512067pt;}
.y2a{bottom:42.047733pt;}
.y5e{bottom:49.773333pt;}
.y17{bottom:51.984692pt;}
.y19{bottom:52.716551pt;}
.y14{bottom:53.548000pt;}
.y84{bottom:55.512347pt;}
.y7f{bottom:58.866093pt;}
.ya3{bottom:61.885507pt;}
.y53{bottom:63.604067pt;}
.y69{bottom:64.573400pt;}
.y5d{bottom:67.106733pt;}
.y83{bottom:70.780880pt;}
.y52{bottom:71.491053pt;}
.y2c{bottom:73.652173pt;}
.yb{bottom:74.192680pt;}
.yb2{bottom:78.282413pt;}
.yb8{bottom:78.487067pt;}
.y5c{bottom:79.819400pt;}
.y12{bottom:80.840440pt;}
.y77{bottom:81.187667pt;}
.y51{bottom:84.361880pt;}
.ya2{bottom:84.552173pt;}
.ybc{bottom:87.581240pt;}
.y22{bottom:90.340187pt;}
.y48{bottom:91.527187pt;}
.y47{bottom:94.470573pt;}
.y5b{bottom:97.402827pt;}
.y11{bottom:98.173773pt;}
.y50{bottom:102.405827pt;}
.y8{bottom:104.161413pt;}
.y1b{bottom:104.599693pt;}
.ya8{bottom:105.710653pt;}
.ya1{bottom:107.218840pt;}
.y24{bottom:107.589507pt;}
.y38{bottom:109.219147pt;}
.y37{bottom:112.107080pt;}
.y6b{bottom:115.992413pt;}
.y68{bottom:116.259080pt;}
.y94{bottom:119.802813pt;}
.yc3{bottom:122.549120pt;}
.yb1{bottom:126.415747pt;}
.yaa{bottom:127.310627pt;}
.yf{bottom:128.556653pt;}
.y3f{bottom:129.492013pt;}
.ya0{bottom:129.885507pt;}
.y5a{bottom:134.202800pt;}
.y36{bottom:134.244400pt;}
.y1a{bottom:135.266400pt;}
.y6a{bottom:137.812800pt;}
.y4f{bottom:139.049600pt;}
.y46{bottom:139.812400pt;}
.y8f{bottom:142.462667pt;}
.y7{bottom:144.161467pt;}
.y81{bottom:146.907200pt;}
.y9f{bottom:152.552133pt;}
.ya9{bottom:152.644000pt;}
.y67{bottom:153.059067pt;}
.y93{bottom:156.862667pt;}
.yb0{bottom:157.215733pt;}
.y75{bottom:162.156533pt;}
.y45{bottom:163.800933pt;}
.y35{bottom:171.044400pt;}
.y59{bottom:171.262667pt;}
.y9e{bottom:172.552133pt;}
.y66{bottom:181.012800pt;}
.y1f{bottom:181.780533pt;}
.yb7{bottom:181.830267pt;}
.y23{bottom:181.916667pt;}
.y4e{bottom:182.405867pt;}
.y7e{bottom:183.750533pt;}
.y8e{bottom:185.402800pt;}
.ybb{bottom:189.826267pt;}
.y3e{bottom:194.836800pt;}
.y9d{bottom:195.218800pt;}
.y76{bottom:198.956533pt;}
.y34{bottom:198.998133pt;}
.y92{bottom:200.062667pt;}
.y3{bottom:200.843200pt;}
.ya7{bottom:203.041467pt;}
.yaf{bottom:210.257733pt;}
.y29{bottom:210.324667pt;}
.y1e{bottom:212.447200pt;}
.y64{bottom:214.046667pt;}
.y74{bottom:214.202800pt;}
.y58{bottom:214.462667pt;}
.y9c{bottom:217.885467pt;}
.y3d{bottom:218.825333pt;}
.y4d{bottom:219.049600pt;}
.yb6{bottom:221.089867pt;}
.y44{bottom:221.134267pt;}
.y8d{bottom:222.462667pt;}
.y65{bottom:224.212800pt;}
.y7d{bottom:225.350533pt;}
.y87{bottom:232.037067pt;}
.yba{bottom:233.026267pt;}
.y33{bottom:235.798133pt;}
.y6c{bottom:239.572133pt;}
.ye{bottom:239.901200pt;}
.y9b{bottom:240.552133pt;}
.y73{bottom:242.156533pt;}
.y91{bottom:243.262667pt;}
.y16{bottom:254.190667pt;}
.yc0{bottom:256.941200pt;}
.y63{bottom:257.246667pt;}
.y57{bottom:257.402800pt;}
.y1d{bottom:260.523467pt;}
.y4c{bottom:262.405867pt;}
.y9a{bottom:263.169867pt;}
.y8c{bottom:263.874800pt;}
.y26{bottom:264.243733pt;}
.yb5{bottom:264.289867pt;}
.y7c{bottom:266.950533pt;}
.y32{bottom:272.598133pt;}
.yae{bottom:273.317467pt;}
.y3c{bottom:276.158667pt;}
.yb9{bottom:276.226267pt;}
.y43{bottom:278.467600pt;}
.yab{bottom:278.650800pt;}
.y72{bottom:285.356533pt;}
.y99{bottom:285.836533pt;}
.y90{bottom:286.462667pt;}
.y1c{bottom:291.190133pt;}
.y56{bottom:294.462667pt;}
.y8b{bottom:295.874800pt;}
.y2{bottom:296.576533pt;}
.y4b{bottom:299.049600pt;}
.y62{bottom:300.602800pt;}
.yb4{bottom:307.489867pt;}
.y98{bottom:308.503200pt;}
.y7b{bottom:308.550533pt;}
.ya6{bottom:312.374800pt;}
.y31{bottom:318.244400pt;}
.yc1{bottom:323.310933pt;}
.yd{bottom:325.767867pt;}
.y71{bottom:328.556533pt;}
.y8a{bottom:329.662667pt;}
.y97{bottom:331.169867pt;}
.yad{bottom:331.448267pt;}
.y18{bottom:332.323333pt;}
.y13{bottom:334.290400pt;}
.y61{bottom:337.246667pt;}
.y55{bottom:337.662667pt;}
.y21{bottom:339.266400pt;}
.y3b{bottom:341.503467pt;}
.y42{bottom:343.812400pt;}
.y4a{bottom:344.539200pt;}
.y25{bottom:346.639467pt;}
.y28{bottom:348.154267pt;}
.y7a{bottom:350.150533pt;}
.y96{bottom:353.836533pt;}
.yac{bottom:354.248267pt;}
.y30{bottom:355.044400pt;}
.y70{bottom:363.422267pt;}
.ya5{bottom:367.041467pt;}
.yb3{bottom:368.642533pt;}
.y20{bottom:369.933067pt;}
.ybf{bottom:374.274533pt;}
.y89{bottom:374.736133pt;}
.y40{bottom:376.779467pt;}
.y54{bottom:382.736133pt;}
.y27{bottom:386.287600pt;}
.y95{bottom:390.736133pt;}
.y6f{bottom:391.376000pt;}
.y79{bottom:391.750533pt;}
.y3a{bottom:399.980267pt;}
.yc{bottom:411.634533pt;}
.ya4{bottom:421.708133pt;}
.y6{bottom:426.864533pt;}
.y2f{bottom:428.794800pt;}
.y6e{bottom:434.576000pt;}
.y5{bottom:457.531200pt;}
.y10{bottom:473.019600pt;}
.h2c{height:14.400000pt;}
.h30{height:21.600000pt;}
.h3d{height:23.392000pt;}
.h3e{height:27.290667pt;}
.h17{height:27.328000pt;}
.h2a{height:33.560693pt;}
.h7{height:35.088000pt;}
.h29{height:35.136000pt;}
.h6{height:39.040000pt;}
.h27{height:39.146667pt;}
.h19{height:40.074693pt;}
.h11{height:44.352000pt;}
.h21{height:45.750693pt;}
.h2b{height:45.760000pt;}
.h1{height:46.784000pt;}
.h37{height:46.976000pt;}
.h35{height:46.979733pt;}
.h36{height:47.171733pt;}
.h15{height:49.332680pt;}
.h32{height:50.682667pt;}
.h16{height:54.656000pt;}
.h1f{height:55.665360pt;}
.h1a{height:56.320000pt;}
.h34{height:56.448000pt;}
.h39{height:56.480000pt;}
.hc{height:58.000187pt;}
.he{height:58.469560pt;}
.h1e{height:61.610667pt;}
.h1c{height:62.378667pt;}
.h2f{height:64.512000pt;}
.h2d{height:66.368000pt;}
.h12{height:68.866560pt;}
.h25{height:69.232533pt;}
.h4{height:69.312000pt;}
.h33{height:70.136040pt;}
.hb{height:70.176000pt;}
.h18{height:70.272000pt;}
.h28{height:70.896533pt;}
.h22{height:70.897067pt;}
.h41{height:72.576000pt;}
.h31{height:78.894027pt;}
.hd{height:79.808939pt;}
.h2e{height:80.250707pt;}
.hf{height:80.454794pt;}
.h5{height:82.837333pt;}
.h13{height:83.426053pt;}
.h26{height:85.600000pt;}
.h10{height:85.866667pt;}
.h24{height:92.736000pt;}
.ha{height:93.283413pt;}
.h9{height:100.800000pt;}
.h42{height:109.610667pt;}
.h1b{height:120.125000pt;}
.h8{height:121.354667pt;}
.h1d{height:122.416667pt;}
.h20{height:122.833333pt;}
.h14{height:137.718750pt;}
.h3c{height:153.216005pt;}
.h3{height:158.400000pt;}
.h3a{height:160.166667pt;}
.h23{height:160.656000pt;}
.h38{height:170.177083pt;}
.h3f{height:180.187500pt;}
.h40{height:194.400000pt;}
.h3b{height:195.637733pt;}
.h2{height:240.250000pt;}
.h0{height:540.000000pt;}
.wc{width:20.842027pt;}
.w7{width:57.962693pt;}
.w3{width:58.000187pt;}
.w4{width:58.469560pt;}
.w9{width:108.973360pt;}
.w6{width:139.868000pt;}
.w2{width:173.292400pt;}
.w12{width:177.306133pt;}
.w10{width:177.835733pt;}
.w13{width:178.512800pt;}
.wf{width:178.944400pt;}
.we{width:196.113733pt;}
.wa{width:215.235333pt;}
.w5{width:219.276000pt;}
.wd{width:219.719867pt;}
.w8{width:285.891333pt;}
.w11{width:358.993467pt;}
.wb{width:428.792133pt;}
.w1{width:461.038000pt;}
.w0{width:960.000000pt;}
.x14{left:-15.919964pt;}
.x15{left:-12.223349pt;}
.x0{left:0.000000pt;}
.x41{left:2.933067pt;}
.x38{left:4.800000pt;}
.x20{left:5.866013pt;}
.x1d{left:7.542013pt;}
.x2a{left:9.166000pt;}
.x11{left:11.382267pt;}
.x2f{left:13.723333pt;}
.x46{left:22.286000pt;}
.xe{left:23.672440pt;}
.x34{left:25.207893pt;}
.x1e{left:30.208680pt;}
.x3{left:31.679653pt;}
.x33{left:33.097733pt;}
.x12{left:34.410267pt;}
.x39{left:35.967893pt;}
.x47{left:47.400480pt;}
.x5{left:50.545013pt;}
.x17{left:52.149627pt;}
.xc{left:57.851267pt;}
.x4{left:61.049693pt;}
.x42{left:65.956373pt;}
.x1c{left:67.224467pt;}
.x3a{left:68.367893pt;}
.x36{left:70.067147pt;}
.x48{left:72.600480pt;}
.x22{left:73.831173pt;}
.x1f{left:95.329027pt;}
.x26{left:99.800613pt;}
.x49{left:100.733813pt;}
.x3e{left:102.467147pt;}
.x2d{left:106.230787pt;}
.x55{left:109.924227pt;}
.x27{left:112.087333pt;}
.x43{left:117.564413pt;}
.x23{left:121.831173pt;}
.x2{left:136.182533pt;}
.x28{left:138.754000pt;}
.xb{left:161.690800pt;}
.x9{left:170.140267pt;}
.xd{left:174.726000pt;}
.xf{left:240.876533pt;}
.x37{left:251.673333pt;}
.x8{left:260.404800pt;}
.x6{left:269.809600pt;}
.x57{left:292.295067pt;}
.x7{left:318.481600pt;}
.xa{left:335.406667pt;}
.x53{left:344.733867pt;}
.x1{left:377.769200pt;}
.x30{left:400.227333pt;}
.x16{left:402.946667pt;}
.x31{left:425.427333pt;}
.x58{left:430.786667pt;}
.x24{left:438.732800pt;}
.x3b{left:442.187333pt;}
.x4d{left:452.827067pt;}
.x4c{left:462.357067pt;}
.x4e{left:471.602000pt;}
.x2e{left:474.350000pt;}
.x3f{left:498.945067pt;}
.x10{left:544.697067pt;}
.x40{left:546.794400pt;}
.x3c{left:568.092533pt;}
.x45{left:570.595600pt;}
.x25{left:614.346133pt;}
.x4a{left:616.360000pt;}
.x56{left:618.627067pt;}
.x1b{left:619.532800pt;}
.x29{left:637.471600pt;}
.x19{left:641.660133pt;}
.x2b{left:658.924400pt;}
.x3d{left:663.568000pt;}
.x18{left:667.085600pt;}
.x1a{left:679.868267pt;}
.x2c{left:685.591067pt;}
.x52{left:692.317600pt;}
.x32{left:696.801467pt;}
.x35{left:698.616267pt;}
.x4b{left:712.360000pt;}
.x54{left:714.837333pt;}
.x4f{left:716.506533pt;}
.x44{left:755.830667pt;}
.x50{left:794.709467pt;}
.x13{left:828.926800pt;}
.x51{left:834.512533pt;}
.x21{left:940.818400pt;}
}




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