
    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_4bcc7910a4e8e38a4e6d1712.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.133789;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_657ff937ce60929a887d56b0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.133789;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_8ab6b922b230f22f35a202de.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b1650041a48f22c657628cba.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7784c6fe5a1babe140aac472.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_92457a433d3a1677951de1b8.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c7a0318b9d105dd1eb42d7d7.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_958adb448c8c689867e73fea.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.978027;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_dcbf5ec826e802936bcefddc.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.084961;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_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_f553ce76d737d0f92bb72e8b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.978027;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_a10dea9fc45a7217dc17ff6f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.210938;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_46d0214ad42b185f55ac60c4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.708008;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_5e9fcb2ec55ff5caf19bfbc0.woff2')format("woff");}.ffe{font-family:ffe;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;}
.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);}
.v2{vertical-align:-20.880000px;}
.v15{vertical-align:-18.720000px;}
.v11{vertical-align:-15.840000px;}
.v12{vertical-align:-13.680000px;}
.ve{vertical-align:-12.240000px;}
.v5{vertical-align:-9.360000px;}
.vc{vertical-align:-7.200000px;}
.vd{vertical-align:-5.760000px;}
.vb{vertical-align:-4.320000px;}
.v6{vertical-align:-2.880000px;}
.v9{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.440000px;}
.v7{vertical-align:2.880000px;}
.va{vertical-align:4.320000px;}
.v3{vertical-align:6.480000px;}
.v10{vertical-align:7.920000px;}
.v4{vertical-align:9.360000px;}
.vf{vertical-align:12.240000px;}
.v13{vertical-align:13.680000px;}
.v14{vertical-align:18.720000px;}
.v1{vertical-align:20.880000px;}
.ls45{letter-spacing:-15.660000px;}
.lsb{letter-spacing:-12.780000px;}
.ls46{letter-spacing:-10.440000px;}
.ls12{letter-spacing:-9.180000px;}
.ls47{letter-spacing:-9.000000px;}
.ls15{letter-spacing:-6.300000px;}
.ls13{letter-spacing:-5.580000px;}
.ls14{letter-spacing:-4.140000px;}
.ls7{letter-spacing:-0.924000px;}
.lsa{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.460200px;}
.ls9{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.305400px;}
.ls44{letter-spacing:-0.259800px;}
.ls48{letter-spacing:-0.106800px;}
.ls2{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.043920px;}
.ls19{letter-spacing:0.053280px;}
.ls1e{letter-spacing:0.086400px;}
.ls6{letter-spacing:0.106800px;}
.ls21{letter-spacing:0.158400px;}
.ls0{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.206640px;}
.ls5{letter-spacing:0.259800px;}
.ls4{letter-spacing:0.262200px;}
.lsc{letter-spacing:0.298800px;}
.ls18{letter-spacing:0.306720px;}
.ls11{letter-spacing:0.360000px;}
.ls2e{letter-spacing:0.509040px;}
.ls2a{letter-spacing:0.720000px;}
.ls41{letter-spacing:0.772560px;}
.ls31{letter-spacing:0.789840px;}
.ls22{letter-spacing:0.815760px;}
.ls17{letter-spacing:0.900000px;}
.ls1{letter-spacing:1.026000px;}
.ls2f{letter-spacing:1.085040px;}
.ls23{letter-spacing:1.440000px;}
.ls3b{letter-spacing:1.942560px;}
.ls1a{letter-spacing:2.160000px;}
.ls1d{letter-spacing:2.246400px;}
.ls34{letter-spacing:2.662560px;}
.ls1b{letter-spacing:3.245040px;}
.ls35{letter-spacing:4.389840px;}
.lsf{letter-spacing:4.500000px;}
.ls25{letter-spacing:4.595760px;}
.ls40{letter-spacing:5.439600px;}
.ls3e{letter-spacing:5.448240px;}
.ls2b{letter-spacing:5.533200px;}
.ls28{letter-spacing:5.829840px;}
.ls3c{letter-spacing:5.846400px;}
.ls42{letter-spacing:6.168240px;}
.ls37{letter-spacing:6.425280px;}
.ls26{letter-spacing:6.549840px;}
.ls43{letter-spacing:6.660000px;}
.ls30{letter-spacing:6.865920px;}
.ls3f{letter-spacing:7.702560px;}
.ls2c{letter-spacing:7.963920px;}
.ls39{letter-spacing:7.981920px;}
.ls36{letter-spacing:8.319600px;}
.ls24{letter-spacing:8.396640px;}
.ls29{letter-spacing:8.422560px;}
.ls10{letter-spacing:8.820000px;}
.ls4d{letter-spacing:9.540000px;}
.ls1c{letter-spacing:9.785520px;}
.ls32{letter-spacing:10.496160px;}
.ls20{letter-spacing:10.556640px;}
.ls3d{letter-spacing:10.582560px;}
.ls33{letter-spacing:10.895760px;}
.ls38{letter-spacing:10.946880px;}
.ls3a{letter-spacing:12.283920px;}
.ls27{letter-spacing:15.266880px;}
.ls4c{letter-spacing:22.500000px;}
.ls4b{letter-spacing:23.904000px;}
.lse{letter-spacing:41.706720px;}
.lsd{letter-spacing:44.586720px;}
.ls16{letter-spacing:46.026720px;}
.ls49{letter-spacing:49.626720px;}
.ls4a{letter-spacing:160.128000px;}
.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;}
}
.ws10{word-spacing:-72.000000px;}
.wsf{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.822200px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.ws8{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.238800px;}
.ws4{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.680200px;}
.ws7{word-spacing:-9.720000px;}
.wse{word-spacing:-0.319560px;}
.ws3{word-spacing:-0.059760px;}
.wsb{word-spacing:-0.038880px;}
.ws5{word-spacing:0.000000px;}
.wsd{word-spacing:0.200040px;}
.wsc{word-spacing:15.060240px;}
._1{margin-left:-2541.138480px;}
._3{margin-left:-1449.751680px;}
._6{margin-left:-1444.731480px;}
._5{margin-left:-930.896640px;}
._2b{margin-left:-644.526720px;}
._2c{margin-left:-628.693920px;}
._7{margin-left:-577.969920px;}
._47{margin-left:-513.733440px;}
._46{margin-left:-510.501120px;}
._23{margin-left:-455.160000px;}
._45{margin-left:-438.373440px;}
._4b{margin-left:-401.146560px;}
._4c{margin-left:-398.153280px;}
._4d{margin-left:-317.880000px;}
._3f{margin-left:-315.824400px;}
._3e{margin-left:-285.149280px;}
._2e{margin-left:-234.913440px;}
._2d{margin-left:-220.493280px;}
._4a{margin-left:-209.501040px;}
._49{margin-left:-206.969520px;}
._42{margin-left:-201.929040px;}
._3a{margin-left:-199.657440px;}
._3c{margin-left:-169.151520px;}
._39{margin-left:-149.587440px;}
._41{margin-left:-140.752560px;}
._2a{margin-left:-127.975680px;}
._48{margin-left:-125.640000px;}
._3d{margin-left:-120.941520px;}
._26{margin-left:-119.160000px;}
._20{margin-left:-115.041600px;}
._29{margin-left:-112.213440px;}
._25{margin-left:-106.613280px;}
._40{margin-left:-89.712960px;}
._36{margin-left:-87.913680px;}
._43{margin-left:-85.579680px;}
._33{margin-left:-83.964240px;}
._3b{margin-left:-78.073200px;}
._2f{margin-left:-75.960000px;}
._27{margin-left:-71.386560px;}
._37{margin-left:-68.649120px;}
._28{margin-left:-63.697680px;}
._24{margin-left:-61.560000px;}
._31{margin-left:-57.546720px;}
._35{margin-left:-53.280000px;}
._38{margin-left:-48.133440px;}
._34{margin-left:-44.280000px;}
._44{margin-left:-38.768880px;}
._32{margin-left:-28.800000px;}
._22{margin-left:-20.888640px;}
._21{margin-left:-19.800000px;}
._30{margin-left:-15.660000px;}
._1c{margin-left:-14.249520px;}
._1e{margin-left:-12.675840px;}
._1a{margin-left:-11.153040px;}
._1d{margin-left:-9.472800px;}
._4{margin-left:-8.213760px;}
._c{margin-left:-6.690240px;}
._a{margin-left:-5.490480px;}
._9{margin-left:-4.432800px;}
._e{margin-left:-3.409200px;}
._8{margin-left:-2.361840px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._b{width:2.259120px;}
._d{width:3.351840px;}
._f{width:4.721040px;}
._12{width:5.876640px;}
._11{width:7.364640px;}
._13{width:8.545680px;}
._10{width:10.343520px;}
._14{width:11.414160px;}
._1b{width:12.437760px;}
._17{width:13.463520px;}
._1f{width:14.572800px;}
._18{width:16.696080px;}
._19{width:18.527520px;}
._4f{width:19.630080px;}
._53{width:21.989280px;}
._4e{width:24.602400px;}
._50{width:26.045760px;}
._51{width:73.964160px;}
._52{width:75.058560px;}
._15{width:88.020000px;}
._16{width:89.762640px;}
.fc3{color:rgb(4,99,193);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(84,102,221);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y100{bottom:10.800000px;}
.yff{bottom:30.600000px;}
.yfc{bottom:34.740000px;}
.yfe{bottom:50.430000px;}
.y6{bottom:66.240000px;}
.yfd{bottom:70.230000px;}
.yab{bottom:93.780000px;}
.y6a{bottom:93.960000px;}
.yfa{bottom:95.580000px;}
.yaa{bottom:111.780000px;}
.y69{bottom:111.960000px;}
.yfb{bottom:113.760000px;}
.yc8{bottom:114.300000px;}
.yf9{bottom:115.380000px;}
.ya9{bottom:117.000000px;}
.y68{bottom:117.180000px;}
.y33{bottom:120.780000px;}
.ya8{bottom:129.240000px;}
.y67{bottom:130.680000px;}
.yc7{bottom:134.100000px;}
.yf8{bottom:135.180000px;}
.y32{bottom:140.580000px;}
.ya7{bottom:146.880000px;}
.ya6{bottom:152.130000px;}
.yc6{bottom:153.930000px;}
.yf7{bottom:155.010000px;}
.y31{bottom:160.410000px;}
.ya5{bottom:166.710000px;}
.ya4{bottom:171.930000px;}
.yc5{bottom:173.730000px;}
.yf6{bottom:174.990000px;}
.y30{bottom:180.210000px;}
.ya3{bottom:185.430000px;}
.ya2{bottom:190.650000px;}
.yc4{bottom:193.530000px;}
.yf5{bottom:194.790000px;}
.y65{bottom:195.510000px;}
.y2f{bottom:200.190000px;}
.y66{bottom:200.730000px;}
.ya1{bottom:204.150000px;}
.ya0{bottom:209.370000px;}
.yc3{bottom:213.510000px;}
.yf4{bottom:214.590000px;}
.y64{bottom:215.310000px;}
.y2e{bottom:219.990000px;}
.y9f{bottom:223.050000px;}
.y9e{bottom:228.270000px;}
.yc2{bottom:233.310000px;}
.yf3{bottom:234.390000px;}
.y63{bottom:235.110000px;}
.y2d{bottom:239.790000px;}
.y9d{bottom:240.330000px;}
.yc1{bottom:253.110000px;}
.yf2{bottom:254.190000px;}
.y62{bottom:254.910000px;}
.y9c{bottom:257.430000px;}
.y2c{bottom:259.590000px;}
.yc0{bottom:272.910000px;}
.yf1{bottom:274.170000px;}
.y61{bottom:274.710000px;}
.y9b{bottom:275.790000px;}
.y2b{bottom:279.390000px;}
.ybf{bottom:292.710000px;}
.yf0{bottom:293.970000px;}
.y9a{bottom:294.510000px;}
.y60{bottom:294.690000px;}
.y2a{bottom:299.370000px;}
.y99{bottom:299.730000px;}
.ybe{bottom:312.690000px;}
.y98{bottom:313.230000px;}
.yef{bottom:313.770000px;}
.y5f{bottom:314.490000px;}
.y97{bottom:318.450000px;}
.y29{bottom:319.170000px;}
.ybd{bottom:330.690000px;}
.ybb{bottom:332.490000px;}
.yee{bottom:333.570000px;}
.y5e{bottom:334.290000px;}
.ybc{bottom:337.710000px;}
.y28{bottom:338.970000px;}
.y96{bottom:341.490000px;}
.yb9{bottom:352.290000px;}
.yed{bottom:353.370000px;}
.y5d{bottom:354.090000px;}
.yba{bottom:357.510000px;}
.y27{bottom:358.770000px;}
.y95{bottom:359.310000px;}
.y94{bottom:364.530000px;}
.yb8{bottom:372.090000px;}
.yec{bottom:373.350000px;}
.y5c{bottom:373.890000px;}
.y93{bottom:376.950000px;}
.y26{bottom:378.570000px;}
.yb7{bottom:391.890000px;}
.y5b{bottom:393.870000px;}
.y92{bottom:394.410000px;}
.yeb{bottom:395.310000px;}
.y25{bottom:398.550000px;}
.y91{bottom:399.630000px;}
.yb6{bottom:411.915000px;}
.y90{bottom:414.255000px;}
.yea{bottom:415.155000px;}
.y24{bottom:418.395000px;}
.y8f{bottom:419.475000px;}
.y5a{bottom:422.715000px;}
.yb5{bottom:431.715000px;}
.y8e{bottom:431.895000px;}
.ye9{bottom:437.115000px;}
.y23{bottom:438.195000px;}
.y59{bottom:442.515000px;}
.y8d{bottom:449.355000px;}
.yb3{bottom:449.715000px;}
.yb2{bottom:449.895000px;}
.yb4{bottom:450.075000px;}
.yb1{bottom:451.515000px;}
.y8c{bottom:454.575000px;}
.ye8{bottom:457.095000px;}
.y22{bottom:457.995000px;}
.y58{bottom:462.315000px;}
.y8b{bottom:469.155000px;}
.yb0{bottom:471.315000px;}
.y8a{bottom:474.375000px;}
.y21{bottom:477.795000px;}
.ye7{bottom:479.055000px;}
.y57{bottom:482.115000px;}
.y89{bottom:488.055000px;}
.yaf{bottom:491.115000px;}
.y20{bottom:497.775000px;}
.ye6{bottom:498.855000px;}
.y56{bottom:502.095000px;}
.yae{bottom:511.095000px;}
.y1f{bottom:517.575000px;}
.ye5{bottom:518.655000px;}
.y55{bottom:521.895000px;}
.y88{bottom:530.895000px;}
.y1e{bottom:537.375000px;}
.ye4{bottom:540.795000px;}
.y54{bottom:541.695000px;}
.y87{bottom:550.695000px;}
.y1d{bottom:557.175000px;}
.ye3{bottom:560.595000px;}
.y53{bottom:561.495000px;}
.y86{bottom:570.495000px;}
.y1c{bottom:576.975000px;}
.y52{bottom:581.295000px;}
.ye2{bottom:582.555000px;}
.y85{bottom:590.295000px;}
.y1b{bottom:596.955000px;}
.y51{bottom:601.275000px;}
.ye1{bottom:602.355000px;}
.y84{bottom:610.275000px;}
.y1a{bottom:616.755000px;}
.y50{bottom:621.075000px;}
.ye0{bottom:622.335000px;}
.y83{bottom:630.075000px;}
.y19{bottom:636.555000px;}
.y4f{bottom:640.875000px;}
.ydf{bottom:644.295000px;}
.y82{bottom:649.905000px;}
.y18{bottom:656.385000px;}
.y4e{bottom:660.705000px;}
.yde{bottom:664.125000px;}
.y81{bottom:669.705000px;}
.y17{bottom:676.185000px;}
.y4d{bottom:680.505000px;}
.ydd{bottom:683.925000px;}
.y80{bottom:689.505000px;}
.y16{bottom:698.325000px;}
.y4c{bottom:700.485000px;}
.ydc{bottom:703.725000px;}
.y7f{bottom:709.485000px;}
.y4b{bottom:720.285000px;}
.ydb{bottom:723.705000px;}
.y15{bottom:727.125000px;}
.y7e{bottom:729.285000px;}
.y4a{bottom:740.085000px;}
.yda{bottom:743.505000px;}
.y14{bottom:746.925000px;}
.y7c{bottom:749.085000px;}
.y7d{bottom:754.305000px;}
.y49{bottom:759.885000px;}
.yd9{bottom:763.305000px;}
.y13{bottom:766.905000px;}
.y7a{bottom:768.885000px;}
.y7b{bottom:774.105000px;}
.y48{bottom:779.685000px;}
.yd8{bottom:783.105000px;}
.y12{bottom:786.705000px;}
.y79{bottom:788.685000px;}
.y47{bottom:799.665000px;}
.yd7{bottom:802.905000px;}
.y11{bottom:806.505000px;}
.y77{bottom:808.665000px;}
.y78{bottom:813.885000px;}
.y46{bottom:819.465000px;}
.yd6{bottom:822.885000px;}
.y10{bottom:826.305000px;}
.y76{bottom:828.465000px;}
.y45{bottom:839.265000px;}
.yd5{bottom:842.685000px;}
.yf{bottom:846.105000px;}
.yad{bottom:848.265000px;}
.y75{bottom:853.485000px;}
.yd4{bottom:862.485000px;}
.y74{bottom:864.825000px;}
.ye{bottom:866.085000px;}
.y44{bottom:868.065000px;}
.yd3{bottom:882.285000px;}
.yd{bottom:885.885000px;}
.y43{bottom:887.865000px;}
.yd2{bottom:902.130000px;}
.yc{bottom:905.730000px;}
.y42{bottom:907.890000px;}
.y73{bottom:913.110000px;}
.yd1{bottom:922.110000px;}
.yac{bottom:924.450000px;}
.y41{bottom:927.690000px;}
.yb{bottom:927.870000px;}
.y72{bottom:932.910000px;}
.yd0{bottom:941.910000px;}
.y40{bottom:947.490000px;}
.ya{bottom:947.670000px;}
.y71{bottom:952.710000px;}
.ycf{bottom:961.710000px;}
.y3f{bottom:967.290000px;}
.y9{bottom:968.010000px;}
.y70{bottom:972.510000px;}
.yce{bottom:981.510000px;}
.y3e{bottom:987.090000px;}
.y8{bottom:989.250000px;}
.ycd{bottom:1001.310000px;}
.y3d{bottom:1007.070000px;}
.y6f{bottom:1012.290000px;}
.y7{bottom:1012.830000px;}
.ycc{bottom:1021.290000px;}
.y3c{bottom:1026.870000px;}
.y6e{bottom:1032.090000px;}
.ycb{bottom:1041.090000px;}
.y3b{bottom:1046.670000px;}
.y5{bottom:1051.170000px;}
.yca{bottom:1060.890000px;}
.y3a{bottom:1066.470000px;}
.y6d{bottom:1071.690000px;}
.y4{bottom:1081.950000px;}
.yc9{bottom:1083.390000px;}
.y39{bottom:1086.270000px;}
.y38{bottom:1106.250000px;}
.y3{bottom:1112.730000px;}
.y37{bottom:1126.050000px;}
.y6c{bottom:1131.270000px;}
.y2{bottom:1143.690000px;}
.y36{bottom:1145.850000px;}
.y35{bottom:1165.680000px;}
.y6b{bottom:1170.900000px;}
.y1{bottom:1177.560000px;}
.y34{bottom:1193.220000px;}
.h22{height:2.010938px;}
.hb{height:27.147656px;}
.h15{height:38.690156px;}
.h14{height:41.493516px;}
.h6{height:41.726953px;}
.hd{height:43.506914px;}
.h8{height:45.549492px;}
.h4{height:46.251562px;}
.ha{height:48.027656px;}
.h9{height:48.496641px;}
.hc{height:50.273438px;}
.h1f{height:52.417969px;}
.h20{height:53.332031px;}
.h5{height:54.857813px;}
.h16{height:59.468203px;}
.he{height:59.570156px;}
.h3{height:60.806250px;}
.h1b{height:62.348203px;}
.h18{height:63.788203px;}
.h17{height:64.508203px;}
.h13{height:65.228203px;}
.h1a{height:65.948203px;}
.h12{height:66.668203px;}
.h7{height:67.824844px;}
.h1e{height:68.108203px;}
.h19{height:68.828203px;}
.h11{height:69.548203px;}
.h1c{height:73.868203px;}
.hf{height:75.308203px;}
.h10{height:76.748203px;}
.h1d{height:78.188203px;}
.h21{height:84.276000px;}
.h2{height:87.904688px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:210.810000px;}
.w5{width:581.010000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4f{left:7.785000px;}
.x23{left:26.999987px;}
.x2{left:53.279987px;}
.x1{left:54.359987px;}
.x4d{left:57.779987px;}
.x7{left:58.859987px;}
.x22{left:63.719987px;}
.x47{left:73.439987px;}
.x4c{left:79.559987px;}
.x21{left:80.999987px;}
.xf{left:97.775973px;}
.x10{left:102.635987px;}
.x3{left:107.315987px;}
.x1d{left:108.575973px;}
.xc{left:112.715987px;}
.x1e{left:118.295987px;}
.x1f{left:130.175973px;}
.x20{left:139.895987px;}
.x2f{left:192.269987px;}
.x11{left:219.449973px;}
.x12{left:224.309987px;}
.x13{left:239.789973px;}
.x14{left:244.649987px;}
.x4e{left:264.810000px;}
.x46{left:266.249987px;}
.x6{left:270.074987px;}
.x45{left:281.774987px;}
.xd{left:306.614973px;}
.xe{left:311.474987px;}
.x44{left:312.554987px;}
.x43{left:336.494987px;}
.x42{left:349.994987px;}
.x2e{left:353.054987px;}
.x41{left:355.754987px;}
.x8{left:360.614973px;}
.x2d{left:363.854987px;}
.x9{left:365.474987px;}
.x40{left:376.094987px;}
.x3d{left:378.794987px;}
.x2c{left:393.734987px;}
.x2b{left:412.814987px;}
.x3e{left:414.974987px;}
.x2a{left:418.394987px;}
.x3f{left:432.794987px;}
.x24{left:439.274987px;}
.x3c{left:478.184987px;}
.x15{left:486.644973px;}
.x16{left:491.504987px;}
.x3b{left:494.924987px;}
.x3a{left:505.724987px;}
.x39{left:519.584987px;}
.x25{left:537.224987px;}
.x26{left:585.644987px;}
.x29{left:590.324987px;}
.x4a{left:596.084987px;}
.x38{left:600.224987px;}
.x35{left:602.744987px;}
.x36{left:614.984987px;}
.x27{left:640.409987px;}
.x37{left:660.524987px;}
.x1b{left:670.289973px;}
.x1c{left:680.009987px;}
.x49{left:691.169987px;}
.x19{left:695.669973px;}
.xa{left:702.329973px;}
.x1a{left:705.389987px;}
.xb{left:707.189987px;}
.x4{left:716.549973px;}
.x5{left:721.409987px;}
.x34{left:724.829987px;}
.x33{left:727.529987px;}
.x28{left:730.049987px;}
.x32{left:762.989987px;}
.x48{left:801.509987px;}
.x17{left:802.769973px;}
.x31{left:809.789987px;}
.x18{left:812.519987px;}
.x4b{left:831.059987px;}
.x30{left:835.919987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v15{vertical-align:-16.640000pt;}
.v11{vertical-align:-14.080000pt;}
.v12{vertical-align:-12.160000pt;}
.ve{vertical-align:-10.880000pt;}
.v5{vertical-align:-8.320000pt;}
.vc{vertical-align:-6.400000pt;}
.vd{vertical-align:-5.120000pt;}
.vb{vertical-align:-3.840000pt;}
.v6{vertical-align:-2.560000pt;}
.v9{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.280000pt;}
.v7{vertical-align:2.560000pt;}
.va{vertical-align:3.840000pt;}
.v3{vertical-align:5.760000pt;}
.v10{vertical-align:7.040000pt;}
.v4{vertical-align:8.320000pt;}
.vf{vertical-align:10.880000pt;}
.v13{vertical-align:12.160000pt;}
.v14{vertical-align:16.640000pt;}
.v1{vertical-align:18.560000pt;}
.ls45{letter-spacing:-13.920000pt;}
.lsb{letter-spacing:-11.360000pt;}
.ls46{letter-spacing:-9.280000pt;}
.ls12{letter-spacing:-8.160000pt;}
.ls47{letter-spacing:-8.000000pt;}
.ls15{letter-spacing:-5.600000pt;}
.ls13{letter-spacing:-4.960000pt;}
.ls14{letter-spacing:-3.680000pt;}
.ls7{letter-spacing:-0.821333pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.409067pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.271467pt;}
.ls44{letter-spacing:-0.230933pt;}
.ls48{letter-spacing:-0.094933pt;}
.ls2{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.039040pt;}
.ls19{letter-spacing:0.047360pt;}
.ls1e{letter-spacing:0.076800pt;}
.ls6{letter-spacing:0.094933pt;}
.ls21{letter-spacing:0.140800pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.183680pt;}
.ls5{letter-spacing:0.230933pt;}
.ls4{letter-spacing:0.233067pt;}
.lsc{letter-spacing:0.265600pt;}
.ls18{letter-spacing:0.272640pt;}
.ls11{letter-spacing:0.320000pt;}
.ls2e{letter-spacing:0.452480pt;}
.ls2a{letter-spacing:0.640000pt;}
.ls41{letter-spacing:0.686720pt;}
.ls31{letter-spacing:0.702080pt;}
.ls22{letter-spacing:0.725120pt;}
.ls17{letter-spacing:0.800000pt;}
.ls1{letter-spacing:0.912000pt;}
.ls2f{letter-spacing:0.964480pt;}
.ls23{letter-spacing:1.280000pt;}
.ls3b{letter-spacing:1.726720pt;}
.ls1a{letter-spacing:1.920000pt;}
.ls1d{letter-spacing:1.996800pt;}
.ls34{letter-spacing:2.366720pt;}
.ls1b{letter-spacing:2.884480pt;}
.ls35{letter-spacing:3.902080pt;}
.lsf{letter-spacing:4.000000pt;}
.ls25{letter-spacing:4.085120pt;}
.ls40{letter-spacing:4.835200pt;}
.ls3e{letter-spacing:4.842880pt;}
.ls2b{letter-spacing:4.918400pt;}
.ls28{letter-spacing:5.182080pt;}
.ls3c{letter-spacing:5.196800pt;}
.ls42{letter-spacing:5.482880pt;}
.ls37{letter-spacing:5.711360pt;}
.ls26{letter-spacing:5.822080pt;}
.ls43{letter-spacing:5.920000pt;}
.ls30{letter-spacing:6.103040pt;}
.ls3f{letter-spacing:6.846720pt;}
.ls2c{letter-spacing:7.079040pt;}
.ls39{letter-spacing:7.095040pt;}
.ls36{letter-spacing:7.395200pt;}
.ls24{letter-spacing:7.463680pt;}
.ls29{letter-spacing:7.486720pt;}
.ls10{letter-spacing:7.840000pt;}
.ls4d{letter-spacing:8.480000pt;}
.ls1c{letter-spacing:8.698240pt;}
.ls32{letter-spacing:9.329920pt;}
.ls20{letter-spacing:9.383680pt;}
.ls3d{letter-spacing:9.406720pt;}
.ls33{letter-spacing:9.685120pt;}
.ls38{letter-spacing:9.730560pt;}
.ls3a{letter-spacing:10.919040pt;}
.ls27{letter-spacing:13.570560pt;}
.ls4c{letter-spacing:20.000000pt;}
.ls4b{letter-spacing:21.248000pt;}
.lse{letter-spacing:37.072640pt;}
.lsd{letter-spacing:39.632640pt;}
.ls16{letter-spacing:40.912640pt;}
.ls49{letter-spacing:44.112640pt;}
.ls4a{letter-spacing:142.336000pt;}
.ws10{word-spacing:-64.000000pt;}
.wsf{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.953067pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws8{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.545600pt;}
.ws4{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.049067pt;}
.ws7{word-spacing:-8.640000pt;}
.wse{word-spacing:-0.284053pt;}
.ws3{word-spacing:-0.053120pt;}
.wsb{word-spacing:-0.034560pt;}
.ws5{word-spacing:0.000000pt;}
.wsd{word-spacing:0.177813pt;}
.wsc{word-spacing:13.386880pt;}
._1{margin-left:-2258.789760pt;}
._3{margin-left:-1288.668160pt;}
._6{margin-left:-1284.205760pt;}
._5{margin-left:-827.463680pt;}
._2b{margin-left:-572.912640pt;}
._2c{margin-left:-558.839040pt;}
._7{margin-left:-513.751040pt;}
._47{margin-left:-456.651947pt;}
._46{margin-left:-453.778773pt;}
._23{margin-left:-404.586667pt;}
._45{margin-left:-389.665280pt;}
._4b{margin-left:-356.574720pt;}
._4c{margin-left:-353.914027pt;}
._4d{margin-left:-282.560000pt;}
._3f{margin-left:-280.732800pt;}
._3e{margin-left:-253.466027pt;}
._2e{margin-left:-208.811947pt;}
._2d{margin-left:-195.994027pt;}
._4a{margin-left:-186.223147pt;}
._49{margin-left:-183.972907pt;}
._42{margin-left:-179.492480pt;}
._3a{margin-left:-177.473280pt;}
._3c{margin-left:-150.356907pt;}
._39{margin-left:-132.966613pt;}
._41{margin-left:-125.113387pt;}
._2a{margin-left:-113.756160pt;}
._48{margin-left:-111.680000pt;}
._3d{margin-left:-107.503573pt;}
._26{margin-left:-105.920000pt;}
._20{margin-left:-102.259200pt;}
._29{margin-left:-99.745280pt;}
._25{margin-left:-94.767360pt;}
._40{margin-left:-79.744853pt;}
._36{margin-left:-78.145493pt;}
._43{margin-left:-76.070827pt;}
._33{margin-left:-74.634880pt;}
._3b{margin-left:-69.398400pt;}
._2f{margin-left:-67.520000pt;}
._27{margin-left:-63.454720pt;}
._37{margin-left:-61.021440pt;}
._28{margin-left:-56.620160pt;}
._24{margin-left:-54.720000pt;}
._31{margin-left:-51.152640pt;}
._35{margin-left:-47.360000pt;}
._38{margin-left:-42.785280pt;}
._34{margin-left:-39.360000pt;}
._44{margin-left:-34.461227pt;}
._32{margin-left:-25.600000pt;}
._22{margin-left:-18.567680pt;}
._21{margin-left:-17.600000pt;}
._30{margin-left:-13.920000pt;}
._1c{margin-left:-12.666240pt;}
._1e{margin-left:-11.267413pt;}
._1a{margin-left:-9.913813pt;}
._1d{margin-left:-8.420267pt;}
._4{margin-left:-7.301120pt;}
._c{margin-left:-5.946880pt;}
._a{margin-left:-4.880427pt;}
._9{margin-left:-3.940267pt;}
._e{margin-left:-3.030400pt;}
._8{margin-left:-2.099413pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._b{width:2.008107pt;}
._d{width:2.979413pt;}
._f{width:4.196480pt;}
._12{width:5.223680pt;}
._11{width:6.546347pt;}
._13{width:7.596160pt;}
._10{width:9.194240pt;}
._14{width:10.145920pt;}
._1b{width:11.055787pt;}
._17{width:11.967573pt;}
._1f{width:12.953600pt;}
._18{width:14.840960pt;}
._19{width:16.468907pt;}
._4f{width:17.448960pt;}
._53{width:19.546027pt;}
._4e{width:21.868800pt;}
._50{width:23.151787pt;}
._51{width:65.745920pt;}
._52{width:66.718720pt;}
._15{width:78.240000pt;}
._16{width:79.789013pt;}
.fs5{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y100{bottom:9.600000pt;}
.yff{bottom:27.200000pt;}
.yfc{bottom:30.880000pt;}
.yfe{bottom:44.826667pt;}
.y6{bottom:58.880000pt;}
.yfd{bottom:62.426667pt;}
.yab{bottom:83.360000pt;}
.y6a{bottom:83.520000pt;}
.yfa{bottom:84.960000pt;}
.yaa{bottom:99.360000pt;}
.y69{bottom:99.520000pt;}
.yfb{bottom:101.120000pt;}
.yc8{bottom:101.600000pt;}
.yf9{bottom:102.560000pt;}
.ya9{bottom:104.000000pt;}
.y68{bottom:104.160000pt;}
.y33{bottom:107.360000pt;}
.ya8{bottom:114.880000pt;}
.y67{bottom:116.160000pt;}
.yc7{bottom:119.200000pt;}
.yf8{bottom:120.160000pt;}
.y32{bottom:124.960000pt;}
.ya7{bottom:130.560000pt;}
.ya6{bottom:135.226667pt;}
.yc6{bottom:136.826667pt;}
.yf7{bottom:137.786667pt;}
.y31{bottom:142.586667pt;}
.ya5{bottom:148.186667pt;}
.ya4{bottom:152.826667pt;}
.yc5{bottom:154.426667pt;}
.yf6{bottom:155.546667pt;}
.y30{bottom:160.186667pt;}
.ya3{bottom:164.826667pt;}
.ya2{bottom:169.466667pt;}
.yc4{bottom:172.026667pt;}
.yf5{bottom:173.146667pt;}
.y65{bottom:173.786667pt;}
.y2f{bottom:177.946667pt;}
.y66{bottom:178.426667pt;}
.ya1{bottom:181.466667pt;}
.ya0{bottom:186.106667pt;}
.yc3{bottom:189.786667pt;}
.yf4{bottom:190.746667pt;}
.y64{bottom:191.386667pt;}
.y2e{bottom:195.546667pt;}
.y9f{bottom:198.266667pt;}
.y9e{bottom:202.906667pt;}
.yc2{bottom:207.386667pt;}
.yf3{bottom:208.346667pt;}
.y63{bottom:208.986667pt;}
.y2d{bottom:213.146667pt;}
.y9d{bottom:213.626667pt;}
.yc1{bottom:224.986667pt;}
.yf2{bottom:225.946667pt;}
.y62{bottom:226.586667pt;}
.y9c{bottom:228.826667pt;}
.y2c{bottom:230.746667pt;}
.yc0{bottom:242.586667pt;}
.yf1{bottom:243.706667pt;}
.y61{bottom:244.186667pt;}
.y9b{bottom:245.146667pt;}
.y2b{bottom:248.346667pt;}
.ybf{bottom:260.186667pt;}
.yf0{bottom:261.306667pt;}
.y9a{bottom:261.786667pt;}
.y60{bottom:261.946667pt;}
.y2a{bottom:266.106667pt;}
.y99{bottom:266.426667pt;}
.ybe{bottom:277.946667pt;}
.y98{bottom:278.426667pt;}
.yef{bottom:278.906667pt;}
.y5f{bottom:279.546667pt;}
.y97{bottom:283.066667pt;}
.y29{bottom:283.706667pt;}
.ybd{bottom:293.946667pt;}
.ybb{bottom:295.546667pt;}
.yee{bottom:296.506667pt;}
.y5e{bottom:297.146667pt;}
.ybc{bottom:300.186667pt;}
.y28{bottom:301.306667pt;}
.y96{bottom:303.546667pt;}
.yb9{bottom:313.146667pt;}
.yed{bottom:314.106667pt;}
.y5d{bottom:314.746667pt;}
.yba{bottom:317.786667pt;}
.y27{bottom:318.906667pt;}
.y95{bottom:319.386667pt;}
.y94{bottom:324.026667pt;}
.yb8{bottom:330.746667pt;}
.yec{bottom:331.866667pt;}
.y5c{bottom:332.346667pt;}
.y93{bottom:335.066667pt;}
.y26{bottom:336.506667pt;}
.yb7{bottom:348.346667pt;}
.y5b{bottom:350.106667pt;}
.y92{bottom:350.586667pt;}
.yeb{bottom:351.386667pt;}
.y25{bottom:354.266667pt;}
.y91{bottom:355.226667pt;}
.yb6{bottom:366.146667pt;}
.y90{bottom:368.226667pt;}
.yea{bottom:369.026667pt;}
.y24{bottom:371.906667pt;}
.y8f{bottom:372.866667pt;}
.y5a{bottom:375.746667pt;}
.yb5{bottom:383.746667pt;}
.y8e{bottom:383.906667pt;}
.ye9{bottom:388.546667pt;}
.y23{bottom:389.506667pt;}
.y59{bottom:393.346667pt;}
.y8d{bottom:399.426667pt;}
.yb3{bottom:399.746667pt;}
.yb2{bottom:399.906667pt;}
.yb4{bottom:400.066667pt;}
.yb1{bottom:401.346667pt;}
.y8c{bottom:404.066667pt;}
.ye8{bottom:406.306667pt;}
.y22{bottom:407.106667pt;}
.y58{bottom:410.946667pt;}
.y8b{bottom:417.026667pt;}
.yb0{bottom:418.946667pt;}
.y8a{bottom:421.666667pt;}
.y21{bottom:424.706667pt;}
.ye7{bottom:425.826667pt;}
.y57{bottom:428.546667pt;}
.y89{bottom:433.826667pt;}
.yaf{bottom:436.546667pt;}
.y20{bottom:442.466667pt;}
.ye6{bottom:443.426667pt;}
.y56{bottom:446.306667pt;}
.yae{bottom:454.306667pt;}
.y1f{bottom:460.066667pt;}
.ye5{bottom:461.026667pt;}
.y55{bottom:463.906667pt;}
.y88{bottom:471.906667pt;}
.y1e{bottom:477.666667pt;}
.ye4{bottom:480.706667pt;}
.y54{bottom:481.506667pt;}
.y87{bottom:489.506667pt;}
.y1d{bottom:495.266667pt;}
.ye3{bottom:498.306667pt;}
.y53{bottom:499.106667pt;}
.y86{bottom:507.106667pt;}
.y1c{bottom:512.866667pt;}
.y52{bottom:516.706667pt;}
.ye2{bottom:517.826667pt;}
.y85{bottom:524.706667pt;}
.y1b{bottom:530.626667pt;}
.y51{bottom:534.466667pt;}
.ye1{bottom:535.426667pt;}
.y84{bottom:542.466667pt;}
.y1a{bottom:548.226667pt;}
.y50{bottom:552.066667pt;}
.ye0{bottom:553.186667pt;}
.y83{bottom:560.066667pt;}
.y19{bottom:565.826667pt;}
.y4f{bottom:569.666667pt;}
.ydf{bottom:572.706667pt;}
.y82{bottom:577.693333pt;}
.y18{bottom:583.453333pt;}
.y4e{bottom:587.293333pt;}
.yde{bottom:590.333333pt;}
.y81{bottom:595.293333pt;}
.y17{bottom:601.053333pt;}
.y4d{bottom:604.893333pt;}
.ydd{bottom:607.933333pt;}
.y80{bottom:612.893333pt;}
.y16{bottom:620.733333pt;}
.y4c{bottom:622.653333pt;}
.ydc{bottom:625.533333pt;}
.y7f{bottom:630.653333pt;}
.y4b{bottom:640.253333pt;}
.ydb{bottom:643.293333pt;}
.y15{bottom:646.333333pt;}
.y7e{bottom:648.253333pt;}
.y4a{bottom:657.853333pt;}
.yda{bottom:660.893333pt;}
.y14{bottom:663.933333pt;}
.y7c{bottom:665.853333pt;}
.y7d{bottom:670.493333pt;}
.y49{bottom:675.453333pt;}
.yd9{bottom:678.493333pt;}
.y13{bottom:681.693333pt;}
.y7a{bottom:683.453333pt;}
.y7b{bottom:688.093333pt;}
.y48{bottom:693.053333pt;}
.yd8{bottom:696.093333pt;}
.y12{bottom:699.293333pt;}
.y79{bottom:701.053333pt;}
.y47{bottom:710.813333pt;}
.yd7{bottom:713.693333pt;}
.y11{bottom:716.893333pt;}
.y77{bottom:718.813333pt;}
.y78{bottom:723.453333pt;}
.y46{bottom:728.413333pt;}
.yd6{bottom:731.453333pt;}
.y10{bottom:734.493333pt;}
.y76{bottom:736.413333pt;}
.y45{bottom:746.013333pt;}
.yd5{bottom:749.053333pt;}
.yf{bottom:752.093333pt;}
.yad{bottom:754.013333pt;}
.y75{bottom:758.653333pt;}
.yd4{bottom:766.653333pt;}
.y74{bottom:768.733333pt;}
.ye{bottom:769.853333pt;}
.y44{bottom:771.613333pt;}
.yd3{bottom:784.253333pt;}
.yd{bottom:787.453333pt;}
.y43{bottom:789.213333pt;}
.yd2{bottom:801.893333pt;}
.yc{bottom:805.093333pt;}
.y42{bottom:807.013333pt;}
.y73{bottom:811.653333pt;}
.yd1{bottom:819.653333pt;}
.yac{bottom:821.733333pt;}
.y41{bottom:824.613333pt;}
.yb{bottom:824.773333pt;}
.y72{bottom:829.253333pt;}
.yd0{bottom:837.253333pt;}
.y40{bottom:842.213333pt;}
.ya{bottom:842.373333pt;}
.y71{bottom:846.853333pt;}
.ycf{bottom:854.853333pt;}
.y3f{bottom:859.813333pt;}
.y9{bottom:860.453333pt;}
.y70{bottom:864.453333pt;}
.yce{bottom:872.453333pt;}
.y3e{bottom:877.413333pt;}
.y8{bottom:879.333333pt;}
.ycd{bottom:890.053333pt;}
.y3d{bottom:895.173333pt;}
.y6f{bottom:899.813333pt;}
.y7{bottom:900.293333pt;}
.ycc{bottom:907.813333pt;}
.y3c{bottom:912.773333pt;}
.y6e{bottom:917.413333pt;}
.ycb{bottom:925.413333pt;}
.y3b{bottom:930.373333pt;}
.y5{bottom:934.373333pt;}
.yca{bottom:943.013333pt;}
.y3a{bottom:947.973333pt;}
.y6d{bottom:952.613333pt;}
.y4{bottom:961.733333pt;}
.yc9{bottom:963.013333pt;}
.y39{bottom:965.573333pt;}
.y38{bottom:983.333333pt;}
.y3{bottom:989.093333pt;}
.y37{bottom:1000.933333pt;}
.y6c{bottom:1005.573333pt;}
.y2{bottom:1016.613333pt;}
.y36{bottom:1018.533333pt;}
.y35{bottom:1036.160000pt;}
.y6b{bottom:1040.800000pt;}
.y1{bottom:1046.720000pt;}
.y34{bottom:1060.640000pt;}
.h22{height:1.787500pt;}
.hb{height:24.131250pt;}
.h15{height:34.391250pt;}
.h14{height:36.883125pt;}
.h6{height:37.090625pt;}
.hd{height:38.672812pt;}
.h8{height:40.488438pt;}
.h4{height:41.112500pt;}
.ha{height:42.691250pt;}
.h9{height:43.108125pt;}
.hc{height:44.687500pt;}
.h1f{height:46.593750pt;}
.h20{height:47.406250pt;}
.h5{height:48.762500pt;}
.h16{height:52.860625pt;}
.he{height:52.951250pt;}
.h3{height:54.050000pt;}
.h1b{height:55.420625pt;}
.h18{height:56.700625pt;}
.h17{height:57.340625pt;}
.h13{height:57.980625pt;}
.h1a{height:58.620625pt;}
.h12{height:59.260625pt;}
.h7{height:60.288750pt;}
.h1e{height:60.540625pt;}
.h19{height:61.180625pt;}
.h11{height:61.820625pt;}
.h1c{height:65.660625pt;}
.hf{height:66.940625pt;}
.h10{height:68.220625pt;}
.h1d{height:69.500625pt;}
.h21{height:74.912000pt;}
.h2{height:78.137500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:187.386667pt;}
.w5{width:516.453333pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4f{left:6.920000pt;}
.x23{left:23.999988pt;}
.x2{left:47.359988pt;}
.x1{left:48.319988pt;}
.x4d{left:51.359988pt;}
.x7{left:52.319988pt;}
.x22{left:56.639988pt;}
.x47{left:65.279988pt;}
.x4c{left:70.719988pt;}
.x21{left:71.999988pt;}
.xf{left:86.911976pt;}
.x10{left:91.231988pt;}
.x3{left:95.391988pt;}
.x1d{left:96.511976pt;}
.xc{left:100.191988pt;}
.x1e{left:105.151988pt;}
.x1f{left:115.711976pt;}
.x20{left:124.351988pt;}
.x2f{left:170.906655pt;}
.x11{left:195.066643pt;}
.x12{left:199.386655pt;}
.x13{left:213.146643pt;}
.x14{left:217.466655pt;}
.x4e{left:235.386667pt;}
.x46{left:236.666655pt;}
.x6{left:240.066655pt;}
.x45{left:250.466655pt;}
.xd{left:272.546643pt;}
.xe{left:276.866655pt;}
.x44{left:277.826655pt;}
.x43{left:299.106655pt;}
.x42{left:311.106655pt;}
.x2e{left:313.826655pt;}
.x41{left:316.226655pt;}
.x8{left:320.546643pt;}
.x2d{left:323.426655pt;}
.x9{left:324.866655pt;}
.x40{left:334.306655pt;}
.x3d{left:336.706655pt;}
.x2c{left:349.986655pt;}
.x2b{left:366.946655pt;}
.x3e{left:368.866655pt;}
.x2a{left:371.906655pt;}
.x3f{left:384.706655pt;}
.x24{left:390.466655pt;}
.x3c{left:425.053322pt;}
.x15{left:432.573310pt;}
.x16{left:436.893322pt;}
.x3b{left:439.933322pt;}
.x3a{left:449.533322pt;}
.x39{left:461.853322pt;}
.x25{left:477.533322pt;}
.x26{left:520.573322pt;}
.x29{left:524.733322pt;}
.x4a{left:529.853322pt;}
.x38{left:533.533322pt;}
.x35{left:535.773322pt;}
.x36{left:546.653322pt;}
.x27{left:569.253322pt;}
.x37{left:587.133322pt;}
.x1b{left:595.813310pt;}
.x1c{left:604.453322pt;}
.x49{left:614.373322pt;}
.x19{left:618.373310pt;}
.xa{left:624.293310pt;}
.x1a{left:627.013322pt;}
.xb{left:628.613322pt;}
.x4{left:636.933310pt;}
.x5{left:641.253322pt;}
.x34{left:644.293322pt;}
.x33{left:646.693322pt;}
.x28{left:648.933322pt;}
.x32{left:678.213322pt;}
.x48{left:712.453322pt;}
.x17{left:713.573310pt;}
.x31{left:719.813322pt;}
.x18{left:722.239988pt;}
.x4b{left:738.719988pt;}
.x30{left:743.039988pt;}
}




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