
    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_22a1376f5b5415d2e94fedce.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_6153942ffed4f8d45ce45f00.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3591d12944602561b355413b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.080566;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_85c4e229f5aa318438ce1aa9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.097168;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_195b09f6b198b8ac33fc3eed.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_efd8330a630c3b49cad29cf2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_40d1c96fe70b3ef2d655ccfc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ac09476e4c4f6a42c1e21a57.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e82fb28625232210d634e9f0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_3afd7e35631f367a0c1eb96a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.940430;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_8e806afba6270c0bf571fe01.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.242288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242288,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246916,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248186,0.000000,0.000000,0.250000,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);}
.m6{transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.256754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256754,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.297495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297495,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-56.208244px;}
.v3{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.139538px;}
.v2{vertical-align:30.240000px;}
.ls37{letter-spacing:-3.060000px;}
.ls39{letter-spacing:-2.596064px;}
.ls35{letter-spacing:-1.620000px;}
.ls57{letter-spacing:-0.882000px;}
.ls10{letter-spacing:-0.684000px;}
.ls3a{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.180000px;}
.ls1d{letter-spacing:-0.161400px;}
.ls38{letter-spacing:-0.146256px;}
.ls36{letter-spacing:-0.114000px;}
.ls45{letter-spacing:-0.022320px;}
.ls16{letter-spacing:-0.018720px;}
.lse{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.004080px;}
.ls26{letter-spacing:0.021600px;}
.lsb{letter-spacing:0.028080px;}
.lsf{letter-spacing:0.037440px;}
.ls58{letter-spacing:0.118200px;}
.ls3f{letter-spacing:0.224640px;}
.ls42{letter-spacing:0.252720px;}
.ls1b{letter-spacing:0.290413px;}
.ls17{letter-spacing:0.321600px;}
.ls50{letter-spacing:0.321840px;}
.ls0{letter-spacing:0.360000px;}
.ls44{letter-spacing:0.369600px;}
.ls43{letter-spacing:0.378600px;}
.ls23{letter-spacing:0.504000px;}
.ls2f{letter-spacing:0.540000px;}
.ls47{letter-spacing:0.696000px;}
.ls3b{letter-spacing:1.089360px;}
.ls46{letter-spacing:1.092000px;}
.ls2a{letter-spacing:1.980000px;}
.ls12{letter-spacing:2.700000px;}
.ls56{letter-spacing:3.420000px;}
.ls3d{letter-spacing:4.140000px;}
.ls11{letter-spacing:4.860000px;}
.ls3e{letter-spacing:5.556000px;}
.ls6{letter-spacing:5.580000px;}
.ls5{letter-spacing:6.300000px;}
.ls4c{letter-spacing:7.020000px;}
.ls49{letter-spacing:7.740000px;}
.ls4a{letter-spacing:7.860000px;}
.ls1f{letter-spacing:9.180000px;}
.ls20{letter-spacing:9.900000px;}
.ls31{letter-spacing:10.620000px;}
.ls3c{letter-spacing:11.340000px;}
.ls4b{letter-spacing:11.520000px;}
.ls25{letter-spacing:12.060000px;}
.ls1e{letter-spacing:12.780000px;}
.ls4d{letter-spacing:13.476000px;}
.ls4e{letter-spacing:13.500000px;}
.ls51{letter-spacing:13.680000px;}
.ls4f{letter-spacing:14.220000px;}
.lsa{letter-spacing:14.940000px;}
.ls54{letter-spacing:15.660000px;}
.ls27{letter-spacing:17.100000px;}
.ls48{letter-spacing:17.820000px;}
.ls22{letter-spacing:18.540000px;}
.ls55{letter-spacing:19.260000px;}
.lsc{letter-spacing:19.380000px;}
.ls2c{letter-spacing:20.160000px;}
.ls2b{letter-spacing:20.700000px;}
.ls41{letter-spacing:22.860000px;}
.ls1{letter-spacing:23.580000px;}
.ls32{letter-spacing:24.300000px;}
.ls30{letter-spacing:24.996000px;}
.ls29{letter-spacing:25.020000px;}
.ls28{letter-spacing:25.740000px;}
.ls1a{letter-spacing:28.620000px;}
.ls19{letter-spacing:29.340000px;}
.ls33{letter-spacing:30.060000px;}
.ls2{letter-spacing:30.780000px;}
.ls15{letter-spacing:37.260000px;}
.ls34{letter-spacing:39.420000px;}
.ls9{letter-spacing:40.860000px;}
.ls7{letter-spacing:41.580000px;}
.ls8{letter-spacing:41.700000px;}
.ls2e{letter-spacing:46.620000px;}
.ls2d{letter-spacing:47.340000px;}
.ls40{letter-spacing:48.060000px;}
.ls14{letter-spacing:49.500000px;}
.ls53{letter-spacing:55.980000px;}
.ls52{letter-spacing:56.100000px;}
.ls3{letter-spacing:59.580000px;}
.ls4{letter-spacing:60.300000px;}
.ls21{letter-spacing:61.740000px;}
.ls24{letter-spacing:63.900000px;}
.ls13{letter-spacing:66.780000px;}
.lsd{letter-spacing:109.980000px;}
.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;}
}
.ws1e{word-spacing:-40.661425px;}
.ws1b{word-spacing:-40.601922px;}
.ws1{word-spacing:-24.300000px;}
.ws8{word-spacing:-24.023357px;}
.ws23{word-spacing:-22.152000px;}
.ws24{word-spacing:-21.756000px;}
.ws20{word-spacing:-21.438600px;}
.ws21{word-spacing:-21.429600px;}
.ws5{word-spacing:-21.381600px;}
.ws25{word-spacing:-21.312720px;}
.ws27{word-spacing:-21.178200px;}
.wse{word-spacing:-21.081600px;}
.ws2{word-spacing:-21.060000px;}
.ws4{word-spacing:-21.041280px;}
.ws22{word-spacing:-21.037680px;}
.ws14{word-spacing:-20.946000px;}
.ws9{word-spacing:-20.898600px;}
.ws1f{word-spacing:-20.700000px;}
.ws26{word-spacing:-20.178000px;}
.wsd{word-spacing:-18.138828px;}
.ws0{word-spacing:-18.000000px;}
.wsf{word-spacing:-13.500000px;}
.wsa{word-spacing:-10.593333px;}
.ws1c{word-spacing:-0.074065px;}
.ws19{word-spacing:-0.073956px;}
.ws17{word-spacing:-0.072369px;}
.ws10{word-spacing:-0.071272px;}
.ws11{word-spacing:-0.041553px;}
.ws3{word-spacing:0.000000px;}
.ws18{word-spacing:0.072300px;}
.ws6{word-spacing:148.745572px;}
.wsb{word-spacing:166.650151px;}
.ws7{word-spacing:176.510742px;}
.ws12{word-spacing:182.716925px;}
.wsc{word-spacing:202.867743px;}
.ws13{word-spacing:214.162769px;}
.ws15{word-spacing:228.648833px;}
.ws16{word-spacing:234.408790px;}
.ws1d{word-spacing:456.102784px;}
.ws1a{word-spacing:597.673695px;}
._51{margin-left:-430.999986px;}
._50{margin-left:-423.618465px;}
._2f{margin-left:-344.278379px;}
._39{margin-left:-335.022969px;}
._25{margin-left:-323.620034px;}
._53{margin-left:-317.143223px;}
._2e{margin-left:-315.935463px;}
._26{margin-left:-309.402817px;}
._48{margin-left:-259.145655px;}
._46{margin-left:-257.390580px;}
._54{margin-left:-228.386082px;}
._4c{margin-left:-189.275704px;}
._52{margin-left:-175.435788px;}
._47{margin-left:-167.635734px;}
._38{margin-left:-166.349773px;}
._3e{margin-left:-164.705082px;}
._44{margin-left:-161.240877px;}
._3d{margin-left:-156.819026px;}
._3c{margin-left:-155.479439px;}
._3b{margin-left:-150.360416px;}
._3a{margin-left:-142.334577px;}
._45{margin-left:-136.428575px;}
._3f{margin-left:-134.754998px;}
._43{margin-left:-130.553919px;}
._42{margin-left:-126.217583px;}
._40{margin-left:-122.887004px;}
._27{margin-left:-118.829562px;}
._4d{margin-left:-111.582319px;}
._31{margin-left:-94.036290px;}
._49{margin-left:-92.809911px;}
._4a{margin-left:-84.916904px;}
._4b{margin-left:-55.102976px;}
._30{margin-left:-53.252430px;}
._41{margin-left:-33.434318px;}
._24{margin-left:-6.147840px;}
._10{margin-left:-5.138640px;}
._11{margin-left:-3.390240px;}
._32{margin-left:-2.252160px;}
._1{margin-left:-1.158720px;}
._0{width:1.140000px;}
._15{width:2.864160px;}
._1d{width:4.062240px;}
._b{width:5.532000px;}
._a{width:6.552960px;}
._13{width:8.171280px;}
._12{width:9.350640px;}
._1b{width:10.361520px;}
._1c{width:11.877840px;}
._4{width:13.225680px;}
._3{width:14.300160px;}
._9{width:15.457200px;}
._1a{width:16.495440px;}
._33{width:17.773920px;}
._14{width:18.842400px;}
._2b{width:19.950960px;}
._29{width:22.323600px;}
._2{width:23.530080px;}
._19{width:25.082880px;}
._18{width:26.346480px;}
._2a{width:29.224800px;}
._5{width:30.326400px;}
._6{width:32.318640px;}
._22{width:34.265040px;}
._21{width:35.485680px;}
._20{width:36.960720px;}
._28{width:37.992240px;}
._4f{width:39.570480px;}
._d{width:40.772160px;}
._c{width:41.928480px;}
._56{width:45.062880px;}
._4e{width:47.288160px;}
._1f{width:49.587120px;}
._e{width:51.723360px;}
._f{width:52.880880px;}
._16{width:54.294240px;}
._23{width:55.429920px;}
._2d{width:56.483760px;}
._8{width:59.718720px;}
._7{width:60.786000px;}
._55{width:62.421840px;}
._36{width:64.170240px;}
._37{width:65.318160px;}
._1e{width:66.901680px;}
._2c{width:68.908320px;}
._34{width:71.246400px;}
._35{width:72.336240px;}
._17{width:109.680480px;}
._57{width:1212.456000px;}
.fc5{color:rgb(255,0,0);}
.fc4{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc3{color:rgb(31,31,31);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:41.552643px;}
.fs4{font-size:42.264542px;}
.fs6{font-size:42.373333px;}
.fsc{font-size:43.192237px;}
.fs1{font-size:54.000000px;}
.fs8{font-size:71.271543px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:72.369029px;}
.fs7{font-size:72.555310px;}
.fsa{font-size:73.956141px;}
.fsb{font-size:74.064527px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y6{bottom:-6.120000px;}
.y0{bottom:0.000000px;}
.y92{bottom:3.601144px;}
.yaf{bottom:4.910733px;}
.y9a{bottom:6.276182px;}
.y55{bottom:6.276196px;}
.y6b{bottom:6.292340px;}
.ya2{bottom:6.997359px;}
.ya5{bottom:6.997360px;}
.y94{bottom:8.049572px;}
.yae{bottom:9.561093px;}
.y3{bottom:16.020000px;}
.yb{bottom:16.380000px;}
.ya{bottom:17.280000px;}
.y9{bottom:19.440000px;}
.ya1{bottom:21.468558px;}
.ya7{bottom:21.468586px;}
.ya4{bottom:21.468588px;}
.y91{bottom:22.101633px;}
.y4{bottom:27.900000px;}
.y93{bottom:29.692108px;}
.ya3{bottom:33.117711px;}
.ya6{bottom:33.117712px;}
.y95{bottom:34.175337px;}
.y2{bottom:36.720000px;}
.y8{bottom:44.640000px;}
.yd9{bottom:97.416000px;}
.y7a{bottom:97.776000px;}
.ye8{bottom:99.936000px;}
.y34{bottom:109.476000px;}
.yb7{bottom:112.356000px;}
.y8e{bottom:116.856000px;}
.yc7{bottom:120.636000px;}
.ye7{bottom:124.056000px;}
.y53{bottom:125.316000px;}
.y79{bottom:125.496000px;}
.y33{bottom:137.376000px;}
.yb6{bottom:140.256000px;}
.y8d{bottom:144.576000px;}
.ye6{bottom:148.176000px;}
.yc6{bottom:148.356000px;}
.y52{bottom:153.030000px;}
.y78{bottom:153.210000px;}
.y32{bottom:165.090000px;}
.yb5{bottom:167.970000px;}
.y8c{bottom:172.290000px;}
.yc5{bottom:176.070000px;}
.y51{bottom:180.750000px;}
.y77{bottom:180.930000px;}
.y31{bottom:189.210000px;}
.yb4{bottom:195.690000px;}
.ye5{bottom:196.410000px;}
.y8b{bottom:200.190000px;}
.yc4{bottom:203.970000px;}
.y50{bottom:208.470000px;}
.y76{bottom:208.830000px;}
.y30{bottom:213.330000px;}
.ye4{bottom:220.530000px;}
.yb3{bottom:223.590000px;}
.y8a{bottom:227.910000px;}
.yc3{bottom:231.690000px;}
.y75{bottom:232.050000px;}
.y4f{bottom:236.370000px;}
.y2f{bottom:237.450000px;}
.ye3{bottom:244.830000px;}
.yb2{bottom:251.310000px;}
.y89{bottom:255.630000px;}
.yc2{bottom:259.410000px;}
.y2e{bottom:261.750000px;}
.y4e{bottom:264.090000px;}
.ye2{bottom:268.950000px;}
.yb1{bottom:279.030000px;}
.y88{bottom:283.350000px;}
.y2d{bottom:285.870000px;}
.yc1{bottom:287.310000px;}
.y4d{bottom:291.810000px;}
.ye1{bottom:293.070000px;}
.yb0{bottom:306.750000px;}
.y2c{bottom:309.990000px;}
.y87{bottom:311.250000px;}
.yc0{bottom:315.030000px;}
.ye0{bottom:317.190000px;}
.y4c{bottom:319.710000px;}
.yad{bottom:330.015000px;}
.y70{bottom:331.770000px;}
.y2b{bottom:334.110000px;}
.y86{bottom:339.015000px;}
.ydf{bottom:341.355000px;}
.ybf{bottom:342.795000px;}
.y4b{bottom:347.475000px;}
.y2a{bottom:358.275000px;}
.y6f{bottom:359.715000px;}
.yde{bottom:365.475000px;}
.y85{bottom:366.735000px;}
.yac{bottom:366.915000px;}
.ybe{bottom:370.515000px;}
.y4a{bottom:375.195000px;}
.y29{bottom:382.395000px;}
.y6e{bottom:387.435000px;}
.ydd{bottom:389.775000px;}
.y84{bottom:394.635000px;}
.ybd{bottom:398.415000px;}
.y49{bottom:402.915000px;}
.y28{bottom:406.515000px;}
.ydc{bottom:413.895000px;}
.y6d{bottom:415.155000px;}
.y83{bottom:422.355000px;}
.ybc{bottom:426.135000px;}
.y27{bottom:430.815000px;}
.ydb{bottom:438.015000px;}
.y6a{bottom:438.539959px;}
.y6c{bottom:448.995000px;}
.y82{bottom:450.075000px;}
.yab{bottom:450.255000px;}
.ybb{bottom:453.855000px;}
.y26{bottom:454.935000px;}
.y48{bottom:458.535000px;}
.yda{bottom:462.135000px;}
.y69{bottom:476.715000px;}
.y81{bottom:477.795000px;}
.yaa{bottom:477.975000px;}
.y25{bottom:479.055000px;}
.yba{bottom:481.575000px;}
.yd8{bottom:482.655000px;}
.y47{bottom:486.255000px;}
.y24{bottom:503.175000px;}
.y68{bottom:504.435000px;}
.y80{bottom:505.695000px;}
.yb9{bottom:509.475000px;}
.yd7{bottom:510.375000px;}
.y46{bottom:513.975000px;}
.y23{bottom:527.295000px;}
.y67{bottom:532.335000px;}
.yb8{bottom:532.515000px;}
.y7f{bottom:533.415000px;}
.yd6{bottom:538.275000px;}
.y45{bottom:541.875000px;}
.y22{bottom:551.415000px;}
.y66{bottom:560.055000px;}
.y7e{bottom:561.135000px;}
.ya9{bottom:561.315000px;}
.yd5{bottom:565.995000px;}
.y44{bottom:569.595000px;}
.y21{bottom:575.715000px;}
.y65{bottom:587.775000px;}
.y7d{bottom:589.035000px;}
.yd4{bottom:593.715000px;}
.y43{bottom:597.315000px;}
.y20{bottom:599.835000px;}
.y64{bottom:615.525000px;}
.y7c{bottom:616.785000px;}
.yd3{bottom:621.465000px;}
.y1f{bottom:623.985000px;}
.y42{bottom:625.245000px;}
.ya0{bottom:639.989959px;}
.y7b{bottom:640.005000px;}
.y63{bottom:643.425000px;}
.y74{bottom:645.225000px;}
.y1e{bottom:648.105000px;}
.yd2{bottom:649.365000px;}
.y41{bottom:652.965000px;}
.ya8{bottom:661.065000px;}
.y62{bottom:671.145000px;}
.y1d{bottom:672.225000px;}
.y73{bottom:672.945000px;}
.yd1{bottom:677.085000px;}
.y40{bottom:680.685000px;}
.y1c{bottom:696.345000px;}
.y61{bottom:698.865000px;}
.y9f{bottom:699.045000px;}
.y72{bottom:700.845000px;}
.yd0{bottom:704.805000px;}
.y3f{bottom:708.405000px;}
.y1b{bottom:720.465000px;}
.y71{bottom:723.885000px;}
.y60{bottom:726.585000px;}
.y9e{bottom:726.765000px;}
.ycf{bottom:732.705000px;}
.y3e{bottom:736.305000px;}
.y1a{bottom:744.765000px;}
.y5f{bottom:754.485000px;}
.y9d{bottom:754.665000px;}
.yce{bottom:760.425000px;}
.y3d{bottom:764.025000px;}
.y19{bottom:768.885000px;}
.y5e{bottom:782.205000px;}
.y9c{bottom:782.385000px;}
.ycd{bottom:788.145000px;}
.y3c{bottom:791.745000px;}
.y18{bottom:793.005000px;}
.y99{bottom:805.590000px;}
.y5d{bottom:809.925000px;}
.ycc{bottom:815.865000px;}
.y9b{bottom:816.045000px;}
.y17{bottom:817.125000px;}
.y3b{bottom:819.645000px;}
.y5c{bottom:837.825000px;}
.y16{bottom:841.245000px;}
.ycb{bottom:843.765000px;}
.y98{bottom:843.945000px;}
.y3a{bottom:847.365000px;}
.y15{bottom:865.365000px;}
.y5b{bottom:865.545000px;}
.yca{bottom:871.530000px;}
.y97{bottom:871.710000px;}
.y39{bottom:875.130000px;}
.y14{bottom:889.710000px;}
.y5a{bottom:893.310000px;}
.y90{bottom:894.840000px;}
.yc9{bottom:899.250000px;}
.y38{bottom:902.850000px;}
.y13{bottom:913.830000px;}
.y96{bottom:917.430000px;}
.y59{bottom:921.030000px;}
.yc8{bottom:927.150000px;}
.y37{bottom:930.750000px;}
.y12{bottom:937.950000px;}
.y58{bottom:948.930000px;}
.y8f{bottom:954.870000px;}
.y36{bottom:958.470000px;}
.y11{bottom:962.070000px;}
.y57{bottom:976.650000px;}
.y35{bottom:982.590000px;}
.y10{bottom:986.190000px;}
.y56{bottom:1004.370000px;}
.yf{bottom:1010.310000px;}
.y54{bottom:1027.739919px;}
.ye{bottom:1038.210000px;}
.yd{bottom:1065.930000px;}
.yc{bottom:1093.650000px;}
.y7{bottom:1129.830000px;}
.y5{bottom:1149.480000px;}
.y1{bottom:1166.760000px;}
.h5{height:6.480000px;}
.h1c{height:28.125556px;}
.h17{height:28.950305px;}
.hd{height:28.950386px;}
.hf{height:29.024865px;}
.h1e{height:35.599852px;}
.h7{height:39.636000px;}
.h14{height:40.781647px;}
.h15{height:49.486394px;}
.h18{height:50.775764px;}
.h1a{height:51.350407px;}
.h12{height:51.898578px;}
.h4{height:52.998047px;}
.h2{height:53.460000px;}
.h1f{height:61.045372px;}
.h21{height:69.432187px;}
.h16{height:69.914321px;}
.h13{height:69.949122px;}
.h8{height:70.664062px;}
.h1b{height:72.547797px;}
.h3{height:72.562500px;}
.h19{height:72.583908px;}
.h1d{height:72.690283px;}
.hb{height:72.846211px;}
.hc{height:74.244727px;}
.h20{height:82.635820px;}
.ha{height:82.676953px;}
.h11{height:83.238047px;}
.h6{height:84.898125px;}
.he{height:89.165782px;}
.h10{height:89.395299px;}
.h9{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:63.756000px;}
.w3{width:68.616000px;}
.w8{width:92.551805px;}
.w7{width:97.947282px;}
.wa{width:103.350031px;}
.w9{width:162.535480px;}
.wb{width:225.895082px;}
.wc{width:344.018673px;}
.w2{width:760.830000px;}
.w5{width:765.690000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:2.206175px;}
.x2d{left:3.311656px;}
.x2{left:8.640000px;}
.x7{left:13.860000px;}
.x2c{left:18.236540px;}
.x1{left:31.860000px;}
.x28{left:39.077387px;}
.x21{left:49.330396px;}
.x4{left:59.970000px;}
.x17{left:80.833659px;}
.x5{left:84.959987px;}
.x19{left:86.495170px;}
.x22{left:94.536459px;}
.x31{left:96.515987px;}
.x29{left:99.376593px;}
.x8{left:102.275987px;}
.x27{left:105.487298px;}
.x1f{left:106.869062px;}
.x20{left:108.062389px;}
.x11{left:110.735987px;}
.x30{left:112.895987px;}
.x2f{left:115.955987px;}
.x32{left:117.935987px;}
.x14{left:123.695987px;}
.x10{left:127.475987px;}
.x1e{left:132.980309px;}
.x12{left:153.749987px;}
.x13{left:157.529987px;}
.x9{left:185.069987px;}
.x26{left:204.532554px;}
.x1a{left:219.989987px;}
.x18{left:225.389987px;}
.x25{left:230.789987px;}
.x2b{left:241.316993px;}
.x33{left:270.929987px;}
.xc{left:279.614987px;}
.xd{left:280.874987px;}
.xa{left:284.474987px;}
.x24{left:290.054987px;}
.xe{left:292.214987px;}
.x2a{left:353.414987px;}
.xf{left:375.914987px;}
.x15{left:381.134987px;}
.x16{left:389.234987px;}
.xb{left:446.474987px;}
.x2e{left:471.524987px;}
.x34{left:697.289987px;}
.x1d{left:743.909987px;}
.x1b{left:745.709987px;}
.x1c{left:776.489987px;}
.x3{left:792.690000px;}
.x6{left:797.550000px;}
@media print{
.v4{vertical-align:-49.962883pt;}
.v3{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.124033pt;}
.v2{vertical-align:26.880000pt;}
.ls37{letter-spacing:-2.720000pt;}
.ls39{letter-spacing:-2.307612pt;}
.ls35{letter-spacing:-1.440000pt;}
.ls57{letter-spacing:-0.784000pt;}
.ls10{letter-spacing:-0.608000pt;}
.ls3a{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.160000pt;}
.ls1d{letter-spacing:-0.143467pt;}
.ls38{letter-spacing:-0.130006pt;}
.ls36{letter-spacing:-0.101333pt;}
.ls45{letter-spacing:-0.019840pt;}
.ls16{letter-spacing:-0.016640pt;}
.lse{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.003627pt;}
.ls26{letter-spacing:0.019200pt;}
.lsb{letter-spacing:0.024960pt;}
.lsf{letter-spacing:0.033280pt;}
.ls58{letter-spacing:0.105067pt;}
.ls3f{letter-spacing:0.199680pt;}
.ls42{letter-spacing:0.224640pt;}
.ls1b{letter-spacing:0.258145pt;}
.ls17{letter-spacing:0.285867pt;}
.ls50{letter-spacing:0.286080pt;}
.ls0{letter-spacing:0.320000pt;}
.ls44{letter-spacing:0.328533pt;}
.ls43{letter-spacing:0.336533pt;}
.ls23{letter-spacing:0.448000pt;}
.ls2f{letter-spacing:0.480000pt;}
.ls47{letter-spacing:0.618667pt;}
.ls3b{letter-spacing:0.968320pt;}
.ls46{letter-spacing:0.970667pt;}
.ls2a{letter-spacing:1.760000pt;}
.ls12{letter-spacing:2.400000pt;}
.ls56{letter-spacing:3.040000pt;}
.ls3d{letter-spacing:3.680000pt;}
.ls11{letter-spacing:4.320000pt;}
.ls3e{letter-spacing:4.938667pt;}
.ls6{letter-spacing:4.960000pt;}
.ls5{letter-spacing:5.600000pt;}
.ls4c{letter-spacing:6.240000pt;}
.ls49{letter-spacing:6.880000pt;}
.ls4a{letter-spacing:6.986667pt;}
.ls1f{letter-spacing:8.160000pt;}
.ls20{letter-spacing:8.800000pt;}
.ls31{letter-spacing:9.440000pt;}
.ls3c{letter-spacing:10.080000pt;}
.ls4b{letter-spacing:10.240000pt;}
.ls25{letter-spacing:10.720000pt;}
.ls1e{letter-spacing:11.360000pt;}
.ls4d{letter-spacing:11.978667pt;}
.ls4e{letter-spacing:12.000000pt;}
.ls51{letter-spacing:12.160000pt;}
.ls4f{letter-spacing:12.640000pt;}
.lsa{letter-spacing:13.280000pt;}
.ls54{letter-spacing:13.920000pt;}
.ls27{letter-spacing:15.200000pt;}
.ls48{letter-spacing:15.840000pt;}
.ls22{letter-spacing:16.480000pt;}
.ls55{letter-spacing:17.120000pt;}
.lsc{letter-spacing:17.226667pt;}
.ls2c{letter-spacing:17.920000pt;}
.ls2b{letter-spacing:18.400000pt;}
.ls41{letter-spacing:20.320000pt;}
.ls1{letter-spacing:20.960000pt;}
.ls32{letter-spacing:21.600000pt;}
.ls30{letter-spacing:22.218667pt;}
.ls29{letter-spacing:22.240000pt;}
.ls28{letter-spacing:22.880000pt;}
.ls1a{letter-spacing:25.440000pt;}
.ls19{letter-spacing:26.080000pt;}
.ls33{letter-spacing:26.720000pt;}
.ls2{letter-spacing:27.360000pt;}
.ls15{letter-spacing:33.120000pt;}
.ls34{letter-spacing:35.040000pt;}
.ls9{letter-spacing:36.320000pt;}
.ls7{letter-spacing:36.960000pt;}
.ls8{letter-spacing:37.066667pt;}
.ls2e{letter-spacing:41.440000pt;}
.ls2d{letter-spacing:42.080000pt;}
.ls40{letter-spacing:42.720000pt;}
.ls14{letter-spacing:44.000000pt;}
.ls53{letter-spacing:49.760000pt;}
.ls52{letter-spacing:49.866667pt;}
.ls3{letter-spacing:52.960000pt;}
.ls4{letter-spacing:53.600000pt;}
.ls21{letter-spacing:54.880000pt;}
.ls24{letter-spacing:56.800000pt;}
.ls13{letter-spacing:59.360000pt;}
.lsd{letter-spacing:97.760000pt;}
.ws1e{word-spacing:-36.143489pt;}
.ws1b{word-spacing:-36.090597pt;}
.ws1{word-spacing:-21.600000pt;}
.ws8{word-spacing:-21.354096pt;}
.ws23{word-spacing:-19.690667pt;}
.ws24{word-spacing:-19.338667pt;}
.ws20{word-spacing:-19.056533pt;}
.ws21{word-spacing:-19.048533pt;}
.ws5{word-spacing:-19.005867pt;}
.ws25{word-spacing:-18.944640pt;}
.ws27{word-spacing:-18.825067pt;}
.wse{word-spacing:-18.739200pt;}
.ws2{word-spacing:-18.720000pt;}
.ws4{word-spacing:-18.703360pt;}
.ws22{word-spacing:-18.700160pt;}
.ws14{word-spacing:-18.618667pt;}
.ws9{word-spacing:-18.576533pt;}
.ws1f{word-spacing:-18.400000pt;}
.ws26{word-spacing:-17.936000pt;}
.wsd{word-spacing:-16.123402pt;}
.ws0{word-spacing:-16.000000pt;}
.wsf{word-spacing:-12.000000pt;}
.wsa{word-spacing:-9.416296pt;}
.ws1c{word-spacing:-0.065835pt;}
.ws19{word-spacing:-0.065739pt;}
.ws17{word-spacing:-0.064328pt;}
.ws10{word-spacing:-0.063352pt;}
.ws11{word-spacing:-0.036936pt;}
.ws3{word-spacing:0.000000pt;}
.ws18{word-spacing:0.064267pt;}
.ws6{word-spacing:132.218286pt;}
.wsb{word-spacing:148.133468pt;}
.ws7{word-spacing:156.898437pt;}
.ws12{word-spacing:162.415045pt;}
.wsc{word-spacing:180.326883pt;}
.ws13{word-spacing:190.366906pt;}
.ws15{word-spacing:203.243407pt;}
.ws16{word-spacing:208.363369pt;}
.ws1d{word-spacing:405.424697pt;}
.ws1a{word-spacing:531.265507pt;}
._51{margin-left:-383.111099pt;}
._50{margin-left:-376.549747pt;}
._2f{margin-left:-306.025226pt;}
._39{margin-left:-297.798194pt;}
._25{margin-left:-287.662253pt;}
._53{margin-left:-281.905088pt;}
._2e{margin-left:-280.831523pt;}
._26{margin-left:-275.024726pt;}
._48{margin-left:-230.351694pt;}
._46{margin-left:-228.791626pt;}
._54{margin-left:-203.009850pt;}
._4c{margin-left:-168.245070pt;}
._52{margin-left:-155.942922pt;}
._47{margin-left:-149.009541pt;}
._38{margin-left:-147.866465pt;}
._3e{margin-left:-146.404517pt;}
._44{margin-left:-143.325224pt;}
._3d{margin-left:-139.394690pt;}
._3c{margin-left:-138.203946pt;}
._3b{margin-left:-133.653703pt;}
._3a{margin-left:-126.519624pt;}
._45{margin-left:-121.269844pt;}
._3f{margin-left:-119.782220pt;}
._43{margin-left:-116.047928pt;}
._42{margin-left:-112.193407pt;}
._40{margin-left:-109.232892pt;}
._27{margin-left:-105.626277pt;}
._4d{margin-left:-99.184284pt;}
._31{margin-left:-83.587814pt;}
._49{margin-left:-82.497699pt;}
._4a{margin-left:-75.481693pt;}
._4b{margin-left:-48.980423pt;}
._30{margin-left:-47.335493pt;}
._41{margin-left:-29.719393pt;}
._24{margin-left:-5.464747pt;}
._10{margin-left:-4.567680pt;}
._11{margin-left:-3.013547pt;}
._32{margin-left:-2.001920pt;}
._1{margin-left:-1.029973pt;}
._0{width:1.013333pt;}
._15{width:2.545920pt;}
._1d{width:3.610880pt;}
._b{width:4.917333pt;}
._a{width:5.824853pt;}
._13{width:7.263360pt;}
._12{width:8.311680pt;}
._1b{width:9.210240pt;}
._1c{width:10.558080pt;}
._4{width:11.756160pt;}
._3{width:12.711253pt;}
._9{width:13.739733pt;}
._1a{width:14.662613pt;}
._33{width:15.799040pt;}
._14{width:16.748800pt;}
._2b{width:17.734187pt;}
._29{width:19.843200pt;}
._2{width:20.915627pt;}
._19{width:22.295893pt;}
._18{width:23.419093pt;}
._2a{width:25.977600pt;}
._5{width:26.956800pt;}
._6{width:28.727680pt;}
._22{width:30.457813pt;}
._21{width:31.542827pt;}
._20{width:32.853973pt;}
._28{width:33.770880pt;}
._4f{width:35.173760pt;}
._d{width:36.241920pt;}
._c{width:37.269760pt;}
._56{width:40.055893pt;}
._4e{width:42.033920pt;}
._1f{width:44.077440pt;}
._e{width:45.976320pt;}
._f{width:47.005227pt;}
._16{width:48.261547pt;}
._23{width:49.271040pt;}
._2d{width:50.207787pt;}
._8{width:53.083307pt;}
._7{width:54.032000pt;}
._55{width:55.486080pt;}
._36{width:57.040213pt;}
._37{width:58.060587pt;}
._1e{width:59.468160pt;}
._2c{width:61.251840pt;}
._34{width:63.330133pt;}
._35{width:64.298880pt;}
._17{width:97.493760pt;}
._57{width:1077.738667pt;}
.fs9{font-size:36.935683pt;}
.fs4{font-size:37.568482pt;}
.fs6{font-size:37.665185pt;}
.fsc{font-size:38.393100pt;}
.fs1{font-size:48.000000pt;}
.fs8{font-size:63.352483pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:64.328025pt;}
.fs7{font-size:64.493609pt;}
.fsa{font-size:65.738792pt;}
.fsb{font-size:65.835135pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y6{bottom:-5.440000pt;}
.y0{bottom:0.000000pt;}
.y92{bottom:3.201017pt;}
.yaf{bottom:4.365096pt;}
.y9a{bottom:5.578828pt;}
.y55{bottom:5.578841pt;}
.y6b{bottom:5.593191pt;}
.ya2{bottom:6.219875pt;}
.ya5{bottom:6.219876pt;}
.y94{bottom:7.155175pt;}
.yae{bottom:8.498750pt;}
.y3{bottom:14.240000pt;}
.yb{bottom:14.560000pt;}
.ya{bottom:15.360000pt;}
.y9{bottom:17.280000pt;}
.ya1{bottom:19.083163pt;}
.ya7{bottom:19.083188pt;}
.ya4{bottom:19.083190pt;}
.y91{bottom:19.645896pt;}
.y4{bottom:24.800000pt;}
.y93{bottom:26.392985pt;}
.ya3{bottom:29.437965pt;}
.ya6{bottom:29.437967pt;}
.y95{bottom:30.378077pt;}
.y2{bottom:32.640000pt;}
.y8{bottom:39.680000pt;}
.yd9{bottom:86.592000pt;}
.y7a{bottom:86.912000pt;}
.ye8{bottom:88.832000pt;}
.y34{bottom:97.312000pt;}
.yb7{bottom:99.872000pt;}
.y8e{bottom:103.872000pt;}
.yc7{bottom:107.232000pt;}
.ye7{bottom:110.272000pt;}
.y53{bottom:111.392000pt;}
.y79{bottom:111.552000pt;}
.y33{bottom:122.112000pt;}
.yb6{bottom:124.672000pt;}
.y8d{bottom:128.512000pt;}
.ye6{bottom:131.712000pt;}
.yc6{bottom:131.872000pt;}
.y52{bottom:136.026667pt;}
.y78{bottom:136.186667pt;}
.y32{bottom:146.746667pt;}
.yb5{bottom:149.306667pt;}
.y8c{bottom:153.146667pt;}
.yc5{bottom:156.506667pt;}
.y51{bottom:160.666667pt;}
.y77{bottom:160.826667pt;}
.y31{bottom:168.186667pt;}
.yb4{bottom:173.946667pt;}
.ye5{bottom:174.586667pt;}
.y8b{bottom:177.946667pt;}
.yc4{bottom:181.306667pt;}
.y50{bottom:185.306667pt;}
.y76{bottom:185.626667pt;}
.y30{bottom:189.626667pt;}
.ye4{bottom:196.026667pt;}
.yb3{bottom:198.746667pt;}
.y8a{bottom:202.586667pt;}
.yc3{bottom:205.946667pt;}
.y75{bottom:206.266667pt;}
.y4f{bottom:210.106667pt;}
.y2f{bottom:211.066667pt;}
.ye3{bottom:217.626667pt;}
.yb2{bottom:223.386667pt;}
.y89{bottom:227.226667pt;}
.yc2{bottom:230.586667pt;}
.y2e{bottom:232.666667pt;}
.y4e{bottom:234.746667pt;}
.ye2{bottom:239.066667pt;}
.yb1{bottom:248.026667pt;}
.y88{bottom:251.866667pt;}
.y2d{bottom:254.106667pt;}
.yc1{bottom:255.386667pt;}
.y4d{bottom:259.386667pt;}
.ye1{bottom:260.506667pt;}
.yb0{bottom:272.666667pt;}
.y2c{bottom:275.546667pt;}
.y87{bottom:276.666667pt;}
.yc0{bottom:280.026667pt;}
.ye0{bottom:281.946667pt;}
.y4c{bottom:284.186667pt;}
.yad{bottom:293.346667pt;}
.y70{bottom:294.906667pt;}
.y2b{bottom:296.986667pt;}
.y86{bottom:301.346667pt;}
.ydf{bottom:303.426667pt;}
.ybf{bottom:304.706667pt;}
.y4b{bottom:308.866667pt;}
.y2a{bottom:318.466667pt;}
.y6f{bottom:319.746667pt;}
.yde{bottom:324.866667pt;}
.y85{bottom:325.986667pt;}
.yac{bottom:326.146667pt;}
.ybe{bottom:329.346667pt;}
.y4a{bottom:333.506667pt;}
.y29{bottom:339.906667pt;}
.y6e{bottom:344.386667pt;}
.ydd{bottom:346.466667pt;}
.y84{bottom:350.786667pt;}
.ybd{bottom:354.146667pt;}
.y49{bottom:358.146667pt;}
.y28{bottom:361.346667pt;}
.ydc{bottom:367.906667pt;}
.y6d{bottom:369.026667pt;}
.y83{bottom:375.426667pt;}
.ybc{bottom:378.786667pt;}
.y27{bottom:382.946667pt;}
.ydb{bottom:389.346667pt;}
.y6a{bottom:389.813297pt;}
.y6c{bottom:399.106667pt;}
.y82{bottom:400.066667pt;}
.yab{bottom:400.226667pt;}
.ybb{bottom:403.426667pt;}
.y26{bottom:404.386667pt;}
.y48{bottom:407.586667pt;}
.yda{bottom:410.786667pt;}
.y69{bottom:423.746667pt;}
.y81{bottom:424.706667pt;}
.yaa{bottom:424.866667pt;}
.y25{bottom:425.826667pt;}
.yba{bottom:428.066667pt;}
.yd8{bottom:429.026667pt;}
.y47{bottom:432.226667pt;}
.y24{bottom:447.266667pt;}
.y68{bottom:448.386667pt;}
.y80{bottom:449.506667pt;}
.yb9{bottom:452.866667pt;}
.yd7{bottom:453.666667pt;}
.y46{bottom:456.866667pt;}
.y23{bottom:468.706667pt;}
.y67{bottom:473.186667pt;}
.yb8{bottom:473.346667pt;}
.y7f{bottom:474.146667pt;}
.yd6{bottom:478.466667pt;}
.y45{bottom:481.666667pt;}
.y22{bottom:490.146667pt;}
.y66{bottom:497.826667pt;}
.y7e{bottom:498.786667pt;}
.ya9{bottom:498.946667pt;}
.yd5{bottom:503.106667pt;}
.y44{bottom:506.306667pt;}
.y21{bottom:511.746667pt;}
.y65{bottom:522.466667pt;}
.y7d{bottom:523.586667pt;}
.yd4{bottom:527.746667pt;}
.y43{bottom:530.946667pt;}
.y20{bottom:533.186667pt;}
.y64{bottom:547.133333pt;}
.y7c{bottom:548.253333pt;}
.yd3{bottom:552.413333pt;}
.y1f{bottom:554.653333pt;}
.y42{bottom:555.773333pt;}
.ya0{bottom:568.879964pt;}
.y7b{bottom:568.893333pt;}
.y63{bottom:571.933333pt;}
.y74{bottom:573.533333pt;}
.y1e{bottom:576.093333pt;}
.yd2{bottom:577.213333pt;}
.y41{bottom:580.413333pt;}
.ya8{bottom:587.613333pt;}
.y62{bottom:596.573333pt;}
.y1d{bottom:597.533333pt;}
.y73{bottom:598.173333pt;}
.yd1{bottom:601.853333pt;}
.y40{bottom:605.053333pt;}
.y1c{bottom:618.973333pt;}
.y61{bottom:621.213333pt;}
.y9f{bottom:621.373333pt;}
.y72{bottom:622.973333pt;}
.yd0{bottom:626.493333pt;}
.y3f{bottom:629.693333pt;}
.y1b{bottom:640.413333pt;}
.y71{bottom:643.453333pt;}
.y60{bottom:645.853333pt;}
.y9e{bottom:646.013333pt;}
.ycf{bottom:651.293333pt;}
.y3e{bottom:654.493333pt;}
.y1a{bottom:662.013333pt;}
.y5f{bottom:670.653333pt;}
.y9d{bottom:670.813333pt;}
.yce{bottom:675.933333pt;}
.y3d{bottom:679.133333pt;}
.y19{bottom:683.453333pt;}
.y5e{bottom:695.293333pt;}
.y9c{bottom:695.453333pt;}
.ycd{bottom:700.573333pt;}
.y3c{bottom:703.773333pt;}
.y18{bottom:704.893333pt;}
.y99{bottom:716.080000pt;}
.y5d{bottom:719.933333pt;}
.ycc{bottom:725.213333pt;}
.y9b{bottom:725.373333pt;}
.y17{bottom:726.333333pt;}
.y3b{bottom:728.573333pt;}
.y5c{bottom:744.733333pt;}
.y16{bottom:747.773333pt;}
.ycb{bottom:750.013333pt;}
.y98{bottom:750.173333pt;}
.y3a{bottom:753.213333pt;}
.y15{bottom:769.213333pt;}
.y5b{bottom:769.373333pt;}
.yca{bottom:774.693333pt;}
.y97{bottom:774.853333pt;}
.y39{bottom:777.893333pt;}
.y14{bottom:790.853333pt;}
.y5a{bottom:794.053333pt;}
.y90{bottom:795.413333pt;}
.yc9{bottom:799.333333pt;}
.y38{bottom:802.533333pt;}
.y13{bottom:812.293333pt;}
.y96{bottom:815.493333pt;}
.y59{bottom:818.693333pt;}
.yc8{bottom:824.133333pt;}
.y37{bottom:827.333333pt;}
.y12{bottom:833.733333pt;}
.y58{bottom:843.493333pt;}
.y8f{bottom:848.773333pt;}
.y36{bottom:851.973333pt;}
.y11{bottom:855.173333pt;}
.y57{bottom:868.133333pt;}
.y35{bottom:873.413333pt;}
.y10{bottom:876.613333pt;}
.y56{bottom:892.773333pt;}
.yf{bottom:898.053333pt;}
.y54{bottom:913.546594pt;}
.ye{bottom:922.853333pt;}
.yd{bottom:947.493333pt;}
.yc{bottom:972.133333pt;}
.y7{bottom:1004.293333pt;}
.y5{bottom:1021.760000pt;}
.y1{bottom:1037.120000pt;}
.h5{height:5.760000pt;}
.h1c{height:25.000494pt;}
.h17{height:25.733604pt;}
.hd{height:25.733677pt;}
.hf{height:25.799880pt;}
.h1e{height:31.644313pt;}
.h7{height:35.232000pt;}
.h14{height:36.250353pt;}
.h15{height:43.987905pt;}
.h18{height:45.134012pt;}
.h1a{height:45.644806pt;}
.h12{height:46.132070pt;}
.h4{height:47.109375pt;}
.h2{height:47.520000pt;}
.h1f{height:54.262553pt;}
.h21{height:61.717500pt;}
.h16{height:62.146063pt;}
.h13{height:62.176997pt;}
.h8{height:62.812500pt;}
.h1b{height:64.486931pt;}
.h3{height:64.500000pt;}
.h19{height:64.519030pt;}
.h1d{height:64.613585pt;}
.hb{height:64.752187pt;}
.hc{height:65.995312pt;}
.h20{height:73.454062pt;}
.ha{height:73.490625pt;}
.h11{height:73.989375pt;}
.h6{height:75.465000pt;}
.he{height:79.258472pt;}
.h10{height:79.462488pt;}
.h9{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:56.672000pt;}
.w3{width:60.992000pt;}
.w8{width:82.268271pt;}
.w7{width:87.064250pt;}
.wa{width:91.866695pt;}
.w9{width:144.475982pt;}
.wb{width:200.795629pt;}
.wc{width:305.794376pt;}
.w2{width:676.293333pt;}
.w5{width:680.613333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:1.961045pt;}
.x2d{left:2.943695pt;}
.x2{left:7.680000pt;}
.x7{left:12.320000pt;}
.x2c{left:16.210257pt;}
.x1{left:28.320000pt;}
.x28{left:34.735455pt;}
.x21{left:43.849241pt;}
.x4{left:53.306667pt;}
.x17{left:71.852142pt;}
.x5{left:75.519988pt;}
.x19{left:76.884596pt;}
.x22{left:84.032408pt;}
.x31{left:85.791988pt;}
.x29{left:88.334749pt;}
.x8{left:90.911988pt;}
.x27{left:93.766488pt;}
.x1f{left:94.994722pt;}
.x20{left:96.055457pt;}
.x11{left:98.431988pt;}
.x30{left:100.351988pt;}
.x2f{left:103.071988pt;}
.x32{left:104.831988pt;}
.x14{left:109.951988pt;}
.x10{left:113.311988pt;}
.x1e{left:118.204719pt;}
.x12{left:136.666655pt;}
.x13{left:140.026655pt;}
.x9{left:164.506655pt;}
.x26{left:181.806715pt;}
.x1a{left:195.546655pt;}
.x18{left:200.346655pt;}
.x25{left:205.146655pt;}
.x2b{left:214.503994pt;}
.x33{left:240.826655pt;}
.xc{left:248.546655pt;}
.xd{left:249.666655pt;}
.xa{left:252.866655pt;}
.x24{left:257.826655pt;}
.xe{left:259.746655pt;}
.x2a{left:314.146655pt;}
.xf{left:334.146655pt;}
.x15{left:338.786655pt;}
.x16{left:345.986655pt;}
.xb{left:396.866655pt;}
.x2e{left:419.133322pt;}
.x34{left:619.813322pt;}
.x1d{left:661.253322pt;}
.x1b{left:662.853322pt;}
.x1c{left:690.213322pt;}
.x3{left:704.613333pt;}
.x6{left:708.933333pt;}
}




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