
    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_4ebaab88a8dee2f78c9a23b6.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_bfb24ca0247dbf0959b19ddc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_dc2f6ecb54418376191776ae.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_233ad4f4c00da594814925eb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_2a1939c56ff98f5f0c75419d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.983398;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_65b8ec65f326b921c19e7054.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_10d7045418f7c4a2f1c32c31.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d5436b21fd4ae010272a9510.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.745117;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_4c5628316c888517c1a4ec87.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.962402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c8786243de1a6a1ed0566502.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.854004;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_116367e572f181ee21b5bdf3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.854004;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_4ed908b2d521baa5f0db2dbb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.690918;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;}
.m9{transform:matrix(0.000000,-0.249237,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249237,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249237,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.236521,0.237245,0.078833,0,0);-ms-transform:matrix(0.000000,-0.236521,0.237245,0.078833,0,0);-webkit-transform:matrix(0.000000,-0.236521,0.237245,0.078833,0,0);}
.m6{transform:matrix(0.000000,-0.249237,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249237,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249237,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.236521,0.237245,0.078833,0,0);-ms-transform:matrix(0.000000,-0.236521,0.237245,0.078833,0,0);-webkit-transform:matrix(0.000000,-0.236521,0.237245,0.078833,0,0);}
.m3{transform:matrix(0.000000,-0.249237,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249237,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249237,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.236521,0.237245,0.078833,0,0);-ms-transform:matrix(0.000000,-0.236521,0.237245,0.078833,0,0);-webkit-transform:matrix(0.000000,-0.236521,0.237245,0.078833,0,0);}
.m4{transform:matrix(0.237826,0.000000,-0.079268,0.237101,0,0);-ms-transform:matrix(0.237826,0.000000,-0.079268,0.237101,0,0);-webkit-transform:matrix(0.237826,0.000000,-0.079268,0.237101,0,0);}
.m7{transform:matrix(0.237826,0.000000,-0.079268,0.237101,0,0);-ms-transform:matrix(0.237826,0.000000,-0.079268,0.237101,0,0);-webkit-transform:matrix(0.237826,0.000000,-0.079268,0.237101,0,0);}
.ma{transform:matrix(0.237826,0.000000,-0.079267,0.237101,0,0);-ms-transform:matrix(0.237826,0.000000,-0.079267,0.237101,0,0);-webkit-transform:matrix(0.237826,0.000000,-0.079267,0.237101,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250765,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.v7{vertical-align:-165.300000px;}
.v8{vertical-align:-72.000000px;}
.v2{vertical-align:-29.489754px;}
.v5{vertical-align:-13.980000px;}
.v6{vertical-align:-10.500000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:29.519243px;}
.v4{vertical-align:68.100000px;}
.v1{vertical-align:72.000000px;}
.ls27{letter-spacing:-0.396000px;}
.ls1d{letter-spacing:-0.353400px;}
.ls18{letter-spacing:-0.348000px;}
.ls20{letter-spacing:-0.310200px;}
.ls22{letter-spacing:-0.229037px;}
.ls23{letter-spacing:-0.199547px;}
.ls1c{letter-spacing:-0.192666px;}
.ls26{letter-spacing:-0.186000px;}
.ls19{letter-spacing:-0.180000px;}
.ls24{letter-spacing:-0.144070px;}
.ls1e{letter-spacing:-0.073800px;}
.ls16{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.025920px;}
.ls2{letter-spacing:0.047520px;}
.ls1a{letter-spacing:0.060600px;}
.ls13{letter-spacing:0.096923px;}
.ls0{letter-spacing:0.119520px;}
.ls3{letter-spacing:0.121800px;}
.ls1b{letter-spacing:0.139200px;}
.lsd{letter-spacing:0.174960px;}
.ls25{letter-spacing:0.191683px;}
.ls6{letter-spacing:0.193649px;}
.ls8{letter-spacing:0.221247px;}
.ls4{letter-spacing:0.241680px;}
.ls15{letter-spacing:0.321120px;}
.ls17{letter-spacing:0.360600px;}
.ls1{letter-spacing:0.366600px;}
.ls1f{letter-spacing:0.417000px;}
.lsb{letter-spacing:0.567360px;}
.ls9{letter-spacing:0.633600px;}
.ls7{letter-spacing:0.708963px;}
.ls14{letter-spacing:0.738453px;}
.lsc{letter-spacing:1.078560px;}
.lsa{letter-spacing:102.153600px;}
.ls12{letter-spacing:163.816485px;}
.ls11{letter-spacing:166.668960px;}
.ls10{letter-spacing:267.030623px;}
.ls5{letter-spacing:308.316278px;}
.lse{letter-spacing:676.628160px;}
.lsf{letter-spacing:1362.582960px;}
.sc_{text-shadow:none;}
.sc6{text-shadow:-0.015em 0 rgb(0,153,0),0 0.015em rgb(0,153,0),0.015em 0 rgb(0,153,0),0 -0.015em  rgb(0,153,0);}
.sc4{text-shadow:-0.015em 0 rgb(96,137,251),0 0.015em rgb(96,137,251),0.015em 0 rgb(96,137,251),0 -0.015em  rgb(96,137,251);}
.sc3{text-shadow:-0.015em 0 rgb(0,0,255),0 0.015em rgb(0,0,255),0.015em 0 rgb(0,0,255),0 -0.015em  rgb(0,0,255);}
.sc2{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.sc5{text-shadow:-0.015em 0 rgb(191,191,191),0 0.015em rgb(191,191,191),0.015em 0 rgb(191,191,191),0 -0.015em  rgb(191,191,191);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc6{-webkit-text-stroke:0.015em rgb(0,153,0);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(96,137,251);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(0,0,255);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc5{-webkit-text-stroke:0.015em rgb(191,191,191);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws18{word-spacing:-73.070544px;}
.ws2{word-spacing:-67.854240px;}
.ws1{word-spacing:-54.546360px;}
.ws4{word-spacing:-54.324960px;}
.ws5{word-spacing:-54.307560px;}
.wsd{word-spacing:-54.218304px;}
.ws0{word-spacing:-54.185760px;}
.ws14{word-spacing:-47.890868px;}
.ws17{word-spacing:-35.779859px;}
.wsa{word-spacing:-35.588176px;}
.ws9{word-spacing:-34.112508px;}
.ws7{word-spacing:-30.177396px;}
.wsc{word-spacing:-20.723457px;}
.wsb{word-spacing:-20.502211px;}
.wsf{word-spacing:-0.656760px;}
.wse{word-spacing:-0.239760px;}
.ws11{word-spacing:-0.192240px;}
.ws19{word-spacing:0.000000px;}
.ws15{word-spacing:73.859270px;}
.ws3{word-spacing:114.975000px;}
.ws8{word-spacing:124.980348px;}
.ws13{word-spacing:171.593818px;}
.ws12{word-spacing:207.155984px;}
.ws6{word-spacing:248.461299px;}
.ws16{word-spacing:345.020621px;}
.ws10{word-spacing:2688.597840px;}
._11{margin-left:-980.271840px;}
._1b{margin-left:-39.851520px;}
._1c{margin-left:-31.752000px;}
._19{margin-left:-29.172960px;}
._1d{margin-left:-24.290640px;}
._9{margin-left:-21.625680px;}
._b{margin-left:-19.575600px;}
._1a{margin-left:-15.294240px;}
._a{margin-left:-11.097120px;}
._2{margin-left:-9.110880px;}
._5{margin-left:-6.659280px;}
._6{margin-left:-5.607360px;}
._1{margin-left:-4.555440px;}
._4{margin-left:-2.877120px;}
._0{margin-left:-1.438560px;}
._3{width:1.126800px;}
._7{width:2.779920px;}
._8{width:5.870880px;}
._f{width:209.416649px;}
._e{width:244.236656px;}
._10{width:251.296700px;}
._18{width:271.335819px;}
._15{width:272.556649px;}
._d{width:278.454600px;}
._c{width:322.119095px;}
._14{width:369.890058px;}
._13{width:403.510815px;}
._17{width:413.507841px;}
._12{width:437.718929px;}
._16{width:447.745445px;}
.fc1{color:rgb(255,255,255);}
.fc2{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fc4{color:rgb(125,219,174);}
.fce{color:rgb(0,153,0);}
.fcc{color:rgb(192,79,21);}
.fcf{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(96,137,251);}
.fcd{color:rgb(191,191,191);}
.fc6{color:rgb(217,150,148);}
.fc8{color:rgb(162,250,170);}
.fc9{color:rgb(158,213,253);}
.fc7{color:rgb(250,192,144);}
.fca{color:rgb(224,143,85);}
.fcb{color:rgb(166,228,155);}
.fs13{font-size:73.748959px;}
.fsf{font-size:97.930557px;}
.fs8{font-size:108.551783px;}
.fse{font-size:113.270143px;}
.fs9{font-size:122.706865px;}
.fs12{font-size:128.015020px;}
.fs11{font-size:128.406936px;}
.fs10{font-size:135.310195px;}
.fs1b{font-size:135.310199px;}
.fs20{font-size:135.310204px;}
.fs1f{font-size:147.478258px;}
.fs1d{font-size:147.929760px;}
.fs1e{font-size:155.501817px;}
.fs1c{font-size:155.882592px;}
.fs2{font-size:159.840000px;}
.fs14{font-size:159.984000px;}
.fsd{font-size:172.269310px;}
.fsb{font-size:172.796710px;}
.fs1a{font-size:181.641634px;}
.fsc{font-size:181.641640px;}
.fsa{font-size:182.086398px;}
.fs19{font-size:182.086404px;}
.fs17{font-size:192.240000px;}
.fs6{font-size:203.760000px;}
.fs18{font-size:216.000000px;}
.fs0{font-size:239.760000px;}
.fs1{font-size:239.904000px;}
.fs16{font-size:264.240000px;}
.fs15{font-size:264.384000px;}
.fs5{font-size:300.240000px;}
.fs22{font-size:324.000000px;}
.fs21{font-size:324.144000px;}
.fs7{font-size:409.680000px;}
.fs3{font-size:509.760000px;}
.fs4{font-size:509.904000px;}
.y26{bottom:-176.370000px;}
.y0{bottom:0.000000px;}
.y63{bottom:12.815018px;}
.y31{bottom:17.686971px;}
.y78{bottom:22.552781px;}
.y21{bottom:38.052000px;}
.y25{bottom:58.392000px;}
.y8b{bottom:65.592000px;}
.y2b{bottom:74.908889px;}
.y20{bottom:99.252000px;}
.y2c{bottom:124.311599px;}
.y24{bottom:130.392000px;}
.y8a{bottom:137.592000px;}
.y36{bottom:159.121795px;}
.y1f{bottom:160.455000px;}
.y7c{bottom:171.360043px;}
.y67{bottom:179.617174px;}
.y35{bottom:193.629722px;}
.y23{bottom:202.395000px;}
.y7b{bottom:208.669496px;}
.y89{bottom:209.595000px;}
.y66{bottom:214.125101px;}
.y1e{bottom:221.655000px;}
.y34{bottom:228.140106px;}
.y7a{bottom:245.986322px;}
.y65{bottom:248.640400px;}
.y33{bottom:262.648033px;}
.y22{bottom:274.395000px;}
.y1d{bottom:282.855000px;}
.y64{bottom:283.150784px;}
.y79{bottom:283.298233px;}
.y32{bottom:297.158417px;}
.y2d{bottom:323.409212px;}
.y5f{bottom:325.326046px;}
.y1c{bottom:350.355000px;}
.y61{bottom:354.675724px;}
.y81{bottom:360.283692px;}
.y70{bottom:361.610731px;}
.y3b{bottom:365.444399px;}
.y76{bottom:370.605106px;}
.y62{bottom:381.073968px;}
.y2f{bottom:388.748676px;}
.y77{bottom:393.172139px;}
.y28{bottom:400.397129px;}
.y5c{bottom:401.724168px;}
.y73{bottom:406.295080px;}
.y30{bottom:415.146921px;}
.y5d{bottom:421.044872px;}
.y74{bottom:427.237720px;}
.y29{bottom:430.776490px;}
.y38{bottom:461.748104px;}
.y27{bottom:473.152258px;}
.y37{bottom:491.980016px;}
.y6e{bottom:511.745524px;}
.y39{bottom:513.957255px;}
.y6a{bottom:515.284294px;}
.y2e{bottom:522.361835px;}
.y7f{bottom:525.315725px;}
.y75{bottom:526.052969px;}
.y60{bottom:526.347867px;}
.y2a{bottom:528.117252px;}
.y6f{bottom:531.361125px;}
.y3a{bottom:533.572856px;}
.y5e{bottom:534.457549px;}
.y7e{bottom:543.599372px;}
.y80{bottom:544.926411px;}
.y6d{bottom:548.022835px;}
.y3d{bottom:554.223056px;}
.y69{bottom:557.909275px;}
.y83{bottom:577.519961px;}
.y6c{bottom:578.257205px;}
.y7d{bottom:586.224354px;}
.y3c{bottom:596.840665px;}
.y68{bottom:600.526884px;}
.y82{bottom:607.751874px;}
.y6b{bottom:608.496490px;}
.y84{bottom:851.250000px;}
.y3f{bottom:929.850000px;}
.y72{bottom:930.570000px;}
.y85{bottom:974.805000px;}
.y86{bottom:1006.920000px;}
.y71{bottom:1043.490000px;}
.y3e{bottom:1129.215000px;}
.y15{bottom:1247.220000px;}
.y14{bottom:1329.660000px;}
.y13{bottom:1412.100000px;}
.y47{bottom:1472.040000px;}
.y12{bottom:1494.720000px;}
.y11{bottom:1577.160000px;}
.y10{bottom:1659.600000px;}
.yf{bottom:1742.220000px;}
.ye{bottom:1824.660000px;}
.y59{bottom:1881.750000px;}
.yd{bottom:1907.130000px;}
.y41{bottom:1971.825000px;}
.y58{bottom:1977.270000px;}
.yc{bottom:1989.750000px;}
.y42{bottom:2034.150000px;}
.y44{bottom:2034.975000px;}
.y5b{bottom:2038.320000px;}
.yb{bottom:2072.190000px;}
.y40{bottom:2091.135000px;}
.y43{bottom:2115.210000px;}
.y5a{bottom:2142.435000px;}
.ya{bottom:2154.630000px;}
.y57{bottom:2174.910000px;}
.y9{bottom:2237.250000px;}
.y56{bottom:2275.170000px;}
.y8{bottom:2319.690000px;}
.y4c{bottom:2367.180000px;}
.y49{bottom:2375.715000px;}
.y7{bottom:2402.130000px;}
.y8c{bottom:2403.390000px;}
.y6{bottom:2484.750000px;}
.y5{bottom:2567.190000px;}
.y4{bottom:2649.630000px;}
.y4a{bottom:2669.760000px;}
.y55{bottom:2678.145000px;}
.y51{bottom:2680.125000px;}
.y53{bottom:2695.245000px;}
.y3{bottom:2732.295000px;}
.y45{bottom:2764.515000px;}
.y50{bottom:2780.355000px;}
.y54{bottom:2780.925000px;}
.y4b{bottom:2807.175000px;}
.y2{bottom:2814.735000px;}
.y52{bottom:2820.165000px;}
.y1{bottom:2897.175000px;}
.y46{bottom:2923.740000px;}
.y48{bottom:2945.805000px;}
.y88{bottom:3102.330000px;}
.y4f{bottom:3130.020000px;}
.y87{bottom:3199.575000px;}
.y4e{bottom:3214.185000px;}
.y4d{bottom:3227.790000px;}
.y1b{bottom:3340.290000px;}
.y1a{bottom:3493.335000px;}
.y19{bottom:3646.335000px;}
.y18{bottom:3799.335000px;}
.y17{bottom:3952.335000px;}
.y16{bottom:4105.335000px;}
.h13{height:71.343941px;}
.hc{height:79.081670px;}
.h17{height:81.625852px;}
.h12{height:82.519069px;}
.hd{height:89.393868px;}
.h16{height:93.260942px;}
.h15{height:93.483761px;}
.h14{height:93.950731px;}
.h23{height:93.950734px;}
.h28{height:93.950737px;}
.h27{height:107.440215px;}
.h25{height:107.696910px;}
.h26{height:107.970500px;}
.h24{height:108.234885px;}
.h11{height:125.500884px;}
.hf{height:125.800730px;}
.h22{height:126.120314px;}
.h10{height:126.120319px;}
.he{height:126.429130px;}
.h21{height:126.429134px;}
.h1f{height:133.479141px;}
.h9{height:163.963125px;}
.h29{height:173.496445px;}
.h1e{height:191.207461px;}
.h19{height:202.648711px;}
.h1c{height:202.770422px;}
.h1b{height:207.099141px;}
.h20{height:214.839844px;}
.h1d{height:223.339570px;}
.h1a{height:223.461281px;}
.h3{height:238.472227px;}
.h5{height:238.615453px;}
.h4{height:245.496445px;}
.h2a{height:245.643891px;}
.h2c{height:260.718750px;}
.h2b{height:260.834625px;}
.h8{height:298.627383px;}
.h18{height:313.743891px;}
.ha{height:407.479570px;}
.h6{height:521.956406px;}
.h7{height:522.103852px;}
.hb{height:705.517742px;}
.h1{height:4251.750000px;}
.h2{height:4251.959634px;}
.h0{height:4251.960000px;}
.w3{width:1007.347901px;}
.w4{width:1012.667681px;}
.w5{width:1012.667695px;}
.w1{width:2976.000000px;}
.w2{width:2976.299956px;}
.w0{width:2976.300000px;}
.x0{left:0.000000px;}
.x2{left:32.075956px;}
.x4e{left:40.967956px;}
.x4{left:46.835956px;}
.x43{left:53.840605px;}
.x1{left:54.863956px;}
.x9{left:69.678017px;}
.x33{left:74.997783px;}
.x35{left:76.624658px;}
.xa{left:79.883130px;}
.x34{left:85.202872px;}
.xb{left:108.435259px;}
.x5{left:134.711956px;}
.x13{left:146.483956px;}
.x42{left:153.988815px;}
.x32{left:180.610842px;}
.x8{left:214.785349px;}
.x38{left:252.946331px;}
.x46{left:262.707724px;}
.x14{left:278.564956px;}
.xe{left:434.752356px;}
.x48{left:477.199904px;}
.x41{left:487.257139px;}
.x3b{left:501.011881px;}
.xc{left:507.824905px;}
.x36{left:511.813581px;}
.x44{left:514.475795px;}
.x31{left:518.912743px;}
.xd{left:531.488933px;}
.x37{left:535.477610px;}
.x10{left:539.327643px;}
.x45{left:544.055831px;}
.x7{left:559.153662px;}
.x40{left:591.095395px;}
.x30{left:597.312166px;}
.x2a{left:627.629956px;}
.x6{left:651.751499px;}
.x3a{left:663.578817px;}
.x4a{left:672.600672px;}
.x2b{left:675.329956px;}
.x49{left:722.307515px;}
.x3c{left:729.702551px;}
.x12{left:735.475326px;}
.x11{left:773.342702px;}
.x39{left:779.845614px;}
.x29{left:786.989956px;}
.x47{left:789.311174px;}
.xf{left:811.508344px;}
.x1f{left:934.169956px;}
.x2f{left:964.695014px;}
.x20{left:970.949956px;}
.x3d{left:987.659956px;}
.x1e{left:1081.469956px;}
.x18{left:1146.419956px;}
.x1c{left:1149.509956px;}
.x3{left:1278.644956px;}
.x17{left:1373.189956px;}
.x3e{left:1374.764956px;}
.x19{left:1472.939956px;}
.x2c{left:1591.409956px;}
.x2d{left:1617.509956px;}
.x3f{left:1934.715000px;}
.x25{left:1950.119956px;}
.x21{left:1971.899956px;}
.x26{left:1979.609956px;}
.x15{left:2042.099956px;}
.x23{left:2075.474956px;}
.x24{left:2131.844956px;}
.x4d{left:2147.789956px;}
.x4c{left:2241.644956px;}
.x2e{left:2267.429956px;}
.x27{left:2302.949956px;}
.x4f{left:2307.629956px;}
.x28{left:2364.869956px;}
.x16{left:2372.654956px;}
.x4b{left:2430.284956px;}
.x22{left:2457.539956px;}
.x1b{left:2465.249956px;}
.x1a{left:2599.169956px;}
.x1d{left:2699.249956px;}
@media print{
.v7{vertical-align:-146.933333pt;}
.v8{vertical-align:-64.000000pt;}
.v2{vertical-align:-26.213114pt;}
.v5{vertical-align:-12.426667pt;}
.v6{vertical-align:-9.333333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:26.239327pt;}
.v4{vertical-align:60.533333pt;}
.v1{vertical-align:64.000000pt;}
.ls27{letter-spacing:-0.352000pt;}
.ls1d{letter-spacing:-0.314133pt;}
.ls18{letter-spacing:-0.309333pt;}
.ls20{letter-spacing:-0.275733pt;}
.ls22{letter-spacing:-0.203589pt;}
.ls23{letter-spacing:-0.177375pt;}
.ls1c{letter-spacing:-0.171259pt;}
.ls26{letter-spacing:-0.165333pt;}
.ls19{letter-spacing:-0.160000pt;}
.ls24{letter-spacing:-0.128062pt;}
.ls1e{letter-spacing:-0.065600pt;}
.ls16{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.023040pt;}
.ls2{letter-spacing:0.042240pt;}
.ls1a{letter-spacing:0.053867pt;}
.ls13{letter-spacing:0.086154pt;}
.ls0{letter-spacing:0.106240pt;}
.ls3{letter-spacing:0.108267pt;}
.ls1b{letter-spacing:0.123733pt;}
.lsd{letter-spacing:0.155520pt;}
.ls25{letter-spacing:0.170385pt;}
.ls6{letter-spacing:0.172133pt;}
.ls8{letter-spacing:0.196664pt;}
.ls4{letter-spacing:0.214827pt;}
.ls15{letter-spacing:0.285440pt;}
.ls17{letter-spacing:0.320533pt;}
.ls1{letter-spacing:0.325867pt;}
.ls1f{letter-spacing:0.370667pt;}
.lsb{letter-spacing:0.504320pt;}
.ls9{letter-spacing:0.563200pt;}
.ls7{letter-spacing:0.630189pt;}
.ls14{letter-spacing:0.656403pt;}
.lsc{letter-spacing:0.958720pt;}
.lsa{letter-spacing:90.803200pt;}
.ls12{letter-spacing:145.614654pt;}
.ls11{letter-spacing:148.150187pt;}
.ls10{letter-spacing:237.360554pt;}
.ls5{letter-spacing:274.058914pt;}
.lse{letter-spacing:601.447253pt;}
.lsf{letter-spacing:1211.184853pt;}
.ws18{word-spacing:-64.951595pt;}
.ws2{word-spacing:-60.314880pt;}
.ws1{word-spacing:-48.485653pt;}
.ws4{word-spacing:-48.288853pt;}
.ws5{word-spacing:-48.273387pt;}
.wsd{word-spacing:-48.194048pt;}
.ws0{word-spacing:-48.165120pt;}
.ws14{word-spacing:-42.569661pt;}
.ws17{word-spacing:-31.804319pt;}
.wsa{word-spacing:-31.633934pt;}
.ws9{word-spacing:-30.322230pt;}
.ws7{word-spacing:-26.824352pt;}
.wsc{word-spacing:-18.420851pt;}
.wsb{word-spacing:-18.224187pt;}
.wsf{word-spacing:-0.583787pt;}
.wse{word-spacing:-0.213120pt;}
.ws11{word-spacing:-0.170880pt;}
.ws19{word-spacing:0.000000pt;}
.ws15{word-spacing:65.652684pt;}
.ws3{word-spacing:102.200000pt;}
.ws8{word-spacing:111.093642pt;}
.ws13{word-spacing:152.527838pt;}
.ws12{word-spacing:184.138652pt;}
.ws6{word-spacing:220.854488pt;}
.ws16{word-spacing:306.684996pt;}
.ws10{word-spacing:2389.864747pt;}
._11{margin-left:-871.352747pt;}
._1b{margin-left:-35.423573pt;}
._1c{margin-left:-28.224000pt;}
._19{margin-left:-25.931520pt;}
._1d{margin-left:-21.591680pt;}
._9{margin-left:-19.222827pt;}
._b{margin-left:-17.400533pt;}
._1a{margin-left:-13.594880pt;}
._a{margin-left:-9.864107pt;}
._2{margin-left:-8.098560pt;}
._5{margin-left:-5.919360pt;}
._6{margin-left:-4.984320pt;}
._1{margin-left:-4.049280pt;}
._4{margin-left:-2.557440pt;}
._0{margin-left:-1.278720pt;}
._3{width:1.001600pt;}
._7{width:2.471040pt;}
._8{width:5.218560pt;}
._f{width:186.148132pt;}
._e{width:217.099249pt;}
._10{width:223.374845pt;}
._18{width:241.187395pt;}
._15{width:242.272577pt;}
._d{width:247.515200pt;}
._c{width:286.328084pt;}
._14{width:328.791162pt;}
._13{width:358.676280pt;}
._17{width:367.562525pt;}
._12{width:389.083492pt;}
._16{width:397.995951pt;}
.fs13{font-size:65.554630pt;}
.fsf{font-size:87.049384pt;}
.fs8{font-size:96.490474pt;}
.fse{font-size:100.684572pt;}
.fs9{font-size:109.072769pt;}
.fs12{font-size:113.791129pt;}
.fs11{font-size:114.139499pt;}
.fs10{font-size:120.275729pt;}
.fs1b{font-size:120.275733pt;}
.fs20{font-size:120.275737pt;}
.fs1f{font-size:131.091785pt;}
.fs1d{font-size:131.493120pt;}
.fs1e{font-size:138.223837pt;}
.fs1c{font-size:138.562304pt;}
.fs2{font-size:142.080000pt;}
.fs14{font-size:142.208000pt;}
.fsd{font-size:153.128276pt;}
.fsb{font-size:153.597075pt;}
.fs1a{font-size:161.459230pt;}
.fsc{font-size:161.459236pt;}
.fsa{font-size:161.854576pt;}
.fs19{font-size:161.854582pt;}
.fs17{font-size:170.880000pt;}
.fs6{font-size:181.120000pt;}
.fs18{font-size:192.000000pt;}
.fs0{font-size:213.120000pt;}
.fs1{font-size:213.248000pt;}
.fs16{font-size:234.880000pt;}
.fs15{font-size:235.008000pt;}
.fs5{font-size:266.880000pt;}
.fs22{font-size:288.000000pt;}
.fs21{font-size:288.128000pt;}
.fs7{font-size:364.160000pt;}
.fs3{font-size:453.120000pt;}
.fs4{font-size:453.248000pt;}
.y26{bottom:-156.773333pt;}
.y0{bottom:0.000000pt;}
.y63{bottom:11.391127pt;}
.y31{bottom:15.721752pt;}
.y78{bottom:20.046916pt;}
.y21{bottom:33.824000pt;}
.y25{bottom:51.904000pt;}
.y8b{bottom:58.304000pt;}
.y2b{bottom:66.585679pt;}
.y20{bottom:88.224000pt;}
.y2c{bottom:110.499199pt;}
.y24{bottom:115.904000pt;}
.y8a{bottom:122.304000pt;}
.y36{bottom:141.441596pt;}
.y1f{bottom:142.626667pt;}
.y7c{bottom:152.320038pt;}
.y67{bottom:159.659710pt;}
.y35{bottom:172.115308pt;}
.y23{bottom:179.906667pt;}
.y7b{bottom:185.483997pt;}
.y89{bottom:186.306667pt;}
.y66{bottom:190.333423pt;}
.y1e{bottom:197.026667pt;}
.y34{bottom:202.791205pt;}
.y7a{bottom:218.654508pt;}
.y65{bottom:221.013689pt;}
.y33{bottom:233.464918pt;}
.y22{bottom:243.906667pt;}
.y1d{bottom:251.426667pt;}
.y64{bottom:251.689586pt;}
.y79{bottom:251.820651pt;}
.y32{bottom:264.140815pt;}
.y2d{bottom:287.474855pt;}
.y5f{bottom:289.178708pt;}
.y1c{bottom:311.426667pt;}
.y61{bottom:315.267310pt;}
.y81{bottom:320.252170pt;}
.y70{bottom:321.431761pt;}
.y3b{bottom:324.839465pt;}
.y76{bottom:329.426760pt;}
.y62{bottom:338.732416pt;}
.y2f{bottom:345.554379pt;}
.y77{bottom:349.486346pt;}
.y28{bottom:355.908559pt;}
.y5c{bottom:357.088149pt;}
.y73{bottom:361.151182pt;}
.y30{bottom:369.019485pt;}
.y5d{bottom:374.262108pt;}
.y74{bottom:379.766862pt;}
.y29{bottom:382.912436pt;}
.y38{bottom:410.442759pt;}
.y27{bottom:420.579785pt;}
.y37{bottom:437.315570pt;}
.y6e{bottom:454.884910pt;}
.y39{bottom:456.850893pt;}
.y6a{bottom:458.030484pt;}
.y2e{bottom:464.321631pt;}
.y7f{bottom:466.947311pt;}
.y75{bottom:467.602639pt;}
.y60{bottom:467.864770pt;}
.y2a{bottom:469.437557pt;}
.y6f{bottom:472.321000pt;}
.y3a{bottom:474.286983pt;}
.y5e{bottom:475.073377pt;}
.y7e{bottom:483.199442pt;}
.y80{bottom:484.379032pt;}
.y6d{bottom:487.131409pt;}
.y3d{bottom:492.642717pt;}
.y69{bottom:495.919356pt;}
.y83{bottom:513.351077pt;}
.y6c{bottom:514.006405pt;}
.y7d{bottom:521.088314pt;}
.y3c{bottom:530.525036pt;}
.y68{bottom:533.801675pt;}
.y82{bottom:540.223888pt;}
.y6b{bottom:540.885769pt;}
.y84{bottom:756.666667pt;}
.y3f{bottom:826.533333pt;}
.y72{bottom:827.173333pt;}
.y85{bottom:866.493333pt;}
.y86{bottom:895.040000pt;}
.y71{bottom:927.546667pt;}
.y3e{bottom:1003.746667pt;}
.y15{bottom:1108.640000pt;}
.y14{bottom:1181.920000pt;}
.y13{bottom:1255.200000pt;}
.y47{bottom:1308.480000pt;}
.y12{bottom:1328.640000pt;}
.y11{bottom:1401.920000pt;}
.y10{bottom:1475.200000pt;}
.yf{bottom:1548.640000pt;}
.ye{bottom:1621.920000pt;}
.y59{bottom:1672.666667pt;}
.yd{bottom:1695.226667pt;}
.y41{bottom:1752.733333pt;}
.y58{bottom:1757.573333pt;}
.yc{bottom:1768.666667pt;}
.y42{bottom:1808.133333pt;}
.y44{bottom:1808.866667pt;}
.y5b{bottom:1811.840000pt;}
.yb{bottom:1841.946667pt;}
.y40{bottom:1858.786667pt;}
.y43{bottom:1880.186667pt;}
.y5a{bottom:1904.386667pt;}
.ya{bottom:1915.226667pt;}
.y57{bottom:1933.253333pt;}
.y9{bottom:1988.666667pt;}
.y56{bottom:2022.373333pt;}
.y8{bottom:2061.946667pt;}
.y4c{bottom:2104.160000pt;}
.y49{bottom:2111.746667pt;}
.y7{bottom:2135.226667pt;}
.y8c{bottom:2136.346667pt;}
.y6{bottom:2208.666667pt;}
.y5{bottom:2281.946667pt;}
.y4{bottom:2355.226667pt;}
.y4a{bottom:2373.120000pt;}
.y55{bottom:2380.573333pt;}
.y51{bottom:2382.333333pt;}
.y53{bottom:2395.773333pt;}
.y3{bottom:2428.706667pt;}
.y45{bottom:2457.346667pt;}
.y50{bottom:2471.426667pt;}
.y54{bottom:2471.933333pt;}
.y4b{bottom:2495.266667pt;}
.y2{bottom:2501.986667pt;}
.y52{bottom:2506.813333pt;}
.y1{bottom:2575.266667pt;}
.y46{bottom:2598.880000pt;}
.y48{bottom:2618.493333pt;}
.y88{bottom:2757.626667pt;}
.y4f{bottom:2782.240000pt;}
.y87{bottom:2844.066667pt;}
.y4e{bottom:2857.053333pt;}
.y4d{bottom:2869.146667pt;}
.y1b{bottom:2969.146667pt;}
.y1a{bottom:3105.186667pt;}
.y19{bottom:3241.186667pt;}
.y18{bottom:3377.186667pt;}
.y17{bottom:3513.186667pt;}
.y16{bottom:3649.186667pt;}
.h13{height:63.416836pt;}
.hc{height:70.294818pt;}
.h17{height:72.556313pt;}
.h12{height:73.350284pt;}
.hd{height:79.461216pt;}
.h16{height:82.898616pt;}
.h15{height:83.096676pt;}
.h14{height:83.511761pt;}
.h23{height:83.511764pt;}
.h28{height:83.511766pt;}
.h27{height:95.502413pt;}
.h25{height:95.730587pt;}
.h26{height:95.973778pt;}
.h24{height:96.208787pt;}
.h11{height:111.556342pt;}
.hf{height:111.822871pt;}
.h22{height:112.106946pt;}
.h10{height:112.106950pt;}
.he{height:112.381449pt;}
.h21{height:112.381453pt;}
.h1f{height:118.648125pt;}
.h9{height:145.745000pt;}
.h29{height:154.219062pt;}
.h1e{height:169.962187pt;}
.h19{height:180.132187pt;}
.h1c{height:180.240375pt;}
.h1b{height:184.088125pt;}
.h20{height:190.968750pt;}
.h1d{height:198.524062pt;}
.h1a{height:198.632250pt;}
.h3{height:211.975312pt;}
.h5{height:212.102625pt;}
.h4{height:218.219062pt;}
.h2a{height:218.350125pt;}
.h2c{height:231.750000pt;}
.h2b{height:231.853000pt;}
.h8{height:265.446562pt;}
.h18{height:278.883458pt;}
.ha{height:362.204063pt;}
.h6{height:463.961250pt;}
.h7{height:464.092312pt;}
.hb{height:627.126881pt;}
.h1{height:3779.333333pt;}
.h2{height:3779.519674pt;}
.h0{height:3779.520000pt;}
.w3{width:895.420357pt;}
.w4{width:900.149050pt;}
.w5{width:900.149062pt;}
.w1{width:2645.333333pt;}
.w2{width:2645.599961pt;}
.w0{width:2645.600000pt;}
.x0{left:0.000000pt;}
.x2{left:28.511961pt;}
.x4e{left:36.415961pt;}
.x4{left:41.631961pt;}
.x43{left:47.858316pt;}
.x1{left:48.767961pt;}
.x9{left:61.936015pt;}
.x33{left:66.664696pt;}
.x35{left:68.110807pt;}
.xa{left:71.007226pt;}
.x34{left:75.735886pt;}
.xb{left:96.386897pt;}
.x5{left:119.743961pt;}
.x13{left:130.207961pt;}
.x42{left:136.878947pt;}
.x32{left:160.542971pt;}
.x8{left:190.920310pt;}
.x38{left:224.841183pt;}
.x46{left:233.517977pt;}
.x14{left:247.613294pt;}
.xe{left:386.446539pt;}
.x48{left:424.177692pt;}
.x41{left:433.117457pt;}
.x3b{left:445.343894pt;}
.xc{left:451.399915pt;}
.x36{left:454.945406pt;}
.x44{left:457.311818pt;}
.x31{left:461.255772pt;}
.xd{left:472.434607pt;}
.x37{left:475.980098pt;}
.x10{left:479.402349pt;}
.x45{left:483.605183pt;}
.x7{left:497.025477pt;}
.x40{left:525.418129pt;}
.x30{left:530.944147pt;}
.x2a{left:557.893294pt;}
.x6{left:579.334666pt;}
.x3a{left:589.847838pt;}
.x4a{left:597.867264pt;}
.x2b{left:600.293294pt;}
.x49{left:642.051124pt;}
.x3c{left:648.624490pt;}
.x12{left:653.755845pt;}
.x11{left:687.415735pt;}
.x39{left:693.196102pt;}
.x29{left:699.546627pt;}
.x47{left:701.609933pt;}
.xf{left:721.340750pt;}
.x1f{left:830.373294pt;}
.x2f{left:857.506679pt;}
.x20{left:863.066627pt;}
.x3d{left:877.919961pt;}
.x1e{left:961.306627pt;}
.x18{left:1019.039961pt;}
.x1c{left:1021.786627pt;}
.x3{left:1136.573294pt;}
.x17{left:1220.613294pt;}
.x3e{left:1222.013294pt;}
.x19{left:1309.279961pt;}
.x2c{left:1414.586627pt;}
.x2d{left:1437.786627pt;}
.x3f{left:1719.746667pt;}
.x25{left:1733.439961pt;}
.x21{left:1752.799961pt;}
.x26{left:1759.653294pt;}
.x15{left:1815.199961pt;}
.x23{left:1844.866627pt;}
.x24{left:1894.973294pt;}
.x4d{left:1909.146627pt;}
.x4c{left:1992.573294pt;}
.x2e{left:2015.493294pt;}
.x27{left:2047.066627pt;}
.x4f{left:2051.226627pt;}
.x28{left:2102.106627pt;}
.x16{left:2109.026627pt;}
.x4b{left:2160.253294pt;}
.x22{left:2184.479961pt;}
.x1b{left:2191.333294pt;}
.x1a{left:2310.373294pt;}
.x1d{left:2399.333294pt;}
}




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