
    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_3da4d76454e3c045f0f445b6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_55b14390520614fc995e009c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.026367;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_830b8f0e3297b5459c6add8f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.979000;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_6fb12a5e52711c839018afa1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958496;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_d5c355c659e6bbbefafc44f2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.222168;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_0b018cdf3fe1171d99375190.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.881836;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_2741b19c6c8b9dbdbb631eff.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.098633;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_261806cac1dc6ceaf99371ad.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.704102;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_2bbe6b05af01ae5643dfc522.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_8e35e131eadee66ea7288f1d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.687988;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_b9af4d62e6f18100f0d07159.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.746000;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_5a3c139b4e0557a33f688957.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.967773;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_e81d5e10b2dd1f7de00fec83.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.967000;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_5e5e168a4e0d9e4641199bf6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.881836;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;}
.fff{font-family:sans-serif;visibility:hidden;}
.m4{transform:matrix(0.000000,-0.270180,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.270180,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.270180,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.271018,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.271018,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.271018,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.230612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230612,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.231327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231327,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-89.970000px;}
.v2{vertical-align:-51.534000px;}
.v9{vertical-align:-25.854000px;}
.va{vertical-align:-24.660000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:22.110000px;}
.v6{vertical-align:27.042000px;}
.v8{vertical-align:29.383630px;}
.vc{vertical-align:37.625020px;}
.vb{vertical-align:51.702000px;}
.v7{vertical-align:63.606000px;}
.v1{vertical-align:79.086000px;}
.v4{vertical-align:89.970000px;}
.ls19{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.003000px;}
.ls3{letter-spacing:0.058200px;}
.ls2{letter-spacing:0.110376px;}
.ls4{letter-spacing:0.568200px;}
.ls0{letter-spacing:0.681000px;}
.ls12{letter-spacing:0.985506px;}
.ls18{letter-spacing:2.722806px;}
.ls8{letter-spacing:6.173208px;}
.ls7{letter-spacing:10.479852px;}
.lsf{letter-spacing:11.117196px;}
.lsa{letter-spacing:11.795196px;}
.ls11{letter-spacing:15.365196px;}
.lsc{letter-spacing:15.371196px;}
.lsb{letter-spacing:19.491852px;}
.ls10{letter-spacing:19.665852px;}
.ls5{letter-spacing:26.422200px;}
.lsd{letter-spacing:28.329186px;}
.ls6{letter-spacing:29.013186px;}
.ls9{letter-spacing:29.539812px;}
.lse{letter-spacing:30.901812px;}
.ls17{letter-spacing:36.464292px;}
.ls15{letter-spacing:36.470292px;}
.ls16{letter-spacing:37.322292px;}
.ls13{letter-spacing:40.837908px;}
.ls14{letter-spacing:71.172132px;}
.sc_{text-shadow:none;}
.sc7{text-shadow:-0.015em 0 rgb(132,0,0),0 0.015em rgb(132,0,0),0.015em 0 rgb(132,0,0),0 -0.015em  rgb(132,0,0);}
.sc5{text-shadow:-0.015em 0 rgb(201,33,30),0 0.015em rgb(201,33,30),0.015em 0 rgb(201,33,30),0 -0.015em  rgb(201,33,30);}
.sc4{text-shadow:-0.015em 0 rgb(118,0,59),0 0.015em rgb(118,0,59),0.015em 0 rgb(118,0,59),0 -0.015em  rgb(118,0,59);}
.sc6{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc2{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);}
.sc1{text-shadow:-0.015em 0 rgb(192,192,192),0 0.015em rgb(192,192,192),0.015em 0 rgb(192,192,192),0 -0.015em  rgb(192,192,192);}
.sc3{text-shadow:-0.015em 0 rgb(0,0,132),0 0.015em rgb(0,0,132),0.015em 0 rgb(0,0,132),0 -0.015em  rgb(0,0,132);}
.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;}
.sc7{-webkit-text-stroke:0.015em rgb(132,0,0);text-shadow:none;}
.sc5{-webkit-text-stroke:0.015em rgb(201,33,30);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(118,0,59);text-shadow:none;}
.sc6{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(192,192,192);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(0,0,132);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-86.408100px;}
.wsc{word-spacing:-70.183800px;}
.ws2{word-spacing:-65.991000px;}
.wsd{word-spacing:-40.794300px;}
.wsa{word-spacing:-38.991000px;}
.ws0{word-spacing:-34.780500px;}
.ws1{word-spacing:-25.111158px;}
.ws8{word-spacing:-21.782305px;}
.ws9{word-spacing:-19.871516px;}
.ws6{word-spacing:-0.192018px;}
.ws5{word-spacing:-0.179436px;}
.ws7{word-spacing:-0.111570px;}
.ws4{word-spacing:-0.107322px;}
.ws11{word-spacing:0.000000px;}
.ws10{word-spacing:505.457531px;}
.wsf{word-spacing:606.088720px;}
.wsb{word-spacing:2138.110476px;}
.wse{word-spacing:5006.056435px;}
._12{margin-left:-12641.779758px;}
._25{margin-left:-4789.483476px;}
._31{margin-left:-902.402184px;}
._39{margin-left:-471.052563px;}
._3a{margin-left:-285.452834px;}
._1f{margin-left:-200.977800px;}
._2f{margin-left:-155.095740px;}
._6{margin-left:-42.846426px;}
._3{margin-left:-28.804320px;}
._4{margin-left:-23.763564px;}
._5{margin-left:-14.762214px;}
._c{margin-left:-10.918452px;}
._d{margin-left:-7.489050px;}
._7{margin-left:-5.519586px;}
._8{margin-left:-4.079694px;}
._a{margin-left:-2.765298px;}
._9{margin-left:-1.150446px;}
._1{width:1.080162px;}
._b{width:2.383068px;}
._32{width:3.743136px;}
._33{width:4.834884px;}
._13{width:5.904678px;}
._10{width:7.897692px;}
._16{width:9.045912px;}
._37{width:10.137660px;}
._35{width:12.488706px;}
._28{width:14.036760px;}
._27{width:15.284472px;}
._24{width:16.434918px;}
._22{width:17.935860px;}
._34{width:19.807428px;}
._21{width:21.060192px;}
._20{width:22.846200px;}
._2{width:24.123618px;}
._14{width:25.422132px;}
._f{width:26.859954px;}
._e{width:28.062012px;}
._26{width:29.691858px;}
._18{width:30.724908px;}
._19{width:31.828692px;}
._15{width:33.159264px;}
._1a{width:34.362492px;}
._29{width:39.302928px;}
._36{width:47.569020px;}
._2d{width:50.532336px;}
._17{width:55.367220px;}
._38{width:59.578248px;}
._2a{width:60.825960px;}
._2b{width:64.257168px;}
._23{width:82.154460px;}
._2c{width:91.706832px;}
._2e{width:99.672582px;}
._30{width:103.092204px;}
._11{width:115.104660px;}
._1b{width:142.927440px;}
._1e{width:147.236889px;}
._1c{width:188.681949px;}
._1d{width:190.710430px;}
._0{width:6260.341500px;}
.fc6{color:rgb(132,0,0);}
.fc5{color:rgb(201,33,30);}
.fc4{color:rgb(118,0,59);}
.fc7{color:transparent;}
.fc3{color:rgb(0,0,132);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,192,192);}
.fc0{color:rgb(255,255,255);}
.fsf{font-size:62.686171px;}
.fs16{font-size:69.295000px;}
.fse{font-size:72.277136px;}
.fs14{font-size:74.244643px;}
.fsd{font-size:78.353614px;}
.fs0{font-size:84.018000px;}
.fs4{font-size:90.654000px;}
.fs15{font-size:91.599018px;}
.fs13{font-size:98.992858px;}
.fsb{font-size:107.322000px;}
.fs10{font-size:109.188000px;}
.fsc{font-size:111.570000px;}
.fs12{font-size:117.012000px;}
.fs11{font-size:131.982000px;}
.fs3{font-size:139.122000px;}
.fs5{font-size:155.964000px;}
.fs7{font-size:168.036000px;}
.fsa{font-size:179.436000px;}
.fs8{font-size:192.018000px;}
.fs2{font-size:239.982000px;}
.fs9{font-size:261.582000px;}
.fs6{font-size:263.964000px;}
.fs1{font-size:360.054000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.ya8{bottom:5.695879px;}
.y2c{bottom:12.288000px;}
.y39{bottom:27.849680px;}
.ya2{bottom:33.287431px;}
.ya3{bottom:51.355561px;}
.y37{bottom:56.135829px;}
.y49{bottom:64.332000px;}
.y3a{bottom:75.654955px;}
.y2b{bottom:86.569500px;}
.y5a{bottom:90.439500px;}
.y2f{bottom:94.229606px;}
.y43{bottom:98.389500px;}
.y48{bottom:108.127500px;}
.ya4{bottom:129.255325px;}
.y59{bottom:142.312500px;}
.y42{bottom:142.611000px;}
.ya7{bottom:159.622116px;}
.y93{bottom:165.868500px;}
.y58{bottom:200.224500px;}
.ya5{bottom:207.155089px;}
.y2e{bottom:213.915000px;}
.y92{bottom:217.615500px;}
.y30{bottom:218.165559px;}
.ya6{bottom:232.141297px;}
.y3b{bottom:234.641380px;}
.y73{bottom:235.303500px;}
.y57{bottom:245.976000px;}
.y9e{bottom:274.148886px;}
.y91{bottom:275.527500px;}
.y72{bottom:287.050500px;}
.y56{bottom:303.888000px;}
.y71{bottom:338.967000px;}
.y31{bottom:342.101511px;}
.y90{bottom:343.303500px;}
.y55{bottom:349.639500px;}
.y9f{bottom:352.048650px;}
.y70{bottom:390.712500px;}
.y3c{bottom:393.627804px;}
.y8f{bottom:395.050500px;}
.y54{bottom:401.385000px;}
.ya0{bottom:429.948415px;}
.y6f{bottom:442.629000px;}
.y8e{bottom:452.961000px;}
.ya1{bottom:454.934622px;}
.y53{bottom:459.255000px;}
.y2{bottom:465.888000px;}
.y32{bottom:465.932522px;}
.y38{bottom:471.922081px;}
.y41{bottom:481.156936px;}
.y6e{bottom:494.376000px;}
.y8d{bottom:520.780500px;}
.y6d{bottom:546.250500px;}
.y3d{bottom:552.719171px;}
.y80{bottom:557.389500px;}
.y8c{bottom:572.527500px;}
.y33{bottom:589.868474px;}
.y6c{bottom:598.039500px;}
.y7f{bottom:609.264000px;}
.y8b{bottom:624.400500px;}
.y6b{bottom:649.912500px;}
.y7e{bottom:661.180500px;}
.y8a{bottom:682.312500px;}
.y6a{bottom:701.659500px;}
.y3e{bottom:711.705595px;}
.y7d{bottom:712.927500px;}
.y34{bottom:713.804426px;}
.y89{bottom:749.961000px;}
.y69{bottom:759.699000px;}
.y7c{bottom:764.800500px;}
.y88{bottom:801.708000px;}
.y7b{bottom:816.589500px;}
.y35{bottom:837.740378px;}
.y87{bottom:853.624500px;}
.y68{bottom:857.239500px;}
.y7a{bottom:868.464000px;}
.y3f{bottom:870.692020px;}
.y67{bottom:909.112500px;}
.y86{bottom:911.536500px;}
.y79{bottom:920.211000px;}
.y66{bottom:960.859500px;}
.y36{bottom:961.676331px;}
.y78{bottom:972.127500px;}
.y85{bottom:979.185000px;}
.y65{bottom:1012.776000px;}
.y77{bottom:1023.873000px;}
.y40{bottom:1029.783386px;}
.y84{bottom:1037.055000px;}
.y64{bottom:1064.523000px;}
.y76{bottom:1075.789500px;}
.y83{bottom:1104.873000px;}
.y63{bottom:1122.433500px;}
.y75{bottom:1127.536500px;}
.y82{bottom:1156.620000px;}
.y74{bottom:1179.411000px;}
.y81{bottom:1214.532000px;}
.y62{bottom:1223.079000px;}
.y52{bottom:1227.883500px;}
.y94{bottom:1254.117000px;}
.y61{bottom:1363.479000px;}
.y51{bottom:1369.303500px;}
.y60{bottom:1415.352000px;}
.y50{bottom:1421.050500px;}
.y5f{bottom:1467.099000px;}
.y4f{bottom:1472.967000px;}
.y5e{bottom:1519.015500px;}
.y4e{bottom:1548.567000px;}
.y5d{bottom:1570.932000px;}
.y4d{bottom:1606.479000px;}
.y4c{bottom:1652.229000px;}
.y4b{bottom:1710.099000px;}
.y25{bottom:1736.079000px;}
.y4a{bottom:1762.015500px;}
.y24{bottom:1787.824500px;}
.y1f{bottom:1826.389500px;}
.y23{bottom:1839.699000px;}
.y1e{bottom:1878.136500px;}
.y22{bottom:1891.488000px;}
.y1d{bottom:1930.011000px;}
.y21{bottom:1943.361000px;}
.y20{bottom:1995.108000px;}
.y47{bottom:2543.229000px;}
.y46{bottom:2601.439500px;}
.y45{bottom:2662.923000px;}
.y44{bottom:2721.132000px;}
.y17{bottom:2771.050500px;}
.y5c{bottom:2799.580500px;}
.y16{bottom:2822.967000px;}
.y5b{bottom:2851.455000px;}
.y9d{bottom:2875.690500px;}
.y27{bottom:2928.712500px;}
.y26{bottom:2980.459500px;}
.y15{bottom:3393.708000px;}
.y14{bottom:3445.455000px;}
.y13{bottom:3497.371500px;}
.y9c{bottom:3647.976000px;}
.y9b{bottom:3699.850500px;}
.y2a{bottom:3725.404500px;}
.y9a{bottom:3751.639500px;}
.y29{bottom:3774.727500px;}
.y2d{bottom:3779.532000px;}
.y99{bottom:3803.512500px;}
.y28{bottom:3826.473000px;}
.y98{bottom:3855.259500px;}
.y1c{bottom:3902.073000px;}
.y97{bottom:3907.176000px;}
.y1b{bottom:3953.989500px;}
.y96{bottom:3958.923000px;}
.y1a{bottom:4005.736500px;}
.y95{bottom:4010.839500px;}
.y19{bottom:4057.611000px;}
.y18{bottom:4112.503500px;}
.y12{bottom:4118.073000px;}
.y11{bottom:4201.624500px;}
.y10{bottom:4257.283500px;}
.yf{bottom:4312.899000px;}
.ye{bottom:4368.429000px;}
.yd{bottom:4424.088000px;}
.yb{bottom:4478.811000px;}
.yc{bottom:4481.532000px;}
.ya{bottom:4583.833500px;}
.y9{bottom:4627.332000px;}
.y8{bottom:4670.956500px;}
.y7{bottom:4711.180500px;}
.y5{bottom:4808.806500px;}
.y6{bottom:4812.888000px;}
.y3{bottom:4907.664000px;}
.y4{bottom:4911.703500px;}
.h10{height:54.913684px;}
.h3{height:55.998325px;}
.hf{height:56.649663px;}
.h6{height:67.680647px;}
.h1d{height:68.973274px;}
.h11{height:77.010427px;}
.h1e{height:85.095488px;}
.h1b{height:91.964365px;}
.h1f{height:102.270759px;}
.h12{height:116.973000px;}
.h13{height:129.043840px;}
.h1c{height:129.589384px;}
.h15{height:130.237840px;}
.h18{height:130.405840px;}
.h19{height:130.747840px;}
.h16{height:130.915840px;}
.h17{height:130.921840px;}
.h14{height:131.079779px;}
.hd{height:137.967841px;}
.hb{height:141.675000px;}
.ha{height:154.897840px;}
.h8{height:166.887316px;}
.h5{height:186.766428px;}
.h9{height:190.705377px;}
.h7{height:204.308136px;}
.hc{height:225.691110px;}
.h4{height:258.261390px;}
.h1a{height:495.439500px;}
.he{height:1057.810668px;}
.h2{height:5055.420000px;}
.h0{height:5055.462992px;}
.h1{height:5055.750000px;}
.w3{width:255.712500px;}
.w4{width:557.585916px;}
.w5{width:871.227000px;}
.w2{width:3575.820000px;}
.w0{width:3575.862992px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x1b{left:4.507500px;}
.x21{left:24.129310px;}
.x3d{left:27.824555px;}
.x1f{left:33.009861px;}
.x39{left:37.579135px;}
.x1c{left:39.459000px;}
.x38{left:52.141948px;}
.x3b{left:56.516159px;}
.x1e{left:69.690000px;}
.xd{left:73.048500px;}
.x29{left:78.916500px;}
.xf{left:82.063500px;}
.x20{left:84.412312px;}
.xe{left:89.547000px;}
.x36{left:91.035000px;}
.x25{left:95.712000px;}
.x26{left:100.219500px;}
.x2a{left:104.386500px;}
.x22{left:105.805800px;}
.xc{left:130.663500px;}
.x15{left:145.800000px;}
.x14{left:148.351500px;}
.x27{left:158.386500px;}
.x11{left:160.809000px;}
.x1{left:216.595500px;}
.x3c{left:231.889849px;}
.x3a{left:235.723268px;}
.x3e{left:352.951691px;}
.x10{left:357.888000px;}
.x12{left:407.083500px;}
.x23{left:489.339724px;}
.x24{left:550.447822px;}
.x31{left:638.263500px;}
.x30{left:663.732000px;}
.x3{left:697.791000px;}
.x2{left:701.830500px;}
.x6{left:889.639500px;}
.x7{left:921.912000px;}
.x37{left:934.284000px;}
.x5{left:980.121000px;}
.x4{left:984.160500px;}
.x8{left:1075.791000px;}
.x2c{left:1076.980500px;}
.x2d{left:1102.663500px;}
.x9{left:1354.507500px;}
.xb{left:1632.586500px;}
.xa{left:1635.307500px;}
.x32{left:1755.892500px;}
.x2b{left:1759.336500px;}
.x13{left:1869.463500px;}
.x17{left:1913.683500px;}
.x2e{left:1930.947000px;}
.x18{left:1957.521000px;}
.x28{left:2221.653000px;}
.x33{left:2225.863500px;}
.x35{left:2228.244000px;}
.x1d{left:2234.835000px;}
.x34{left:2251.332000px;}
.x1a{left:2369.706000px;}
.x16{left:2690.560500px;}
.x2f{left:2703.316500px;}
.x19{left:2723.853000px;}
@media print{
.v5{vertical-align:-79.973333pt;}
.v2{vertical-align:-45.808000pt;}
.v9{vertical-align:-22.981333pt;}
.va{vertical-align:-21.920000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.653333pt;}
.v6{vertical-align:24.037333pt;}
.v8{vertical-align:26.118782pt;}
.vc{vertical-align:33.444462pt;}
.vb{vertical-align:45.957333pt;}
.v7{vertical-align:56.538667pt;}
.v1{vertical-align:70.298667pt;}
.v4{vertical-align:79.973333pt;}
.ls19{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.002667pt;}
.ls3{letter-spacing:0.051733pt;}
.ls2{letter-spacing:0.098112pt;}
.ls4{letter-spacing:0.505067pt;}
.ls0{letter-spacing:0.605333pt;}
.ls12{letter-spacing:0.876005pt;}
.ls18{letter-spacing:2.420272pt;}
.ls8{letter-spacing:5.487296pt;}
.ls7{letter-spacing:9.315424pt;}
.lsf{letter-spacing:9.881952pt;}
.lsa{letter-spacing:10.484619pt;}
.ls11{letter-spacing:13.657952pt;}
.lsc{letter-spacing:13.663285pt;}
.lsb{letter-spacing:17.326091pt;}
.ls10{letter-spacing:17.480757pt;}
.ls5{letter-spacing:23.486400pt;}
.lsd{letter-spacing:25.181499pt;}
.ls6{letter-spacing:25.789499pt;}
.ls9{letter-spacing:26.257611pt;}
.lse{letter-spacing:27.468277pt;}
.ls17{letter-spacing:32.412704pt;}
.ls15{letter-spacing:32.418037pt;}
.ls16{letter-spacing:33.175371pt;}
.ls13{letter-spacing:36.300363pt;}
.ls14{letter-spacing:63.264117pt;}
.ws3{word-spacing:-76.807200pt;}
.wsc{word-spacing:-62.385600pt;}
.ws2{word-spacing:-58.658667pt;}
.wsd{word-spacing:-36.261600pt;}
.wsa{word-spacing:-34.658667pt;}
.ws0{word-spacing:-30.916000pt;}
.ws1{word-spacing:-22.321029pt;}
.ws8{word-spacing:-19.362049pt;}
.ws9{word-spacing:-17.663570pt;}
.ws6{word-spacing:-0.170683pt;}
.ws5{word-spacing:-0.159499pt;}
.ws7{word-spacing:-0.099173pt;}
.ws4{word-spacing:-0.095397pt;}
.ws11{word-spacing:0.000000pt;}
.ws10{word-spacing:449.295583pt;}
.wsf{word-spacing:538.745529pt;}
.wsb{word-spacing:1900.542645pt;}
.wse{word-spacing:4449.827942pt;}
._12{margin-left:-11237.137563pt;}
._25{margin-left:-4257.318645pt;}
._31{margin-left:-802.135275pt;}
._39{margin-left:-418.713390pt;}
._3a{margin-left:-253.735853pt;}
._1f{margin-left:-178.646933pt;}
._2f{margin-left:-137.862880pt;}
._6{margin-left:-38.085712pt;}
._3{margin-left:-25.603840pt;}
._4{margin-left:-21.123168pt;}
._5{margin-left:-13.121968pt;}
._c{margin-left:-9.705291pt;}
._d{margin-left:-6.656933pt;}
._7{margin-left:-4.906299pt;}
._8{margin-left:-3.626395pt;}
._a{margin-left:-2.458043pt;}
._9{margin-left:-1.022619pt;}
._1{width:0.960144pt;}
._b{width:2.118283pt;}
._32{width:3.327232pt;}
._33{width:4.297675pt;}
._13{width:5.248603pt;}
._10{width:7.020171pt;}
._16{width:8.040811pt;}
._37{width:9.011253pt;}
._35{width:11.101072pt;}
._28{width:12.477120pt;}
._27{width:13.586197pt;}
._24{width:14.608816pt;}
._22{width:15.942987pt;}
._34{width:17.606603pt;}
._21{width:18.720171pt;}
._20{width:20.307733pt;}
._2{width:21.443216pt;}
._14{width:22.597451pt;}
._f{width:23.875515pt;}
._e{width:24.944011pt;}
._26{width:26.392763pt;}
._18{width:27.311029pt;}
._19{width:28.292171pt;}
._15{width:29.474901pt;}
._1a{width:30.544437pt;}
._29{width:34.935936pt;}
._36{width:42.283573pt;}
._2d{width:44.917632pt;}
._17{width:49.215307pt;}
._38{width:52.958443pt;}
._2a{width:54.067520pt;}
._2b{width:57.117483pt;}
._23{width:73.026187pt;}
._2c{width:81.517184pt;}
._2e{width:88.597851pt;}
._30{width:91.637515pt;}
._11{width:102.315253pt;}
._1b{width:127.046613pt;}
._1e{width:130.877234pt;}
._1c{width:167.717288pt;}
._1d{width:169.520382pt;}
._0{width:5564.748000pt;}
.fsf{font-size:55.721041pt;}
.fs16{font-size:61.595556pt;}
.fse{font-size:64.246343pt;}
.fs14{font-size:65.995238pt;}
.fsd{font-size:69.647657pt;}
.fs0{font-size:74.682667pt;}
.fs4{font-size:80.581333pt;}
.fs15{font-size:81.421349pt;}
.fs13{font-size:87.993651pt;}
.fsb{font-size:95.397333pt;}
.fs10{font-size:97.056000pt;}
.fsc{font-size:99.173333pt;}
.fs12{font-size:104.010667pt;}
.fs11{font-size:117.317333pt;}
.fs3{font-size:123.664000pt;}
.fs5{font-size:138.634667pt;}
.fs7{font-size:149.365333pt;}
.fsa{font-size:159.498667pt;}
.fs8{font-size:170.682667pt;}
.fs2{font-size:213.317333pt;}
.fs9{font-size:232.517333pt;}
.fs6{font-size:234.634667pt;}
.fs1{font-size:320.048000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.ya8{bottom:5.063003pt;}
.y2c{bottom:10.922667pt;}
.y39{bottom:24.755271pt;}
.ya2{bottom:29.588828pt;}
.ya3{bottom:45.649388pt;}
.y37{bottom:49.898515pt;}
.y49{bottom:57.184000pt;}
.y3a{bottom:67.248849pt;}
.y2b{bottom:76.950667pt;}
.y5a{bottom:80.390667pt;}
.y2f{bottom:83.759650pt;}
.y43{bottom:87.457333pt;}
.y48{bottom:96.113333pt;}
.ya4{bottom:114.893622pt;}
.y59{bottom:126.500000pt;}
.y42{bottom:126.765333pt;}
.ya7{bottom:141.886325pt;}
.y93{bottom:147.438667pt;}
.y58{bottom:177.977333pt;}
.ya5{bottom:184.137857pt;}
.y2e{bottom:190.146667pt;}
.y92{bottom:193.436000pt;}
.y30{bottom:193.924941pt;}
.ya6{bottom:206.347820pt;}
.y3b{bottom:208.570115pt;}
.y73{bottom:209.158667pt;}
.y57{bottom:218.645333pt;}
.y9e{bottom:243.687899pt;}
.y91{bottom:244.913333pt;}
.y72{bottom:255.156000pt;}
.y56{bottom:270.122667pt;}
.y71{bottom:301.304000pt;}
.y31{bottom:304.090232pt;}
.y90{bottom:305.158667pt;}
.y55{bottom:310.790667pt;}
.y9f{bottom:312.932134pt;}
.y70{bottom:347.300000pt;}
.y3c{bottom:349.891382pt;}
.y8f{bottom:351.156000pt;}
.y54{bottom:356.786667pt;}
.ya0{bottom:382.176369pt;}
.y6f{bottom:393.448000pt;}
.y8e{bottom:402.632000pt;}
.ya1{bottom:404.386331pt;}
.y53{bottom:408.226667pt;}
.y2{bottom:414.122667pt;}
.y32{bottom:414.162241pt;}
.y38{bottom:419.486294pt;}
.y41{bottom:427.695054pt;}
.y6e{bottom:439.445333pt;}
.y8d{bottom:462.916000pt;}
.y6d{bottom:485.556000pt;}
.y3d{bottom:491.305929pt;}
.y80{bottom:495.457333pt;}
.y8c{bottom:508.913333pt;}
.y33{bottom:524.327532pt;}
.y6c{bottom:531.590667pt;}
.y7f{bottom:541.568000pt;}
.y8b{bottom:555.022667pt;}
.y6b{bottom:577.700000pt;}
.y7e{bottom:587.716000pt;}
.y8a{bottom:606.500000pt;}
.y6a{bottom:623.697333pt;}
.y3e{bottom:632.627196pt;}
.y7d{bottom:633.713333pt;}
.y34{bottom:634.492823pt;}
.y89{bottom:666.632000pt;}
.y69{bottom:675.288000pt;}
.y7c{bottom:679.822667pt;}
.y88{bottom:712.629333pt;}
.y7b{bottom:725.857333pt;}
.y35{bottom:744.658114pt;}
.y87{bottom:758.777333pt;}
.y68{bottom:761.990667pt;}
.y7a{bottom:771.968000pt;}
.y3f{bottom:773.948462pt;}
.y67{bottom:808.100000pt;}
.y86{bottom:810.254667pt;}
.y79{bottom:817.965333pt;}
.y66{bottom:854.097333pt;}
.y36{bottom:854.823405pt;}
.y78{bottom:864.113333pt;}
.y85{bottom:870.386667pt;}
.y65{bottom:900.245333pt;}
.y77{bottom:910.109333pt;}
.y40{bottom:915.363010pt;}
.y84{bottom:921.826667pt;}
.y64{bottom:946.242667pt;}
.y76{bottom:956.257333pt;}
.y83{bottom:982.109333pt;}
.y63{bottom:997.718667pt;}
.y75{bottom:1002.254667pt;}
.y82{bottom:1028.106667pt;}
.y74{bottom:1048.365333pt;}
.y81{bottom:1079.584000pt;}
.y62{bottom:1087.181333pt;}
.y52{bottom:1091.452000pt;}
.y94{bottom:1114.770667pt;}
.y61{bottom:1211.981333pt;}
.y51{bottom:1217.158667pt;}
.y60{bottom:1258.090667pt;}
.y50{bottom:1263.156000pt;}
.y5f{bottom:1304.088000pt;}
.y4f{bottom:1309.304000pt;}
.y5e{bottom:1350.236000pt;}
.y4e{bottom:1376.504000pt;}
.y5d{bottom:1396.384000pt;}
.y4d{bottom:1427.981333pt;}
.y4c{bottom:1468.648000pt;}
.y4b{bottom:1520.088000pt;}
.y25{bottom:1543.181333pt;}
.y4a{bottom:1566.236000pt;}
.y24{bottom:1589.177333pt;}
.y1f{bottom:1623.457333pt;}
.y23{bottom:1635.288000pt;}
.y1e{bottom:1669.454667pt;}
.y22{bottom:1681.322667pt;}
.y1d{bottom:1715.565333pt;}
.y21{bottom:1727.432000pt;}
.y20{bottom:1773.429333pt;}
.y47{bottom:2260.648000pt;}
.y46{bottom:2312.390667pt;}
.y45{bottom:2367.042667pt;}
.y44{bottom:2418.784000pt;}
.y17{bottom:2463.156000pt;}
.y5c{bottom:2488.516000pt;}
.y16{bottom:2509.304000pt;}
.y5b{bottom:2534.626667pt;}
.y9d{bottom:2556.169333pt;}
.y27{bottom:2603.300000pt;}
.y26{bottom:2649.297333pt;}
.y15{bottom:3016.629333pt;}
.y14{bottom:3062.626667pt;}
.y13{bottom:3108.774667pt;}
.y9c{bottom:3242.645333pt;}
.y9b{bottom:3288.756000pt;}
.y2a{bottom:3311.470667pt;}
.y9a{bottom:3334.790667pt;}
.y29{bottom:3355.313333pt;}
.y2d{bottom:3359.584000pt;}
.y99{bottom:3380.900000pt;}
.y28{bottom:3401.309333pt;}
.y98{bottom:3426.897333pt;}
.y1c{bottom:3468.509333pt;}
.y97{bottom:3473.045333pt;}
.y1b{bottom:3514.657333pt;}
.y96{bottom:3519.042667pt;}
.y1a{bottom:3560.654667pt;}
.y95{bottom:3565.190667pt;}
.y19{bottom:3606.765333pt;}
.y18{bottom:3655.558667pt;}
.y12{bottom:3660.509333pt;}
.y11{bottom:3734.777333pt;}
.y10{bottom:3784.252000pt;}
.yf{bottom:3833.688000pt;}
.ye{bottom:3883.048000pt;}
.yd{bottom:3932.522667pt;}
.yb{bottom:3981.165333pt;}
.yc{bottom:3983.584000pt;}
.ya{bottom:4074.518667pt;}
.y9{bottom:4113.184000pt;}
.y8{bottom:4151.961333pt;}
.y7{bottom:4187.716000pt;}
.y5{bottom:4274.494667pt;}
.y6{bottom:4278.122667pt;}
.y3{bottom:4362.368000pt;}
.y4{bottom:4365.958667pt;}
.h10{height:48.812163pt;}
.h3{height:49.776289pt;}
.hf{height:50.355256pt;}
.h6{height:60.160576pt;}
.h1d{height:61.309576pt;}
.h11{height:68.453713pt;}
.h1e{height:75.640434pt;}
.h1b{height:81.746102pt;}
.h1f{height:90.907341pt;}
.h12{height:103.976000pt;}
.h13{height:114.705635pt;}
.h1c{height:115.190564pt;}
.h15{height:115.766969pt;}
.h18{height:115.916302pt;}
.h19{height:116.220302pt;}
.h16{height:116.369635pt;}
.h17{height:116.374969pt;}
.h14{height:116.515359pt;}
.hd{height:122.638081pt;}
.hb{height:125.933333pt;}
.ha{height:137.686969pt;}
.h8{height:148.344281pt;}
.h5{height:166.014603pt;}
.h9{height:169.515891pt;}
.h7{height:181.607232pt;}
.hc{height:200.614320pt;}
.h4{height:229.565680pt;}
.h1a{height:440.390667pt;}
.he{height:940.276149pt;}
.h2{height:4493.706667pt;}
.h0{height:4493.744882pt;}
.h1{height:4494.000000pt;}
.w3{width:227.300000pt;}
.w4{width:495.631926pt;}
.w5{width:774.424000pt;}
.w2{width:3178.506667pt;}
.w0{width:3178.544882pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x1b{left:4.006667pt;}
.x21{left:21.448275pt;}
.x3d{left:24.732938pt;}
.x1f{left:29.342098pt;}
.x39{left:33.403676pt;}
.x1c{left:35.074667pt;}
.x38{left:46.348398pt;}
.x3b{left:50.236585pt;}
.x1e{left:61.946667pt;}
.xd{left:64.932000pt;}
.x29{left:70.148000pt;}
.xf{left:72.945333pt;}
.x20{left:75.033167pt;}
.xe{left:79.597333pt;}
.x36{left:80.920000pt;}
.x25{left:85.077333pt;}
.x26{left:89.084000pt;}
.x2a{left:92.788000pt;}
.x22{left:94.049600pt;}
.xc{left:116.145333pt;}
.x15{left:129.600000pt;}
.x14{left:131.868000pt;}
.x27{left:140.788000pt;}
.x11{left:142.941333pt;}
.x1{left:192.529333pt;}
.x3c{left:206.124311pt;}
.x3a{left:209.531794pt;}
.x3e{left:313.734837pt;}
.x10{left:318.122667pt;}
.x12{left:361.852000pt;}
.x23{left:434.968643pt;}
.x24{left:489.286953pt;}
.x31{left:567.345333pt;}
.x30{left:589.984000pt;}
.x3{left:620.258667pt;}
.x2{left:623.849333pt;}
.x6{left:790.790667pt;}
.x7{left:819.477333pt;}
.x37{left:830.474667pt;}
.x5{left:871.218667pt;}
.x4{left:874.809333pt;}
.x8{left:956.258667pt;}
.x2c{left:957.316000pt;}
.x2d{left:980.145333pt;}
.x9{left:1204.006667pt;}
.xb{left:1451.188000pt;}
.xa{left:1453.606667pt;}
.x32{left:1560.793333pt;}
.x2b{left:1563.854667pt;}
.x13{left:1661.745333pt;}
.x17{left:1701.052000pt;}
.x2e{left:1716.397333pt;}
.x18{left:1740.018667pt;}
.x28{left:1974.802667pt;}
.x33{left:1978.545333pt;}
.x35{left:1980.661333pt;}
.x1d{left:1986.520000pt;}
.x34{left:2001.184000pt;}
.x1a{left:2106.405333pt;}
.x16{left:2391.609333pt;}
.x2f{left:2402.948000pt;}
.x19{left:2421.202667pt;}
}




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