
    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_b39352514a8f9f1ac4c061de.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8b190bace4d9295f5bf23f01.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.130371;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_8ef3e953b5e2d7f0983d51fe.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_b51cf3779f97853744bd19d3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_29103299534514191242be93.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9b1216e68325f728a19524f4.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_997f0d99b36785b963cf8b22.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.130371;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_5157bf37c114c444c5a84a20.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c6e49ed8f3049b7f93ac46ee.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.087891;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_5dc5238a0e83e5b306ca9de4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_94da2e3d292c25794f5cf182.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.083000;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_80ce994da0590f862ee6fb9d.woff2')format("woff");}.ffc{font-family:ffc;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-41.760000px;}
.v6{vertical-align:-36.000000px;}
.v1{vertical-align:-11.220000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:4.176000px;}
.v3{vertical-align:12.120000px;}
.v4{vertical-align:158.400000px;}
.ls1a{letter-spacing:-4.032000px;}
.ls28{letter-spacing:-0.732000px;}
.ls20{letter-spacing:-0.388800px;}
.lsf{letter-spacing:-0.348600px;}
.ls19{letter-spacing:-0.346800px;}
.ls1c{letter-spacing:-0.343800px;}
.ls17{letter-spacing:-0.330000px;}
.ls11{letter-spacing:-0.320400px;}
.ls2b{letter-spacing:-0.265200px;}
.ls9{letter-spacing:-0.264600px;}
.ls23{letter-spacing:-0.245400px;}
.ls1{letter-spacing:-0.203400px;}
.ls22{letter-spacing:-0.197400px;}
.ls12{letter-spacing:-0.141600px;}
.ls2{letter-spacing:-0.068400px;}
.lse{letter-spacing:-0.057000px;}
.ls0{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.022320px;}
.lsd{letter-spacing:0.023040px;}
.ls29{letter-spacing:0.037440px;}
.lsa{letter-spacing:0.105000px;}
.ls27{letter-spacing:0.109800px;}
.ls2f{letter-spacing:0.126600px;}
.ls2e{letter-spacing:0.126720px;}
.ls5{letter-spacing:0.165600px;}
.ls26{letter-spacing:0.190200px;}
.ls10{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.238200px;}
.ls2a{letter-spacing:0.265200px;}
.ls3{letter-spacing:0.298200px;}
.ls2d{letter-spacing:0.305280px;}
.ls24{letter-spacing:0.316800px;}
.ls21{letter-spacing:0.348600px;}
.ls16{letter-spacing:27.161520px;}
.ls1b{letter-spacing:35.562240px;}
.ls8{letter-spacing:61.977600px;}
.ls7{letter-spacing:62.028000px;}
.ls4{letter-spacing:111.720000px;}
.ls25{letter-spacing:118.312320px;}
.ls15{letter-spacing:133.953600px;}
.ls14{letter-spacing:134.004000px;}
.lsc{letter-spacing:135.093600px;}
.lsb{letter-spacing:135.144000px;}
.ls2c{letter-spacing:140.688000px;}
.ls1d{letter-spacing:159.789600px;}
.ls1e{letter-spacing:159.840000px;}
.ls1f{letter-spacing:159.864000px;}
.ls18{letter-spacing:1756.104000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(90,162,174),0 0.015em rgb(90,162,174),0.015em 0 rgb(90,162,174),0 -0.015em  rgb(90,162,174);}
.sc3{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(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(90,162,174);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-65.088000px;}
.ws7{word-spacing:-59.750784px;}
.ws59{word-spacing:-39.085344px;}
.wsd{word-spacing:-37.946304px;}
.ws33{word-spacing:-37.913760px;}
.ws49{word-spacing:-35.977080px;}
.ws44{word-spacing:-35.668512px;}
.ws1c{word-spacing:-35.628480px;}
.ws45{word-spacing:-35.611512px;}
.wsa{word-spacing:-34.171200px;}
.ws32{word-spacing:-32.576544px;}
.wse{word-spacing:-27.206784px;}
.wsf{word-spacing:-27.174240px;}
.ws2d{word-spacing:-27.044064px;}
.ws29{word-spacing:-27.011520px;}
.ws2a{word-spacing:-26.681520px;}
.ws3{word-spacing:-23.436984px;}
.ws0{word-spacing:-23.138784px;}
.ws2{word-spacing:-23.070384px;}
.ws1{word-spacing:-22.935384px;}
.ws10{word-spacing:-21.641760px;}
.ws1f{word-spacing:-20.016000px;}
.ws37{word-spacing:-16.488000px;}
.ws58{word-spacing:-15.612480px;}
.ws28{word-spacing:-10.760640px;}
.ws27{word-spacing:-10.581840px;}
.ws34{word-spacing:-5.784000px;}
.ws56{word-spacing:-1.706400px;}
.ws4f{word-spacing:-1.645800px;}
.ws51{word-spacing:-1.591344px;}
.ws50{word-spacing:-1.549368px;}
.ws52{word-spacing:-1.444320px;}
.ws46{word-spacing:-1.410912px;}
.ws3f{word-spacing:-1.394280px;}
.ws17{word-spacing:-1.382976px;}
.ws24{word-spacing:-1.337760px;}
.ws38{word-spacing:-1.262880px;}
.ws43{word-spacing:-1.146048px;}
.ws19{word-spacing:-1.111680px;}
.ws3d{word-spacing:-1.050048px;}
.ws39{word-spacing:-1.019520px;}
.ws42{word-spacing:-0.938400px;}
.ws53{word-spacing:-0.910440px;}
.ws48{word-spacing:-0.883200px;}
.ws3b{word-spacing:-0.843792px;}
.ws4d{word-spacing:-0.824160px;}
.ws57{word-spacing:-0.795600px;}
.ws1a{word-spacing:-0.743040px;}
.ws41{word-spacing:-0.704160px;}
.ws21{word-spacing:-0.682080px;}
.ws18{word-spacing:-0.663048px;}
.ws14{word-spacing:-0.622080px;}
.ws22{word-spacing:-0.545760px;}
.ws23{word-spacing:-0.517920px;}
.ws16{word-spacing:-0.476640px;}
.ws47{word-spacing:-0.458880px;}
.ws1e{word-spacing:-0.379680px;}
.ws54{word-spacing:-0.374400px;}
.ws25{word-spacing:-0.371520px;}
.ws40{word-spacing:-0.355680px;}
.ws3c{word-spacing:-0.331560px;}
.ws1b{word-spacing:-0.328320px;}
.ws4a{word-spacing:-0.274560px;}
.ws55{word-spacing:-0.149760px;}
.wsb{word-spacing:-0.127584px;}
.ws2b{word-spacing:-0.048240px;}
.ws15{word-spacing:-0.023040px;}
.ws4{word-spacing:0.000000px;}
.ws11{word-spacing:0.006624px;}
.ws4b{word-spacing:0.046080px;}
.ws4c{word-spacing:0.069120px;}
.ws12{word-spacing:0.257400px;}
.ws2c{word-spacing:0.298560px;}
.ws4e{word-spacing:0.348480px;}
.ws3e{word-spacing:0.720360px;}
.ws3a{word-spacing:0.720864px;}
.ws1d{word-spacing:0.995040px;}
.ws13{word-spacing:1.177200px;}
.wsc{word-spacing:1.520424px;}
.ws26{word-spacing:2.835120px;}
.ws35{word-spacing:3.888000px;}
.ws9{word-spacing:96.849000px;}
.ws8{word-spacing:96.924960px;}
.ws2f{word-spacing:539.774928px;}
.ws31{word-spacing:541.795104px;}
.ws2e{word-spacing:575.270352px;}
.ws30{word-spacing:639.911664px;}
.ws6{word-spacing:1614.696000px;}
.ws36{word-spacing:4461.696000px;}
.ws20{word-spacing:4498.416000px;}
._f{margin-left:-2919.432000px;}
._13{margin-left:-15.269856px;}
._a{margin-left:-13.138272px;}
._c{margin-left:-9.768768px;}
._4{margin-left:-7.776000px;}
._7{margin-left:-6.745680px;}
._3{margin-left:-5.415984px;}
._2{margin-left:-3.679344px;}
._0{margin-left:-2.252448px;}
._1{margin-left:-1.005984px;}
._5{width:1.080000px;}
._b{width:2.239920px;}
._8{width:4.351824px;}
._9{width:9.864240px;}
._19{width:28.030440px;}
._18{width:29.178360px;}
._17{width:31.026768px;}
._16{width:33.369504px;}
._10{width:34.574880px;}
._e{width:35.722368px;}
._15{width:59.363136px;}
._14{width:60.661056px;}
._12{width:419.126304px;}
._d{width:1867.809408px;}
._11{width:1885.908864px;}
._6{width:1922.628864px;}
.fc7{color:rgb(55,96,146);}
.fc5{color:rgb(65,123,133);}
.fc4{color:rgb(90,162,174);}
.fc3{color:rgb(64,64,64);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc6{color:rgb(56,93,138);}
.fc0{color:rgb(55,77,129);}
.fsa{font-size:48.240000px;}
.fs24{font-size:56.160000px;}
.fs25{font-size:56.304000px;}
.fs21{font-size:57.600000px;}
.fs20{font-size:57.744000px;}
.fs6{font-size:72.000000px;}
.fs17{font-size:72.720000px;}
.fs26{font-size:74.880000px;}
.fs1f{font-size:84.960000px;}
.fs12{font-size:95.760000px;}
.fs13{font-size:95.904000px;}
.fs10{font-size:97.200000px;}
.fsf{font-size:97.344000px;}
.fs1{font-size:102.240000px;}
.fs0{font-size:102.384000px;}
.fs19{font-size:108.000000px;}
.fs1a{font-size:108.144000px;}
.fs23{font-size:112.320000px;}
.fs22{font-size:112.464000px;}
.fs18{font-size:116.640000px;}
.fs1b{font-size:119.520000px;}
.fs1c{font-size:119.664000px;}
.fs9{font-size:120.240000px;}
.fsb{font-size:120.384000px;}
.fs15{font-size:128.160000px;}
.fs16{font-size:128.304000px;}
.fsc{font-size:131.760000px;}
.fsd{font-size:131.904000px;}
.fs4{font-size:144.000000px;}
.fs8{font-size:144.144000px;}
.fse{font-size:151.200000px;}
.fs1e{font-size:167.760000px;}
.fs11{font-size:167.904000px;}
.fs27{font-size:172.944000px;}
.fs14{font-size:200.160000px;}
.fs1d{font-size:239.760000px;}
.fs3{font-size:257.760000px;}
.fs2{font-size:257.904000px;}
.fs7{font-size:264.384000px;}
.fs5{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:31.392000px;}
.y4a{bottom:54.900000px;}
.y12{bottom:63.180000px;}
.y49{bottom:69.300000px;}
.y48{bottom:83.700000px;}
.y2{bottom:83.880000px;}
.y28{bottom:110.340000px;}
.y3a{bottom:111.996000px;}
.ye{bottom:114.156000px;}
.y1{bottom:114.516000px;}
.y27{bottom:124.596000px;}
.y59{bottom:125.244000px;}
.y52{bottom:134.424000px;}
.y2f{bottom:142.056000px;}
.y43{bottom:147.060000px;}
.y3d{bottom:149.256000px;}
.yd{bottom:150.150000px;}
.y1a{bottom:150.660000px;}
.y23{bottom:151.050000px;}
.y47{bottom:153.540000px;}
.y5b{bottom:156.165000px;}
.y7a{bottom:176.550000px;}
.y6c{bottom:179.820000px;}
.y18{bottom:182.880000px;}
.y64{bottom:184.320000px;}
.y39{bottom:185.865000px;}
.y46{bottom:185.970000px;}
.y19{bottom:186.690000px;}
.y74{bottom:190.260000px;}
.y5a{bottom:192.165000px;}
.y83{bottom:194.250000px;}
.y51{bottom:196.995000px;}
.y25{bottom:215.175000px;}
.y45{bottom:218.370000px;}
.y17{bottom:218.880000px;}
.y63{bottom:220.140000px;}
.y54{bottom:223.635000px;}
.y73{bottom:227.160000px;}
.y38{bottom:227.805000px;}
.y22{bottom:237.495000px;}
.y3c{bottom:247.710000px;}
.y50{bottom:249.015000px;}
.y79{bottom:249.990000px;}
.y16{bottom:254.880000px;}
.y53{bottom:255.855000px;}
.y11{bottom:256.110000px;}
.y68{bottom:258.510000px;}
.y7d{bottom:260.670000px;}
.y2c{bottom:261.255000px;}
.y6b{bottom:263.700000px;}
.y41{bottom:272.445000px;}
.y21{bottom:273.135000px;}
.y7c{bottom:279.075000px;}
.y2b{bottom:290.055000px;}
.y15{bottom:290.880000px;}
.y10{bottom:292.110000px;}
.y6{bottom:295.485000px;}
.y7b{bottom:297.435000px;}
.y5{bottom:298.365000px;}
.y4f{bottom:301.215000px;}
.y82{bottom:304.455000px;}
.y6a{bottom:305.640000px;}
.y37{bottom:311.730000px;}
.y5d{bottom:313.050000px;}
.y72{bottom:323.310000px;}
.y78{bottom:323.460000px;}
.y20{bottom:323.715000px;}
.y14{bottom:326.910000px;}
.y29{bottom:327.990000px;}
.yf{bottom:328.110000px;}
.y24{bottom:335.445000px;}
.y85{bottom:339.330000px;}
.y5c{bottom:349.050000px;}
.y60{bottom:350.205000px;}
.y4e{bottom:353.445000px;}
.y36{bottom:353.670000px;}
.y40{bottom:356.370000px;}
.y13{bottom:362.910000px;}
.y4{bottom:364.830000px;}
.y71{bottom:369.210000px;}
.y65{bottom:373.245000px;}
.y1f{bottom:374.325000px;}
.y56{bottom:383.505000px;}
.y31{bottom:385.170000px;}
.y42{bottom:389.490000px;}
.y67{bottom:393.330000px;}
.y4d{bottom:405.465000px;}
.y30{bottom:413.970000px;}
.y81{bottom:414.465000px;}
.y70{bottom:414.930000px;}
.y55{bottom:419.370000px;}
.y1e{bottom:425.085000px;}
.y66{bottom:432.930000px;}
.y77{bottom:433.440000px;}
.y3{bottom:434.520000px;}
.y3b{bottom:434.850000px;}
.yc{bottom:435.345000px;}
.y35{bottom:437.550000px;}
.y3f{bottom:440.250000px;}
.y4c{bottom:457.665000px;}
.y6f{bottom:460.695000px;}
.y84{bottom:463.395000px;}
.yb{bottom:474.225000px;}
.y1d{bottom:475.665000px;}
.y34{bottom:479.520000px;}
.y80{bottom:487.905000px;}
.y62{bottom:495.930000px;}
.y58{bottom:504.150000px;}
.y6e{bottom:506.595000px;}
.y4b{bottom:509.865000px;}
.y5f{bottom:511.305000px;}
.ya{bottom:520.710000px;}
.y3e{bottom:524.160000px;}
.y1c{bottom:526.290000px;}
.y61{bottom:531.750000px;}
.y2a{bottom:539.490000px;}
.y57{bottom:540.000000px;}
.y76{bottom:543.630000px;}
.y5e{bottom:547.305000px;}
.y9{bottom:559.590000px;}
.y7f{bottom:561.390000px;}
.y1b{bottom:561.930000px;}
.y33{bottom:563.400000px;}
.y2e{bottom:596.235000px;}
.y7e{bottom:598.110000px;}
.y2d{bottom:598.425000px;}
.y69{bottom:599.295000px;}
.y44{bottom:600.120000px;}
.y26{bottom:600.330000px;}
.y6d{bottom:602.715000px;}
.y75{bottom:617.115000px;}
.y8{bottom:670.395000px;}
.y32{bottom:715.290000px;}
.hd{height:47.980898px;}
.h2a{height:58.573125px;}
.h2b{height:58.723312px;}
.h7{height:73.722656px;}
.h1b{height:75.093750px;}
.h1c{height:76.505414px;}
.h16{height:91.177734px;}
.h17{height:91.314844px;}
.h14{height:99.673031px;}
.h2{height:104.686172px;}
.h1{height:104.833617px;}
.h1e{height:107.419922px;}
.h1f{height:107.563148px;}
.ha{height:114.486328px;}
.hf{height:114.623437px;}
.h29{height:117.146250px;}
.h28{height:117.296437px;}
.h20{height:118.878047px;}
.h21{height:119.021273px;}
.h1d{height:119.430703px;}
.hc{height:119.594180px;}
.he{height:119.737406px;}
.h22{height:122.379609px;}
.hb{height:123.116836px;}
.h10{height:131.052305px;}
.h11{height:131.195531px;}
.h19{height:133.666875px;}
.h1a{height:133.817062px;}
.h12{height:134.912461px;}
.h5{height:143.226562px;}
.h9{height:143.369789px;}
.h24{height:147.445312px;}
.h26{height:147.592758px;}
.h13{height:154.817578px;}
.h2c{height:164.668359px;}
.h27{height:171.773789px;}
.h15{height:171.921234px;}
.h23{height:187.374258px;}
.h18{height:208.760625px;}
.h4{height:245.425781px;}
.h3{height:245.562891px;}
.h8{height:251.732813px;}
.h6{height:274.218750px;}
.h25{height:305.845313px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x3c{left:48.995979px;}
.x1a{left:50.219979px;}
.x3e{left:51.263979px;}
.x1f{left:88.955979px;}
.x42{left:95.615979px;}
.x25{left:98.207979px;}
.x3d{left:102.275979px;}
.x1d{left:107.459979px;}
.x6{left:109.079979px;}
.xb{left:112.427979px;}
.x40{left:120.995979px;}
.x3f{left:123.263979px;}
.x7{left:150.329979px;}
.x22{left:177.629979px;}
.x37{left:202.529979px;}
.x36{left:221.789979px;}
.x16{left:223.529979px;}
.x21{left:226.439979px;}
.x23{left:252.464979px;}
.x3{left:253.724979px;}
.x9{left:304.769979px;}
.x1e{left:328.604979px;}
.x2c{left:334.979979px;}
.x43{left:338.609979px;}
.x8{left:342.434979px;}
.xe{left:361.259979px;}
.x2a{left:366.404979px;}
.x11{left:376.409979px;}
.x27{left:380.129979px;}
.x2b{left:382.964979px;}
.x29{left:384.269979px;}
.x28{left:390.389979px;}
.x26{left:393.989979px;}
.x33{left:404.174979px;}
.x38{left:428.609979px;}
.x4{left:449.969979px;}
.x12{left:484.994979px;}
.xa{left:552.269979px;}
.x35{left:572.294979px;}
.x34{left:579.134979px;}
.x45{left:600.089979px;}
.xc{left:606.269979px;}
.x3b{left:607.499979px;}
.x5{left:614.699979px;}
.xf{left:617.429979px;}
.x44{left:622.874979px;}
.x10{left:652.859979px;}
.xd{left:681.479979px;}
.x39{left:688.889979px;}
.x1b{left:763.484979px;}
.x20{left:774.359979px;}
.x24{left:788.729979px;}
.x19{left:801.029979px;}
.x1c{left:808.484979px;}
.x2d{left:818.069979px;}
.x18{left:820.109979px;}
.x2f{left:839.444979px;}
.x30{left:857.804979px;}
.x31{left:859.529979px;}
.x13{left:898.589979px;}
.x14{left:904.889979px;}
.x2e{left:918.359979px;}
.x32{left:952.274979px;}
.x41{left:1003.214979px;}
.x1{left:1042.709979px;}
.x15{left:1054.829979px;}
.x17{left:1075.859979px;}
.x2{left:1125.869979px;}
.x3a{left:1133.309979px;}
@media print{
.v5{vertical-align:-37.120000pt;}
.v6{vertical-align:-32.000000pt;}
.v1{vertical-align:-9.973333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:3.712000pt;}
.v3{vertical-align:10.773333pt;}
.v4{vertical-align:140.800000pt;}
.ls1a{letter-spacing:-3.584000pt;}
.ls28{letter-spacing:-0.650667pt;}
.ls20{letter-spacing:-0.345600pt;}
.lsf{letter-spacing:-0.309867pt;}
.ls19{letter-spacing:-0.308267pt;}
.ls1c{letter-spacing:-0.305600pt;}
.ls17{letter-spacing:-0.293333pt;}
.ls11{letter-spacing:-0.284800pt;}
.ls2b{letter-spacing:-0.235733pt;}
.ls9{letter-spacing:-0.235200pt;}
.ls23{letter-spacing:-0.218133pt;}
.ls1{letter-spacing:-0.180800pt;}
.ls22{letter-spacing:-0.175467pt;}
.ls12{letter-spacing:-0.125867pt;}
.ls2{letter-spacing:-0.060800pt;}
.lse{letter-spacing:-0.050667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.019840pt;}
.lsd{letter-spacing:0.020480pt;}
.ls29{letter-spacing:0.033280pt;}
.lsa{letter-spacing:0.093333pt;}
.ls27{letter-spacing:0.097600pt;}
.ls2f{letter-spacing:0.112533pt;}
.ls2e{letter-spacing:0.112640pt;}
.ls5{letter-spacing:0.147200pt;}
.ls26{letter-spacing:0.169067pt;}
.ls10{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.211733pt;}
.ls2a{letter-spacing:0.235733pt;}
.ls3{letter-spacing:0.265067pt;}
.ls2d{letter-spacing:0.271360pt;}
.ls24{letter-spacing:0.281600pt;}
.ls21{letter-spacing:0.309867pt;}
.ls16{letter-spacing:24.143573pt;}
.ls1b{letter-spacing:31.610880pt;}
.ls8{letter-spacing:55.091200pt;}
.ls7{letter-spacing:55.136000pt;}
.ls4{letter-spacing:99.306667pt;}
.ls25{letter-spacing:105.166507pt;}
.ls15{letter-spacing:119.069867pt;}
.ls14{letter-spacing:119.114667pt;}
.lsc{letter-spacing:120.083200pt;}
.lsb{letter-spacing:120.128000pt;}
.ls2c{letter-spacing:125.056000pt;}
.ls1d{letter-spacing:142.035200pt;}
.ls1e{letter-spacing:142.080000pt;}
.ls1f{letter-spacing:142.101333pt;}
.ls18{letter-spacing:1560.981333pt;}
.ws5{word-spacing:-57.856000pt;}
.ws7{word-spacing:-53.111808pt;}
.ws59{word-spacing:-34.742528pt;}
.wsd{word-spacing:-33.730048pt;}
.ws33{word-spacing:-33.701120pt;}
.ws49{word-spacing:-31.979627pt;}
.ws44{word-spacing:-31.705344pt;}
.ws1c{word-spacing:-31.669760pt;}
.ws45{word-spacing:-31.654677pt;}
.wsa{word-spacing:-30.374400pt;}
.ws32{word-spacing:-28.956928pt;}
.wse{word-spacing:-24.183808pt;}
.wsf{word-spacing:-24.154880pt;}
.ws2d{word-spacing:-24.039168pt;}
.ws29{word-spacing:-24.010240pt;}
.ws2a{word-spacing:-23.716907pt;}
.ws3{word-spacing:-20.832875pt;}
.ws0{word-spacing:-20.567808pt;}
.ws2{word-spacing:-20.507008pt;}
.ws1{word-spacing:-20.387008pt;}
.ws10{word-spacing:-19.237120pt;}
.ws1f{word-spacing:-17.792000pt;}
.ws37{word-spacing:-14.656000pt;}
.ws58{word-spacing:-13.877760pt;}
.ws28{word-spacing:-9.565013pt;}
.ws27{word-spacing:-9.406080pt;}
.ws34{word-spacing:-5.141333pt;}
.ws56{word-spacing:-1.516800pt;}
.ws4f{word-spacing:-1.462933pt;}
.ws51{word-spacing:-1.414528pt;}
.ws50{word-spacing:-1.377216pt;}
.ws52{word-spacing:-1.283840pt;}
.ws46{word-spacing:-1.254144pt;}
.ws3f{word-spacing:-1.239360pt;}
.ws17{word-spacing:-1.229312pt;}
.ws24{word-spacing:-1.189120pt;}
.ws38{word-spacing:-1.122560pt;}
.ws43{word-spacing:-1.018709pt;}
.ws19{word-spacing:-0.988160pt;}
.ws3d{word-spacing:-0.933376pt;}
.ws39{word-spacing:-0.906240pt;}
.ws42{word-spacing:-0.834133pt;}
.ws53{word-spacing:-0.809280pt;}
.ws48{word-spacing:-0.785067pt;}
.ws3b{word-spacing:-0.750037pt;}
.ws4d{word-spacing:-0.732587pt;}
.ws57{word-spacing:-0.707200pt;}
.ws1a{word-spacing:-0.660480pt;}
.ws41{word-spacing:-0.625920pt;}
.ws21{word-spacing:-0.606293pt;}
.ws18{word-spacing:-0.589376pt;}
.ws14{word-spacing:-0.552960pt;}
.ws22{word-spacing:-0.485120pt;}
.ws23{word-spacing:-0.460373pt;}
.ws16{word-spacing:-0.423680pt;}
.ws47{word-spacing:-0.407893pt;}
.ws1e{word-spacing:-0.337493pt;}
.ws54{word-spacing:-0.332800pt;}
.ws25{word-spacing:-0.330240pt;}
.ws40{word-spacing:-0.316160pt;}
.ws3c{word-spacing:-0.294720pt;}
.ws1b{word-spacing:-0.291840pt;}
.ws4a{word-spacing:-0.244053pt;}
.ws55{word-spacing:-0.133120pt;}
.wsb{word-spacing:-0.113408pt;}
.ws2b{word-spacing:-0.042880pt;}
.ws15{word-spacing:-0.020480pt;}
.ws4{word-spacing:0.000000pt;}
.ws11{word-spacing:0.005888pt;}
.ws4b{word-spacing:0.040960pt;}
.ws4c{word-spacing:0.061440pt;}
.ws12{word-spacing:0.228800pt;}
.ws2c{word-spacing:0.265387pt;}
.ws4e{word-spacing:0.309760pt;}
.ws3e{word-spacing:0.640320pt;}
.ws3a{word-spacing:0.640768pt;}
.ws1d{word-spacing:0.884480pt;}
.ws13{word-spacing:1.046400pt;}
.wsc{word-spacing:1.351488pt;}
.ws26{word-spacing:2.520107pt;}
.ws35{word-spacing:3.456000pt;}
.ws9{word-spacing:86.088000pt;}
.ws8{word-spacing:86.155520pt;}
.ws2f{word-spacing:479.799936pt;}
.ws31{word-spacing:481.595648pt;}
.ws2e{word-spacing:511.351424pt;}
.ws30{word-spacing:568.810368pt;}
.ws6{word-spacing:1435.285333pt;}
.ws36{word-spacing:3965.952000pt;}
.ws20{word-spacing:3998.592000pt;}
._f{margin-left:-2595.050667pt;}
._13{margin-left:-13.573205pt;}
._a{margin-left:-11.678464pt;}
._c{margin-left:-8.683349pt;}
._4{margin-left:-6.912000pt;}
._7{margin-left:-5.996160pt;}
._3{margin-left:-4.814208pt;}
._2{margin-left:-3.270528pt;}
._0{margin-left:-2.002176pt;}
._1{margin-left:-0.894208pt;}
._5{width:0.960000pt;}
._b{width:1.991040pt;}
._8{width:3.868288pt;}
._9{width:8.768213pt;}
._19{width:24.915947pt;}
._18{width:25.936320pt;}
._17{width:27.579349pt;}
._16{width:29.661781pt;}
._10{width:30.733227pt;}
._e{width:31.753216pt;}
._15{width:52.767232pt;}
._14{width:53.920939pt;}
._12{width:372.556715pt;}
._d{width:1660.275029pt;}
._11{width:1676.363435pt;}
._6{width:1709.003435pt;}
.fsa{font-size:42.880000pt;}
.fs24{font-size:49.920000pt;}
.fs25{font-size:50.048000pt;}
.fs21{font-size:51.200000pt;}
.fs20{font-size:51.328000pt;}
.fs6{font-size:64.000000pt;}
.fs17{font-size:64.640000pt;}
.fs26{font-size:66.560000pt;}
.fs1f{font-size:75.520000pt;}
.fs12{font-size:85.120000pt;}
.fs13{font-size:85.248000pt;}
.fs10{font-size:86.400000pt;}
.fsf{font-size:86.528000pt;}
.fs1{font-size:90.880000pt;}
.fs0{font-size:91.008000pt;}
.fs19{font-size:96.000000pt;}
.fs1a{font-size:96.128000pt;}
.fs23{font-size:99.840000pt;}
.fs22{font-size:99.968000pt;}
.fs18{font-size:103.680000pt;}
.fs1b{font-size:106.240000pt;}
.fs1c{font-size:106.368000pt;}
.fs9{font-size:106.880000pt;}
.fsb{font-size:107.008000pt;}
.fs15{font-size:113.920000pt;}
.fs16{font-size:114.048000pt;}
.fsc{font-size:117.120000pt;}
.fsd{font-size:117.248000pt;}
.fs4{font-size:128.000000pt;}
.fs8{font-size:128.128000pt;}
.fse{font-size:134.400000pt;}
.fs1e{font-size:149.120000pt;}
.fs11{font-size:149.248000pt;}
.fs27{font-size:153.728000pt;}
.fs14{font-size:177.920000pt;}
.fs1d{font-size:213.120000pt;}
.fs3{font-size:229.120000pt;}
.fs2{font-size:229.248000pt;}
.fs7{font-size:235.008000pt;}
.fs5{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:27.904000pt;}
.y4a{bottom:48.800000pt;}
.y12{bottom:56.160000pt;}
.y49{bottom:61.600000pt;}
.y48{bottom:74.400000pt;}
.y2{bottom:74.560000pt;}
.y28{bottom:98.080000pt;}
.y3a{bottom:99.552000pt;}
.ye{bottom:101.472000pt;}
.y1{bottom:101.792000pt;}
.y27{bottom:110.752000pt;}
.y59{bottom:111.328000pt;}
.y52{bottom:119.488000pt;}
.y2f{bottom:126.272000pt;}
.y43{bottom:130.720000pt;}
.y3d{bottom:132.672000pt;}
.yd{bottom:133.466667pt;}
.y1a{bottom:133.920000pt;}
.y23{bottom:134.266667pt;}
.y47{bottom:136.480000pt;}
.y5b{bottom:138.813333pt;}
.y7a{bottom:156.933333pt;}
.y6c{bottom:159.840000pt;}
.y18{bottom:162.560000pt;}
.y64{bottom:163.840000pt;}
.y39{bottom:165.213333pt;}
.y46{bottom:165.306667pt;}
.y19{bottom:165.946667pt;}
.y74{bottom:169.120000pt;}
.y5a{bottom:170.813333pt;}
.y83{bottom:172.666667pt;}
.y51{bottom:175.106667pt;}
.y25{bottom:191.266667pt;}
.y45{bottom:194.106667pt;}
.y17{bottom:194.560000pt;}
.y63{bottom:195.680000pt;}
.y54{bottom:198.786667pt;}
.y73{bottom:201.920000pt;}
.y38{bottom:202.493333pt;}
.y22{bottom:211.106667pt;}
.y3c{bottom:220.186667pt;}
.y50{bottom:221.346667pt;}
.y79{bottom:222.213333pt;}
.y16{bottom:226.560000pt;}
.y53{bottom:227.426667pt;}
.y11{bottom:227.653333pt;}
.y68{bottom:229.786667pt;}
.y7d{bottom:231.706667pt;}
.y2c{bottom:232.226667pt;}
.y6b{bottom:234.400000pt;}
.y41{bottom:242.173333pt;}
.y21{bottom:242.786667pt;}
.y7c{bottom:248.066667pt;}
.y2b{bottom:257.826667pt;}
.y15{bottom:258.560000pt;}
.y10{bottom:259.653333pt;}
.y6{bottom:262.653333pt;}
.y7b{bottom:264.386667pt;}
.y5{bottom:265.213333pt;}
.y4f{bottom:267.746667pt;}
.y82{bottom:270.626667pt;}
.y6a{bottom:271.680000pt;}
.y37{bottom:277.093333pt;}
.y5d{bottom:278.266667pt;}
.y72{bottom:287.386667pt;}
.y78{bottom:287.520000pt;}
.y20{bottom:287.746667pt;}
.y14{bottom:290.586667pt;}
.y29{bottom:291.546667pt;}
.yf{bottom:291.653333pt;}
.y24{bottom:298.173333pt;}
.y85{bottom:301.626667pt;}
.y5c{bottom:310.266667pt;}
.y60{bottom:311.293333pt;}
.y4e{bottom:314.173333pt;}
.y36{bottom:314.373333pt;}
.y40{bottom:316.773333pt;}
.y13{bottom:322.586667pt;}
.y4{bottom:324.293333pt;}
.y71{bottom:328.186667pt;}
.y65{bottom:331.773333pt;}
.y1f{bottom:332.733333pt;}
.y56{bottom:340.893333pt;}
.y31{bottom:342.373333pt;}
.y42{bottom:346.213333pt;}
.y67{bottom:349.626667pt;}
.y4d{bottom:360.413333pt;}
.y30{bottom:367.973333pt;}
.y81{bottom:368.413333pt;}
.y70{bottom:368.826667pt;}
.y55{bottom:372.773333pt;}
.y1e{bottom:377.853333pt;}
.y66{bottom:384.826667pt;}
.y77{bottom:385.280000pt;}
.y3{bottom:386.240000pt;}
.y3b{bottom:386.533333pt;}
.yc{bottom:386.973333pt;}
.y35{bottom:388.933333pt;}
.y3f{bottom:391.333333pt;}
.y4c{bottom:406.813333pt;}
.y6f{bottom:409.506667pt;}
.y84{bottom:411.906667pt;}
.yb{bottom:421.533333pt;}
.y1d{bottom:422.813333pt;}
.y34{bottom:426.240000pt;}
.y80{bottom:433.693333pt;}
.y62{bottom:440.826667pt;}
.y58{bottom:448.133333pt;}
.y6e{bottom:450.306667pt;}
.y4b{bottom:453.213333pt;}
.y5f{bottom:454.493333pt;}
.ya{bottom:462.853333pt;}
.y3e{bottom:465.920000pt;}
.y1c{bottom:467.813333pt;}
.y61{bottom:472.666667pt;}
.y2a{bottom:479.546667pt;}
.y57{bottom:480.000000pt;}
.y76{bottom:483.226667pt;}
.y5e{bottom:486.493333pt;}
.y9{bottom:497.413333pt;}
.y7f{bottom:499.013333pt;}
.y1b{bottom:499.493333pt;}
.y33{bottom:500.800000pt;}
.y2e{bottom:529.986667pt;}
.y7e{bottom:531.653333pt;}
.y2d{bottom:531.933333pt;}
.y69{bottom:532.706667pt;}
.y44{bottom:533.440000pt;}
.y26{bottom:533.626667pt;}
.y6d{bottom:535.746667pt;}
.y75{bottom:548.546667pt;}
.y8{bottom:595.906667pt;}
.y32{bottom:635.813333pt;}
.hd{height:42.649687pt;}
.h2a{height:52.065000pt;}
.h2b{height:52.198500pt;}
.h7{height:65.531250pt;}
.h1b{height:66.750000pt;}
.h1c{height:68.004813pt;}
.h16{height:81.046875pt;}
.h17{height:81.168750pt;}
.h14{height:88.598250pt;}
.h2{height:93.054375pt;}
.h1{height:93.185437pt;}
.h1e{height:95.484375pt;}
.h1f{height:95.611688pt;}
.ha{height:101.765625pt;}
.hf{height:101.887500pt;}
.h29{height:104.130000pt;}
.h28{height:104.263500pt;}
.h20{height:105.669375pt;}
.h21{height:105.796687pt;}
.h1d{height:106.160625pt;}
.hc{height:106.305937pt;}
.he{height:106.433250pt;}
.h22{height:108.781875pt;}
.hb{height:109.437187pt;}
.h10{height:116.490937pt;}
.h11{height:116.618250pt;}
.h19{height:118.815000pt;}
.h1a{height:118.948500pt;}
.h12{height:119.922187pt;}
.h5{height:127.312500pt;}
.h9{height:127.439813pt;}
.h24{height:131.062500pt;}
.h26{height:131.193562pt;}
.h13{height:137.615625pt;}
.h2c{height:146.371875pt;}
.h27{height:152.687812pt;}
.h15{height:152.818875pt;}
.h23{height:166.554896pt;}
.h18{height:185.565000pt;}
.h4{height:218.156250pt;}
.h3{height:218.278125pt;}
.h8{height:223.762500pt;}
.h6{height:243.750000pt;}
.h25{height:271.862500pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x3c{left:43.551981pt;}
.x1a{left:44.639981pt;}
.x3e{left:45.567981pt;}
.x1f{left:79.071981pt;}
.x42{left:84.991981pt;}
.x25{left:87.295981pt;}
.x3d{left:90.911981pt;}
.x1d{left:95.519981pt;}
.x6{left:96.959981pt;}
.xb{left:99.935981pt;}
.x40{left:107.551981pt;}
.x3f{left:109.567981pt;}
.x7{left:133.626648pt;}
.x22{left:157.893314pt;}
.x37{left:180.026648pt;}
.x36{left:197.146648pt;}
.x16{left:198.693314pt;}
.x21{left:201.279981pt;}
.x23{left:224.413314pt;}
.x3{left:225.533314pt;}
.x9{left:270.906648pt;}
.x1e{left:292.093314pt;}
.x2c{left:297.759981pt;}
.x43{left:300.986648pt;}
.x8{left:304.386648pt;}
.xe{left:321.119981pt;}
.x2a{left:325.693314pt;}
.x11{left:334.586648pt;}
.x27{left:337.893314pt;}
.x2b{left:340.413314pt;}
.x29{left:341.573314pt;}
.x28{left:347.013314pt;}
.x26{left:350.213314pt;}
.x33{left:359.266648pt;}
.x38{left:380.986648pt;}
.x4{left:399.973314pt;}
.x12{left:431.106648pt;}
.xa{left:490.906648pt;}
.x35{left:508.706648pt;}
.x34{left:514.786648pt;}
.x45{left:533.413314pt;}
.xc{left:538.906648pt;}
.x3b{left:539.999981pt;}
.x5{left:546.399981pt;}
.xf{left:548.826648pt;}
.x44{left:553.666648pt;}
.x10{left:580.319981pt;}
.xd{left:605.759981pt;}
.x39{left:612.346648pt;}
.x1b{left:678.653314pt;}
.x20{left:688.319981pt;}
.x24{left:701.093314pt;}
.x19{left:712.026648pt;}
.x1c{left:718.653314pt;}
.x2d{left:727.173314pt;}
.x18{left:728.986648pt;}
.x2f{left:746.173314pt;}
.x30{left:762.493314pt;}
.x31{left:764.026648pt;}
.x13{left:798.746648pt;}
.x14{left:804.346648pt;}
.x2e{left:816.319981pt;}
.x32{left:846.466648pt;}
.x41{left:891.746648pt;}
.x1{left:926.853314pt;}
.x15{left:937.626648pt;}
.x17{left:956.319981pt;}
.x2{left:1000.773314pt;}
.x3a{left:1007.386648pt;}
}




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