
    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_d94a194145b2b7152fd3b3c9.woff')format("woff");}.ff1{font-family:ff1;line-height:0.841309;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_498ade465c2b864b1a83036b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_16ad20a936bdd7fc4bbe614b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.079590;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_0e044923fa2475d7e0aff926.woff')format("woff");}.ff4{font-family:ff4;line-height:0.731445;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_0e62d4e2365ba76150a5deb1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_e1caa134c1ea8b214b29e93b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.718750;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_e4fc04c779b4dee0bb3add05.woff')format("woff");}.ff7{font-family:ff7;line-height:0.675293;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_a6e3887b8af88d2bc6aa8ac9.woff')format("woff");}.ff8{font-family:ff8;line-height:0.914551;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_5e83dd9d88902e5ab7899fc3.woff')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_94fe0a7bb6aab9cfe3aac5c8.woff')format("woff");}.ffa{font-family:ffa;line-height:0.689453;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_8b4175e9d1cf2d5927fd4e0d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.939453;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_68348153df019ebcf7398d8d.woff')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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_35e805c788ef4ffa7b153ae0.woff')format("woff");}.ffd{font-family:ffd;line-height:0.731445;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_37ca823596fa2860ce490ca9.woff')format("woff");}.ffe{font-family:ffe;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_8e4378ff7867f0d8d86a4126.woff')format("woff");}.fff{font-family:fff;line-height:0.718750;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-24.480000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.v5{vertical-align:33.120000px;}
.ls17{letter-spacing:-8.670816px;}
.ls21{letter-spacing:-7.471872px;}
.ls16{letter-spacing:-6.219936px;}
.lsa{letter-spacing:-5.060736px;}
.ls1b{letter-spacing:-5.054112px;}
.ls19{letter-spacing:-5.020992px;}
.ls1d{letter-spacing:-3.795552px;}
.ls18{letter-spacing:-3.762432px;}
.ls10{letter-spacing:-2.609856px;}
.ls1c{letter-spacing:-2.603232px;}
.ls12{letter-spacing:-1.430784px;}
.ls7{letter-spacing:-1.351296px;}
.ls26{letter-spacing:-0.761760px;}
.ls27{letter-spacing:-0.755136px;}
.lsb{letter-spacing:-0.722016px;}
.ls28{letter-spacing:-0.682272px;}
.ls1e{letter-spacing:-0.532800px;}
.lsd{letter-spacing:-0.238464px;}
.ls2f{letter-spacing:-0.205344px;}
.ls8{letter-spacing:-0.198720px;}
.ls2c{letter-spacing:-0.165600px;}
.ls3{letter-spacing:-0.158976px;}
.lse{letter-spacing:-0.145728px;}
.ls22{letter-spacing:-0.139104px;}
.ls20{letter-spacing:-0.132480px;}
.ls5{letter-spacing:-0.125856px;}
.ls6{letter-spacing:-0.119232px;}
.lsc{letter-spacing:-0.086112px;}
.ls4{letter-spacing:-0.079488px;}
.ls11{letter-spacing:-0.052992px;}
.ls9{letter-spacing:-0.039744px;}
.ls2{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.014400px;}
.ls2b{letter-spacing:0.058464px;}
.ls2a{letter-spacing:0.121104px;}
.ls1a{letter-spacing:0.135648px;}
.ls24{letter-spacing:0.137808px;}
.ls29{letter-spacing:0.139248px;}
.ls0{letter-spacing:0.139680px;}
.ls1{letter-spacing:0.139824px;}
.ls1f{letter-spacing:0.141120px;}
.ls23{letter-spacing:0.159840px;}
.ls25{letter-spacing:0.179568px;}
.ls14{letter-spacing:105.836256px;}
.ls15{letter-spacing:110.734704px;}
.ls13{letter-spacing:142.542288px;}
.ls2d{letter-spacing:149.585328px;}
.ls2e{letter-spacing:845.585280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-18.414720px;}
.ws8{word-spacing:-18.374976px;}
.ws1{word-spacing:-18.335232px;}
.ws9{word-spacing:-18.328608px;}
.ws6{word-spacing:-18.295488px;}
.ws2{word-spacing:-18.288864px;}
.wsb{word-spacing:-18.268992px;}
.ws3{word-spacing:-18.255744px;}
.ws5{word-spacing:-18.216000px;}
.wsa{word-spacing:-18.176256px;}
.ws16{word-spacing:-17.732448px;}
.ws15{word-spacing:-17.692704px;}
.ws14{word-spacing:-17.659584px;}
.ws12{word-spacing:-17.652960px;}
.wse{word-spacing:-15.811488px;}
.wsc{word-spacing:-14.652288px;}
.wsf{word-spacing:-14.619168px;}
.wsd{word-spacing:-13.393728px;}
.ws7{word-spacing:-13.353984px;}
.ws11{word-spacing:-0.221328px;}
.ws10{word-spacing:-0.179568px;}
.ws17{word-spacing:-0.162864px;}
.ws18{word-spacing:-0.100224px;}
.ws13{word-spacing:-0.041760px;}
.ws4{word-spacing:0.000000px;}
._a{margin-left:-7.312464px;}
._9{margin-left:-5.877360px;}
._5{margin-left:-4.438080px;}
._1{margin-left:-3.378384px;}
._7{margin-left:-2.050128px;}
._0{margin-left:-1.047744px;}
._2{width:1.059840px;}
._3{width:2.237184px;}
._c{width:3.659760px;}
._8{width:4.901904px;}
._4{width:6.226560px;}
._d{width:7.634592px;}
._b{width:8.661744px;}
._e{width:17.182656px;}
._6{width:845.946432px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(70,120,134);}
.fc4{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:41.760000px;}
.fs3{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y85{bottom:3.780000px;}
.y89{bottom:3.900000px;}
.y9d{bottom:4.080000px;}
.yf9{bottom:4.140000px;}
.yff{bottom:4.260000px;}
.y8d{bottom:4.380000px;}
.y91{bottom:4.500000px;}
.y103{bottom:4.740000px;}
.y7e{bottom:4.800000px;}
.y107{bottom:4.860000px;}
.y95{bottom:4.980000px;}
.y3{bottom:5.040000px;}
.y99{bottom:5.100000px;}
.y5{bottom:6.540000px;}
.y81{bottom:6.960000px;}
.yfa{bottom:9.900000px;}
.y80{bottom:11.760000px;}
.y83{bottom:13.140000px;}
.y9b{bottom:13.440000px;}
.y87{bottom:13.620000px;}
.y8b{bottom:13.740000px;}
.yfd{bottom:13.980000px;}
.y101{bottom:14.100000px;}
.y8f{bottom:14.220000px;}
.y93{bottom:14.340000px;}
.y7c{bottom:14.520000px;}
.y105{bottom:14.580000px;}
.y97{bottom:14.820000px;}
.yfb{bottom:16.740000px;}
.y84{bottom:22.860000px;}
.y88{bottom:22.980000px;}
.y9c{bottom:23.160000px;}
.yfe{bottom:23.340000px;}
.y8c{bottom:23.460000px;}
.y90{bottom:23.580000px;}
.y102{bottom:23.820000px;}
.y7a{bottom:23.880000px;}
.y106{bottom:23.940000px;}
.y94{bottom:24.060000px;}
.y98{bottom:24.180000px;}
.yf6{bottom:32.580000px;}
.y7b{bottom:33.240000px;}
.yf7{bottom:41.940000px;}
.y7d{bottom:42.960000px;}
.y4{bottom:52.500000px;}
.y2{bottom:54.000000px;}
.yd6{bottom:57.960000px;}
.y1{bottom:59.040000px;}
.yf8{bottom:61.020000px;}
.yd5{bottom:78.840000px;}
.y2f{bottom:115.920000px;}
.y35{bottom:119.880000px;}
.y6f{bottom:138.960000px;}
.y2e{bottom:153.720000px;}
.y34{bottom:157.680000px;}
.y6e{bottom:158.040000px;}
.y6d{bottom:176.760000px;}
.y3c{bottom:187.560000px;}
.y2d{bottom:191.880000px;}
.y33{bottom:195.840000px;}
.yef{bottom:199.800000px;}
.y6c{bottom:214.920000px;}
.yee{bottom:218.880000px;}
.y2c{bottom:229.680000px;}
.y32{bottom:233.640000px;}
.y3b{bottom:237.600000px;}
.yed{bottom:237.960000px;}
.yd2{bottom:252.360000px;}
.y6b{bottom:252.720000px;}
.yec{bottom:256.680000px;}
.y2b{bottom:267.480000px;}
.y31{bottom:271.440000px;}
.y6a{bottom:271.800000px;}
.y3a{bottom:275.400000px;}
.yeb{bottom:275.760000px;}
.yd1{bottom:286.200000px;}
.y1d{bottom:288.720000px;}
.y69{bottom:290.520000px;}
.yf2{bottom:290.880000px;}
.yea{bottom:294.840000px;}
.y2a{bottom:305.640000px;}
.yd0{bottom:308.160000px;}
.y30{bottom:309.600000px;}
.y39{bottom:313.560000px;}
.y1c{bottom:326.520000px;}
.y68{bottom:328.680000px;}
.ycf{bottom:330.120000px;}
.ye9{bottom:332.640000px;}
.y29{bottom:343.440000px;}
.y67{bottom:347.760000px;}
.y38{bottom:351.360000px;}
.ye8{bottom:351.720000px;}
.yce{bottom:352.080000px;}
.y66{bottom:366.480000px;}
.yf1{bottom:366.840000px;}
.ye7{bottom:370.800000px;}
.y1b{bottom:373.320000px;}
.ycd{bottom:374.040000px;}
.y28{bottom:381.600000px;}
.y65{bottom:385.560000px;}
.y37{bottom:389.520000px;}
.ycc{bottom:396.000000px;}
.y64{bottom:404.640000px;}
.ye6{bottom:408.600000px;}
.ycb{bottom:417.960000px;}
.y27{bottom:419.400000px;}
.y1a{bottom:420.480000px;}
.y36{bottom:423.360000px;}
.ye5{bottom:427.680000px;}
.yb6{bottom:433.080000px;}
.yca{bottom:439.920000px;}
.y63{bottom:442.440000px;}
.ye4{bottom:446.400000px;}
.yb5{bottom:452.160000px;}
.y26{bottom:457.200000px;}
.y19{bottom:458.280000px;}
.y62{bottom:461.520000px;}
.yc9{bottom:461.880000px;}
.ye3{bottom:465.480000px;}
.yb4{bottom:471.240000px;}
.y61{bottom:480.600000px;}
.yc8{bottom:483.840000px;}
.ye2{bottom:484.560000px;}
.yb3{bottom:489.960000px;}
.y25{bottom:495.360000px;}
.y18{bottom:496.440000px;}
.y60{bottom:499.320000px;}
.yc7{bottom:506.160000px;}
.yb2{bottom:509.040000px;}
.y5f{bottom:518.400000px;}
.yb1{bottom:528.120000px;}
.ye1{bottom:531.360000px;}
.y24{bottom:533.160000px;}
.y5e{bottom:537.480000px;}
.ya2{bottom:540.000000px;}
.y17{bottom:543.240000px;}
.yc6{bottom:543.600000px;}
.yb0{bottom:546.840000px;}
.ye0{bottom:550.440000px;}
.y5d{bottom:556.200000px;}
.y16{bottom:562.320000px;}
.yaf{bottom:565.920000px;}
.y23{bottom:571.320000px;}
.ya1{bottom:573.840000px;}
.y5c{bottom:575.280000px;}
.yc0{bottom:577.080000px;}
.y15{bottom:581.400000px;}
.yae{bottom:585.000000px;}
.y114{bottom:590.400000px;}
.y5b{bottom:594.360000px;}
.ybf{bottom:596.160000px;}
.ydf{bottom:597.240000px;}
.y14{bottom:600.120000px;}
.yad{bottom:604.080000px;}
.y22{bottom:609.120000px;}
.y5a{bottom:613.080000px;}
.ybe{bottom:615.240000px;}
.ya0{bottom:615.960000px;}
.y13{bottom:619.200000px;}
.yac{bottom:622.800000px;}
.y113{bottom:628.200000px;}
.y59{bottom:632.160000px;}
.ybd{bottom:633.960000px;}
.y12{bottom:638.280000px;}
.yab{bottom:641.880000px;}
.y21{bottom:647.280000px;}
.y58{bottom:651.240000px;}
.y9f{bottom:651.960000px;}
.ybc{bottom:653.040000px;}
.y10d{bottom:655.560000px;}
.y11{bottom:657.360000px;}
.yaa{bottom:660.960000px;}
.y112{bottom:666.360000px;}
.y57{bottom:670.320000px;}
.ybb{bottom:672.120000px;}
.yde{bottom:673.200000px;}
.y10{bottom:676.080000px;}
.y10c{bottom:678.600000px;}
.y9e{bottom:679.320000px;}
.ya9{bottom:679.680000px;}
.y20{bottom:685.080000px;}
.y56{bottom:689.040000px;}
.yba{bottom:690.840000px;}
.ya8{bottom:698.760000px;}
.y111{bottom:704.160000px;}
.y55{bottom:708.120000px;}
.yb9{bottom:709.920000px;}
.y9a{bottom:717.000000px;}
.ya7{bottom:717.840000px;}
.y10b{bottom:722.520000px;}
.yf{bottom:722.880000px;}
.y110{bottom:723.240000px;}
.y54{bottom:727.200000px;}
.yb8{bottom:729.000000px;}
.ya6{bottom:736.560000px;}
.y43{bottom:736.920000px;}
.y10a{bottom:741.600000px;}
.y10f{bottom:741.960000px;}
.y53{bottom:745.920000px;}
.yb7{bottom:748.080000px;}
.ydd{bottom:749.160000px;}
.y78{bottom:752.760000px;}
.y109{bottom:753.840000px;}
.y96{bottom:754.500000px;}
.ya5{bottom:755.640000px;}
.ye{bottom:761.040000px;}
.yc5{bottom:761.760000px;}
.y52{bottom:765.000000px;}
.ya4{bottom:774.720000px;}
.y108{bottom:779.760000px;}
.y10e{bottom:780.120000px;}
.yc4{bottom:780.840000px;}
.y51{bottom:784.080000px;}
.y42{bottom:786.960000px;}
.y104{bottom:787.500000px;}
.ya3{bottom:790.200000px;}
.y92{bottom:793.500000px;}
.yd{bottom:798.840000px;}
.yc3{bottom:799.560000px;}
.y50{bottom:802.800000px;}
.y77{bottom:817.920000px;}
.yc2{bottom:818.640000px;}
.y4f{bottom:821.880000px;}
.y41{bottom:824.760000px;}
.y100{bottom:826.500000px;}
.y8e{bottom:832.500000px;}
.yc1{bottom:834.120000px;}
.y1f{bottom:837.000000px;}
.y4e{bottom:840.960000px;}
.yc{bottom:843.840000px;}
.y76{bottom:856.080000px;}
.y4d{bottom:860.040000px;}
.y40{bottom:862.920000px;}
.yfc{bottom:865.500000px;}
.y8a{bottom:871.500000px;}
.y1e{bottom:874.800000px;}
.y4c{bottom:878.760000px;}
.yb{bottom:881.640000px;}
.y75{bottom:893.880000px;}
.y4b{bottom:897.840000px;}
.y3f{bottom:900.720000px;}
.yf5{bottom:904.500000px;}
.y86{bottom:910.500000px;}
.ya{bottom:912.600000px;}
.y74{bottom:912.960000px;}
.y4a{bottom:916.920000px;}
.ydc{bottom:919.800000px;}
.y73{bottom:931.680000px;}
.y49{bottom:935.640000px;}
.y3e{bottom:938.520000px;}
.ydb{bottom:938.880000px;}
.y82{bottom:949.500000px;}
.y9{bottom:950.760000px;}
.y48{bottom:954.720000px;}
.yda{bottom:957.960000px;}
.y72{bottom:969.840000px;}
.y47{bottom:973.800000px;}
.y3d{bottom:976.680000px;}
.yf4{bottom:985.320000px;}
.y79{bottom:987.000000px;}
.y8{bottom:988.560000px;}
.y46{bottom:992.880000px;}
.yd9{bottom:995.760000px;}
.yf3{bottom:1004.040000px;}
.y71{bottom:1007.640000px;}
.y7f{bottom:1011.000000px;}
.y45{bottom:1011.600000px;}
.yd8{bottom:1014.840000px;}
.y7{bottom:1026.720000px;}
.yf0{bottom:1027.440000px;}
.yd7{bottom:1029.960000px;}
.y44{bottom:1030.680000px;}
.y70{bottom:1045.800000px;}
.y6{bottom:1064.520000px;}
.yd4{bottom:1100.160000px;}
.yd3{bottom:1119.960000px;}
.h2{height:22.500000px;}
.h3{height:24.000000px;}
.ha{height:25.500000px;}
.hd{height:27.833203px;}
.h11{height:30.015000px;}
.h6{height:30.211875px;}
.h13{height:31.500000px;}
.h9{height:34.500000px;}
.hb{height:39.000000px;}
.he{height:40.310156px;}
.hc{height:40.500000px;}
.h14{height:45.000000px;}
.h1{height:47.988281px;}
.h4{height:48.224531px;}
.h10{height:48.289219px;}
.hf{height:48.656250px;}
.h7{height:57.375000px;}
.h5{height:57.571875px;}
.h8{height:58.500000px;}
.h12{height:76.500000px;}
.h0{height:1188.000000px;}
.w1{width:12.000000px;}
.w2{width:21.000000px;}
.w7{width:52.500000px;}
.w6{width:54.000000px;}
.wc{width:55.500000px;}
.w8{width:61.500000px;}
.wd{width:63.000000px;}
.w4{width:88.500000px;}
.w9{width:90.000000px;}
.wa{width:91.500000px;}
.w3{width:148.500000px;}
.w5{width:378.000000px;}
.wb{width:382.500000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:1.320000px;}
.xf{left:8.490240px;}
.x1c{left:9.832680px;}
.x4{left:10.934880px;}
.x15{left:13.235280px;}
.x13{left:14.828760px;}
.xe{left:18.290412px;}
.xb{left:20.010480px;}
.x1f{left:23.809212px;}
.xc{left:28.860732px;}
.x2b{left:31.724844px;}
.x1e{left:35.289936px;}
.x12{left:48.143880px;}
.x1d{left:50.408208px;}
.x1b{left:61.888896px;}
.x1{left:108.000000px;}
.x5{left:125.704836px;}
.x23{left:135.000000px;}
.x26{left:157.331160px;}
.x9{left:162.000000px;}
.x28{left:189.000000px;}
.x29{left:223.500000px;}
.xd{left:256.500000px;}
.x27{left:269.668944px;}
.x25{left:276.480072px;}
.x6{left:301.295304px;}
.x8{left:310.090572px;}
.x2a{left:313.500000px;}
.x10{left:345.000000px;}
.x2c{left:400.500000px;}
.x11{left:432.000000px;}
.xa{left:448.500000px;}
.x2d{left:451.500000px;}
.x2{left:453.000000px;}
.x7{left:459.000000px;}
.x14{left:484.500000px;}
.x2e{left:505.500000px;}
.x16{left:537.000000px;}
.x2f{left:559.500000px;}
.x17{left:591.000000px;}
.x30{left:613.500000px;}
.x18{left:643.500000px;}
.x21{left:653.220000px;}
.x31{left:666.000000px;}
.x19{left:696.000000px;}
.x32{left:729.000000px;}
.x1a{left:757.500000px;}
.x33{left:765.000000px;}
.x24{left:774.000000px;}
.x22{left:783.000000px;}
.x20{left:810.000000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-21.760000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.v5{vertical-align:29.440000pt;}
.ls17{letter-spacing:-7.707392pt;}
.ls21{letter-spacing:-6.641664pt;}
.ls16{letter-spacing:-5.528832pt;}
.lsa{letter-spacing:-4.498432pt;}
.ls1b{letter-spacing:-4.492544pt;}
.ls19{letter-spacing:-4.463104pt;}
.ls1d{letter-spacing:-3.373824pt;}
.ls18{letter-spacing:-3.344384pt;}
.ls10{letter-spacing:-2.319872pt;}
.ls1c{letter-spacing:-2.313984pt;}
.ls12{letter-spacing:-1.271808pt;}
.ls7{letter-spacing:-1.201152pt;}
.ls26{letter-spacing:-0.677120pt;}
.ls27{letter-spacing:-0.671232pt;}
.lsb{letter-spacing:-0.641792pt;}
.ls28{letter-spacing:-0.606464pt;}
.ls1e{letter-spacing:-0.473600pt;}
.lsd{letter-spacing:-0.211968pt;}
.ls2f{letter-spacing:-0.182528pt;}
.ls8{letter-spacing:-0.176640pt;}
.ls2c{letter-spacing:-0.147200pt;}
.ls3{letter-spacing:-0.141312pt;}
.lse{letter-spacing:-0.129536pt;}
.ls22{letter-spacing:-0.123648pt;}
.ls20{letter-spacing:-0.117760pt;}
.ls5{letter-spacing:-0.111872pt;}
.ls6{letter-spacing:-0.105984pt;}
.lsc{letter-spacing:-0.076544pt;}
.ls4{letter-spacing:-0.070656pt;}
.ls11{letter-spacing:-0.047104pt;}
.ls9{letter-spacing:-0.035328pt;}
.ls2{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.012800pt;}
.ls2b{letter-spacing:0.051968pt;}
.ls2a{letter-spacing:0.107648pt;}
.ls1a{letter-spacing:0.120576pt;}
.ls24{letter-spacing:0.122496pt;}
.ls29{letter-spacing:0.123776pt;}
.ls0{letter-spacing:0.124160pt;}
.ls1{letter-spacing:0.124288pt;}
.ls1f{letter-spacing:0.125440pt;}
.ls23{letter-spacing:0.142080pt;}
.ls25{letter-spacing:0.159616pt;}
.ls14{letter-spacing:94.076672pt;}
.ls15{letter-spacing:98.430848pt;}
.ls13{letter-spacing:126.704256pt;}
.ls2d{letter-spacing:132.964736pt;}
.ls2e{letter-spacing:751.631360pt;}
.ws0{word-spacing:-16.368640pt;}
.ws8{word-spacing:-16.333312pt;}
.ws1{word-spacing:-16.297984pt;}
.ws9{word-spacing:-16.292096pt;}
.ws6{word-spacing:-16.262656pt;}
.ws2{word-spacing:-16.256768pt;}
.wsb{word-spacing:-16.239104pt;}
.ws3{word-spacing:-16.227328pt;}
.ws5{word-spacing:-16.192000pt;}
.wsa{word-spacing:-16.156672pt;}
.ws16{word-spacing:-15.762176pt;}
.ws15{word-spacing:-15.726848pt;}
.ws14{word-spacing:-15.697408pt;}
.ws12{word-spacing:-15.691520pt;}
.wse{word-spacing:-14.054656pt;}
.wsc{word-spacing:-13.024256pt;}
.wsf{word-spacing:-12.994816pt;}
.wsd{word-spacing:-11.905536pt;}
.ws7{word-spacing:-11.870208pt;}
.ws11{word-spacing:-0.196736pt;}
.ws10{word-spacing:-0.159616pt;}
.ws17{word-spacing:-0.144768pt;}
.ws18{word-spacing:-0.089088pt;}
.ws13{word-spacing:-0.037120pt;}
.ws4{word-spacing:0.000000pt;}
._a{margin-left:-6.499968pt;}
._9{margin-left:-5.224320pt;}
._5{margin-left:-3.944960pt;}
._1{margin-left:-3.003008pt;}
._7{margin-left:-1.822336pt;}
._0{margin-left:-0.931328pt;}
._2{width:0.942080pt;}
._3{width:1.988608pt;}
._c{width:3.253120pt;}
._8{width:4.357248pt;}
._4{width:5.534720pt;}
._d{width:6.786304pt;}
._b{width:7.699328pt;}
._e{width:15.273472pt;}
._6{width:751.952384pt;}
.fs2{font-size:37.120000pt;}
.fs3{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y85{bottom:3.360000pt;}
.y89{bottom:3.466667pt;}
.y9d{bottom:3.626667pt;}
.yf9{bottom:3.680000pt;}
.yff{bottom:3.786667pt;}
.y8d{bottom:3.893333pt;}
.y91{bottom:4.000000pt;}
.y103{bottom:4.213333pt;}
.y7e{bottom:4.266667pt;}
.y107{bottom:4.320000pt;}
.y95{bottom:4.426667pt;}
.y3{bottom:4.480000pt;}
.y99{bottom:4.533333pt;}
.y5{bottom:5.813333pt;}
.y81{bottom:6.186667pt;}
.yfa{bottom:8.800000pt;}
.y80{bottom:10.453333pt;}
.y83{bottom:11.680000pt;}
.y9b{bottom:11.946667pt;}
.y87{bottom:12.106667pt;}
.y8b{bottom:12.213333pt;}
.yfd{bottom:12.426667pt;}
.y101{bottom:12.533333pt;}
.y8f{bottom:12.640000pt;}
.y93{bottom:12.746667pt;}
.y7c{bottom:12.906667pt;}
.y105{bottom:12.960000pt;}
.y97{bottom:13.173333pt;}
.yfb{bottom:14.880000pt;}
.y84{bottom:20.320000pt;}
.y88{bottom:20.426667pt;}
.y9c{bottom:20.586667pt;}
.yfe{bottom:20.746667pt;}
.y8c{bottom:20.853333pt;}
.y90{bottom:20.960000pt;}
.y102{bottom:21.173333pt;}
.y7a{bottom:21.226667pt;}
.y106{bottom:21.280000pt;}
.y94{bottom:21.386667pt;}
.y98{bottom:21.493333pt;}
.yf6{bottom:28.960000pt;}
.y7b{bottom:29.546667pt;}
.yf7{bottom:37.280000pt;}
.y7d{bottom:38.186667pt;}
.y4{bottom:46.666667pt;}
.y2{bottom:48.000000pt;}
.yd6{bottom:51.520000pt;}
.y1{bottom:52.480000pt;}
.yf8{bottom:54.240000pt;}
.yd5{bottom:70.080000pt;}
.y2f{bottom:103.040000pt;}
.y35{bottom:106.560000pt;}
.y6f{bottom:123.520000pt;}
.y2e{bottom:136.640000pt;}
.y34{bottom:140.160000pt;}
.y6e{bottom:140.480000pt;}
.y6d{bottom:157.120000pt;}
.y3c{bottom:166.720000pt;}
.y2d{bottom:170.560000pt;}
.y33{bottom:174.080000pt;}
.yef{bottom:177.600000pt;}
.y6c{bottom:191.040000pt;}
.yee{bottom:194.560000pt;}
.y2c{bottom:204.160000pt;}
.y32{bottom:207.680000pt;}
.y3b{bottom:211.200000pt;}
.yed{bottom:211.520000pt;}
.yd2{bottom:224.320000pt;}
.y6b{bottom:224.640000pt;}
.yec{bottom:228.160000pt;}
.y2b{bottom:237.760000pt;}
.y31{bottom:241.280000pt;}
.y6a{bottom:241.600000pt;}
.y3a{bottom:244.800000pt;}
.yeb{bottom:245.120000pt;}
.yd1{bottom:254.400000pt;}
.y1d{bottom:256.640000pt;}
.y69{bottom:258.240000pt;}
.yf2{bottom:258.560000pt;}
.yea{bottom:262.080000pt;}
.y2a{bottom:271.680000pt;}
.yd0{bottom:273.920000pt;}
.y30{bottom:275.200000pt;}
.y39{bottom:278.720000pt;}
.y1c{bottom:290.240000pt;}
.y68{bottom:292.160000pt;}
.ycf{bottom:293.440000pt;}
.ye9{bottom:295.680000pt;}
.y29{bottom:305.280000pt;}
.y67{bottom:309.120000pt;}
.y38{bottom:312.320000pt;}
.ye8{bottom:312.640000pt;}
.yce{bottom:312.960000pt;}
.y66{bottom:325.760000pt;}
.yf1{bottom:326.080000pt;}
.ye7{bottom:329.600000pt;}
.y1b{bottom:331.840000pt;}
.ycd{bottom:332.480000pt;}
.y28{bottom:339.200000pt;}
.y65{bottom:342.720000pt;}
.y37{bottom:346.240000pt;}
.ycc{bottom:352.000000pt;}
.y64{bottom:359.680000pt;}
.ye6{bottom:363.200000pt;}
.ycb{bottom:371.520000pt;}
.y27{bottom:372.800000pt;}
.y1a{bottom:373.760000pt;}
.y36{bottom:376.320000pt;}
.ye5{bottom:380.160000pt;}
.yb6{bottom:384.960000pt;}
.yca{bottom:391.040000pt;}
.y63{bottom:393.280000pt;}
.ye4{bottom:396.800000pt;}
.yb5{bottom:401.920000pt;}
.y26{bottom:406.400000pt;}
.y19{bottom:407.360000pt;}
.y62{bottom:410.240000pt;}
.yc9{bottom:410.560000pt;}
.ye3{bottom:413.760000pt;}
.yb4{bottom:418.880000pt;}
.y61{bottom:427.200000pt;}
.yc8{bottom:430.080000pt;}
.ye2{bottom:430.720000pt;}
.yb3{bottom:435.520000pt;}
.y25{bottom:440.320000pt;}
.y18{bottom:441.280000pt;}
.y60{bottom:443.840000pt;}
.yc7{bottom:449.920000pt;}
.yb2{bottom:452.480000pt;}
.y5f{bottom:460.800000pt;}
.yb1{bottom:469.440000pt;}
.ye1{bottom:472.320000pt;}
.y24{bottom:473.920000pt;}
.y5e{bottom:477.760000pt;}
.ya2{bottom:480.000000pt;}
.y17{bottom:482.880000pt;}
.yc6{bottom:483.200000pt;}
.yb0{bottom:486.080000pt;}
.ye0{bottom:489.280000pt;}
.y5d{bottom:494.400000pt;}
.y16{bottom:499.840000pt;}
.yaf{bottom:503.040000pt;}
.y23{bottom:507.840000pt;}
.ya1{bottom:510.080000pt;}
.y5c{bottom:511.360000pt;}
.yc0{bottom:512.960000pt;}
.y15{bottom:516.800000pt;}
.yae{bottom:520.000000pt;}
.y114{bottom:524.800000pt;}
.y5b{bottom:528.320000pt;}
.ybf{bottom:529.920000pt;}
.ydf{bottom:530.880000pt;}
.y14{bottom:533.440000pt;}
.yad{bottom:536.960000pt;}
.y22{bottom:541.440000pt;}
.y5a{bottom:544.960000pt;}
.ybe{bottom:546.880000pt;}
.ya0{bottom:547.520000pt;}
.y13{bottom:550.400000pt;}
.yac{bottom:553.600000pt;}
.y113{bottom:558.400000pt;}
.y59{bottom:561.920000pt;}
.ybd{bottom:563.520000pt;}
.y12{bottom:567.360000pt;}
.yab{bottom:570.560000pt;}
.y21{bottom:575.360000pt;}
.y58{bottom:578.880000pt;}
.y9f{bottom:579.520000pt;}
.ybc{bottom:580.480000pt;}
.y10d{bottom:582.720000pt;}
.y11{bottom:584.320000pt;}
.yaa{bottom:587.520000pt;}
.y112{bottom:592.320000pt;}
.y57{bottom:595.840000pt;}
.ybb{bottom:597.440000pt;}
.yde{bottom:598.400000pt;}
.y10{bottom:600.960000pt;}
.y10c{bottom:603.200000pt;}
.y9e{bottom:603.840000pt;}
.ya9{bottom:604.160000pt;}
.y20{bottom:608.960000pt;}
.y56{bottom:612.480000pt;}
.yba{bottom:614.080000pt;}
.ya8{bottom:621.120000pt;}
.y111{bottom:625.920000pt;}
.y55{bottom:629.440000pt;}
.yb9{bottom:631.040000pt;}
.y9a{bottom:637.333333pt;}
.ya7{bottom:638.080000pt;}
.y10b{bottom:642.240000pt;}
.yf{bottom:642.560000pt;}
.y110{bottom:642.880000pt;}
.y54{bottom:646.400000pt;}
.yb8{bottom:648.000000pt;}
.ya6{bottom:654.720000pt;}
.y43{bottom:655.040000pt;}
.y10a{bottom:659.200000pt;}
.y10f{bottom:659.520000pt;}
.y53{bottom:663.040000pt;}
.yb7{bottom:664.960000pt;}
.ydd{bottom:665.920000pt;}
.y78{bottom:669.120000pt;}
.y109{bottom:670.080000pt;}
.y96{bottom:670.666667pt;}
.ya5{bottom:671.680000pt;}
.ye{bottom:676.480000pt;}
.yc5{bottom:677.120000pt;}
.y52{bottom:680.000000pt;}
.ya4{bottom:688.640000pt;}
.y108{bottom:693.120000pt;}
.y10e{bottom:693.440000pt;}
.yc4{bottom:694.080000pt;}
.y51{bottom:696.960000pt;}
.y42{bottom:699.520000pt;}
.y104{bottom:700.000000pt;}
.ya3{bottom:702.400000pt;}
.y92{bottom:705.333333pt;}
.yd{bottom:710.080000pt;}
.yc3{bottom:710.720000pt;}
.y50{bottom:713.600000pt;}
.y77{bottom:727.040000pt;}
.yc2{bottom:727.680000pt;}
.y4f{bottom:730.560000pt;}
.y41{bottom:733.120000pt;}
.y100{bottom:734.666667pt;}
.y8e{bottom:740.000000pt;}
.yc1{bottom:741.440000pt;}
.y1f{bottom:744.000000pt;}
.y4e{bottom:747.520000pt;}
.yc{bottom:750.080000pt;}
.y76{bottom:760.960000pt;}
.y4d{bottom:764.480000pt;}
.y40{bottom:767.040000pt;}
.yfc{bottom:769.333333pt;}
.y8a{bottom:774.666667pt;}
.y1e{bottom:777.600000pt;}
.y4c{bottom:781.120000pt;}
.yb{bottom:783.680000pt;}
.y75{bottom:794.560000pt;}
.y4b{bottom:798.080000pt;}
.y3f{bottom:800.640000pt;}
.yf5{bottom:804.000000pt;}
.y86{bottom:809.333333pt;}
.ya{bottom:811.200000pt;}
.y74{bottom:811.520000pt;}
.y4a{bottom:815.040000pt;}
.ydc{bottom:817.600000pt;}
.y73{bottom:828.160000pt;}
.y49{bottom:831.680000pt;}
.y3e{bottom:834.240000pt;}
.ydb{bottom:834.560000pt;}
.y82{bottom:844.000000pt;}
.y9{bottom:845.120000pt;}
.y48{bottom:848.640000pt;}
.yda{bottom:851.520000pt;}
.y72{bottom:862.080000pt;}
.y47{bottom:865.600000pt;}
.y3d{bottom:868.160000pt;}
.yf4{bottom:875.840000pt;}
.y79{bottom:877.333333pt;}
.y8{bottom:878.720000pt;}
.y46{bottom:882.560000pt;}
.yd9{bottom:885.120000pt;}
.yf3{bottom:892.480000pt;}
.y71{bottom:895.680000pt;}
.y7f{bottom:898.666667pt;}
.y45{bottom:899.200000pt;}
.yd8{bottom:902.080000pt;}
.y7{bottom:912.640000pt;}
.yf0{bottom:913.280000pt;}
.yd7{bottom:915.520000pt;}
.y44{bottom:916.160000pt;}
.y70{bottom:929.600000pt;}
.y6{bottom:946.240000pt;}
.yd4{bottom:977.920000pt;}
.yd3{bottom:995.520000pt;}
.h2{height:20.000000pt;}
.h3{height:21.333333pt;}
.ha{height:22.666667pt;}
.hd{height:24.740625pt;}
.h11{height:26.680000pt;}
.h6{height:26.855000pt;}
.h13{height:28.000000pt;}
.h9{height:30.666667pt;}
.hb{height:34.666667pt;}
.he{height:35.831250pt;}
.hc{height:36.000000pt;}
.h14{height:40.000000pt;}
.h1{height:42.656250pt;}
.h4{height:42.866250pt;}
.h10{height:42.923750pt;}
.hf{height:43.250000pt;}
.h7{height:51.000000pt;}
.h5{height:51.175000pt;}
.h8{height:52.000000pt;}
.h12{height:68.000000pt;}
.h0{height:1056.000000pt;}
.w1{width:10.666667pt;}
.w2{width:18.666667pt;}
.w7{width:46.666667pt;}
.w6{width:48.000000pt;}
.wc{width:49.333333pt;}
.w8{width:54.666667pt;}
.wd{width:56.000000pt;}
.w4{width:78.666667pt;}
.w9{width:80.000000pt;}
.wa{width:81.333333pt;}
.w3{width:132.000000pt;}
.w5{width:336.000000pt;}
.wb{width:340.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:1.173333pt;}
.xf{left:7.546880pt;}
.x1c{left:8.740160pt;}
.x4{left:9.719893pt;}
.x15{left:11.764693pt;}
.x13{left:13.181120pt;}
.xe{left:16.258144pt;}
.xb{left:17.787093pt;}
.x1f{left:21.163744pt;}
.xc{left:25.653984pt;}
.x2b{left:28.199861pt;}
.x1e{left:31.368832pt;}
.x12{left:42.794560pt;}
.x1d{left:44.807296pt;}
.x1b{left:55.012352pt;}
.x1{left:96.000000pt;}
.x5{left:111.737632pt;}
.x23{left:120.000000pt;}
.x26{left:139.849920pt;}
.x9{left:144.000000pt;}
.x28{left:168.000000pt;}
.x29{left:198.666667pt;}
.xd{left:228.000000pt;}
.x27{left:239.705728pt;}
.x25{left:245.760064pt;}
.x6{left:267.818048pt;}
.x8{left:275.636064pt;}
.x2a{left:278.666667pt;}
.x10{left:306.666667pt;}
.x2c{left:356.000000pt;}
.x11{left:384.000000pt;}
.xa{left:398.666667pt;}
.x2d{left:401.333333pt;}
.x2{left:402.666667pt;}
.x7{left:408.000000pt;}
.x14{left:430.666667pt;}
.x2e{left:449.333333pt;}
.x16{left:477.333333pt;}
.x2f{left:497.333333pt;}
.x17{left:525.333333pt;}
.x30{left:545.333333pt;}
.x18{left:572.000000pt;}
.x21{left:580.640000pt;}
.x31{left:592.000000pt;}
.x19{left:618.666667pt;}
.x32{left:648.000000pt;}
.x1a{left:673.333333pt;}
.x33{left:680.000000pt;}
.x24{left:688.000000pt;}
.x22{left:696.000000pt;}
.x20{left:720.000000pt;}
}




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