
    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_e6be582c36dd11870d4d4616.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_f4287902a51bf7069fd12fff.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.691406;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_3d89672c68bc5469dec5afac.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8474f9fa7b1c9f6c1fa67951.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ebfdc7f3c6096813040c3dd9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c05c68f1815914651f95fa6d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_fb8f2838502a6cd22fa3d5ff.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.401855;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_471eb5db892ce512501983cb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_232e2db26ac55528796dbdb0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_619bdd9889daa1bcf77a9da1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.649414;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_73ca0700a027aa9a3477587a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.871094;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_b968f46d5eb1817207ba90e2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.860352;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_427fa43306af2a685e93af0f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_fa4fdb36adee262cbdf15d98.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910645;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_f26fae3939e3ecc0844e9121.woff2')format("woff");}.fff{font-family:fff;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_d52e04bdce509b2aa15fd081.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_b6468aacc7eb8bdbb2e888d4.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_eb6f9ebdc9afe54df1903451.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_e3e053e2f67144f4cdb3c139.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_fafcec2a01ed4b4ee6d3a99b.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.691406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_a8586087bba51aabe2f63d25.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_951408ae7d83b7f5d30109ef.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_fafcec2a01ed4b4ee6d3a99b.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.691406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.360000px;}
.v5{vertical-align:-10.080000px;}
.v3{vertical-align:-5.760000px;}
.v6{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.160000px;}
.v1{vertical-align:27.360000px;}
.v8{vertical-align:33.120000px;}
.v4{vertical-align:38.880000px;}
.ls11{letter-spacing:-1.656000px;}
.ls19{letter-spacing:-0.936000px;}
.ls1b{letter-spacing:-0.792000px;}
.ls1a{letter-spacing:-0.432000px;}
.ls7{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.144000px;}
.ls18{letter-spacing:-0.072000px;}
.ls16{letter-spacing:-0.051840px;}
.ls2{letter-spacing:0.000000px;}
.lse{letter-spacing:0.036000px;}
.ls8{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.140400px;}
.ls3{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.256200px;}
.ls14{letter-spacing:0.269280px;}
.ls9{letter-spacing:0.269400px;}
.ls1c{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.374400px;}
.ls1d{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.672000px;}
.lsc{letter-spacing:0.720000px;}
.ls1{letter-spacing:1.080000px;}
.ls13{letter-spacing:1.980000px;}
.ls6{letter-spacing:33.960000px;}
.ls1e{letter-spacing:54.864000px;}
.ls1f{letter-spacing:59.345280px;}
.ls5{letter-spacing:791.081280px;}
.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;}
}
.wsb{word-spacing:-72.000000px;}
.ws13{word-spacing:-66.240000px;}
.wsf{word-spacing:-66.188160px;}
.ws12{word-spacing:-48.614400px;}
.ws11{word-spacing:-48.240000px;}
.wse{word-spacing:-48.041280px;}
.ws1c{word-spacing:-18.720000px;}
.ws1b{word-spacing:-18.432000px;}
.ws19{word-spacing:-18.288000px;}
.ws9{word-spacing:-18.216000px;}
.wsa{word-spacing:-18.144000px;}
.ws16{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.856000px;}
.ws14{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.712000px;}
.ws17{word-spacing:-17.568000px;}
.ws18{word-spacing:-17.208000px;}
.ws15{word-spacing:-17.064000px;}
.wsc{word-spacing:-16.344000px;}
.ws8{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.238800px;}
.ws1{word-spacing:-15.226440px;}
.ws6{word-spacing:-14.940000px;}
.ws5{word-spacing:-12.732000px;}
.ws4{word-spacing:-12.329400px;}
.ws2{word-spacing:0.000000px;}
.ws1a{word-spacing:35.976000px;}
.ws10{word-spacing:127.382400px;}
._47{margin-left:-2933.950657px;}
._51{margin-left:-2932.372657px;}
._41{margin-left:-2931.292657px;}
._1a{margin-left:-2924.098657px;}
._23{margin-left:-2921.126328px;}
._1e{margin-left:-2917.166328px;}
._49{margin-left:-2914.004328px;}
._5b{margin-left:-2912.730985px;}
._26{margin-left:-2910.432985px;}
._46{margin-left:-2908.114657px;}
._14{margin-left:-2905.738657px;}
._3d{margin-left:-2904.456985px;}
._15{margin-left:-2903.362657px;}
._36{margin-left:-2901.922657px;}
._11{margin-left:-2899.906657px;}
._1f{margin-left:-2897.026657px;}
._21{margin-left:-2894.572657px;}
._27{margin-left:-2893.104000px;}
._34{margin-left:-2890.382328px;}
._52{margin-left:-2889.302328px;}
._4d{margin-left:-2886.448657px;}
._45{margin-left:-2881.906657px;}
._2f{margin-left:-2879.948328px;}
._c{margin-left:-2878.113314px;}
._1b{margin-left:-2876.002657px;}
._4b{margin-left:-2873.390328px;}
._25{margin-left:-2867.996328px;}
._4f{margin-left:-2863.300657px;}
._48{margin-left:-2862.106657px;}
._35{margin-left:-2857.002985px;}
._13{margin-left:-2853.489314px;}
._12{margin-left:-2851.868328px;}
._37{margin-left:-2848.080985px;}
._2{margin-left:-2844.669002px;}
._3b{margin-left:-2837.900328px;}
._17{margin-left:-2834.256985px;}
._4a{margin-left:-2831.198328px;}
._39{margin-left:-2828.237642px;}
._56{margin-left:-2824.242985px;}
._3f{margin-left:-2822.284657px;}
._20{margin-left:-2820.683642px;}
._40{margin-left:-2806.522657px;}
._4{margin-left:-2804.132328px;}
._1d{margin-left:-2802.542328px;}
._44{margin-left:-2801.044657px;}
._2b{margin-left:-2799.388657px;}
._9{margin-left:-2797.637642px;}
._30{margin-left:-2791.978657px;}
._3c{margin-left:-2779.502328px;}
._43{margin-left:-2759.572657px;}
._4c{margin-left:-2749.248000px;}
._2d{margin-left:-2730.642985px;}
._58{margin-left:-2704.210657px;}
._38{margin-left:-2700.158328px;}
._2e{margin-left:-2692.180657px;}
._42{margin-left:-2686.204657px;}
._24{margin-left:-2679.802657px;}
._22{margin-left:-2673.135314px;}
._16{margin-left:-2648.064985px;}
._3a{margin-left:-2641.118328px;}
._50{margin-left:-2637.590328px;}
._5a{margin-left:-2622.375314px;}
._3e{margin-left:-2587.420657px;}
._33{margin-left:-2585.900328px;}
._2c{margin-left:-2559.412657px;}
._4e{margin-left:-2467.454328px;}
._8{margin-left:-2336.636328px;}
._6{margin-left:-2168.976985px;}
._57{margin-left:-2111.572657px;}
._7{margin-left:-2025.135314px;}
._5{margin-left:-1923.860328px;}
._3{margin-left:-1793.344248px;}
._59{margin-left:-1537.718328px;}
._19{margin-left:-1465.632000px;}
._e{margin-left:-1444.248000px;}
._b{margin-left:-1437.768000px;}
._31{margin-left:-1429.502328px;}
._d{margin-left:-1046.102328px;}
._f{margin-left:-850.406328px;}
._32{margin-left:-749.712000px;}
._5c{margin-left:-715.680000px;}
._a{margin-left:-705.830328px;}
._18{margin-left:-425.664000px;}
._1c{margin-left:-2.514000px;}
._1{margin-left:-1.347672px;}
._0{width:1.434000px;}
._28{width:2.823672px;}
._55{width:15.553343px;}
._54{width:16.632000px;}
._53{width:33.120000px;}
._29{width:58.618775px;}
._2a{width:201.029760px;}
._10{width:845.868000px;}
.fc9{color:rgb(68,114,196);}
.fc8{color:rgb(23,54,93);}
.fc7{color:rgb(141,179,226);}
.fc6{color:rgb(23,54,93);}
.fc5{color:rgb(84,141,212);}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(0,0,10);}
.fc2{color:rgb(0,0,10);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(79,129,189);}
.fs6{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y7e{bottom:4.320000px;}
.y3a{bottom:20.700000px;}
.y3c{bottom:20.880000px;}
.yb1{bottom:23.580000px;}
.y7c{bottom:25.020000px;}
.y7d{bottom:44.280000px;}
.y80{bottom:45.540000px;}
.y7b{bottom:45.720000px;}
.y39{bottom:55.260000px;}
.y2{bottom:67.356000px;}
.y38{bottom:89.820000px;}
.y83{bottom:116.136000px;}
.yd0{bottom:116.496000px;}
.y4a{bottom:124.056000px;}
.yc4{bottom:128.196000px;}
.y6f{bottom:133.956000px;}
.y91{bottom:136.836000px;}
.y5e{bottom:142.056000px;}
.y30{bottom:144.396000px;}
.y2e{bottom:144.756000px;}
.y90{bottom:157.530000px;}
.ycf{bottom:157.890000px;}
.y49{bottom:165.450000px;}
.y6e{bottom:174.990000px;}
.y8f{bottom:178.230000px;}
.y74{bottom:183.270000px;}
.y5c{bottom:183.450000px;}
.yc3{bottom:184.710000px;}
.y2d{bottom:186.150000px;}
.y86{bottom:190.659000px;}
.y8e{bottom:198.930000px;}
.yb0{bottom:199.830000px;}
.y48{bottom:206.850000px;}
.y85{bottom:211.359000px;}
.yce{bottom:214.230000px;}
.y6d{bottom:216.750000px;}
.y8d{bottom:219.630000px;}
.y5b{bottom:224.850000px;}
.yc2{bottom:226.110000px;}
.y2c{bottom:227.550000px;}
.y84{bottom:232.059000px;}
.y73{bottom:239.610000px;}
.y8c{bottom:240.330000px;}
.yaf{bottom:246.270000px;}
.y47{bottom:248.250000px;}
.ycd{bottom:255.630000px;}
.y6c{bottom:258.150000px;}
.y8b{bottom:261.030000px;}
.y103{bottom:264.450000px;}
.y5a{bottom:266.250000px;}
.yae{bottom:266.970000px;}
.yc1{bottom:267.510000px;}
.yd1{bottom:268.590000px;}
.y2b{bottom:268.950000px;}
.y8a{bottom:281.775000px;}
.yad{bottom:287.715000px;}
.y46{bottom:289.695000px;}
.y3e{bottom:292.395000px;}
.y72{bottom:295.995000px;}
.ycc{bottom:297.075000px;}
.y6b{bottom:299.595000px;}
.y89{bottom:302.475000px;}
.y102{bottom:305.175000px;}
.yfb{bottom:307.335000px;}
.y59{bottom:307.695000px;}
.yac{bottom:308.415000px;}
.yc0{bottom:308.775000px;}
.y5d{bottom:309.135000px;}
.y2a{bottom:310.395000px;}
.y88{bottom:323.175000px;}
.yab{bottom:329.115000px;}
.yfa{bottom:329.655000px;}
.y45{bottom:331.095000px;}
.y71{bottom:337.395000px;}
.ycb{bottom:338.475000px;}
.y6a{bottom:340.995000px;}
.y87{bottom:343.875000px;}
.y101{bottom:346.575000px;}
.yc8{bottom:347.295000px;}
.y58{bottom:349.095000px;}
.ybf{bottom:350.175000px;}
.yaa{bottom:351.075000px;}
.y29{bottom:351.795000px;}
.yf9{bottom:351.975000px;}
.y3d{bottom:361.335000px;}
.y7f{bottom:365.475000px;}
.ya9{bottom:371.775000px;}
.y15{bottom:372.495000px;}
.yf8{bottom:374.295000px;}
.y70{bottom:374.475000px;}
.yca{bottom:379.875000px;}
.y69{bottom:382.395000px;}
.y82{bottom:386.175000px;}
.y100{bottom:387.975000px;}
.y57{bottom:390.495000px;}
.ybe{bottom:391.575000px;}
.ya8{bottom:392.475000px;}
.yd3{bottom:392.835000px;}
.y28{bottom:393.195000px;}
.yf7{bottom:396.615000px;}
.ye0{bottom:398.775000px;}
.yc7{bottom:403.635000px;}
.y81{bottom:406.695000px;}
.ya7{bottom:413.175000px;}
.y14{bottom:413.895000px;}
.yf6{bottom:419.115000px;}
.y68{bottom:423.795000px;}
.y7a{bottom:428.295000px;}
.yff{bottom:429.375000px;}
.y3b{bottom:430.305000px;}
.yc9{bottom:431.355000px;}
.y56{bottom:431.895000px;}
.ydf{bottom:432.075000px;}
.ybd{bottom:432.975000px;}
.ya6{bottom:433.875000px;}
.y27{bottom:434.595000px;}
.yf5{bottom:441.435000px;}
.yc6{bottom:446.475000px;}
.y13{bottom:455.295000px;}
.y67{bottom:465.195000px;}
.yde{bottom:466.455000px;}
.ybc{bottom:470.055000px;}
.yfe{bottom:470.775000px;}
.y55{bottom:473.295000px;}
.ya5{bottom:474.915000px;}
.yf4{bottom:475.275000px;}
.y26{bottom:475.995000px;}
.ydd{bottom:488.775000px;}
.y79{bottom:495.435000px;}
.y12{bottom:496.695000px;}
.yc5{bottom:499.215000px;}
.y37{bottom:500.145000px;}
.yf3{bottom:505.875000px;}
.y66{bottom:506.595000px;}
.ydc{bottom:511.095000px;}
.yfd{bottom:512.175000px;}
.y54{bottom:514.695000px;}
.y78{bottom:516.135000px;}
.ya4{bottom:516.675000px;}
.y25{bottom:517.395000px;}
.ydb{bottom:533.415000px;}
.y77{bottom:536.835000px;}
.y11{bottom:538.095000px;}
.y65{bottom:547.995000px;}
.yfc{bottom:548.715000px;}
.yda{bottom:555.735000px;}
.y53{bottom:556.095000px;}
.y76{bottom:557.535000px;}
.ya3{bottom:558.075000px;}
.y24{bottom:558.795000px;}
.y75{bottom:578.265000px;}
.y10{bottom:579.525000px;}
.y64{bottom:589.425000px;}
.y52{bottom:597.525000px;}
.ya2{bottom:599.505000px;}
.y23{bottom:600.225000px;}
.yd9{bottom:600.585000px;}
.yf{bottom:620.925000px;}
.yd8{bottom:622.905000px;}
.y63{bottom:630.825000px;}
.y51{bottom:638.925000px;}
.ya1{bottom:640.905000px;}
.yd2{bottom:641.265000px;}
.y22{bottom:641.625000px;}
.y36{bottom:644.370000px;}
.yd7{bottom:657.465000px;}
.ye{bottom:662.325000px;}
.y62{bottom:672.225000px;}
.y50{bottom:680.325000px;}
.ya0{bottom:682.305000px;}
.y21{bottom:683.025000px;}
.y35{bottom:685.770000px;}
.yeb{bottom:686.085000px;}
.yd6{bottom:686.625000px;}
.y44{bottom:703.725000px;}
.yd{bottom:710.565000px;}
.y61{bottom:713.445000px;}
.y4f{bottom:721.725000px;}
.y9f{bottom:723.705000px;}
.y20{bottom:724.425000px;}
.y34{bottom:727.170000px;}
.yea{bottom:742.425000px;}
.y43{bottom:745.125000px;}
.yc{bottom:751.965000px;}
.y60{bottom:753.765000px;}
.y5f{bottom:761.505000px;}
.y4e{bottom:763.125000px;}
.y9e{bottom:765.105000px;}
.y1f{bottom:765.825000px;}
.y33{bottom:768.570000px;}
.y42{bottom:786.525000px;}
.yb{bottom:793.365000px;}
.ye9{bottom:799.125000px;}
.ybb{bottom:803.445000px;}
.y4d{bottom:804.525000px;}
.y9d{bottom:806.505000px;}
.y1e{bottom:807.225000px;}
.yba{bottom:820.545000px;}
.y41{bottom:827.925000px;}
.ya{bottom:834.765000px;}
.ye8{bottom:840.525000px;}
.yb9{bottom:841.245000px;}
.y4c{bottom:845.925000px;}
.y9c{bottom:847.950000px;}
.y1d{bottom:848.670000px;}
.yb8{bottom:861.990000px;}
.y32{bottom:862.380000px;}
.y9{bottom:869.370000px;}
.yb7{bottom:882.690000px;}
.y4b{bottom:888.810000px;}
.y9b{bottom:889.350000px;}
.y1c{bottom:890.070000px;}
.ye7{bottom:897.090000px;}
.yb6{bottom:903.390000px;}
.y8{bottom:910.770000px;}
.yb5{bottom:924.990000px;}
.y9a{bottom:930.750000px;}
.y1b{bottom:931.470000px;}
.ye6{bottom:938.310000px;}
.yb4{bottom:946.410000px;}
.y7{bottom:952.170000px;}
.y99{bottom:972.150000px;}
.y1a{bottom:972.870000px;}
.yf2{bottom:977.010000px;}
.yb3{bottom:992.850000px;}
.y6{bottom:993.570000px;}
.yf1{bottom:994.650000px;}
.ye5{bottom:994.830000px;}
.y108{bottom:1011.390000px;}
.y98{bottom:1013.550000px;}
.y19{bottom:1014.270000px;}
.yf0{bottom:1015.350000px;}
.y107{bottom:1033.710000px;}
.y97{bottom:1034.250000px;}
.y31{bottom:1034.970000px;}
.ye4{bottom:1035.870000px;}
.yef{bottom:1036.050000px;}
.y5{bottom:1038.750000px;}
.y96{bottom:1054.950000px;}
.y18{bottom:1055.670000px;}
.y106{bottom:1057.290000px;}
.yee{bottom:1057.470000px;}
.yb2{bottom:1075.290000px;}
.y95{bottom:1075.650000px;}
.y40{bottom:1076.370000px;}
.ye3{bottom:1077.270000px;}
.y105{bottom:1081.050000px;}
.y4{bottom:1087.170000px;}
.y94{bottom:1092.750000px;}
.y17{bottom:1097.070000px;}
.yed{bottom:1101.210000px;}
.y104{bottom:1104.630000px;}
.y93{bottom:1113.450000px;}
.ye2{bottom:1116.150000px;}
.y3f{bottom:1117.770000px;}
.y92{bottom:1134.180000px;}
.y3{bottom:1135.440000px;}
.y16{bottom:1138.140000px;}
.y2f{bottom:1138.500000px;}
.yd5{bottom:1139.760000px;}
.yec{bottom:1140.120000px;}
.ye1{bottom:1140.300000px;}
.yd4{bottom:1194.120000px;}
.y1{bottom:1232.280000px;}
.h16{height:20.520000px;}
.h15{height:20.700000px;}
.h18{height:20.736000px;}
.h19{height:41.400000px;}
.h3{height:45.184219px;}
.h1b{height:45.895781px;}
.h6{height:47.344922px;}
.h1c{height:49.183594px;}
.h2{height:56.320312px;}
.he{height:58.651172px;}
.h14{height:61.920000px;}
.h13{height:62.100000px;}
.h1a{height:64.546875px;}
.hf{height:68.940000px;}
.h10{height:68.976000px;}
.ha{height:70.628906px;}
.h7{height:70.664062px;}
.h9{height:72.562500px;}
.h1d{height:74.004654px;}
.h5{height:74.704922px;}
.h4{height:84.898125px;}
.h8{height:87.859687px;}
.h11{height:92.466914px;}
.hd{height:103.500000px;}
.h12{height:104.542031px;}
.h17{height:248.430000px;}
.hb{height:892.980000px;}
.hc{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w29{width:50.796000px;}
.w28{width:53.100000px;}
.w1c{width:53.280000px;}
.w2c{width:53.496000px;}
.w2b{width:55.260000px;}
.wf{width:56.736000px;}
.we{width:58.140000px;}
.w10{width:58.860000px;}
.w17{width:59.256000px;}
.w19{width:63.360000px;}
.w2a{width:63.900000px;}
.w11{width:65.340000px;}
.w1f{width:65.700000px;}
.w27{width:66.960000px;}
.w21{width:68.220000px;}
.wa{width:68.580000px;}
.w12{width:78.300000px;}
.w13{width:78.516000px;}
.w18{width:80.100000px;}
.wd{width:80.460000px;}
.wb{width:80.820000px;}
.w16{width:85.320000px;}
.w30{width:90.756000px;}
.w2e{width:92.556000px;}
.w20{width:93.816000px;}
.w1a{width:94.176000px;}
.w8{width:94.536000px;}
.w2f{width:94.860000px;}
.w1e{width:95.616000px;}
.w1b{width:99.540000px;}
.wc{width:102.816000px;}
.w26{width:108.756000px;}
.w25{width:114.696000px;}
.w24{width:120.060000px;}
.w15{width:122.256000px;}
.w22{width:130.356000px;}
.w1d{width:146.160000px;}
.w14{width:152.640000px;}
.w9{width:158.430000px;}
.w23{width:197.130000px;}
.w2d{width:327.630000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w7{width:1262.879962px;}
.w6{width:1262.879981px;}
.w4{width:1262.880000px;}
.w5{width:1263.000000px;}
.x0{left:0.000000px;}
.x26{left:8.136000px;}
.x15{left:9.360000px;}
.x10{left:10.836000px;}
.x23{left:12.240000px;}
.x1c{left:13.320000px;}
.x21{left:15.300000px;}
.x1e{left:16.740000px;}
.x27{left:19.980000px;}
.x11{left:22.176000px;}
.x16{left:23.940000px;}
.x1a{left:25.920000px;}
.x50{left:27.000000px;}
.x18{left:28.260000px;}
.x51{left:29.700000px;}
.x28{left:31.680000px;}
.x34{left:35.100000px;}
.x38{left:39.960000px;}
.x13{left:41.940000px;}
.x2f{left:43.605000px;}
.x2d{left:45.360000px;}
.x37{left:47.025000px;}
.x36{left:54.585000px;}
.xc{left:55.619973px;}
.x7{left:64.080000px;}
.x3{left:72.540000px;}
.x9{left:80.999987px;}
.x4c{left:95.934000px;}
.xf{left:99.900000px;}
.x6{left:108.036000px;}
.x4{left:114.336000px;}
.x4b{left:119.556000px;}
.x49{left:127.655987px;}
.xa{left:135.035987px;}
.x39{left:146.556000px;}
.x4a{left:154.649987px;}
.xb{left:162.029987px;}
.x3f{left:176.250000px;}
.x12{left:194.430000px;}
.x35{left:199.290000px;}
.x2e{left:252.570000px;}
.x8{left:256.349987px;}
.x3a{left:292.710000px;}
.x2a{left:301.034987px;}
.x14{left:352.875000px;}
.x2b{left:357.914987px;}
.x40{left:373.395000px;}
.x30{left:374.835000px;}
.x47{left:377.174987px;}
.x5{left:382.575000px;}
.x3b{left:388.335000px;}
.x46{left:405.794987px;}
.x17{left:421.455000px;}
.x29{left:438.194987px;}
.x43{left:440.355000px;}
.x2{left:442.335000px;}
.x4d{left:447.195000px;}
.x3c{left:454.035000px;}
.x1{left:459.975000px;}
.x41{left:493.455000px;}
.x19{left:502.275000px;}
.x31{left:519.405000px;}
.x4e{left:539.745000px;}
.x44{left:544.245000px;}
.x3d{left:547.845000px;}
.x32{left:599.505000px;}
.x1b{left:605.085000px;}
.x42{left:608.145000px;}
.x3e{left:616.065000px;}
.xd{left:626.324981px;}
.xe{left:627.404981px;}
.x4f{left:634.605000px;}
.x2c{left:651.524987px;}
.x33{left:662.865000px;}
.x48{left:676.544987px;}
.x1d{left:685.545000px;}
.x1f{left:743.685000px;}
.x45{left:746.069987px;}
.x52{left:765.509987px;}
.x20{left:800.430000px;}
.x22{left:859.290000px;}
.x24{left:924.630000px;}
.x25{left:1002.930000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v5{vertical-align:-8.960000pt;}
.v3{vertical-align:-5.120000pt;}
.v6{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.920000pt;}
.v1{vertical-align:24.320000pt;}
.v8{vertical-align:29.440000pt;}
.v4{vertical-align:34.560000pt;}
.ls11{letter-spacing:-1.472000pt;}
.ls19{letter-spacing:-0.832000pt;}
.ls1b{letter-spacing:-0.704000pt;}
.ls1a{letter-spacing:-0.384000pt;}
.ls7{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls18{letter-spacing:-0.064000pt;}
.ls16{letter-spacing:-0.046080pt;}
.ls2{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.032000pt;}
.ls8{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.124800pt;}
.ls3{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.227733pt;}
.ls14{letter-spacing:0.239360pt;}
.ls9{letter-spacing:0.239467pt;}
.ls1c{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.332800pt;}
.ls1d{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.597333pt;}
.lsc{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.960000pt;}
.ls13{letter-spacing:1.760000pt;}
.ls6{letter-spacing:30.186667pt;}
.ls1e{letter-spacing:48.768000pt;}
.ls1f{letter-spacing:52.751360pt;}
.ls5{letter-spacing:703.183360pt;}
.wsb{word-spacing:-64.000000pt;}
.ws13{word-spacing:-58.880000pt;}
.wsf{word-spacing:-58.833920pt;}
.ws12{word-spacing:-43.212800pt;}
.ws11{word-spacing:-42.880000pt;}
.wse{word-spacing:-42.703360pt;}
.ws1c{word-spacing:-16.640000pt;}
.ws1b{word-spacing:-16.384000pt;}
.ws19{word-spacing:-16.256000pt;}
.ws9{word-spacing:-16.192000pt;}
.wsa{word-spacing:-16.128000pt;}
.ws16{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.872000pt;}
.ws14{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws17{word-spacing:-15.616000pt;}
.ws18{word-spacing:-15.296000pt;}
.ws15{word-spacing:-15.168000pt;}
.wsc{word-spacing:-14.528000pt;}
.ws8{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.545600pt;}
.ws1{word-spacing:-13.534613pt;}
.ws6{word-spacing:-13.280000pt;}
.ws5{word-spacing:-11.317333pt;}
.ws4{word-spacing:-10.959467pt;}
.ws2{word-spacing:0.000000pt;}
.ws1a{word-spacing:31.978667pt;}
.ws10{word-spacing:113.228800pt;}
._47{margin-left:-2607.956140pt;}
._51{margin-left:-2606.553473pt;}
._41{margin-left:-2605.593473pt;}
._1a{margin-left:-2599.198806pt;}
._23{margin-left:-2596.556736pt;}
._1e{margin-left:-2593.036736pt;}
._49{margin-left:-2590.226070pt;}
._5b{margin-left:-2589.094209pt;}
._26{margin-left:-2587.051543pt;}
._46{margin-left:-2584.990806pt;}
._14{margin-left:-2582.878806pt;}
._3d{margin-left:-2581.739543pt;}
._15{margin-left:-2580.766806pt;}
._36{margin-left:-2579.486806pt;}
._11{margin-left:-2577.694806pt;}
._1f{margin-left:-2575.134806pt;}
._21{margin-left:-2572.953473pt;}
._27{margin-left:-2571.648000pt;}
._34{margin-left:-2569.228736pt;}
._52{margin-left:-2568.268736pt;}
._4d{margin-left:-2565.732140pt;}
._45{margin-left:-2561.694806pt;}
._2f{margin-left:-2559.954070pt;}
._c{margin-left:-2558.322946pt;}
._1b{margin-left:-2556.446806pt;}
._4b{margin-left:-2554.124736pt;}
._25{margin-left:-2549.330070pt;}
._4f{margin-left:-2545.156140pt;}
._48{margin-left:-2544.094806pt;}
._35{margin-left:-2539.558209pt;}
._13{margin-left:-2536.434946pt;}
._12{margin-left:-2534.994070pt;}
._37{margin-left:-2531.627543pt;}
._2{margin-left:-2528.594669pt;}
._3b{margin-left:-2522.578070pt;}
._17{margin-left:-2519.339543pt;}
._4a{margin-left:-2516.620736pt;}
._39{margin-left:-2513.989015pt;}
._56{margin-left:-2510.438209pt;}
._3f{margin-left:-2508.697473pt;}
._20{margin-left:-2507.274349pt;}
._40{margin-left:-2494.686806pt;}
._4{margin-left:-2492.562070pt;}
._1d{margin-left:-2491.148736pt;}
._44{margin-left:-2489.817473pt;}
._2b{margin-left:-2488.345473pt;}
._9{margin-left:-2486.789015pt;}
._30{margin-left:-2481.758806pt;}
._3c{margin-left:-2470.668736pt;}
._43{margin-left:-2452.953473pt;}
._4c{margin-left:-2443.776000pt;}
._2d{margin-left:-2427.238209pt;}
._58{margin-left:-2403.742806pt;}
._38{margin-left:-2400.140736pt;}
._2e{margin-left:-2393.049473pt;}
._42{margin-left:-2387.737473pt;}
._24{margin-left:-2382.046806pt;}
._22{margin-left:-2376.120279pt;}
._16{margin-left:-2353.835543pt;}
._3a{margin-left:-2347.660736pt;}
._50{margin-left:-2344.524736pt;}
._5a{margin-left:-2331.000279pt;}
._3e{margin-left:-2299.929473pt;}
._33{margin-left:-2298.578070pt;}
._2c{margin-left:-2275.033473pt;}
._4e{margin-left:-2193.292736pt;}
._8{margin-left:-2077.010070pt;}
._6{margin-left:-1927.979543pt;}
._57{margin-left:-1876.953473pt;}
._7{margin-left:-1800.120279pt;}
._5{margin-left:-1710.098070pt;}
._3{margin-left:-1594.083776pt;}
._59{margin-left:-1366.860736pt;}
._19{margin-left:-1302.784000pt;}
._e{margin-left:-1283.776000pt;}
._b{margin-left:-1278.016000pt;}
._31{margin-left:-1270.668736pt;}
._d{margin-left:-929.868736pt;}
._f{margin-left:-755.916736pt;}
._32{margin-left:-666.410667pt;}
._5c{margin-left:-636.160000pt;}
._a{margin-left:-627.404736pt;}
._18{margin-left:-378.368000pt;}
._1c{margin-left:-2.234667pt;}
._1{margin-left:-1.197930pt;}
._0{width:1.274667pt;}
._28{width:2.509930pt;}
._55{width:13.825194pt;}
._54{width:14.784000pt;}
._53{width:29.440000pt;}
._29{width:52.105577pt;}
._2a{width:178.693120pt;}
._10{width:751.882667pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y7e{bottom:3.840000pt;}
.y3a{bottom:18.400000pt;}
.y3c{bottom:18.560000pt;}
.yb1{bottom:20.960000pt;}
.y7c{bottom:22.240000pt;}
.y7d{bottom:39.360000pt;}
.y80{bottom:40.480000pt;}
.y7b{bottom:40.640000pt;}
.y39{bottom:49.120000pt;}
.y2{bottom:59.872000pt;}
.y38{bottom:79.840000pt;}
.y83{bottom:103.232000pt;}
.yd0{bottom:103.552000pt;}
.y4a{bottom:110.272000pt;}
.yc4{bottom:113.952000pt;}
.y6f{bottom:119.072000pt;}
.y91{bottom:121.632000pt;}
.y5e{bottom:126.272000pt;}
.y30{bottom:128.352000pt;}
.y2e{bottom:128.672000pt;}
.y90{bottom:140.026667pt;}
.ycf{bottom:140.346667pt;}
.y49{bottom:147.066667pt;}
.y6e{bottom:155.546667pt;}
.y8f{bottom:158.426667pt;}
.y74{bottom:162.906667pt;}
.y5c{bottom:163.066667pt;}
.yc3{bottom:164.186667pt;}
.y2d{bottom:165.466667pt;}
.y86{bottom:169.474667pt;}
.y8e{bottom:176.826667pt;}
.yb0{bottom:177.626667pt;}
.y48{bottom:183.866667pt;}
.y85{bottom:187.874667pt;}
.yce{bottom:190.426667pt;}
.y6d{bottom:192.666667pt;}
.y8d{bottom:195.226667pt;}
.y5b{bottom:199.866667pt;}
.yc2{bottom:200.986667pt;}
.y2c{bottom:202.266667pt;}
.y84{bottom:206.274667pt;}
.y73{bottom:212.986667pt;}
.y8c{bottom:213.626667pt;}
.yaf{bottom:218.906667pt;}
.y47{bottom:220.666667pt;}
.ycd{bottom:227.226667pt;}
.y6c{bottom:229.466667pt;}
.y8b{bottom:232.026667pt;}
.y103{bottom:235.066667pt;}
.y5a{bottom:236.666667pt;}
.yae{bottom:237.306667pt;}
.yc1{bottom:237.786667pt;}
.yd1{bottom:238.746667pt;}
.y2b{bottom:239.066667pt;}
.y8a{bottom:250.466667pt;}
.yad{bottom:255.746667pt;}
.y46{bottom:257.506667pt;}
.y3e{bottom:259.906667pt;}
.y72{bottom:263.106667pt;}
.ycc{bottom:264.066667pt;}
.y6b{bottom:266.306667pt;}
.y89{bottom:268.866667pt;}
.y102{bottom:271.266667pt;}
.yfb{bottom:273.186667pt;}
.y59{bottom:273.506667pt;}
.yac{bottom:274.146667pt;}
.yc0{bottom:274.466667pt;}
.y5d{bottom:274.786667pt;}
.y2a{bottom:275.906667pt;}
.y88{bottom:287.266667pt;}
.yab{bottom:292.546667pt;}
.yfa{bottom:293.026667pt;}
.y45{bottom:294.306667pt;}
.y71{bottom:299.906667pt;}
.ycb{bottom:300.866667pt;}
.y6a{bottom:303.106667pt;}
.y87{bottom:305.666667pt;}
.y101{bottom:308.066667pt;}
.yc8{bottom:308.706667pt;}
.y58{bottom:310.306667pt;}
.ybf{bottom:311.266667pt;}
.yaa{bottom:312.066667pt;}
.y29{bottom:312.706667pt;}
.yf9{bottom:312.866667pt;}
.y3d{bottom:321.186667pt;}
.y7f{bottom:324.866667pt;}
.ya9{bottom:330.466667pt;}
.y15{bottom:331.106667pt;}
.yf8{bottom:332.706667pt;}
.y70{bottom:332.866667pt;}
.yca{bottom:337.666667pt;}
.y69{bottom:339.906667pt;}
.y82{bottom:343.266667pt;}
.y100{bottom:344.866667pt;}
.y57{bottom:347.106667pt;}
.ybe{bottom:348.066667pt;}
.ya8{bottom:348.866667pt;}
.yd3{bottom:349.186667pt;}
.y28{bottom:349.506667pt;}
.yf7{bottom:352.546667pt;}
.ye0{bottom:354.466667pt;}
.yc7{bottom:358.786667pt;}
.y81{bottom:361.506667pt;}
.ya7{bottom:367.266667pt;}
.y14{bottom:367.906667pt;}
.yf6{bottom:372.546667pt;}
.y68{bottom:376.706667pt;}
.y7a{bottom:380.706667pt;}
.yff{bottom:381.666667pt;}
.y3b{bottom:382.493333pt;}
.yc9{bottom:383.426667pt;}
.y56{bottom:383.906667pt;}
.ydf{bottom:384.066667pt;}
.ybd{bottom:384.866667pt;}
.ya6{bottom:385.666667pt;}
.y27{bottom:386.306667pt;}
.yf5{bottom:392.386667pt;}
.yc6{bottom:396.866667pt;}
.y13{bottom:404.706667pt;}
.y67{bottom:413.506667pt;}
.yde{bottom:414.626667pt;}
.ybc{bottom:417.826667pt;}
.yfe{bottom:418.466667pt;}
.y55{bottom:420.706667pt;}
.ya5{bottom:422.146667pt;}
.yf4{bottom:422.466667pt;}
.y26{bottom:423.106667pt;}
.ydd{bottom:434.466667pt;}
.y79{bottom:440.386667pt;}
.y12{bottom:441.506667pt;}
.yc5{bottom:443.746667pt;}
.y37{bottom:444.573333pt;}
.yf3{bottom:449.666667pt;}
.y66{bottom:450.306667pt;}
.ydc{bottom:454.306667pt;}
.yfd{bottom:455.266667pt;}
.y54{bottom:457.506667pt;}
.y78{bottom:458.786667pt;}
.ya4{bottom:459.266667pt;}
.y25{bottom:459.906667pt;}
.ydb{bottom:474.146667pt;}
.y77{bottom:477.186667pt;}
.y11{bottom:478.306667pt;}
.y65{bottom:487.106667pt;}
.yfc{bottom:487.746667pt;}
.yda{bottom:493.986667pt;}
.y53{bottom:494.306667pt;}
.y76{bottom:495.586667pt;}
.ya3{bottom:496.066667pt;}
.y24{bottom:496.706667pt;}
.y75{bottom:514.013333pt;}
.y10{bottom:515.133333pt;}
.y64{bottom:523.933333pt;}
.y52{bottom:531.133333pt;}
.ya2{bottom:532.893333pt;}
.y23{bottom:533.533333pt;}
.yd9{bottom:533.853333pt;}
.yf{bottom:551.933333pt;}
.yd8{bottom:553.693333pt;}
.y63{bottom:560.733333pt;}
.y51{bottom:567.933333pt;}
.ya1{bottom:569.693333pt;}
.yd2{bottom:570.013333pt;}
.y22{bottom:570.333333pt;}
.y36{bottom:572.773333pt;}
.yd7{bottom:584.413333pt;}
.ye{bottom:588.733333pt;}
.y62{bottom:597.533333pt;}
.y50{bottom:604.733333pt;}
.ya0{bottom:606.493333pt;}
.y21{bottom:607.133333pt;}
.y35{bottom:609.573333pt;}
.yeb{bottom:609.853333pt;}
.yd6{bottom:610.333333pt;}
.y44{bottom:625.533333pt;}
.yd{bottom:631.613333pt;}
.y61{bottom:634.173333pt;}
.y4f{bottom:641.533333pt;}
.y9f{bottom:643.293333pt;}
.y20{bottom:643.933333pt;}
.y34{bottom:646.373333pt;}
.yea{bottom:659.933333pt;}
.y43{bottom:662.333333pt;}
.yc{bottom:668.413333pt;}
.y60{bottom:670.013333pt;}
.y5f{bottom:676.893333pt;}
.y4e{bottom:678.333333pt;}
.y9e{bottom:680.093333pt;}
.y1f{bottom:680.733333pt;}
.y33{bottom:683.173333pt;}
.y42{bottom:699.133333pt;}
.yb{bottom:705.213333pt;}
.ye9{bottom:710.333333pt;}
.ybb{bottom:714.173333pt;}
.y4d{bottom:715.133333pt;}
.y9d{bottom:716.893333pt;}
.y1e{bottom:717.533333pt;}
.yba{bottom:729.373333pt;}
.y41{bottom:735.933333pt;}
.ya{bottom:742.013333pt;}
.ye8{bottom:747.133333pt;}
.yb9{bottom:747.773333pt;}
.y4c{bottom:751.933333pt;}
.y9c{bottom:753.733333pt;}
.y1d{bottom:754.373333pt;}
.yb8{bottom:766.213333pt;}
.y32{bottom:766.560000pt;}
.y9{bottom:772.773333pt;}
.yb7{bottom:784.613333pt;}
.y4b{bottom:790.053333pt;}
.y9b{bottom:790.533333pt;}
.y1c{bottom:791.173333pt;}
.ye7{bottom:797.413333pt;}
.yb6{bottom:803.013333pt;}
.y8{bottom:809.573333pt;}
.yb5{bottom:822.213333pt;}
.y9a{bottom:827.333333pt;}
.y1b{bottom:827.973333pt;}
.ye6{bottom:834.053333pt;}
.yb4{bottom:841.253333pt;}
.y7{bottom:846.373333pt;}
.y99{bottom:864.133333pt;}
.y1a{bottom:864.773333pt;}
.yf2{bottom:868.453333pt;}
.yb3{bottom:882.533333pt;}
.y6{bottom:883.173333pt;}
.yf1{bottom:884.133333pt;}
.ye5{bottom:884.293333pt;}
.y108{bottom:899.013333pt;}
.y98{bottom:900.933333pt;}
.y19{bottom:901.573333pt;}
.yf0{bottom:902.533333pt;}
.y107{bottom:918.853333pt;}
.y97{bottom:919.333333pt;}
.y31{bottom:919.973333pt;}
.ye4{bottom:920.773333pt;}
.yef{bottom:920.933333pt;}
.y5{bottom:923.333333pt;}
.y96{bottom:937.733333pt;}
.y18{bottom:938.373333pt;}
.y106{bottom:939.813333pt;}
.yee{bottom:939.973333pt;}
.yb2{bottom:955.813333pt;}
.y95{bottom:956.133333pt;}
.y40{bottom:956.773333pt;}
.ye3{bottom:957.573333pt;}
.y105{bottom:960.933333pt;}
.y4{bottom:966.373333pt;}
.y94{bottom:971.333333pt;}
.y17{bottom:975.173333pt;}
.yed{bottom:978.853333pt;}
.y104{bottom:981.893333pt;}
.y93{bottom:989.733333pt;}
.ye2{bottom:992.133333pt;}
.y3f{bottom:993.573333pt;}
.y92{bottom:1008.160000pt;}
.y3{bottom:1009.280000pt;}
.y16{bottom:1011.680000pt;}
.y2f{bottom:1012.000000pt;}
.yd5{bottom:1013.120000pt;}
.yec{bottom:1013.440000pt;}
.ye1{bottom:1013.600000pt;}
.yd4{bottom:1061.440000pt;}
.y1{bottom:1095.360000pt;}
.h16{height:18.240000pt;}
.h15{height:18.400000pt;}
.h18{height:18.432000pt;}
.h19{height:36.800000pt;}
.h3{height:40.163750pt;}
.h1b{height:40.796250pt;}
.h6{height:42.084375pt;}
.h1c{height:43.718750pt;}
.h2{height:50.062500pt;}
.he{height:52.134375pt;}
.h14{height:55.040000pt;}
.h13{height:55.200000pt;}
.h1a{height:57.375000pt;}
.hf{height:61.280000pt;}
.h10{height:61.312000pt;}
.ha{height:62.781250pt;}
.h7{height:62.812500pt;}
.h9{height:64.500000pt;}
.h1d{height:65.781915pt;}
.h5{height:66.404375pt;}
.h4{height:75.465000pt;}
.h8{height:78.097500pt;}
.h11{height:82.192812pt;}
.hd{height:92.000000pt;}
.h12{height:92.926250pt;}
.h17{height:220.826667pt;}
.hb{height:793.760000pt;}
.hc{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w29{width:45.152000pt;}
.w28{width:47.200000pt;}
.w1c{width:47.360000pt;}
.w2c{width:47.552000pt;}
.w2b{width:49.120000pt;}
.wf{width:50.432000pt;}
.we{width:51.680000pt;}
.w10{width:52.320000pt;}
.w17{width:52.672000pt;}
.w19{width:56.320000pt;}
.w2a{width:56.800000pt;}
.w11{width:58.080000pt;}
.w1f{width:58.400000pt;}
.w27{width:59.520000pt;}
.w21{width:60.640000pt;}
.wa{width:60.960000pt;}
.w12{width:69.600000pt;}
.w13{width:69.792000pt;}
.w18{width:71.200000pt;}
.wd{width:71.520000pt;}
.wb{width:71.840000pt;}
.w16{width:75.840000pt;}
.w30{width:80.672000pt;}
.w2e{width:82.272000pt;}
.w20{width:83.392000pt;}
.w1a{width:83.712000pt;}
.w8{width:84.032000pt;}
.w2f{width:84.320000pt;}
.w1e{width:84.992000pt;}
.w1b{width:88.480000pt;}
.wc{width:91.392000pt;}
.w26{width:96.672000pt;}
.w25{width:101.952000pt;}
.w24{width:106.720000pt;}
.w15{width:108.672000pt;}
.w22{width:115.872000pt;}
.w1d{width:129.920000pt;}
.w14{width:135.680000pt;}
.w9{width:140.826667pt;}
.w23{width:175.226667pt;}
.w2d{width:291.226667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w7{width:1122.559967pt;}
.w6{width:1122.559983pt;}
.w4{width:1122.560000pt;}
.w5{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x26{left:7.232000pt;}
.x15{left:8.320000pt;}
.x10{left:9.632000pt;}
.x23{left:10.880000pt;}
.x1c{left:11.840000pt;}
.x21{left:13.600000pt;}
.x1e{left:14.880000pt;}
.x27{left:17.760000pt;}
.x11{left:19.712000pt;}
.x16{left:21.280000pt;}
.x1a{left:23.040000pt;}
.x50{left:24.000000pt;}
.x18{left:25.120000pt;}
.x51{left:26.400000pt;}
.x28{left:28.160000pt;}
.x34{left:31.200000pt;}
.x38{left:35.520000pt;}
.x13{left:37.280000pt;}
.x2f{left:38.760000pt;}
.x2d{left:40.320000pt;}
.x37{left:41.800000pt;}
.x36{left:48.520000pt;}
.xc{left:49.439976pt;}
.x7{left:56.960000pt;}
.x3{left:64.480000pt;}
.x9{left:71.999988pt;}
.x4c{left:85.274667pt;}
.xf{left:88.800000pt;}
.x6{left:96.032000pt;}
.x4{left:101.632000pt;}
.x4b{left:106.272000pt;}
.x49{left:113.471988pt;}
.xa{left:120.031988pt;}
.x39{left:130.272000pt;}
.x4a{left:137.466655pt;}
.xb{left:144.026655pt;}
.x3f{left:156.666667pt;}
.x12{left:172.826667pt;}
.x35{left:177.146667pt;}
.x2e{left:224.506667pt;}
.x8{left:227.866655pt;}
.x3a{left:260.186667pt;}
.x2a{left:267.586655pt;}
.x14{left:313.666667pt;}
.x2b{left:318.146655pt;}
.x40{left:331.906667pt;}
.x30{left:333.186667pt;}
.x47{left:335.266655pt;}
.x5{left:340.066667pt;}
.x3b{left:345.186667pt;}
.x46{left:360.706655pt;}
.x17{left:374.626667pt;}
.x29{left:389.506655pt;}
.x43{left:391.426667pt;}
.x2{left:393.186667pt;}
.x4d{left:397.506667pt;}
.x3c{left:403.586667pt;}
.x1{left:408.866667pt;}
.x41{left:438.626667pt;}
.x19{left:446.466667pt;}
.x31{left:461.693333pt;}
.x4e{left:479.773333pt;}
.x44{left:483.773333pt;}
.x3d{left:486.973333pt;}
.x32{left:532.893333pt;}
.x1b{left:537.853333pt;}
.x42{left:540.573333pt;}
.x3e{left:547.613333pt;}
.xd{left:556.733317pt;}
.xe{left:557.693317pt;}
.x4f{left:564.093333pt;}
.x2c{left:579.133322pt;}
.x33{left:589.213333pt;}
.x48{left:601.373322pt;}
.x1d{left:609.373333pt;}
.x1f{left:661.053333pt;}
.x45{left:663.173322pt;}
.x52{left:680.453322pt;}
.x20{left:711.493333pt;}
.x22{left:763.813333pt;}
.x24{left:821.893333pt;}
.x25{left:891.493333pt;}
}




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