
    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_cae91a58895e11cb5d6c2be1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941406;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_367bbfd995dcaa48c434e28d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.988281;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_90b3b24165d68720856d359e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.722656;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_52927c8989d3313831e2b903.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958008;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_dd90e1bbbfe3fcc2c3e38878.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ccb59c56d2831892b4561da5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941406;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_a3bb666864ebec9d9470d6dd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.962402;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_d2494ddff555d8f5d481153e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_828865e878067a71f0d8068b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682617;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_af6645edf8befc9dcfa44418.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.988281;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_6a71b79988e9c56d64b3e3a5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.767578;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_623d58ef118c8d9fddf399ae.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_a46cbca002c1197aa25a5576.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.766602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_57ce5cc905d671cd1ca3e89d.woff2')format("woff");}.fff{font-family:fff;line-height:0.958008;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-21.600000px;}
.v5{vertical-align:-20.160000px;}
.v4{vertical-align:-17.280000px;}
.v6{vertical-align:-12.960000px;}
.v2{vertical-align:-9.216000px;}
.v7{vertical-align:-4.560000px;}
.v1{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:48.540000px;}
.ls35{letter-spacing:-7.080000px;}
.ls3{letter-spacing:-0.960000px;}
.ls1e{letter-spacing:-0.648000px;}
.ls20{letter-spacing:-0.540000px;}
.ls1d{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.325200px;}
.ls12{letter-spacing:-0.262200px;}
.ls24{letter-spacing:-0.227400px;}
.ls9{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.198600px;}
.ls1f{letter-spacing:-0.180000px;}
.ls3a{letter-spacing:-0.175800px;}
.ls4{letter-spacing:-0.088200px;}
.ls5{letter-spacing:-0.082200px;}
.ls25{letter-spacing:-0.072000px;}
.ls11{letter-spacing:-0.060600px;}
.ls8{letter-spacing:-0.034560px;}
.ls1c{letter-spacing:-0.020160px;}
.ls3f{letter-spacing:-0.000006px;}
.ls2{letter-spacing:0.000000px;}
.ls38{letter-spacing:0.017280px;}
.ls3b{letter-spacing:0.026460px;}
.ls2f{letter-spacing:0.029280px;}
.ls30{letter-spacing:0.053280px;}
.ls2b{letter-spacing:0.065952px;}
.ls2c{letter-spacing:0.072000px;}
.ls32{letter-spacing:0.090000px;}
.ls2a{letter-spacing:0.102000px;}
.ls2e{letter-spacing:0.103968px;}
.ls13{letter-spacing:0.108000px;}
.ls21{letter-spacing:0.119952px;}
.ls1b{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.157200px;}
.ls31{letter-spacing:0.180000px;}
.ls22{letter-spacing:0.216000px;}
.ls23{letter-spacing:0.252000px;}
.lse{letter-spacing:0.270000px;}
.lsb{letter-spacing:0.280200px;}
.ls19{letter-spacing:0.322800px;}
.ls33{letter-spacing:0.331920px;}
.lsa{letter-spacing:0.360000px;}
.ls2d{letter-spacing:0.396000px;}
.ls26{letter-spacing:0.504000px;}
.ls34{letter-spacing:0.540000px;}
.ls27{letter-spacing:0.912000px;}
.ls16{letter-spacing:1.950000px;}
.ls39{letter-spacing:1.980000px;}
.ls3e{letter-spacing:41.981376px;}
.ls3d{letter-spacing:42.061440px;}
.ls17{letter-spacing:50.220000px;}
.ls37{letter-spacing:50.400000px;}
.ls29{letter-spacing:52.617600px;}
.ls28{letter-spacing:52.704000px;}
.ls14{letter-spacing:55.041696px;}
.ls15{letter-spacing:55.170000px;}
.ls7{letter-spacing:65.643696px;}
.ls6{letter-spacing:65.772000px;}
.ls1{letter-spacing:70.775856px;}
.ls0{letter-spacing:70.904160px;}
.lsd{letter-spacing:73.341936px;}
.lsc{letter-spacing:73.470240px;}
.ls18{letter-spacing:90.180000px;}
.ls36{letter-spacing:102.480000px;}
.ls3c{letter-spacing:124.344000px;}
.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;}
}
.ws2f{word-spacing:-192.384000px;}
.ws15{word-spacing:-60.624000px;}
.ws29{word-spacing:-59.871888px;}
.ws14{word-spacing:-48.438720px;}
.ws32{word-spacing:-30.024000px;}
.ws5{word-spacing:-29.916000px;}
.ws30{word-spacing:-28.476000px;}
.ws2{word-spacing:-28.360368px;}
.ws0{word-spacing:-28.320480px;}
.wsc{word-spacing:-27.679920px;}
.wsb{word-spacing:-27.197520px;}
.ws23{word-spacing:-25.524000px;}
.wsd{word-spacing:-25.380000px;}
.ws24{word-spacing:-25.200000px;}
.wsf{word-spacing:-25.060032px;}
.wse{word-spacing:-25.020000px;}
.ws7{word-spacing:-24.930000px;}
.ws19{word-spacing:-24.840000px;}
.ws21{word-spacing:-24.480000px;}
.ws10{word-spacing:-23.418720px;}
.ws2d{word-spacing:-20.610000px;}
.ws2a{word-spacing:-20.520000px;}
.ws2e{word-spacing:-20.430000px;}
.ws2b{word-spacing:-20.340000px;}
.ws28{word-spacing:-20.056032px;}
.ws1e{word-spacing:-20.016000px;}
.ws17{word-spacing:-16.632000px;}
.ws1a{word-spacing:-16.613280px;}
.ws16{word-spacing:-15.912000px;}
.ws18{word-spacing:-15.624000px;}
.ws26{word-spacing:-15.012000px;}
.ws31{word-spacing:-13.450752px;}
.ws1d{word-spacing:-13.410720px;}
.ws2c{word-spacing:-13.260000px;}
.ws1c{word-spacing:-12.564720px;}
.ws27{word-spacing:-10.048032px;}
.ws25{word-spacing:-10.008000px;}
.ws3{word-spacing:-2.176800px;}
.ws12{word-spacing:-2.160000px;}
.ws22{word-spacing:-0.113040px;}
.ws1b{word-spacing:-0.090000px;}
.ws1f{word-spacing:-0.084240px;}
.ws4{word-spacing:0.000000px;}
.ws20{word-spacing:0.171240px;}
.ws13{word-spacing:0.288000px;}
.ws1{word-spacing:0.467784px;}
.ws9{word-spacing:60.840000px;}
.wsa{word-spacing:60.919272px;}
.ws6{word-spacing:366.985680px;}
.ws8{word-spacing:383.484000px;}
.ws11{word-spacing:506.964720px;}
.ws33{word-spacing:668.374860px;}
._b{margin-left:-3116.580000px;}
._c{margin-left:-571.080000px;}
._17{margin-left:-8.835360px;}
._d{margin-left:-5.580000px;}
._10{margin-left:-4.472352px;}
._6{margin-left:-3.069120px;}
._1{margin-left:-1.738080px;}
._0{width:1.226880px;}
._3{width:2.553120px;}
._5{width:3.790080px;}
._14{width:6.230016px;}
._16{width:7.668720px;}
._15{width:14.172240px;}
._13{width:18.144000px;}
._4{width:25.092000px;}
._2{width:27.180960px;}
._12{width:39.057120px;}
._11{width:87.983328px;}
._f{width:113.125728px;}
._e{width:286.687872px;}
._8{width:398.625600px;}
._9{width:399.765600px;}
._7{width:407.505600px;}
._a{width:428.265600px;}
._18{width:1648.651200px;}
.fc9{color:rgb(254,255,255);}
.fc8{color:rgb(77,81,86);}
.fc7{color:rgb(95,99,104);}
.fc5{color:rgb(118,111,84);}
.fc2{color:rgb(165,48,16);}
.fca{color:rgb(251,74,24);}
.fc6{color:rgb(255,255,255);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(64,64,64);}
.fc1{color:rgb(38,38,38);}
.fc0{color:rgb(127,127,127);}
.fs1b{font-size:36.000000px;}
.fs1d{font-size:36.144000px;}
.fs0{font-size:45.360000px;}
.fs18{font-size:48.240000px;}
.fs20{font-size:48.384000px;}
.fsf{font-size:49.680000px;}
.fs12{font-size:54.000000px;}
.fs11{font-size:54.144000px;}
.fs1a{font-size:56.160000px;}
.fs16{font-size:59.760000px;}
.fs7{font-size:63.360000px;}
.fs17{font-size:66.240000px;}
.fsa{font-size:72.000000px;}
.fs19{font-size:72.144000px;}
.fs21{font-size:77.760000px;}
.fs10{font-size:81.360000px;}
.fs1c{font-size:81.504000px;}
.fs8{font-size:84.240000px;}
.fse{font-size:84.384000px;}
.fs9{font-size:90.000000px;}
.fsb{font-size:90.144000px;}
.fsc{font-size:99.360000px;}
.fsd{font-size:99.504000px;}
.fs2{font-size:102.240000px;}
.fs3{font-size:102.384000px;}
.fs4{font-size:108.000000px;}
.fs5{font-size:108.144000px;}
.fs23{font-size:120.240000px;}
.fs22{font-size:120.384000px;}
.fs1e{font-size:126.000000px;}
.fs26{font-size:167.760000px;}
.fs27{font-size:167.904000px;}
.fs14{font-size:174.240000px;}
.fs15{font-size:174.384000px;}
.fs13{font-size:192.240000px;}
.fs1f{font-size:192.384000px;}
.fs1{font-size:216.000000px;}
.fs6{font-size:216.144000px;}
.fs24{font-size:246.240000px;}
.fs25{font-size:246.384000px;}
.y0{bottom:0.000000px;}
.y1{bottom:28.404000px;}
.y2{bottom:28.872000px;}
.ye3{bottom:67.140000px;}
.y52{bottom:92.340000px;}
.ye4{bottom:105.588000px;}
.y86{bottom:108.684000px;}
.yb0{bottom:109.656000px;}
.y93{bottom:113.868000px;}
.ycc{bottom:115.596000px;}
.y42{bottom:116.064000px;}
.y51{bottom:119.376000px;}
.ybb{bottom:121.572000px;}
.ya9{bottom:125.568000px;}
.y68{bottom:128.916000px;}
.yd{bottom:129.420000px;}
.y84{bottom:130.932000px;}
.y3b{bottom:132.012000px;}
.y31{bottom:134.064000px;}
.y62{bottom:135.468000px;}
.y7f{bottom:135.648000px;}
.y41{bottom:142.668000px;}
.y50{bottom:146.376000px;}
.yd5{bottom:150.735000px;}
.y3a{bottom:154.695000px;}
.ya6{bottom:154.875000px;}
.y91{bottom:157.680000px;}
.yc1{bottom:158.790000px;}
.y7e{bottom:162.645000px;}
.y61{bottom:162.975000px;}
.yc{bottom:163.080000px;}
.y30{bottom:163.770000px;}
.ybf{bottom:164.775000px;}
.y40{bottom:166.965000px;}
.y9d{bottom:168.045000px;}
.ye2{bottom:172.110000px;}
.ycf{bottom:172.650000px;}
.y1e{bottom:173.595000px;}
.yd4{bottom:175.035000px;}
.y8a{bottom:176.220000px;}
.yb8{bottom:181.650000px;}
.y60{bottom:185.655000px;}
.y89{bottom:187.740000px;}
.y4f{bottom:189.030000px;}
.y7d{bottom:192.930000px;}
.y2f{bottom:193.470000px;}
.y22{bottom:193.680000px;}
.yb7{bottom:197.850000px;}
.y6f{bottom:199.185000px;}
.yd3{bottom:199.365000px;}
.y1d{bottom:200.595000px;}
.ya8{bottom:201.240000px;}
.y8d{bottom:203.145000px;}
.y5f{bottom:208.365000px;}
.y58{bottom:209.910000px;}
.yb{bottom:211.860000px;}
.y7c{bottom:214.530000px;}
.y8c{bottom:216.645000px;}
.y21{bottom:217.980000px;}
.ye1{bottom:222.510000px;}
.y57{bottom:222.870000px;}
.yd2{bottom:223.665000px;}
.y6e{bottom:226.185000px;}
.y67{bottom:227.085000px;}
.y1c{bottom:227.595000px;}
.ya7{bottom:234.150000px;}
.y85{bottom:236.550000px;}
.y2e{bottom:238.290000px;}
.y20{bottom:242.310000px;}
.ya{bottom:245.550000px;}
.y5e{bottom:248.370000px;}
.y6d{bottom:253.185000px;}
.y1b{bottom:254.595000px;}
.y14{bottom:262.335000px;}
.y1f{bottom:266.610000px;}
.yc2{bottom:267.690000px;}
.y2d{bottom:268.020000px;}
.y4e{bottom:276.015000px;}
.y13{bottom:281.235000px;}
.y1a{bottom:281.595000px;}
.ye0{bottom:283.035000px;}
.y9{bottom:294.150000px;}
.y7a{bottom:296.355000px;}
.yc8{bottom:297.465000px;}
.y4d{bottom:303.015000px;}
.y66{bottom:305.460000px;}
.y23{bottom:311.580000px;}
.y2c{bottom:312.660000px;}
.yc7{bottom:323.895000px;}
.y8{bottom:327.810000px;}
.y8f{bottom:329.220000px;}
.y5b{bottom:329.730000px;}
.y4c{bottom:330.015000px;}
.y5c{bottom:332.790000px;}
.ya4{bottom:332.850000px;}
.y6c{bottom:334.230000px;}
.ybd{bottom:336.135000px;}
.y79{bottom:338.115000px;}
.y2b{bottom:342.360000px;}
.ydf{bottom:343.515000px;}
.y92{bottom:344.625000px;}
.yca{bottom:347.010000px;}
.yc0{bottom:351.720000px;}
.y88{bottom:353.415000px;}
.ya3{bottom:357.150000px;}
.y6b{bottom:361.230000px;}
.yc4{bottom:368.715000px;}
.y44{bottom:368.895000px;}
.y2a{bottom:372.060000px;}
.y4b{bottom:372.675000px;}
.yc9{bottom:374.010000px;}
.y5a{bottom:375.840000px;}
.y7{bottom:376.410000px;}
.y87{bottom:378.030000px;}
.yb1{bottom:379.875000px;}
.ya2{bottom:381.450000px;}
.y43{bottom:385.125000px;}
.ye8{bottom:387.435000px;}
.y6a{bottom:388.230000px;}
.y59{bottom:388.800000px;}
.yde{bottom:393.915000px;}
.y9c{bottom:394.710000px;}
.yad{bottom:397.155000px;}
.yce{bottom:400.290000px;}
.yb9{bottom:401.115000px;}
.y29{bottom:401.760000px;}
.y45{bottom:402.150000px;}
.yc6{bottom:405.000000px;}
.ya1{bottom:405.750000px;}
.y6{bottom:410.115000px;}
.y5d{bottom:412.770000px;}
.y54{bottom:415.980000px;}
.y78{bottom:421.665000px;}
.y9b{bottom:424.830000px;}
.y16{bottom:427.290000px;}
.y83{bottom:429.375000px;}
.ycd{bottom:431.610000px;}
.yc3{bottom:432.000000px;}
.y80{bottom:432.465000px;}
.y28{bottom:446.430000px;}
.ydd{bottom:454.425000px;}
.y74{bottom:457.995000px;}
.y5{bottom:458.895000px;}
.y4a{bottom:459.645000px;}
.y99{bottom:459.900000px;}
.yaa{bottom:460.725000px;}
.y77{bottom:463.425000px;}
.yc5{bottom:469.770000px;}
.yb6{bottom:470.010000px;}
.y56{bottom:470.625000px;}
.y27{bottom:476.130000px;}
.ya0{bottom:476.790000px;}
.y98{bottom:480.060000px;}
.ye7{bottom:482.325000px;}
.y11{bottom:484.665000px;}
.y73{bottom:484.995000px;}
.y82{bottom:487.335000px;}
.y4{bottom:492.555000px;}
.yae{bottom:492.810000px;}
.y19{bottom:495.030000px;}
.y39{bottom:497.625000px;}
.y65{bottom:499.935000px;}
.y97{bottom:500.220000px;}
.y49{bottom:501.765000px;}
.y9f{bottom:503.790000px;}
.ydc{bottom:504.825000px;}
.y76{bottom:505.185000px;}
.y26{bottom:505.830000px;}
.y36{bottom:507.240000px;}
.y69{bottom:508.890000px;}
.ye6{bottom:514.725000px;}
.y18{bottom:516.630000px;}
.yac{bottom:518.145000px;}
.yd9{bottom:523.590000px;}
.y38{bottom:524.625000px;}
.yb5{bottom:526.650000px;}
.yd1{bottom:527.430000px;}
.y9e{bottom:530.790000px;}
.y10{bottom:532.185000px;}
.y35{bottom:534.240000px;}
.y25{bottom:535.530000px;}
.y72{bottom:538.995000px;}
.y55{bottom:539.925000px;}
.y8e{bottom:541.005000px;}
.y48{bottom:543.705000px;}
.y15{bottom:547.170000px;}
.y64{bottom:548.610000px;}
.y37{bottom:551.625000px;}
.yb4{bottom:553.830000px;}
.y81{bottom:556.455000px;}
.y96{bottom:557.175000px;}
.yd0{bottom:559.830000px;}
.ybc{bottom:560.370000px;}
.y34{bottom:561.240000px;}
.ydb{bottom:562.065000px;}
.y24{bottom:565.230000px;}
.y71{bottom:565.995000px;}
.y9a{bottom:571.320000px;}
.y3c{bottom:578.085000px;}
.y90{bottom:578.775000px;}
.y3{bottom:579.165000px;}
.yf{bottom:579.570000px;}
.yb3{bottom:580.860000px;}
.yba{bottom:581.970000px;}
.y95{bottom:584.175000px;}
.y47{bottom:585.690000px;}
.ybe{bottom:585.870000px;}
.y63{bottom:586.800000px;}
.yd6{bottom:588.495000px;}
.y75{bottom:590.370000px;}
.yab{bottom:591.810000px;}
.ye5{bottom:594.510000px;}
.ye9{bottom:597.315000px;}
.y8b{bottom:602.280000px;}
.y17{bottom:606.750000px;}
.ycb{bottom:609.480000px;}
.yd8{bottom:612.645000px;}
.y33{bottom:612.930000px;}
.yb2{bottom:613.290000px;}
.y3f{bottom:617.730000px;}
.yaf{bottom:620.100000px;}
.y53{bottom:624.675000px;}
.ye{bottom:626.910000px;}
.y46{bottom:628.350000px;}
.y3e{bottom:632.670000px;}
.yda{bottom:637.305000px;}
.y3d{bottom:647.430000px;}
.y70{bottom:665.430000px;}
.y94{bottom:674.310000px;}
.y32{bottom:677.775000px;}
.y12{bottom:678.135000px;}
.yd7{bottom:684.210000px;}
.y7b{bottom:698.970000px;}
.ya5{bottom:704.445000px;}
.h1{height:33.156211px;}
.h25{height:35.261367px;}
.h24{height:35.393203px;}
.h15{height:36.313945px;}
.h18{height:39.471680px;}
.h17{height:39.576937px;}
.h28{height:39.840820px;}
.h22{height:48.418594px;}
.h8{height:49.438125px;}
.ha{height:52.628906px;}
.h26{height:52.734164px;}
.h1d{height:54.140625px;}
.h16{height:59.470664px;}
.h29{height:61.178906px;}
.h2a{height:61.287187px;}
.h13{height:61.575820px;}
.h14{height:61.681078px;}
.h27{height:62.151680px;}
.h2f{height:63.483047px;}
.h30{height:63.595406px;}
.h1a{height:65.730234px;}
.hb{height:65.786133px;}
.hc{height:65.891391px;}
.h23{height:66.401367px;}
.h1b{height:66.665039px;}
.h1c{height:67.675781px;}
.h9{height:68.064609px;}
.hd{height:70.224609px;}
.he{height:70.336969px;}
.h21{height:71.613281px;}
.hf{height:77.527969px;}
.h10{height:77.640328px;}
.h3{height:79.775156px;}
.h4{height:79.887516px;}
.h35{height:81.000000px;}
.h2e{height:81.210938px;}
.h5{height:84.269531px;}
.h6{height:84.381891px;}
.h2c{height:89.516602px;}
.h2b{height:89.659828px;}
.h32{height:90.414844px;}
.h31{height:90.523125px;}
.h36{height:125.820000px;}
.h37{height:125.928000px;}
.h1f{height:127.361953px;}
.h20{height:127.467211px;}
.h1e{height:131.020313px;}
.h19{height:144.180000px;}
.h2d{height:145.321313px;}
.h12{height:162.000000px;}
.h11{height:162.108000px;}
.h2{height:168.539062px;}
.h7{height:168.651422px;}
.h34{height:184.788000px;}
.h33{height:233.220000px;}
.h0{height:810.000000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xd{left:13.751984px;}
.x69{left:32.687984px;}
.x24{left:34.991984px;}
.x4b{left:37.619984px;}
.x3a{left:40.823984px;}
.x2{left:42.371984px;}
.x6{left:51.335984px;}
.x40{left:54.539984px;}
.x62{left:60.335984px;}
.x52{left:64.691984px;}
.x22{left:76.175984px;}
.x32{left:82.475984px;}
.x7b{left:85.247984px;}
.x82{left:91.835984px;}
.x2d{left:98.423984px;}
.x1e{left:105.731984px;}
.x2e{left:109.871984px;}
.x11{left:114.155984px;}
.x81{left:116.927984px;}
.x7e{left:118.835984px;}
.x1a{left:121.427984px;}
.x19{left:122.759984px;}
.x1b{left:127.187984px;}
.x1f{left:128.771984px;}
.xf{left:130.355984px;}
.x1d{left:133.271984px;}
.x23{left:139.175984px;}
.x10{left:145.115984px;}
.x7d{left:149.399984px;}
.x7f{left:152.669984px;}
.x68{left:156.029984px;}
.x60{left:157.169984px;}
.x18{left:160.199984px;}
.x33{left:162.254984px;}
.x80{left:166.349984px;}
.x2c{left:179.459984px;}
.x2b{left:183.494984px;}
.x41{left:187.994984px;}
.x7a{left:189.794984px;}
.x31{left:197.429984px;}
.x64{left:201.059984px;}
.x3c{left:208.154984px;}
.x3{left:222.839984px;}
.x5a{left:230.009984px;}
.x59{left:231.869984px;}
.x3d{left:239.474984px;}
.x7{left:240.584984px;}
.x71{left:246.059984px;}
.x4e{left:257.399984px;}
.x43{left:263.414984px;}
.x2a{left:265.964984px;}
.x37{left:268.199984px;}
.x63{left:272.729984px;}
.x51{left:276.149984px;}
.x56{left:279.284984px;}
.x58{left:282.314984px;}
.x75{left:284.549984px;}
.x7c{left:307.874984px;}
.x21{left:309.164984px;}
.x30{left:315.509984px;}
.x1c{left:316.769984px;}
.x65{left:319.244984px;}
.x50{left:320.399984px;}
.xb{left:322.739984px;}
.x47{left:324.644984px;}
.x4c{left:334.184984px;}
.x72{left:340.379984px;}
.x73{left:342.284984px;}
.x42{left:357.329984px;}
.x4d{left:358.634984px;}
.x4{left:363.929984px;}
.x6a{left:375.479984px;}
.xa{left:379.694984px;}
.x2f{left:396.389984px;}
.xe{left:398.909984px;}
.x12{left:402.449984px;}
.x5{left:404.429984px;}
.xc{left:407.879984px;}
.x25{left:447.659984px;}
.x57{left:455.729984px;}
.x3b{left:459.284984px;}
.x15{left:478.184984px;}
.x16{left:484.844984px;}
.x3e{left:489.344984px;}
.x17{left:490.604984px;}
.x61{left:494.024984px;}
.x20{left:504.179984px;}
.x66{left:506.129984px;}
.x27{left:515.909984px;}
.x54{left:518.864984px;}
.x76{left:549.644984px;}
.x4f{left:551.444984px;}
.x74{left:575.384984px;}
.x46{left:585.029984px;}
.x6b{left:595.004984px;}
.x45{left:604.184984px;}
.x44{left:610.049984px;}
.x26{left:613.649984px;}
.x34{left:624.674984px;}
.x67{left:627.404984px;}
.x48{left:635.429984px;}
.x49{left:638.969984px;}
.x35{left:648.464984px;}
.x4a{left:661.064984px;}
.x36{left:678.884984px;}
.x38{left:696.419984px;}
.x70{left:700.049984px;}
.x39{left:726.839984px;}
.x13{left:730.874984px;}
.x79{left:749.984984px;}
.x55{left:751.964984px;}
.x77{left:761.684984px;}
.x78{left:766.724984px;}
.x14{left:771.374984px;}
.x6c{left:789.404984px;}
.x6f{left:808.094984px;}
.x6e{left:814.829984px;}
.x5b{left:817.409984px;}
.x5c{left:819.029984px;}
.x5f{left:832.469984px;}
.x53{left:841.139984px;}
.x5e{left:857.234984px;}
.x5d{left:867.089984px;}
.x29{left:921.524984px;}
.x6d{left:931.289984px;}
.x28{left:937.259984px;}
.x9{left:979.049984px;}
.x8{left:1010.549984px;}
.x3f{left:1016.429984px;}
.x1{left:1022.729984px;}
@media print{
.v3{vertical-align:-19.200000pt;}
.v5{vertical-align:-17.920000pt;}
.v4{vertical-align:-15.360000pt;}
.v6{vertical-align:-11.520000pt;}
.v2{vertical-align:-8.192000pt;}
.v7{vertical-align:-4.053333pt;}
.v1{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:43.146667pt;}
.ls35{letter-spacing:-6.293333pt;}
.ls3{letter-spacing:-0.853333pt;}
.ls1e{letter-spacing:-0.576000pt;}
.ls20{letter-spacing:-0.480000pt;}
.ls1d{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.289067pt;}
.ls12{letter-spacing:-0.233067pt;}
.ls24{letter-spacing:-0.202133pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.176533pt;}
.ls1f{letter-spacing:-0.160000pt;}
.ls3a{letter-spacing:-0.156267pt;}
.ls4{letter-spacing:-0.078400pt;}
.ls5{letter-spacing:-0.073067pt;}
.ls25{letter-spacing:-0.064000pt;}
.ls11{letter-spacing:-0.053867pt;}
.ls8{letter-spacing:-0.030720pt;}
.ls1c{letter-spacing:-0.017920pt;}
.ls3f{letter-spacing:-0.000005pt;}
.ls2{letter-spacing:0.000000pt;}
.ls38{letter-spacing:0.015360pt;}
.ls3b{letter-spacing:0.023520pt;}
.ls2f{letter-spacing:0.026027pt;}
.ls30{letter-spacing:0.047360pt;}
.ls2b{letter-spacing:0.058624pt;}
.ls2c{letter-spacing:0.064000pt;}
.ls32{letter-spacing:0.080000pt;}
.ls2a{letter-spacing:0.090667pt;}
.ls2e{letter-spacing:0.092416pt;}
.ls13{letter-spacing:0.096000pt;}
.ls21{letter-spacing:0.106624pt;}
.ls1b{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.139733pt;}
.ls31{letter-spacing:0.160000pt;}
.ls22{letter-spacing:0.192000pt;}
.ls23{letter-spacing:0.224000pt;}
.lse{letter-spacing:0.240000pt;}
.lsb{letter-spacing:0.249067pt;}
.ls19{letter-spacing:0.286933pt;}
.ls33{letter-spacing:0.295040pt;}
.lsa{letter-spacing:0.320000pt;}
.ls2d{letter-spacing:0.352000pt;}
.ls26{letter-spacing:0.448000pt;}
.ls34{letter-spacing:0.480000pt;}
.ls27{letter-spacing:0.810667pt;}
.ls16{letter-spacing:1.733333pt;}
.ls39{letter-spacing:1.760000pt;}
.ls3e{letter-spacing:37.316779pt;}
.ls3d{letter-spacing:37.387947pt;}
.ls17{letter-spacing:44.640000pt;}
.ls37{letter-spacing:44.800000pt;}
.ls29{letter-spacing:46.771200pt;}
.ls28{letter-spacing:46.848000pt;}
.ls14{letter-spacing:48.925952pt;}
.ls15{letter-spacing:49.040000pt;}
.ls7{letter-spacing:58.349952pt;}
.ls6{letter-spacing:58.464000pt;}
.ls1{letter-spacing:62.911872pt;}
.ls0{letter-spacing:63.025920pt;}
.lsd{letter-spacing:65.192832pt;}
.lsc{letter-spacing:65.306880pt;}
.ls18{letter-spacing:80.160000pt;}
.ls36{letter-spacing:91.093333pt;}
.ls3c{letter-spacing:110.528000pt;}
.ws2f{word-spacing:-171.008000pt;}
.ws15{word-spacing:-53.888000pt;}
.ws29{word-spacing:-53.219456pt;}
.ws14{word-spacing:-43.056640pt;}
.ws32{word-spacing:-26.688000pt;}
.ws5{word-spacing:-26.592000pt;}
.ws30{word-spacing:-25.312000pt;}
.ws2{word-spacing:-25.209216pt;}
.ws0{word-spacing:-25.173760pt;}
.wsc{word-spacing:-24.604373pt;}
.wsb{word-spacing:-24.175573pt;}
.ws23{word-spacing:-22.688000pt;}
.wsd{word-spacing:-22.560000pt;}
.ws24{word-spacing:-22.400000pt;}
.wsf{word-spacing:-22.275584pt;}
.wse{word-spacing:-22.240000pt;}
.ws7{word-spacing:-22.160000pt;}
.ws19{word-spacing:-22.080000pt;}
.ws21{word-spacing:-21.760000pt;}
.ws10{word-spacing:-20.816640pt;}
.ws2d{word-spacing:-18.320000pt;}
.ws2a{word-spacing:-18.240000pt;}
.ws2e{word-spacing:-18.160000pt;}
.ws2b{word-spacing:-18.080000pt;}
.ws28{word-spacing:-17.827584pt;}
.ws1e{word-spacing:-17.792000pt;}
.ws17{word-spacing:-14.784000pt;}
.ws1a{word-spacing:-14.767360pt;}
.ws16{word-spacing:-14.144000pt;}
.ws18{word-spacing:-13.888000pt;}
.ws26{word-spacing:-13.344000pt;}
.ws31{word-spacing:-11.956224pt;}
.ws1d{word-spacing:-11.920640pt;}
.ws2c{word-spacing:-11.786667pt;}
.ws1c{word-spacing:-11.168640pt;}
.ws27{word-spacing:-8.931584pt;}
.ws25{word-spacing:-8.896000pt;}
.ws3{word-spacing:-1.934933pt;}
.ws12{word-spacing:-1.920000pt;}
.ws22{word-spacing:-0.100480pt;}
.ws1b{word-spacing:-0.080000pt;}
.ws1f{word-spacing:-0.074880pt;}
.ws4{word-spacing:0.000000pt;}
.ws20{word-spacing:0.152213pt;}
.ws13{word-spacing:0.256000pt;}
.ws1{word-spacing:0.415808pt;}
.ws9{word-spacing:54.080000pt;}
.wsa{word-spacing:54.150464pt;}
.ws6{word-spacing:326.209493pt;}
.ws8{word-spacing:340.874667pt;}
.ws11{word-spacing:450.635307pt;}
.ws33{word-spacing:594.110987pt;}
._b{margin-left:-2770.293333pt;}
._c{margin-left:-507.626667pt;}
._17{margin-left:-7.853653pt;}
._d{margin-left:-4.960000pt;}
._10{margin-left:-3.975424pt;}
._6{margin-left:-2.728107pt;}
._1{margin-left:-1.544960pt;}
._0{width:1.090560pt;}
._3{width:2.269440pt;}
._5{width:3.368960pt;}
._14{width:5.537792pt;}
._16{width:6.816640pt;}
._15{width:12.597547pt;}
._13{width:16.128000pt;}
._4{width:22.304000pt;}
._2{width:24.160853pt;}
._12{width:34.717440pt;}
._11{width:78.207403pt;}
._f{width:100.556203pt;}
._e{width:254.833664pt;}
._8{width:354.333867pt;}
._9{width:355.347200pt;}
._7{width:362.227200pt;}
._a{width:380.680533pt;}
._18{width:1465.467733pt;}
.fs1b{font-size:32.000000pt;}
.fs1d{font-size:32.128000pt;}
.fs0{font-size:40.320000pt;}
.fs18{font-size:42.880000pt;}
.fs20{font-size:43.008000pt;}
.fsf{font-size:44.160000pt;}
.fs12{font-size:48.000000pt;}
.fs11{font-size:48.128000pt;}
.fs1a{font-size:49.920000pt;}
.fs16{font-size:53.120000pt;}
.fs7{font-size:56.320000pt;}
.fs17{font-size:58.880000pt;}
.fsa{font-size:64.000000pt;}
.fs19{font-size:64.128000pt;}
.fs21{font-size:69.120000pt;}
.fs10{font-size:72.320000pt;}
.fs1c{font-size:72.448000pt;}
.fs8{font-size:74.880000pt;}
.fse{font-size:75.008000pt;}
.fs9{font-size:80.000000pt;}
.fsb{font-size:80.128000pt;}
.fsc{font-size:88.320000pt;}
.fsd{font-size:88.448000pt;}
.fs2{font-size:90.880000pt;}
.fs3{font-size:91.008000pt;}
.fs4{font-size:96.000000pt;}
.fs5{font-size:96.128000pt;}
.fs23{font-size:106.880000pt;}
.fs22{font-size:107.008000pt;}
.fs1e{font-size:112.000000pt;}
.fs26{font-size:149.120000pt;}
.fs27{font-size:149.248000pt;}
.fs14{font-size:154.880000pt;}
.fs15{font-size:155.008000pt;}
.fs13{font-size:170.880000pt;}
.fs1f{font-size:171.008000pt;}
.fs1{font-size:192.000000pt;}
.fs6{font-size:192.128000pt;}
.fs24{font-size:218.880000pt;}
.fs25{font-size:219.008000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:25.248000pt;}
.y2{bottom:25.664000pt;}
.ye3{bottom:59.680000pt;}
.y52{bottom:82.080000pt;}
.ye4{bottom:93.856000pt;}
.y86{bottom:96.608000pt;}
.yb0{bottom:97.472000pt;}
.y93{bottom:101.216000pt;}
.ycc{bottom:102.752000pt;}
.y42{bottom:103.168000pt;}
.y51{bottom:106.112000pt;}
.ybb{bottom:108.064000pt;}
.ya9{bottom:111.616000pt;}
.y68{bottom:114.592000pt;}
.yd{bottom:115.040000pt;}
.y84{bottom:116.384000pt;}
.y3b{bottom:117.344000pt;}
.y31{bottom:119.168000pt;}
.y62{bottom:120.416000pt;}
.y7f{bottom:120.576000pt;}
.y41{bottom:126.816000pt;}
.y50{bottom:130.112000pt;}
.yd5{bottom:133.986667pt;}
.y3a{bottom:137.506667pt;}
.ya6{bottom:137.666667pt;}
.y91{bottom:140.160000pt;}
.yc1{bottom:141.146667pt;}
.y7e{bottom:144.573333pt;}
.y61{bottom:144.866667pt;}
.yc{bottom:144.960000pt;}
.y30{bottom:145.573333pt;}
.ybf{bottom:146.466667pt;}
.y40{bottom:148.413333pt;}
.y9d{bottom:149.373333pt;}
.ye2{bottom:152.986667pt;}
.ycf{bottom:153.466667pt;}
.y1e{bottom:154.306667pt;}
.yd4{bottom:155.586667pt;}
.y8a{bottom:156.640000pt;}
.yb8{bottom:161.466667pt;}
.y60{bottom:165.026667pt;}
.y89{bottom:166.880000pt;}
.y4f{bottom:168.026667pt;}
.y7d{bottom:171.493333pt;}
.y2f{bottom:171.973333pt;}
.y22{bottom:172.160000pt;}
.yb7{bottom:175.866667pt;}
.y6f{bottom:177.053333pt;}
.yd3{bottom:177.213333pt;}
.y1d{bottom:178.306667pt;}
.ya8{bottom:178.880000pt;}
.y8d{bottom:180.573333pt;}
.y5f{bottom:185.213333pt;}
.y58{bottom:186.586667pt;}
.yb{bottom:188.320000pt;}
.y7c{bottom:190.693333pt;}
.y8c{bottom:192.573333pt;}
.y21{bottom:193.760000pt;}
.ye1{bottom:197.786667pt;}
.y57{bottom:198.106667pt;}
.yd2{bottom:198.813333pt;}
.y6e{bottom:201.053333pt;}
.y67{bottom:201.853333pt;}
.y1c{bottom:202.306667pt;}
.ya7{bottom:208.133333pt;}
.y85{bottom:210.266667pt;}
.y2e{bottom:211.813333pt;}
.y20{bottom:215.386667pt;}
.ya{bottom:218.266667pt;}
.y5e{bottom:220.773333pt;}
.y6d{bottom:225.053333pt;}
.y1b{bottom:226.306667pt;}
.y14{bottom:233.186667pt;}
.y1f{bottom:236.986667pt;}
.yc2{bottom:237.946667pt;}
.y2d{bottom:238.240000pt;}
.y4e{bottom:245.346667pt;}
.y13{bottom:249.986667pt;}
.y1a{bottom:250.306667pt;}
.ye0{bottom:251.586667pt;}
.y9{bottom:261.466667pt;}
.y7a{bottom:263.426667pt;}
.yc8{bottom:264.413333pt;}
.y4d{bottom:269.346667pt;}
.y66{bottom:271.520000pt;}
.y23{bottom:276.960000pt;}
.y2c{bottom:277.920000pt;}
.yc7{bottom:287.906667pt;}
.y8{bottom:291.386667pt;}
.y8f{bottom:292.640000pt;}
.y5b{bottom:293.093333pt;}
.y4c{bottom:293.346667pt;}
.y5c{bottom:295.813333pt;}
.ya4{bottom:295.866667pt;}
.y6c{bottom:297.093333pt;}
.ybd{bottom:298.786667pt;}
.y79{bottom:300.546667pt;}
.y2b{bottom:304.320000pt;}
.ydf{bottom:305.346667pt;}
.y92{bottom:306.333333pt;}
.yca{bottom:308.453333pt;}
.yc0{bottom:312.640000pt;}
.y88{bottom:314.146667pt;}
.ya3{bottom:317.466667pt;}
.y6b{bottom:321.093333pt;}
.yc4{bottom:327.746667pt;}
.y44{bottom:327.906667pt;}
.y2a{bottom:330.720000pt;}
.y4b{bottom:331.266667pt;}
.yc9{bottom:332.453333pt;}
.y5a{bottom:334.080000pt;}
.y7{bottom:334.586667pt;}
.y87{bottom:336.026667pt;}
.yb1{bottom:337.666667pt;}
.ya2{bottom:339.066667pt;}
.y43{bottom:342.333333pt;}
.ye8{bottom:344.386667pt;}
.y6a{bottom:345.093333pt;}
.y59{bottom:345.600000pt;}
.yde{bottom:350.146667pt;}
.y9c{bottom:350.853333pt;}
.yad{bottom:353.026667pt;}
.yce{bottom:355.813333pt;}
.yb9{bottom:356.546667pt;}
.y29{bottom:357.120000pt;}
.y45{bottom:357.466667pt;}
.yc6{bottom:360.000000pt;}
.ya1{bottom:360.666667pt;}
.y6{bottom:364.546667pt;}
.y5d{bottom:366.906667pt;}
.y54{bottom:369.760000pt;}
.y78{bottom:374.813333pt;}
.y9b{bottom:377.626667pt;}
.y16{bottom:379.813333pt;}
.y83{bottom:381.666667pt;}
.ycd{bottom:383.653333pt;}
.yc3{bottom:384.000000pt;}
.y80{bottom:384.413333pt;}
.y28{bottom:396.826667pt;}
.ydd{bottom:403.933333pt;}
.y74{bottom:407.106667pt;}
.y5{bottom:407.906667pt;}
.y4a{bottom:408.573333pt;}
.y99{bottom:408.800000pt;}
.yaa{bottom:409.533333pt;}
.y77{bottom:411.933333pt;}
.yc5{bottom:417.573333pt;}
.yb6{bottom:417.786667pt;}
.y56{bottom:418.333333pt;}
.y27{bottom:423.226667pt;}
.ya0{bottom:423.813333pt;}
.y98{bottom:426.720000pt;}
.ye7{bottom:428.733333pt;}
.y11{bottom:430.813333pt;}
.y73{bottom:431.106667pt;}
.y82{bottom:433.186667pt;}
.y4{bottom:437.826667pt;}
.yae{bottom:438.053333pt;}
.y19{bottom:440.026667pt;}
.y39{bottom:442.333333pt;}
.y65{bottom:444.386667pt;}
.y97{bottom:444.640000pt;}
.y49{bottom:446.013333pt;}
.y9f{bottom:447.813333pt;}
.ydc{bottom:448.733333pt;}
.y76{bottom:449.053333pt;}
.y26{bottom:449.626667pt;}
.y36{bottom:450.880000pt;}
.y69{bottom:452.346667pt;}
.ye6{bottom:457.533333pt;}
.y18{bottom:459.226667pt;}
.yac{bottom:460.573333pt;}
.yd9{bottom:465.413333pt;}
.y38{bottom:466.333333pt;}
.yb5{bottom:468.133333pt;}
.yd1{bottom:468.826667pt;}
.y9e{bottom:471.813333pt;}
.y10{bottom:473.053333pt;}
.y35{bottom:474.880000pt;}
.y25{bottom:476.026667pt;}
.y72{bottom:479.106667pt;}
.y55{bottom:479.933333pt;}
.y8e{bottom:480.893333pt;}
.y48{bottom:483.293333pt;}
.y15{bottom:486.373333pt;}
.y64{bottom:487.653333pt;}
.y37{bottom:490.333333pt;}
.yb4{bottom:492.293333pt;}
.y81{bottom:494.626667pt;}
.y96{bottom:495.266667pt;}
.yd0{bottom:497.626667pt;}
.ybc{bottom:498.106667pt;}
.y34{bottom:498.880000pt;}
.ydb{bottom:499.613333pt;}
.y24{bottom:502.426667pt;}
.y71{bottom:503.106667pt;}
.y9a{bottom:507.840000pt;}
.y3c{bottom:513.853333pt;}
.y90{bottom:514.466667pt;}
.y3{bottom:514.813333pt;}
.yf{bottom:515.173333pt;}
.yb3{bottom:516.320000pt;}
.yba{bottom:517.306667pt;}
.y95{bottom:519.266667pt;}
.y47{bottom:520.613333pt;}
.ybe{bottom:520.773333pt;}
.y63{bottom:521.600000pt;}
.yd6{bottom:523.106667pt;}
.y75{bottom:524.773333pt;}
.yab{bottom:526.053333pt;}
.ye5{bottom:528.453333pt;}
.ye9{bottom:530.946667pt;}
.y8b{bottom:535.360000pt;}
.y17{bottom:539.333333pt;}
.ycb{bottom:541.760000pt;}
.yd8{bottom:544.573333pt;}
.y33{bottom:544.826667pt;}
.yb2{bottom:545.146667pt;}
.y3f{bottom:549.093333pt;}
.yaf{bottom:551.200000pt;}
.y53{bottom:555.266667pt;}
.ye{bottom:557.253333pt;}
.y46{bottom:558.533333pt;}
.y3e{bottom:562.373333pt;}
.yda{bottom:566.493333pt;}
.y3d{bottom:575.493333pt;}
.y70{bottom:591.493333pt;}
.y94{bottom:599.386667pt;}
.y32{bottom:602.466667pt;}
.y12{bottom:602.786667pt;}
.yd7{bottom:608.186667pt;}
.y7b{bottom:621.306667pt;}
.ya5{bottom:626.173333pt;}
.h1{height:29.472187pt;}
.h25{height:31.343437pt;}
.h24{height:31.460625pt;}
.h15{height:32.279062pt;}
.h18{height:35.085938pt;}
.h17{height:35.179500pt;}
.h28{height:35.414062pt;}
.h22{height:43.038750pt;}
.h8{height:43.945000pt;}
.ha{height:46.781250pt;}
.h26{height:46.874812pt;}
.h1d{height:48.125000pt;}
.h16{height:52.862812pt;}
.h29{height:54.381250pt;}
.h2a{height:54.477500pt;}
.h13{height:54.734062pt;}
.h14{height:54.827625pt;}
.h27{height:55.245937pt;}
.h2f{height:56.429375pt;}
.h30{height:56.529250pt;}
.h1a{height:58.426875pt;}
.hb{height:58.476562pt;}
.hc{height:58.570125pt;}
.h23{height:59.023438pt;}
.h1b{height:59.257812pt;}
.h1c{height:60.156250pt;}
.h9{height:60.501875pt;}
.hd{height:62.421875pt;}
.he{height:62.521750pt;}
.h21{height:63.656250pt;}
.hf{height:68.913750pt;}
.h10{height:69.013625pt;}
.h3{height:70.911250pt;}
.h4{height:71.011125pt;}
.h35{height:72.000000pt;}
.h2e{height:72.187500pt;}
.h5{height:74.906250pt;}
.h6{height:75.006125pt;}
.h2c{height:79.570312pt;}
.h2b{height:79.697625pt;}
.h32{height:80.368750pt;}
.h31{height:80.465000pt;}
.h36{height:111.840000pt;}
.h37{height:111.936000pt;}
.h1f{height:113.210625pt;}
.h20{height:113.304188pt;}
.h1e{height:116.462500pt;}
.h19{height:128.160000pt;}
.h2d{height:129.174500pt;}
.h12{height:144.000000pt;}
.h11{height:144.096000pt;}
.h2{height:149.812500pt;}
.h7{height:149.912375pt;}
.h34{height:164.256000pt;}
.h33{height:207.306667pt;}
.h0{height:720.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xd{left:12.223986pt;}
.x69{left:29.055986pt;}
.x24{left:31.103986pt;}
.x4b{left:33.439986pt;}
.x3a{left:36.287986pt;}
.x2{left:37.663986pt;}
.x6{left:45.631986pt;}
.x40{left:48.479986pt;}
.x62{left:53.631986pt;}
.x52{left:57.503986pt;}
.x22{left:67.711986pt;}
.x32{left:73.311986pt;}
.x7b{left:75.775986pt;}
.x82{left:81.631986pt;}
.x2d{left:87.487986pt;}
.x1e{left:93.983986pt;}
.x2e{left:97.663986pt;}
.x11{left:101.471986pt;}
.x81{left:103.935986pt;}
.x7e{left:105.631986pt;}
.x1a{left:107.935986pt;}
.x19{left:109.119986pt;}
.x1b{left:113.055986pt;}
.x1f{left:114.463986pt;}
.xf{left:115.871986pt;}
.x1d{left:118.463986pt;}
.x23{left:123.711986pt;}
.x10{left:128.991986pt;}
.x7d{left:132.799986pt;}
.x7f{left:135.706652pt;}
.x68{left:138.693319pt;}
.x60{left:139.706652pt;}
.x18{left:142.399986pt;}
.x33{left:144.226652pt;}
.x80{left:147.866652pt;}
.x2c{left:159.519986pt;}
.x2b{left:163.106652pt;}
.x41{left:167.106652pt;}
.x7a{left:168.706652pt;}
.x31{left:175.493319pt;}
.x64{left:178.719986pt;}
.x3c{left:185.026652pt;}
.x3{left:198.079986pt;}
.x5a{left:204.453319pt;}
.x59{left:206.106652pt;}
.x3d{left:212.866652pt;}
.x7{left:213.853319pt;}
.x71{left:218.719986pt;}
.x4e{left:228.799986pt;}
.x43{left:234.146652pt;}
.x2a{left:236.413319pt;}
.x37{left:238.399986pt;}
.x63{left:242.426652pt;}
.x51{left:245.466652pt;}
.x56{left:248.253319pt;}
.x58{left:250.946652pt;}
.x75{left:252.933319pt;}
.x7c{left:273.666652pt;}
.x21{left:274.813319pt;}
.x30{left:280.453319pt;}
.x1c{left:281.573319pt;}
.x65{left:283.773319pt;}
.x50{left:284.799986pt;}
.xb{left:286.879986pt;}
.x47{left:288.573319pt;}
.x4c{left:297.053319pt;}
.x72{left:302.559986pt;}
.x73{left:304.253319pt;}
.x42{left:317.626652pt;}
.x4d{left:318.786652pt;}
.x4{left:323.493319pt;}
.x6a{left:333.759986pt;}
.xa{left:337.506652pt;}
.x2f{left:352.346652pt;}
.xe{left:354.586652pt;}
.x12{left:357.733319pt;}
.x5{left:359.493319pt;}
.xc{left:362.559986pt;}
.x25{left:397.919986pt;}
.x57{left:405.093319pt;}
.x3b{left:408.253319pt;}
.x15{left:425.053319pt;}
.x16{left:430.973319pt;}
.x3e{left:434.973319pt;}
.x17{left:436.093319pt;}
.x61{left:439.133319pt;}
.x20{left:448.159986pt;}
.x66{left:449.893319pt;}
.x27{left:458.586652pt;}
.x54{left:461.213319pt;}
.x76{left:488.573319pt;}
.x4f{left:490.173319pt;}
.x74{left:511.453319pt;}
.x46{left:520.026652pt;}
.x6b{left:528.893319pt;}
.x45{left:537.053319pt;}
.x44{left:542.266652pt;}
.x26{left:545.466652pt;}
.x34{left:555.266652pt;}
.x67{left:557.693319pt;}
.x48{left:564.826652pt;}
.x49{left:567.973319pt;}
.x35{left:576.413319pt;}
.x4a{left:587.613319pt;}
.x36{left:603.453319pt;}
.x38{left:619.039986pt;}
.x70{left:622.266652pt;}
.x39{left:646.079986pt;}
.x13{left:649.666652pt;}
.x79{left:666.653319pt;}
.x55{left:668.413319pt;}
.x77{left:677.053319pt;}
.x78{left:681.533319pt;}
.x14{left:685.666652pt;}
.x6c{left:701.693319pt;}
.x6f{left:718.306652pt;}
.x6e{left:724.293319pt;}
.x5b{left:726.586652pt;}
.x5c{left:728.026652pt;}
.x5f{left:739.973319pt;}
.x53{left:747.679986pt;}
.x5e{left:761.986652pt;}
.x5d{left:770.746652pt;}
.x29{left:819.133319pt;}
.x6d{left:827.813319pt;}
.x28{left:833.119986pt;}
.x9{left:870.266652pt;}
.x8{left:898.266652pt;}
.x3f{left:903.493319pt;}
.x1{left:909.093319pt;}
}




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