
    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_9ab8cfdebfdcd8c7db350454.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.187000;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_ad01bcc5a4cde71c221cf0d9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.183000;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_1c72eee72d8d09ac195a3287.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.183000;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_d59570a8b8448d4c49c2cf70.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.173000;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_a5a25021e288ddc9a7a2a386.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f43ca0df91173ec2177e3a24.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.199000;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_1320295919f900328892e254.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.199000;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_63b91937e1d79af1ef67fa91.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.006348;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_276266b8e63745b9dd3d5fc1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.152000;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_29e32c07a167fe66f9e69f95.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.168000;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_cc489c529c9896b25f1e3a61.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.168000;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_53102a1c71c8791fe00e545e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.152000;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_c8913fe4f7f2e6e4d4927e84.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.187000;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_aa48fc94058169a7082f7879.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.153000;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_70326921ec4528f40d3a65be.woff2')format("woff");}.fff{font-family:fff;line-height:1.187000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_027704a7fce49a853df5245f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_16fb95a325f8f104b03547f6.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_5572f78913ced61c6089844c.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.153000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-168.480000px;}
.v3{vertical-align:-18.720000px;}
.v2{vertical-align:-8.100000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:180.840000px;}
.lsa{letter-spacing:-0.504000px;}
.ls6{letter-spacing:-0.432000px;}
.ls30{letter-spacing:-0.400200px;}
.ls8{letter-spacing:-0.360000px;}
.ls2a{letter-spacing:-0.327000px;}
.ls2b{letter-spacing:-0.296400px;}
.ls1c{letter-spacing:-0.285000px;}
.ls2c{letter-spacing:-0.198600px;}
.ls7{letter-spacing:-0.180000px;}
.ls2f{letter-spacing:-0.158400px;}
.lsb{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.108000px;}
.ls31{letter-spacing:-0.092400px;}
.lsc{letter-spacing:-0.072000px;}
.ls10{letter-spacing:-0.062400px;}
.lsf{letter-spacing:-0.036000px;}
.ls1f{letter-spacing:-0.031680px;}
.ls25{letter-spacing:-0.025320px;}
.ls0{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.020160px;}
.ls17{letter-spacing:0.043200px;}
.ls18{letter-spacing:0.051840px;}
.ls1d{letter-spacing:0.092160px;}
.ls1{letter-spacing:0.108000px;}
.ls9{letter-spacing:0.144000px;}
.ls23{letter-spacing:0.158400px;}
.ls1b{letter-spacing:0.159000px;}
.ls12{letter-spacing:0.173400px;}
.ls11{letter-spacing:0.210600px;}
.ls1a{letter-spacing:0.223200px;}
.ls14{letter-spacing:0.225600px;}
.ls24{letter-spacing:0.226656px;}
.ls22{letter-spacing:0.236400px;}
.ls28{letter-spacing:0.241920px;}
.ls19{letter-spacing:0.253200px;}
.ls13{letter-spacing:0.288000px;}
.ls26{letter-spacing:0.290160px;}
.ls2d{letter-spacing:0.291000px;}
.ls2e{letter-spacing:0.319800px;}
.ls1e{letter-spacing:0.385920px;}
.lse{letter-spacing:0.432000px;}
.ls21{letter-spacing:0.690000px;}
.ls20{letter-spacing:0.876000px;}
.ls29{letter-spacing:16.513200px;}
.ls16{letter-spacing:96.681024px;}
.ls3{letter-spacing:96.705024px;}
.ls15{letter-spacing:96.768000px;}
.ls2{letter-spacing:96.792000px;}
.ls4{letter-spacing:98.912064px;}
.ls5{letter-spacing:98.999040px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-60.877440px;}
.ws1a{word-spacing:-60.840000px;}
.ws31{word-spacing:-26.956800px;}
.ws28{word-spacing:-24.048000px;}
.ws29{word-spacing:-21.600000px;}
.wsc{word-spacing:-20.288160px;}
.ws44{word-spacing:-19.152000px;}
.ws42{word-spacing:-18.000000px;}
.ws45{word-spacing:-17.236800px;}
.ws1c{word-spacing:-16.848000px;}
.ws33{word-spacing:-16.428000px;}
.ws34{word-spacing:-16.242000px;}
.ws25{word-spacing:-16.225920px;}
.ws26{word-spacing:-16.200000px;}
.ws35{word-spacing:-15.788400px;}
.ws36{word-spacing:-15.710400px;}
.ws2e{word-spacing:-15.552000px;}
.ws32{word-spacing:-15.520320px;}
.ws22{word-spacing:-15.189120px;}
.ws1f{word-spacing:-15.163200px;}
.ws2f{word-spacing:-15.007680px;}
.ws30{word-spacing:-14.722680px;}
.ws3e{word-spacing:-13.567800px;}
.ws3a{word-spacing:-13.276800px;}
.ws3b{word-spacing:-13.248000px;}
.ws41{word-spacing:-13.155600px;}
.ws3f{word-spacing:-13.089600px;}
.ws40{word-spacing:-12.847800px;}
.ws3d{word-spacing:-12.784320px;}
.ws23{word-spacing:-9.648000px;}
.ws2c{word-spacing:-1.746720px;}
.ws43{word-spacing:-1.627200px;}
.ws2b{word-spacing:-0.698400px;}
.ws0{word-spacing:-0.432000px;}
.ws2a{word-spacing:-0.332640px;}
.ws1{word-spacing:0.000000px;}
.ws2d{word-spacing:0.023040px;}
.ws3c{word-spacing:0.621720px;}
.ws39{word-spacing:1.001520px;}
.ws38{word-spacing:1.680960px;}
.ws37{word-spacing:2.292720px;}
.ws12{word-spacing:2.340000px;}
.ws4{word-spacing:5.620800px;}
.ws16{word-spacing:7.416000px;}
.ws18{word-spacing:8.568000px;}
.ws15{word-spacing:9.576000px;}
.ws14{word-spacing:12.492000px;}
.ws17{word-spacing:13.248000px;}
.ws19{word-spacing:15.840000px;}
.ws5{word-spacing:18.374160px;}
.ws8{word-spacing:21.011520px;}
.ws13{word-spacing:27.252000px;}
.ws7{word-spacing:31.239840px;}
.ws6{word-spacing:40.631232px;}
.ws11{word-spacing:51.588000px;}
.wsd{word-spacing:51.804000px;}
.wsf{word-spacing:53.100000px;}
.wsb{word-spacing:53.964000px;}
.wsa{word-spacing:57.852000px;}
.wse{word-spacing:59.580000px;}
.ws10{word-spacing:60.876000px;}
.ws9{word-spacing:71.892000px;}
.ws3{word-spacing:393.768000px;}
.ws1d{word-spacing:472.914336px;}
.ws1e{word-spacing:489.027840px;}
.ws20{word-spacing:574.465296px;}
.ws24{word-spacing:576.914040px;}
.ws21{word-spacing:651.314160px;}
.ws1b{word-spacing:797.820000px;}
.ws27{word-spacing:2077.170000px;}
._9{margin-left:-3.479760px;}
._1{margin-left:-2.376000px;}
._2{margin-left:-1.296000px;}
._0{width:1.728000px;}
._6{width:3.633120px;}
._e{width:10.604640px;}
._f{width:11.697600px;}
._d{width:13.463760px;}
._7{width:14.856480px;}
._8{width:15.859296px;}
._a{width:17.521344px;}
._c{width:18.636000px;}
._b{width:20.959296px;}
._5{width:403.092000px;}
._3{width:405.756000px;}
._4{width:986.772000px;}
.fcb{color:rgb(7,55,99);}
.fca{color:transparent;}
.fc6{color:rgb(20,36,87);}
.fc5{color:rgb(46,81,155);}
.fc9{color:rgb(0,0,0);}
.fc8{color:rgb(89,89,89);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(0,32,96);}
.fc2{color:rgb(66,133,244);}
.fc7{color:rgb(0,151,167);}
.fc1{color:rgb(11,83,148);}
.fc0{color:rgb(29,37,84);}
.fs20{font-size:7.200000px;}
.fs1b{font-size:48.240000px;}
.fs24{font-size:66.240000px;}
.fs23{font-size:66.384000px;}
.fs22{font-size:72.000000px;}
.fs19{font-size:72.144000px;}
.fs16{font-size:77.760000px;}
.fs17{font-size:77.904000px;}
.fs9{font-size:84.240000px;}
.fs8{font-size:84.384000px;}
.fs15{font-size:90.000000px;}
.fs13{font-size:90.144000px;}
.fs5{font-size:95.760000px;}
.fs4{font-size:95.904000px;}
.fs21{font-size:102.240000px;}
.fs1f{font-size:102.384000px;}
.fs11{font-size:105.120000px;}
.fs3{font-size:108.000000px;}
.fs7{font-size:108.144000px;}
.fsc{font-size:113.760000px;}
.fs10{font-size:113.904000px;}
.fse{font-size:120.240000px;}
.fsf{font-size:120.384000px;}
.fs2{font-size:138.240000px;}
.fs1d{font-size:144.000000px;}
.fs1e{font-size:144.144000px;}
.fs12{font-size:145.440000px;}
.fs6{font-size:149.760000px;}
.fs1c{font-size:149.904000px;}
.fsd{font-size:162.144000px;}
.fs1{font-size:167.760000px;}
.fs0{font-size:216.000000px;}
.fsa{font-size:234.000000px;}
.fsb{font-size:234.144000px;}
.fs14{font-size:396.000000px;}
.fs18{font-size:396.144000px;}
.fs1a{font-size:432.144000px;}
.y0{bottom:0.000000px;}
.y45{bottom:19.224000px;}
.y11f{bottom:29.088000px;}
.yc7{bottom:31.104000px;}
.y37{bottom:32.040000px;}
.y108{bottom:34.704000px;}
.y123{bottom:37.800000px;}
.y122{bottom:42.120000px;}
.y9{bottom:48.060000px;}
.yf8{bottom:48.204000px;}
.y1a{bottom:51.264000px;}
.y11e{bottom:51.768000px;}
.y9a{bottom:53.136000px;}
.y125{bottom:53.928000px;}
.yc6{bottom:58.104000px;}
.y107{bottom:59.544000px;}
.y36{bottom:63.576000px;}
.yaa{bottom:64.836000px;}
.yb8{bottom:67.356000px;}
.y44{bottom:69.120000px;}
.y11d{bottom:74.628000px;}
.y62{bottom:76.068000px;}
.y8{bottom:76.896000px;}
.yf7{bottom:77.184000px;}
.y19{bottom:83.664000px;}
.y106{bottom:84.384000px;}
.yc5{bottom:84.924000px;}
.y99{bottom:85.176000px;}
.ydc{bottom:88.056000px;}
.y4b{bottom:88.776000px;}
.ya9{bottom:90.396000px;}
.y6b{bottom:91.548000px;}
.y43{bottom:94.320000px;}
.y35{bottom:95.076000px;}
.yb7{bottom:96.336000px;}
.y11c{bottom:97.308000px;}
.yf6{bottom:106.200000px;}
.y7{bottom:106.596000px;}
.y3c{bottom:109.620000px;}
.ye9{bottom:110.340000px;}
.ya8{bottom:116.136000px;}
.y18{bottom:116.424000px;}
.ydb{bottom:117.036000px;}
.y20{bottom:117.144000px;}
.y98{bottom:117.396000px;}
.y61{bottom:117.504000px;}
.y84{bottom:117.900000px;}
.y42{bottom:119.880000px;}
.y11b{bottom:120.204000px;}
.yb6{bottom:125.316000px;}
.y34{bottom:126.576000px;}
.y14{bottom:129.672000px;}
.y6a{bottom:132.984000px;}
.y105{bottom:134.100000px;}
.y3b{bottom:134.856000px;}
.yf5{bottom:135.180000px;}
.yc4{bottom:138.780000px;}
.y6{bottom:138.996000px;}
.y4f{bottom:139.284000px;}
.ye8{bottom:139.320000px;}
.ya7{bottom:141.732000px;}
.y11a{bottom:142.884000px;}
.y54{bottom:142.992000px;}
.y53{bottom:143.640000px;}
.yda{bottom:146.052000px;}
.y75{bottom:146.880000px;}
.y97{bottom:149.472000px;}
.y25{bottom:152.100000px;}
.y83{bottom:153.720000px;}
.yb5{bottom:154.335000px;}
.y33{bottom:158.070000px;}
.y60{bottom:158.910000px;}
.y104{bottom:158.940000px;}
.yf4{bottom:164.160000px;}
.y41{bottom:164.520000px;}
.y13{bottom:164.775000px;}
.y119{bottom:165.750000px;}
.yc3{bottom:165.780000px;}
.ya6{bottom:167.475000px;}
.ye7{bottom:168.300000px;}
.y5{bottom:171.390000px;}
.y69{bottom:174.390000px;}
.yd9{bottom:175.035000px;}
.yd1{bottom:176.835000px;}
.y96{bottom:181.695000px;}
.yb3{bottom:183.315000px;}
.y103{bottom:183.780000px;}
.y74{bottom:184.170000px;}
.y51{bottom:186.375000px;}
.y52{bottom:188.250000px;}
.y118{bottom:188.430000px;}
.y1f{bottom:189.180000px;}
.y32{bottom:189.615000px;}
.y82{bottom:189.750000px;}
.yc2{bottom:192.600000px;}
.yf3{bottom:193.140000px;}
.y12{bottom:193.785000px;}
.y121{bottom:198.795000px;}
.yd0{bottom:199.155000px;}
.y5f{bottom:200.310000px;}
.yd8{bottom:204.015000px;}
.y49{bottom:206.175000px;}
.y8d{bottom:206.670000px;}
.y102{bottom:208.620000px;}
.y7b{bottom:209.010000px;}
.y117{bottom:211.290000px;}
.yb2{bottom:212.295000px;}
.y95{bottom:213.735000px;}
.y68{bottom:215.790000px;}
.ya5{bottom:218.775000px;}
.yc1{bottom:219.600000px;}
.y24{bottom:220.500000px;}
.y31{bottom:221.115000px;}
.yf2{bottom:222.120000px;}
.ycf{bottom:222.915000px;}
.y73{bottom:224.490000px;}
.y11{bottom:224.925000px;}
.y81{bottom:225.570000px;}
.ye6{bottom:226.290000px;}
.y88{bottom:230.610000px;}
.y46{bottom:230.760000px;}
.y48{bottom:231.375000px;}
.y4a{bottom:232.635000px;}
.yd7{bottom:232.995000px;}
.y101{bottom:233.490000px;}
.y116{bottom:233.970000px;}
.yb1{bottom:241.275000px;}
.y5e{bottom:241.710000px;}
.ya4{bottom:244.335000px;}
.y94{bottom:245.955000px;}
.y7a{bottom:246.270000px;}
.yf1{bottom:251.130000px;}
.yce{bottom:252.075000px;}
.y30{bottom:252.615000px;}
.ye5{bottom:255.270000px;}
.y115{bottom:256.860000px;}
.y67{bottom:257.190000px;}
.y100{bottom:258.330000px;}
.y4{bottom:258.510000px;}
.y1e{bottom:261.210000px;}
.y80{bottom:261.570000px;}
.yd6{bottom:262.005000px;}
.y10{bottom:262.185000px;}
.ya3{bottom:270.105000px;}
.yb0{bottom:270.285000px;}
.y87{bottom:272.010000px;}
.yc0{bottom:273.450000px;}
.y72{bottom:274.170000px;}
.y120{bottom:274.500000px;}
.y6e{bottom:276.915000px;}
.y93{bottom:278.025000px;}
.y57{bottom:279.390000px;}
.y17{bottom:279.435000px;}
.y114{bottom:279.540000px;}
.yf0{bottom:280.110000px;}
.y5d{bottom:283.140000px;}
.yff{bottom:283.170000px;}
.y79{bottom:283.530000px;}
.y2f{bottom:284.115000px;}
.ye4{bottom:284.250000px;}
.y3e{bottom:292.965000px;}
.y40{bottom:295.050000px;}
.ya2{bottom:295.665000px;}
.y7f{bottom:297.390000px;}
.y66{bottom:298.620000px;}
.yaf{bottom:299.265000px;}
.yf{bottom:299.490000px;}
.ybf{bottom:300.270000px;}
.ycd{bottom:301.785000px;}
.y3{bottom:301.890000px;}
.y113{bottom:302.400000px;}
.yfe{bottom:308.010000px;}
.yef{bottom:309.090000px;}
.y92{bottom:310.245000px;}
.y47{bottom:311.550000px;}
.ye3{bottom:313.230000px;}
.y86{bottom:313.455000px;}
.y2e{bottom:315.645000px;}
.y124{bottom:318.315000px;}
.y3d{bottom:318.570000px;}
.yd5{bottom:319.965000px;}
.y78{bottom:320.835000px;}
.ya1{bottom:321.405000px;}
.y71{bottom:323.895000px;}
.y5c{bottom:324.540000px;}
.y112{bottom:325.080000px;}
.ycc{bottom:325.545000px;}
.ybe{bottom:327.270000px;}
.yb4{bottom:328.245000px;}
.y4d{bottom:332.670000px;}
.yfd{bottom:332.850000px;}
.y1d{bottom:333.210000px;}
.y7e{bottom:333.435000px;}
.ye{bottom:336.750000px;}
.yee{bottom:338.070000px;}
.y65{bottom:340.020000px;}
.ye2{bottom:342.210000px;}
.y6d{bottom:347.115000px;}
.y2d{bottom:347.145000px;}
.y111{bottom:347.940000px;}
.yd4{bottom:348.945000px;}
.y56{bottom:349.635000px;}
.y16{bottom:349.665000px;}
.ybd{bottom:354.135000px;}
.y85{bottom:354.855000px;}
.yae{bottom:357.225000px;}
.y23{bottom:357.330000px;}
.y77{bottom:358.095000px;}
.y4c{bottom:359.670000px;}
.y3f{bottom:361.290000px;}
.y5b{bottom:365.940000px;}
.yed{bottom:367.095000px;}
.y7d{bottom:369.255000px;}
.y110{bottom:370.650000px;}
.ye1{bottom:371.235000px;}
.ya0{bottom:372.705000px;}
.yd{bottom:374.010000px;}
.y91{bottom:374.505000px;}
.ycb{bottom:375.225000px;}
.yd3{bottom:377.925000px;}
.y2c{bottom:378.645000px;}
.y64{bottom:381.420000px;}
.yfc{bottom:382.575000px;}
.yad{bottom:386.250000px;}
.y10f{bottom:393.510000px;}
.yec{bottom:396.075000px;}
.y9f{bottom:398.310000px;}
.yca{bottom:399.210000px;}
.ye0{bottom:400.215000px;}
.y4e{bottom:402.450000px;}
.y50{bottom:403.050000px;}
.y1c{bottom:405.255000px;}
.y90{bottom:406.590000px;}
.y5a{bottom:407.370000px;}
.yfb{bottom:407.415000px;}
.ybc{bottom:407.955000px;}
.y2b{bottom:410.145000px;}
.yc{bottom:411.270000px;}
.yac{bottom:415.230000px;}
.y10e{bottom:416.190000px;}
.y6c{bottom:417.345000px;}
.y55{bottom:419.835000px;}
.y15{bottom:419.865000px;}
.y63{bottom:422.850000px;}
.y70{bottom:423.255000px;}
.y2{bottom:423.360000px;}
.y9e{bottom:424.050000px;}
.yeb{bottom:425.055000px;}
.y22{bottom:425.775000px;}
.ydf{bottom:429.195000px;}
.yfa{bottom:432.255000px;}
.y76{bottom:432.645000px;}
.ybb{bottom:434.955000px;}
.yd2{bottom:435.930000px;}
.y7c{bottom:436.425000px;}
.y8f{bottom:438.810000px;}
.y10d{bottom:439.050000px;}
.y2a{bottom:441.690000px;}
.yab{bottom:444.210000px;}
.yb{bottom:448.560000px;}
.y59{bottom:448.770000px;}
.yc9{bottom:448.890000px;}
.y9d{bottom:449.610000px;}
.yf9{bottom:457.095000px;}
.yde{bottom:458.175000px;}
.y10c{bottom:461.730000px;}
.yba{bottom:461.775000px;}
.y8a{bottom:467.070000px;}
.y8e{bottom:470.850000px;}
.yc8{bottom:472.650000px;}
.y29{bottom:473.190000px;}
.y9c{bottom:475.350000px;}
.yea{bottom:484.125000px;}
.y10b{bottom:484.590000px;}
.ydd{bottom:487.185000px;}
.y1{bottom:488.190000px;}
.yb9{bottom:488.805000px;}
.y28{bottom:504.690000px;}
.y3a{bottom:505.515000px;}
.y10a{bottom:507.315000px;}
.y6f{bottom:527.550000px;}
.y58{bottom:529.230000px;}
.y1b{bottom:534.885000px;}
.y27{bottom:536.190000px;}
.y89{bottom:537.690000px;}
.y39{bottom:537.915000px;}
.ya{bottom:539.430000px;}
.y9b{bottom:541.515000px;}
.y21{bottom:549.825000px;}
.y38{bottom:551.190000px;}
.y109{bottom:552.135000px;}
.y26{bottom:568.620000px;}
.y8c{bottom:601.560000px;}
.y8b{bottom:605.880000px;}
.h2c{height:7.161328px;}
.h37{height:43.740000px;}
.h36{height:60.477120px;}
.h35{height:60.608592px;}
.h34{height:65.736000px;}
.h1f{height:65.867472px;}
.h33{height:68.904000px;}
.h30{height:70.994880px;}
.h1c{height:71.126352px;}
.h19{height:76.911120px;}
.h18{height:77.042592px;}
.hb{height:80.617680px;}
.ha{height:80.755488px;}
.h2e{height:82.170000px;}
.h2f{height:82.301472px;}
.h1e{height:86.130000px;}
.h1a{height:86.267808px;}
.h38{height:87.428880px;}
.h6{height:90.301680px;}
.h5{height:90.341568px;}
.h39{height:91.642320px;}
.h32{height:91.780128px;}
.h2d{height:93.345120px;}
.h31{height:97.843680px;}
.h2a{height:97.981488px;}
.h29{height:98.604000px;}
.h28{height:98.735472px;}
.h16{height:100.224000px;}
.h4{height:101.736000px;}
.h8{height:103.356000px;}
.h9{height:103.493808px;}
.he{height:103.862880px;}
.h2b{height:103.994352px;}
.h15{height:105.569280px;}
.h14{height:105.702912px;}
.h22{height:109.779120px;}
.h23{height:109.910592px;}
.h10{height:111.582720px;}
.h11{height:111.716352px;}
.h12{height:115.069680px;}
.h13{height:115.207488px;}
.h3{height:130.222080px;}
.h27{height:131.472000px;}
.h26{height:131.603472px;}
.h25{height:137.808000px;}
.h17{height:139.186080px;}
.h7{height:143.320320px;}
.h24{height:143.458128px;}
.hf{height:155.171808px;}
.h2{height:160.546320px;}
.hc{height:179.270508px;}
.hd{height:179.380828px;}
.h1{height:206.712000px;}
.h1b{height:378.972000px;}
.h1d{height:379.109808px;}
.h20{height:413.561808px;}
.h21{height:559.812000px;}
.h0{height:607.500000px;}
.w5{width:43.740000px;}
.w6{width:43.920000px;}
.w4{width:43.956000px;}
.w2{width:1076.190000px;}
.w3{width:1079.999968px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x46{left:1.980000px;}
.x50{left:31.031984px;}
.x14{left:36.683984px;}
.x6{left:41.003984px;}
.x18{left:47.627984px;}
.xd{left:53.423984px;}
.x44{left:61.127984px;}
.xe{left:63.503984px;}
.x5{left:68.183984px;}
.x15{left:74.303984px;}
.x4a{left:81.467984px;}
.x3e{left:85.067984px;}
.x40{left:95.939984px;}
.x2f{left:98.207984px;}
.x45{left:101.627984px;}
.x4d{left:110.087984px;}
.x7{left:114.983984px;}
.x32{left:118.439984px;}
.x3f{left:125.567984px;}
.x30{left:126.827984px;}
.xc{left:132.839984px;}
.x4b{left:135.467984px;}
.x29{left:142.847984px;}
.x1{left:149.723984px;}
.x4f{left:151.124984px;}
.x4e{left:153.104984px;}
.x20{left:160.124984px;}
.x1f{left:165.344984px;}
.x8{left:172.049984px;}
.x39{left:198.389984px;}
.x3a{left:206.384984px;}
.x28{left:208.544984px;}
.x2{left:211.649984px;}
.x16{left:230.909984px;}
.x41{left:246.704984px;}
.x21{left:272.309984px;}
.x3{left:278.069984px;}
.x3c{left:289.109984px;}
.x17{left:298.769984px;}
.x34{left:314.354984px;}
.x47{left:322.664984px;}
.x48{left:330.044984px;}
.x42{left:333.104984px;}
.x35{left:342.434984px;}
.x9{left:347.474984px;}
.x1c{left:351.974984px;}
.x4c{left:357.404984px;}
.x33{left:359.429984px;}
.x10{left:363.674984px;}
.x43{left:368.024984px;}
.x3d{left:370.829984px;}
.xf{left:378.614984px;}
.x49{left:383.684984px;}
.x2d{left:388.229984px;}
.x1b{left:393.374984px;}
.xb{left:409.034984px;}
.x26{left:411.839984px;}
.x4{left:419.939984px;}
.x24{left:421.019984px;}
.x55{left:423.074984px;}
.x25{left:429.659984px;}
.x54{left:440.175000px;}
.x31{left:442.364984px;}
.x27{left:453.959984px;}
.x2a{left:469.184984px;}
.x2b{left:489.704984px;}
.x52{left:494.535000px;}
.x38{left:505.724984px;}
.xa{left:512.564984px;}
.x36{left:515.879984px;}
.x1a{left:524.774984px;}
.x19{left:534.854984px;}
.x53{left:546.195000px;}
.x22{left:593.534984px;}
.x51{left:597.855000px;}
.x11{left:614.054984px;}
.x37{left:642.419984px;}
.x2e{left:680.219984px;}
.x12{left:684.074984px;}
.x13{left:700.094984px;}
.x23{left:708.119984px;}
.x1d{left:748.004984px;}
.x1e{left:758.804984px;}
.x2c{left:762.329984px;}
.x3b{left:850.709984px;}
@media print{
.v1{vertical-align:-149.760000pt;}
.v3{vertical-align:-16.640000pt;}
.v2{vertical-align:-7.200000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:160.746667pt;}
.lsa{letter-spacing:-0.448000pt;}
.ls6{letter-spacing:-0.384000pt;}
.ls30{letter-spacing:-0.355733pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls2a{letter-spacing:-0.290667pt;}
.ls2b{letter-spacing:-0.263467pt;}
.ls1c{letter-spacing:-0.253333pt;}
.ls2c{letter-spacing:-0.176533pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls2f{letter-spacing:-0.140800pt;}
.lsb{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.096000pt;}
.ls31{letter-spacing:-0.082133pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls10{letter-spacing:-0.055467pt;}
.lsf{letter-spacing:-0.032000pt;}
.ls1f{letter-spacing:-0.028160pt;}
.ls25{letter-spacing:-0.022507pt;}
.ls0{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.017920pt;}
.ls17{letter-spacing:0.038400pt;}
.ls18{letter-spacing:0.046080pt;}
.ls1d{letter-spacing:0.081920pt;}
.ls1{letter-spacing:0.096000pt;}
.ls9{letter-spacing:0.128000pt;}
.ls23{letter-spacing:0.140800pt;}
.ls1b{letter-spacing:0.141333pt;}
.ls12{letter-spacing:0.154133pt;}
.ls11{letter-spacing:0.187200pt;}
.ls1a{letter-spacing:0.198400pt;}
.ls14{letter-spacing:0.200533pt;}
.ls24{letter-spacing:0.201472pt;}
.ls22{letter-spacing:0.210133pt;}
.ls28{letter-spacing:0.215040pt;}
.ls19{letter-spacing:0.225067pt;}
.ls13{letter-spacing:0.256000pt;}
.ls26{letter-spacing:0.257920pt;}
.ls2d{letter-spacing:0.258667pt;}
.ls2e{letter-spacing:0.284267pt;}
.ls1e{letter-spacing:0.343040pt;}
.lse{letter-spacing:0.384000pt;}
.ls21{letter-spacing:0.613333pt;}
.ls20{letter-spacing:0.778667pt;}
.ls29{letter-spacing:14.678400pt;}
.ls16{letter-spacing:85.938688pt;}
.ls3{letter-spacing:85.960021pt;}
.ls15{letter-spacing:86.016000pt;}
.ls2{letter-spacing:86.037333pt;}
.ls4{letter-spacing:87.921835pt;}
.ls5{letter-spacing:87.999147pt;}
.ws2{word-spacing:-54.113280pt;}
.ws1a{word-spacing:-54.080000pt;}
.ws31{word-spacing:-23.961600pt;}
.ws28{word-spacing:-21.376000pt;}
.ws29{word-spacing:-19.200000pt;}
.wsc{word-spacing:-18.033920pt;}
.ws44{word-spacing:-17.024000pt;}
.ws42{word-spacing:-16.000000pt;}
.ws45{word-spacing:-15.321600pt;}
.ws1c{word-spacing:-14.976000pt;}
.ws33{word-spacing:-14.602667pt;}
.ws34{word-spacing:-14.437333pt;}
.ws25{word-spacing:-14.423040pt;}
.ws26{word-spacing:-14.400000pt;}
.ws35{word-spacing:-14.034133pt;}
.ws36{word-spacing:-13.964800pt;}
.ws2e{word-spacing:-13.824000pt;}
.ws32{word-spacing:-13.795840pt;}
.ws22{word-spacing:-13.501440pt;}
.ws1f{word-spacing:-13.478400pt;}
.ws2f{word-spacing:-13.340160pt;}
.ws30{word-spacing:-13.086827pt;}
.ws3e{word-spacing:-12.060267pt;}
.ws3a{word-spacing:-11.801600pt;}
.ws3b{word-spacing:-11.776000pt;}
.ws41{word-spacing:-11.693867pt;}
.ws3f{word-spacing:-11.635200pt;}
.ws40{word-spacing:-11.420267pt;}
.ws3d{word-spacing:-11.363840pt;}
.ws23{word-spacing:-8.576000pt;}
.ws2c{word-spacing:-1.552640pt;}
.ws43{word-spacing:-1.446400pt;}
.ws2b{word-spacing:-0.620800pt;}
.ws0{word-spacing:-0.384000pt;}
.ws2a{word-spacing:-0.295680pt;}
.ws1{word-spacing:0.000000pt;}
.ws2d{word-spacing:0.020480pt;}
.ws3c{word-spacing:0.552640pt;}
.ws39{word-spacing:0.890240pt;}
.ws38{word-spacing:1.494187pt;}
.ws37{word-spacing:2.037973pt;}
.ws12{word-spacing:2.080000pt;}
.ws4{word-spacing:4.996267pt;}
.ws16{word-spacing:6.592000pt;}
.ws18{word-spacing:7.616000pt;}
.ws15{word-spacing:8.512000pt;}
.ws14{word-spacing:11.104000pt;}
.ws17{word-spacing:11.776000pt;}
.ws19{word-spacing:14.080000pt;}
.ws5{word-spacing:16.332587pt;}
.ws8{word-spacing:18.676907pt;}
.ws13{word-spacing:24.224000pt;}
.ws7{word-spacing:27.768747pt;}
.ws6{word-spacing:36.116651pt;}
.ws11{word-spacing:45.856000pt;}
.wsd{word-spacing:46.048000pt;}
.wsf{word-spacing:47.200000pt;}
.wsb{word-spacing:47.968000pt;}
.wsa{word-spacing:51.424000pt;}
.wse{word-spacing:52.960000pt;}
.ws10{word-spacing:54.112000pt;}
.ws9{word-spacing:63.904000pt;}
.ws3{word-spacing:350.016000pt;}
.ws1d{word-spacing:420.368299pt;}
.ws1e{word-spacing:434.691413pt;}
.ws20{word-spacing:510.635819pt;}
.ws24{word-spacing:512.812480pt;}
.ws21{word-spacing:578.945920pt;}
.ws1b{word-spacing:709.173333pt;}
.ws27{word-spacing:1846.373333pt;}
._9{margin-left:-3.093120pt;}
._1{margin-left:-2.112000pt;}
._2{margin-left:-1.152000pt;}
._0{width:1.536000pt;}
._6{width:3.229440pt;}
._e{width:9.426347pt;}
._f{width:10.397867pt;}
._d{width:11.967787pt;}
._7{width:13.205760pt;}
._8{width:14.097152pt;}
._a{width:15.574528pt;}
._c{width:16.565333pt;}
._b{width:18.630485pt;}
._5{width:358.304000pt;}
._3{width:360.672000pt;}
._4{width:877.130667pt;}
.fs20{font-size:6.400000pt;}
.fs1b{font-size:42.880000pt;}
.fs24{font-size:58.880000pt;}
.fs23{font-size:59.008000pt;}
.fs22{font-size:64.000000pt;}
.fs19{font-size:64.128000pt;}
.fs16{font-size:69.120000pt;}
.fs17{font-size:69.248000pt;}
.fs9{font-size:74.880000pt;}
.fs8{font-size:75.008000pt;}
.fs15{font-size:80.000000pt;}
.fs13{font-size:80.128000pt;}
.fs5{font-size:85.120000pt;}
.fs4{font-size:85.248000pt;}
.fs21{font-size:90.880000pt;}
.fs1f{font-size:91.008000pt;}
.fs11{font-size:93.440000pt;}
.fs3{font-size:96.000000pt;}
.fs7{font-size:96.128000pt;}
.fsc{font-size:101.120000pt;}
.fs10{font-size:101.248000pt;}
.fse{font-size:106.880000pt;}
.fsf{font-size:107.008000pt;}
.fs2{font-size:122.880000pt;}
.fs1d{font-size:128.000000pt;}
.fs1e{font-size:128.128000pt;}
.fs12{font-size:129.280000pt;}
.fs6{font-size:133.120000pt;}
.fs1c{font-size:133.248000pt;}
.fsd{font-size:144.128000pt;}
.fs1{font-size:149.120000pt;}
.fs0{font-size:192.000000pt;}
.fsa{font-size:208.000000pt;}
.fsb{font-size:208.128000pt;}
.fs14{font-size:352.000000pt;}
.fs18{font-size:352.128000pt;}
.fs1a{font-size:384.128000pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:17.088000pt;}
.y11f{bottom:25.856000pt;}
.yc7{bottom:27.648000pt;}
.y37{bottom:28.480000pt;}
.y108{bottom:30.848000pt;}
.y123{bottom:33.600000pt;}
.y122{bottom:37.440000pt;}
.y9{bottom:42.720000pt;}
.yf8{bottom:42.848000pt;}
.y1a{bottom:45.568000pt;}
.y11e{bottom:46.016000pt;}
.y9a{bottom:47.232000pt;}
.y125{bottom:47.936000pt;}
.yc6{bottom:51.648000pt;}
.y107{bottom:52.928000pt;}
.y36{bottom:56.512000pt;}
.yaa{bottom:57.632000pt;}
.yb8{bottom:59.872000pt;}
.y44{bottom:61.440000pt;}
.y11d{bottom:66.336000pt;}
.y62{bottom:67.616000pt;}
.y8{bottom:68.352000pt;}
.yf7{bottom:68.608000pt;}
.y19{bottom:74.368000pt;}
.y106{bottom:75.008000pt;}
.yc5{bottom:75.488000pt;}
.y99{bottom:75.712000pt;}
.ydc{bottom:78.272000pt;}
.y4b{bottom:78.912000pt;}
.ya9{bottom:80.352000pt;}
.y6b{bottom:81.376000pt;}
.y43{bottom:83.840000pt;}
.y35{bottom:84.512000pt;}
.yb7{bottom:85.632000pt;}
.y11c{bottom:86.496000pt;}
.yf6{bottom:94.400000pt;}
.y7{bottom:94.752000pt;}
.y3c{bottom:97.440000pt;}
.ye9{bottom:98.080000pt;}
.ya8{bottom:103.232000pt;}
.y18{bottom:103.488000pt;}
.ydb{bottom:104.032000pt;}
.y20{bottom:104.128000pt;}
.y98{bottom:104.352000pt;}
.y61{bottom:104.448000pt;}
.y84{bottom:104.800000pt;}
.y42{bottom:106.560000pt;}
.y11b{bottom:106.848000pt;}
.yb6{bottom:111.392000pt;}
.y34{bottom:112.512000pt;}
.y14{bottom:115.264000pt;}
.y6a{bottom:118.208000pt;}
.y105{bottom:119.200000pt;}
.y3b{bottom:119.872000pt;}
.yf5{bottom:120.160000pt;}
.yc4{bottom:123.360000pt;}
.y6{bottom:123.552000pt;}
.y4f{bottom:123.808000pt;}
.ye8{bottom:123.840000pt;}
.ya7{bottom:125.984000pt;}
.y11a{bottom:127.008000pt;}
.y54{bottom:127.104000pt;}
.y53{bottom:127.680000pt;}
.yda{bottom:129.824000pt;}
.y75{bottom:130.560000pt;}
.y97{bottom:132.864000pt;}
.y25{bottom:135.200000pt;}
.y83{bottom:136.640000pt;}
.yb5{bottom:137.186667pt;}
.y33{bottom:140.506667pt;}
.y60{bottom:141.253333pt;}
.y104{bottom:141.280000pt;}
.yf4{bottom:145.920000pt;}
.y41{bottom:146.240000pt;}
.y13{bottom:146.466667pt;}
.y119{bottom:147.333333pt;}
.yc3{bottom:147.360000pt;}
.ya6{bottom:148.866667pt;}
.ye7{bottom:149.600000pt;}
.y5{bottom:152.346667pt;}
.y69{bottom:155.013333pt;}
.yd9{bottom:155.586667pt;}
.yd1{bottom:157.186667pt;}
.y96{bottom:161.506667pt;}
.yb3{bottom:162.946667pt;}
.y103{bottom:163.360000pt;}
.y74{bottom:163.706667pt;}
.y51{bottom:165.666667pt;}
.y52{bottom:167.333333pt;}
.y118{bottom:167.493333pt;}
.y1f{bottom:168.160000pt;}
.y32{bottom:168.546667pt;}
.y82{bottom:168.666667pt;}
.yc2{bottom:171.200000pt;}
.yf3{bottom:171.680000pt;}
.y12{bottom:172.253333pt;}
.y121{bottom:176.706667pt;}
.yd0{bottom:177.026667pt;}
.y5f{bottom:178.053333pt;}
.yd8{bottom:181.346667pt;}
.y49{bottom:183.266667pt;}
.y8d{bottom:183.706667pt;}
.y102{bottom:185.440000pt;}
.y7b{bottom:185.786667pt;}
.y117{bottom:187.813333pt;}
.yb2{bottom:188.706667pt;}
.y95{bottom:189.986667pt;}
.y68{bottom:191.813333pt;}
.ya5{bottom:194.466667pt;}
.yc1{bottom:195.200000pt;}
.y24{bottom:196.000000pt;}
.y31{bottom:196.546667pt;}
.yf2{bottom:197.440000pt;}
.ycf{bottom:198.146667pt;}
.y73{bottom:199.546667pt;}
.y11{bottom:199.933333pt;}
.y81{bottom:200.506667pt;}
.ye6{bottom:201.146667pt;}
.y88{bottom:204.986667pt;}
.y46{bottom:205.120000pt;}
.y48{bottom:205.666667pt;}
.y4a{bottom:206.786667pt;}
.yd7{bottom:207.106667pt;}
.y101{bottom:207.546667pt;}
.y116{bottom:207.973333pt;}
.yb1{bottom:214.466667pt;}
.y5e{bottom:214.853333pt;}
.ya4{bottom:217.186667pt;}
.y94{bottom:218.626667pt;}
.y7a{bottom:218.906667pt;}
.yf1{bottom:223.226667pt;}
.yce{bottom:224.066667pt;}
.y30{bottom:224.546667pt;}
.ye5{bottom:226.906667pt;}
.y115{bottom:228.320000pt;}
.y67{bottom:228.613333pt;}
.y100{bottom:229.626667pt;}
.y4{bottom:229.786667pt;}
.y1e{bottom:232.186667pt;}
.y80{bottom:232.506667pt;}
.yd6{bottom:232.893333pt;}
.y10{bottom:233.053333pt;}
.ya3{bottom:240.093333pt;}
.yb0{bottom:240.253333pt;}
.y87{bottom:241.786667pt;}
.yc0{bottom:243.066667pt;}
.y72{bottom:243.706667pt;}
.y120{bottom:244.000000pt;}
.y6e{bottom:246.146667pt;}
.y93{bottom:247.133333pt;}
.y57{bottom:248.346667pt;}
.y17{bottom:248.386667pt;}
.y114{bottom:248.480000pt;}
.yf0{bottom:248.986667pt;}
.y5d{bottom:251.680000pt;}
.yff{bottom:251.706667pt;}
.y79{bottom:252.026667pt;}
.y2f{bottom:252.546667pt;}
.ye4{bottom:252.666667pt;}
.y3e{bottom:260.413333pt;}
.y40{bottom:262.266667pt;}
.ya2{bottom:262.813333pt;}
.y7f{bottom:264.346667pt;}
.y66{bottom:265.440000pt;}
.yaf{bottom:266.013333pt;}
.yf{bottom:266.213333pt;}
.ybf{bottom:266.906667pt;}
.ycd{bottom:268.253333pt;}
.y3{bottom:268.346667pt;}
.y113{bottom:268.800000pt;}
.yfe{bottom:273.786667pt;}
.yef{bottom:274.746667pt;}
.y92{bottom:275.773333pt;}
.y47{bottom:276.933333pt;}
.ye3{bottom:278.426667pt;}
.y86{bottom:278.626667pt;}
.y2e{bottom:280.573333pt;}
.y124{bottom:282.946667pt;}
.y3d{bottom:283.173333pt;}
.yd5{bottom:284.413333pt;}
.y78{bottom:285.186667pt;}
.ya1{bottom:285.693333pt;}
.y71{bottom:287.906667pt;}
.y5c{bottom:288.480000pt;}
.y112{bottom:288.960000pt;}
.ycc{bottom:289.373333pt;}
.ybe{bottom:290.906667pt;}
.yb4{bottom:291.773333pt;}
.y4d{bottom:295.706667pt;}
.yfd{bottom:295.866667pt;}
.y1d{bottom:296.186667pt;}
.y7e{bottom:296.386667pt;}
.ye{bottom:299.333333pt;}
.yee{bottom:300.506667pt;}
.y65{bottom:302.240000pt;}
.ye2{bottom:304.186667pt;}
.y6d{bottom:308.546667pt;}
.y2d{bottom:308.573333pt;}
.y111{bottom:309.280000pt;}
.yd4{bottom:310.173333pt;}
.y56{bottom:310.786667pt;}
.y16{bottom:310.813333pt;}
.ybd{bottom:314.786667pt;}
.y85{bottom:315.426667pt;}
.yae{bottom:317.533333pt;}
.y23{bottom:317.626667pt;}
.y77{bottom:318.306667pt;}
.y4c{bottom:319.706667pt;}
.y3f{bottom:321.146667pt;}
.y5b{bottom:325.280000pt;}
.yed{bottom:326.306667pt;}
.y7d{bottom:328.226667pt;}
.y110{bottom:329.466667pt;}
.ye1{bottom:329.986667pt;}
.ya0{bottom:331.293333pt;}
.yd{bottom:332.453333pt;}
.y91{bottom:332.893333pt;}
.ycb{bottom:333.533333pt;}
.yd3{bottom:335.933333pt;}
.y2c{bottom:336.573333pt;}
.y64{bottom:339.040000pt;}
.yfc{bottom:340.066667pt;}
.yad{bottom:343.333333pt;}
.y10f{bottom:349.786667pt;}
.yec{bottom:352.066667pt;}
.y9f{bottom:354.053333pt;}
.yca{bottom:354.853333pt;}
.ye0{bottom:355.746667pt;}
.y4e{bottom:357.733333pt;}
.y50{bottom:358.266667pt;}
.y1c{bottom:360.226667pt;}
.y90{bottom:361.413333pt;}
.y5a{bottom:362.106667pt;}
.yfb{bottom:362.146667pt;}
.ybc{bottom:362.626667pt;}
.y2b{bottom:364.573333pt;}
.yc{bottom:365.573333pt;}
.yac{bottom:369.093333pt;}
.y10e{bottom:369.946667pt;}
.y6c{bottom:370.973333pt;}
.y55{bottom:373.186667pt;}
.y15{bottom:373.213333pt;}
.y63{bottom:375.866667pt;}
.y70{bottom:376.226667pt;}
.y2{bottom:376.320000pt;}
.y9e{bottom:376.933333pt;}
.yeb{bottom:377.826667pt;}
.y22{bottom:378.466667pt;}
.ydf{bottom:381.506667pt;}
.yfa{bottom:384.226667pt;}
.y76{bottom:384.573333pt;}
.ybb{bottom:386.626667pt;}
.yd2{bottom:387.493333pt;}
.y7c{bottom:387.933333pt;}
.y8f{bottom:390.053333pt;}
.y10d{bottom:390.266667pt;}
.y2a{bottom:392.613333pt;}
.yab{bottom:394.853333pt;}
.yb{bottom:398.720000pt;}
.y59{bottom:398.906667pt;}
.yc9{bottom:399.013333pt;}
.y9d{bottom:399.653333pt;}
.yf9{bottom:406.306667pt;}
.yde{bottom:407.266667pt;}
.y10c{bottom:410.426667pt;}
.yba{bottom:410.466667pt;}
.y8a{bottom:415.173333pt;}
.y8e{bottom:418.533333pt;}
.yc8{bottom:420.133333pt;}
.y29{bottom:420.613333pt;}
.y9c{bottom:422.533333pt;}
.yea{bottom:430.333333pt;}
.y10b{bottom:430.746667pt;}
.ydd{bottom:433.053333pt;}
.y1{bottom:433.946667pt;}
.yb9{bottom:434.493333pt;}
.y28{bottom:448.613333pt;}
.y3a{bottom:449.346667pt;}
.y10a{bottom:450.946667pt;}
.y6f{bottom:468.933333pt;}
.y58{bottom:470.426667pt;}
.y1b{bottom:475.453333pt;}
.y27{bottom:476.613333pt;}
.y89{bottom:477.946667pt;}
.y39{bottom:478.146667pt;}
.ya{bottom:479.493333pt;}
.y9b{bottom:481.346667pt;}
.y21{bottom:488.733333pt;}
.y38{bottom:489.946667pt;}
.y109{bottom:490.786667pt;}
.y26{bottom:505.440000pt;}
.y8c{bottom:534.720000pt;}
.y8b{bottom:538.560000pt;}
.h2c{height:6.365625pt;}
.h37{height:38.880000pt;}
.h36{height:53.757440pt;}
.h35{height:53.874304pt;}
.h34{height:58.432000pt;}
.h1f{height:58.548864pt;}
.h33{height:61.248000pt;}
.h30{height:63.106560pt;}
.h1c{height:63.223424pt;}
.h19{height:68.365440pt;}
.h18{height:68.482304pt;}
.hb{height:71.660160pt;}
.ha{height:71.782656pt;}
.h2e{height:73.040000pt;}
.h2f{height:73.156864pt;}
.h1e{height:76.560000pt;}
.h1a{height:76.682496pt;}
.h38{height:77.714560pt;}
.h6{height:80.268160pt;}
.h5{height:80.303616pt;}
.h39{height:81.459840pt;}
.h32{height:81.582336pt;}
.h2d{height:82.973440pt;}
.h31{height:86.972160pt;}
.h2a{height:87.094656pt;}
.h29{height:87.648000pt;}
.h28{height:87.764864pt;}
.h16{height:89.088000pt;}
.h4{height:90.432000pt;}
.h8{height:91.872000pt;}
.h9{height:91.994496pt;}
.he{height:92.322560pt;}
.h2b{height:92.439424pt;}
.h15{height:93.839360pt;}
.h14{height:93.958144pt;}
.h22{height:97.581440pt;}
.h23{height:97.698304pt;}
.h10{height:99.184640pt;}
.h11{height:99.303424pt;}
.h12{height:102.284160pt;}
.h13{height:102.406656pt;}
.h3{height:115.752960pt;}
.h27{height:116.864000pt;}
.h26{height:116.980864pt;}
.h25{height:122.496000pt;}
.h17{height:123.720960pt;}
.h7{height:127.395840pt;}
.h24{height:127.518336pt;}
.hf{height:137.930496pt;}
.h2{height:142.707840pt;}
.hc{height:159.351562pt;}
.hd{height:159.449625pt;}
.h1{height:183.744000pt;}
.h1b{height:336.864000pt;}
.h1d{height:336.986496pt;}
.h20{height:367.610496pt;}
.h21{height:497.610667pt;}
.h0{height:540.000000pt;}
.w5{width:38.880000pt;}
.w6{width:39.040000pt;}
.w4{width:39.072000pt;}
.w2{width:956.613333pt;}
.w3{width:959.999971pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x46{left:1.760000pt;}
.x50{left:27.583986pt;}
.x14{left:32.607986pt;}
.x6{left:36.447986pt;}
.x18{left:42.335986pt;}
.xd{left:47.487986pt;}
.x44{left:54.335986pt;}
.xe{left:56.447986pt;}
.x5{left:60.607986pt;}
.x15{left:66.047986pt;}
.x4a{left:72.415986pt;}
.x3e{left:75.615986pt;}
.x40{left:85.279986pt;}
.x2f{left:87.295986pt;}
.x45{left:90.335986pt;}
.x4d{left:97.855986pt;}
.x7{left:102.207986pt;}
.x32{left:105.279986pt;}
.x3f{left:111.615986pt;}
.x30{left:112.735986pt;}
.xc{left:118.079986pt;}
.x4b{left:120.415986pt;}
.x29{left:126.975986pt;}
.x1{left:133.087986pt;}
.x4f{left:134.333319pt;}
.x4e{left:136.093319pt;}
.x20{left:142.333319pt;}
.x1f{left:146.973319pt;}
.x8{left:152.933319pt;}
.x39{left:176.346652pt;}
.x3a{left:183.453319pt;}
.x28{left:185.373319pt;}
.x2{left:188.133319pt;}
.x16{left:205.253319pt;}
.x41{left:219.293319pt;}
.x21{left:242.053319pt;}
.x3{left:247.173319pt;}
.x3c{left:256.986652pt;}
.x17{left:265.573319pt;}
.x34{left:279.426652pt;}
.x47{left:286.813319pt;}
.x48{left:293.373319pt;}
.x42{left:296.093319pt;}
.x35{left:304.386652pt;}
.x9{left:308.866652pt;}
.x1c{left:312.866652pt;}
.x4c{left:317.693319pt;}
.x33{left:319.493319pt;}
.x10{left:323.266652pt;}
.x43{left:327.133319pt;}
.x3d{left:329.626652pt;}
.xf{left:336.546652pt;}
.x49{left:341.053319pt;}
.x2d{left:345.093319pt;}
.x1b{left:349.666652pt;}
.xb{left:363.586652pt;}
.x26{left:366.079986pt;}
.x4{left:373.279986pt;}
.x24{left:374.239986pt;}
.x55{left:376.066652pt;}
.x25{left:381.919986pt;}
.x54{left:391.266667pt;}
.x31{left:393.213319pt;}
.x27{left:403.519986pt;}
.x2a{left:417.053319pt;}
.x2b{left:435.293319pt;}
.x52{left:439.586667pt;}
.x38{left:449.533319pt;}
.xa{left:455.613319pt;}
.x36{left:458.559986pt;}
.x1a{left:466.466652pt;}
.x19{left:475.426652pt;}
.x53{left:485.506667pt;}
.x22{left:527.586652pt;}
.x51{left:531.426667pt;}
.x11{left:545.826652pt;}
.x37{left:571.039986pt;}
.x2e{left:604.639986pt;}
.x12{left:608.066652pt;}
.x13{left:622.306652pt;}
.x23{left:629.439986pt;}
.x1d{left:664.893319pt;}
.x1e{left:674.493319pt;}
.x2c{left:677.626652pt;}
.x3b{left:756.186652pt;}
}




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