
    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_096ccdc12f96690e618a3d01.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.766602;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_a2a9baffd49327c6284b3f76.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.975586;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_5738817fd8d4e37a85a0fcc2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.765137;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_c81067e2fcef63c4c8a7ce6a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.750000;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_7ff48267569e739113611841.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.750000;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_c09b0a3ff3e99e2184947f45.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.024902;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_29dfaccbfeb1a025cb11591e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.776855;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_6200607d7558a426ebf5e86c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.966309;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_1cadda0345b6204f0c482b95.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.966309;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_145716e79e9c36563f1953fc.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.207031;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_aef9e7680ac207cf40f43559.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.024902;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_aaba344a3d507d9382578bc6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.750000;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_4b5620a6a526ec2867eab2a7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.756836;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_9ab405349ebe995cf8046d8a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.966309;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;}
.m6{transform:matrix(0.210937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210937,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);}
.m2{transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.274510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274510,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.286765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286765,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-44.640000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:44.640000px;}
.ls3a{letter-spacing:-1.034208px;}
.ls3b{letter-spacing:-0.898128px;}
.ls2e{letter-spacing:-0.733248px;}
.ls29{letter-spacing:-0.665712px;}
.ls30{letter-spacing:-0.636768px;}
.ls14{letter-spacing:-0.209088px;}
.ls15{letter-spacing:-0.202752px;}
.ls37{letter-spacing:-0.139104px;}
.ls39{letter-spacing:-0.018144px;}
.ls12{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.015552px;}
.ls21{letter-spacing:0.036000px;}
.ls2b{letter-spacing:0.036144px;}
.ls2f{letter-spacing:0.036288px;}
.ls2d{letter-spacing:0.046656px;}
.ls32{letter-spacing:0.051840px;}
.ls23{letter-spacing:0.077760px;}
.ls20{letter-spacing:0.093312px;}
.ls22{letter-spacing:0.101088px;}
.ls1a{letter-spacing:0.103680px;}
.ls1f{letter-spacing:0.108000px;}
.ls1d{letter-spacing:0.108864px;}
.ls26{letter-spacing:0.109008px;}
.ls31{letter-spacing:0.109152px;}
.ls25{letter-spacing:0.109440px;}
.ls1b{letter-spacing:0.116640px;}
.ls35{letter-spacing:0.122400px;}
.ls34{letter-spacing:0.123120px;}
.ls36{letter-spacing:0.123840px;}
.ls1c{letter-spacing:0.124416px;}
.ls1e{letter-spacing:0.132192px;}
.ls19{letter-spacing:0.139968px;}
.ls33{letter-spacing:0.147744px;}
.ls24{letter-spacing:0.155520px;}
.ls0{letter-spacing:0.172944px;}
.ls2c{letter-spacing:0.178848px;}
.ls28{letter-spacing:0.186624px;}
.ls38{letter-spacing:0.202176px;}
.ls2a{letter-spacing:0.520992px;}
.ls4{letter-spacing:0.771840px;}
.ls16{letter-spacing:1.439424px;}
.ls6{letter-spacing:1.518048px;}
.ls7{letter-spacing:1.673280px;}
.ls5{letter-spacing:3.314304px;}
.ls1{letter-spacing:3.465504px;}
.ls13{letter-spacing:4.965408px;}
.lse{letter-spacing:6.039677px;}
.ls11{letter-spacing:6.039689px;}
.ls10{letter-spacing:6.039691px;}
.lsf{letter-spacing:6.148800px;}
.ls18{letter-spacing:6.206400px;}
.ls17{letter-spacing:7.452000px;}
.lsc{letter-spacing:10.382400px;}
.lsd{letter-spacing:10.396800px;}
.ls8{letter-spacing:10.425600px;}
.lsb{letter-spacing:10.440000px;}
.lsa{letter-spacing:10.497600px;}
.ls9{letter-spacing:10.512000px;}
.ls2{letter-spacing:537.755472px;}
.ls3{letter-spacing:1428.988320px;}
.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;}
}
.wsd{word-spacing:-29.561472px;}
.ws11{word-spacing:-27.631872px;}
.wsc{word-spacing:-27.602928px;}
.wsf{word-spacing:-27.535392px;}
.ws16{word-spacing:-27.497232px;}
.wsa{word-spacing:-24.525504px;}
.ws13{word-spacing:-24.478848px;}
.ws9{word-spacing:-24.471072px;}
.ws14{word-spacing:-24.463296px;}
.wsb{word-spacing:-24.447744px;}
.ws10{word-spacing:-24.439968px;}
.wse{word-spacing:-24.416640px;}
.ws12{word-spacing:-24.354432px;}
.ws0{word-spacing:-24.077088px;}
.ws1{word-spacing:-22.577184px;}
.ws2{word-spacing:-22.425984px;}
.ws5{word-spacing:-20.733120px;}
.ws4{word-spacing:-20.629728px;}
.ws15{word-spacing:-20.594016px;}
.ws3{word-spacing:-18.930240px;}
.ws6{word-spacing:-6.278400px;}
.ws7{word-spacing:-6.220800px;}
.ws8{word-spacing:0.000000px;}
._1{margin-left:-13.846752px;}
._0{margin-left:-1.028160px;}
._2{width:1.762848px;}
._5{width:6.597820px;}
._4{width:71.913312px;}
._3{width:136.939968px;}
.fc4{color:rgb(235,231,231);}
.fc3{color:transparent;}
.fc2{color:rgb(0,129,129);}
.fc1{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:60.480000px;}
.fs2{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs7{font-size:90.720000px;}
.fs9{font-size:96.480000px;}
.fs5{font-size:108.000000px;}
.fs4{font-size:144.000000px;}
.fs3{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.ycc{bottom:21.120000px;}
.y93{bottom:21.180000px;}
.y100{bottom:21.660000px;}
.y46{bottom:22.320000px;}
.yea{bottom:22.380000px;}
.y6c{bottom:23.820000px;}
.y8{bottom:56.640000px;}
.y7{bottom:79.680000px;}
.y11a{bottom:89.040000px;}
.y6{bottom:113.880000px;}
.y5{bottom:125.760000px;}
.y4{bottom:148.800000px;}
.y44{bottom:170.400000px;}
.y119{bottom:171.480000px;}
.yca{bottom:176.880000px;}
.yfe{bottom:183.360000px;}
.ye8{bottom:184.800000px;}
.yb8{bottom:188.400000px;}
.y91{bottom:190.920000px;}
.y43{bottom:194.160000px;}
.y118{bottom:198.480000px;}
.yc9{bottom:200.280000px;}
.yfd{bottom:207.120000px;}
.ye7{bottom:208.560000px;}
.yb7{bottom:211.800000px;}
.y90{bottom:214.320000px;}
.y42{bottom:217.560000px;}
.yc8{bottom:224.040000px;}
.y117{bottom:225.120000px;}
.yfc{bottom:230.520000px;}
.ye6{bottom:231.960000px;}
.yb6{bottom:235.560000px;}
.y8f{bottom:237.720000px;}
.y41{bottom:240.960000px;}
.y6a{bottom:247.080000px;}
.yc7{bottom:247.440000px;}
.y116{bottom:252.480000px;}
.yfb{bottom:253.920000px;}
.ye5{bottom:255.720000px;}
.yb5{bottom:258.960000px;}
.y8e{bottom:261.480000px;}
.y40{bottom:264.720000px;}
.y69{bottom:270.480000px;}
.yc6{bottom:271.200000px;}
.yfa{bottom:277.680000px;}
.ye4{bottom:279.120000px;}
.yb4{bottom:282.360000px;}
.y8d{bottom:284.880000px;}
.y3f{bottom:288.120000px;}
.y1d{bottom:292.440000px;}
.y68{bottom:294.240000px;}
.yc5{bottom:294.600000px;}
.yf9{bottom:301.080000px;}
.ye3{bottom:302.520000px;}
.yb3{bottom:306.120000px;}
.y8c{bottom:308.280000px;}
.y3e{bottom:311.880000px;}
.y67{bottom:317.640000px;}
.yc4{bottom:318.000000px;}
.y1c{bottom:320.520000px;}
.yf8{bottom:324.840000px;}
.ye2{bottom:326.280000px;}
.yb2{bottom:329.520000px;}
.y8b{bottom:332.040000px;}
.y3d{bottom:335.280000px;}
.y115{bottom:336.000000px;}
.y66{bottom:341.040000px;}
.yc3{bottom:341.760000px;}
.yf7{bottom:348.240000px;}
.y1b{bottom:348.600000px;}
.ye1{bottom:349.680000px;}
.yb1{bottom:352.920000px;}
.y8a{bottom:355.440000px;}
.y3c{bottom:358.680000px;}
.y65{bottom:364.800000px;}
.yc2{bottom:365.160000px;}
.yf6{bottom:371.640000px;}
.ye0{bottom:373.440000px;}
.y1a{bottom:375.960000px;}
.yb0{bottom:376.680000px;}
.y114{bottom:377.760000px;}
.y89{bottom:379.200000px;}
.y3b{bottom:382.440000px;}
.y64{bottom:388.200000px;}
.yc1{bottom:388.560000px;}
.yf5{bottom:395.400000px;}
.ydf{bottom:396.840000px;}
.yaf{bottom:400.080000px;}
.y88{bottom:402.600000px;}
.y3a{bottom:405.840000px;}
.y19{bottom:408.720000px;}
.y63{bottom:411.960000px;}
.yc0{bottom:412.320000px;}
.yf4{bottom:418.800000px;}
.y113{bottom:419.880000px;}
.yde{bottom:420.240000px;}
.yae{bottom:423.840000px;}
.y87{bottom:426.000000px;}
.y39{bottom:429.600000px;}
.y62{bottom:435.360000px;}
.ybf{bottom:435.720000px;}
.y18{bottom:441.480000px;}
.yf3{bottom:442.560000px;}
.ydd{bottom:444.000000px;}
.yad{bottom:447.240000px;}
.y86{bottom:449.760000px;}
.y38{bottom:453.000000px;}
.y61{bottom:458.760000px;}
.ybe{bottom:459.480000px;}
.y112{bottom:461.640000px;}
.yf2{bottom:465.960000px;}
.ydc{bottom:467.400000px;}
.yac{bottom:470.640000px;}
.y17{bottom:472.080000px;}
.y85{bottom:473.160000px;}
.y37{bottom:476.400000px;}
.y60{bottom:482.520000px;}
.ybd{bottom:482.880000px;}
.yf1{bottom:489.360000px;}
.ydb{bottom:490.800000px;}
.yab{bottom:494.400000px;}
.y16{bottom:495.480000px;}
.y84{bottom:496.560000px;}
.y36{bottom:500.160000px;}
.y111{bottom:503.400000px;}
.y5f{bottom:505.920000px;}
.ybc{bottom:506.280000px;}
.yf0{bottom:513.120000px;}
.yda{bottom:514.560000px;}
.yaa{bottom:517.800000px;}
.y83{bottom:520.320000px;}
.y35{bottom:523.560000px;}
.y15{bottom:528.240000px;}
.y5e{bottom:529.320000px;}
.ybb{bottom:530.040000px;}
.yef{bottom:536.520000px;}
.yd9{bottom:537.960000px;}
.ya9{bottom:541.560000px;}
.y82{bottom:543.720000px;}
.y110{bottom:545.520000px;}
.y34{bottom:546.960000px;}
.y5d{bottom:553.080000px;}
.yba{bottom:553.440000px;}
.yee{bottom:559.920000px;}
.yd8{bottom:561.720000px;}
.y14{bottom:562.800000px;}
.ya8{bottom:564.960000px;}
.y81{bottom:567.480000px;}
.y33{bottom:570.720000px;}
.yb9{bottom:572.880000px;}
.ycb{bottom:573.000000px;}
.y5c{bottom:576.480000px;}
.yed{bottom:583.680000px;}
.yd7{bottom:585.120000px;}
.y10f{bottom:587.280000px;}
.ya7{bottom:588.360000px;}
.y80{bottom:590.880000px;}
.y32{bottom:594.120000px;}
.y5b{bottom:600.240000px;}
.y13{bottom:606.360000px;}
.yec{bottom:607.080000px;}
.yd6{bottom:608.520000px;}
.ya6{bottom:612.120000px;}
.y7f{bottom:614.280000px;}
.y31{bottom:617.880000px;}
.y5a{bottom:623.640000px;}
.y10e{bottom:629.040000px;}
.yeb{bottom:630.840000px;}
.yd5{bottom:632.280000px;}
.ya5{bottom:635.520000px;}
.y7e{bottom:638.040000px;}
.y30{bottom:641.280000px;}
.y59{bottom:647.040000px;}
.yff{bottom:649.500000px;}
.y12{bottom:649.920000px;}
.yd4{bottom:655.680000px;}
.ya4{bottom:658.920000px;}
.y7d{bottom:661.440000px;}
.y2f{bottom:664.680000px;}
.y58{bottom:670.800000px;}
.yd3{bottom:679.080000px;}
.ya3{bottom:682.680000px;}
.y7c{bottom:685.200000px;}
.y2e{bottom:688.440000px;}
.y11{bottom:693.480000px;}
.y57{bottom:694.200000px;}
.yd2{bottom:702.840000px;}
.ya2{bottom:706.080000px;}
.y7b{bottom:708.600000px;}
.y2d{bottom:711.840000px;}
.y10d{bottom:712.920000px;}
.y56{bottom:717.960000px;}
.yd1{bottom:726.240000px;}
.ya1{bottom:729.840000px;}
.y7a{bottom:732.000000px;}
.y2c{bottom:735.240000px;}
.y10{bottom:736.680000px;}
.y55{bottom:741.360000px;}
.yd0{bottom:750.000000px;}
.ya0{bottom:753.240000px;}
.y10c{bottom:754.680000px;}
.y79{bottom:755.760000px;}
.y2b{bottom:759.000000px;}
.y54{bottom:764.760000px;}
.ycf{bottom:773.400000px;}
.y9f{bottom:776.640000px;}
.y78{bottom:779.160000px;}
.yf{bottom:780.240000px;}
.y2a{bottom:782.400000px;}
.y53{bottom:788.520000px;}
.y10b{bottom:796.440000px;}
.yce{bottom:796.800000px;}
.y9e{bottom:800.400000px;}
.y77{bottom:802.560000px;}
.y29{bottom:806.160000px;}
.y52{bottom:811.920000px;}
.ycd{bottom:820.560000px;}
.ye{bottom:823.800000px;}
.y76{bottom:826.320000px;}
.y28{bottom:829.560000px;}
.y51{bottom:835.320000px;}
.y10a{bottom:838.200000px;}
.ye9{bottom:838.500000px;}
.y9d{bottom:847.200000px;}
.y75{bottom:849.720000px;}
.y27{bottom:852.960000px;}
.y50{bottom:859.080000px;}
.yd{bottom:867.360000px;}
.y9c{bottom:870.960000px;}
.y74{bottom:873.480000px;}
.y26{bottom:876.720000px;}
.y109{bottom:880.320000px;}
.y4f{bottom:882.480000px;}
.y9b{bottom:894.360000px;}
.y73{bottom:896.880000px;}
.y25{bottom:900.120000px;}
.y4e{bottom:906.240000px;}
.yc{bottom:914.520000px;}
.y9a{bottom:918.120000px;}
.y72{bottom:920.280000px;}
.y108{bottom:922.080000px;}
.y24{bottom:923.880000px;}
.y4d{bottom:929.640000px;}
.y99{bottom:941.520000px;}
.y71{bottom:944.040000px;}
.y23{bottom:947.280000px;}
.y4c{bottom:953.040000px;}
.yb{bottom:961.680000px;}
.y107{bottom:963.840000px;}
.y98{bottom:964.920000px;}
.y70{bottom:967.440000px;}
.y22{bottom:970.680000px;}
.y4b{bottom:976.800000px;}
.y97{bottom:988.680000px;}
.y6f{bottom:990.840000px;}
.y106{bottom:991.200000px;}
.y21{bottom:994.440000px;}
.y4a{bottom:1000.200000px;}
.y9{bottom:1003.080000px;}
.ya{bottom:1003.800000px;}
.y96{bottom:1012.080000px;}
.y6e{bottom:1014.600000px;}
.y20{bottom:1017.840000px;}
.y105{bottom:1018.200000px;}
.y6b{bottom:1018.500000px;}
.y95{bottom:1035.840000px;}
.y6d{bottom:1038.000000px;}
.y1f{bottom:1041.240000px;}
.y104{bottom:1045.560000px;}
.y92{bottom:1057.500000px;}
.y94{bottom:1059.240000px;}
.y1e{bottom:1065.000000px;}
.y103{bottom:1072.560000px;}
.y49{bottom:1082.640000px;}
.y45{bottom:1083.000000px;}
.y102{bottom:1099.920000px;}
.y48{bottom:1106.400000px;}
.y101{bottom:1126.920000px;}
.y47{bottom:1129.800000px;}
.y3{bottom:1152.480000px;}
.y2{bottom:1172.640000px;}
.y1{bottom:1192.440000px;}
.h5{height:45.360000px;}
.h3{height:46.629844px;}
.h2{height:49.680000px;}
.h9{height:54.703125px;}
.he{height:58.320000px;}
.h10{height:58.500000px;}
.hc{height:60.000000px;}
.ha{height:68.925938px;}
.hf{height:72.077344px;}
.hb{height:77.797969px;}
.hd{height:78.955313px;}
.h8{height:82.054688px;}
.h4{height:91.269844px;}
.h6{height:116.640000px;}
.h7{height:117.843750px;}
.h1{height:1236.000000px;}
.h0{height:1263.000000px;}
.w2{width:298.500000px;}
.w3{width:300.000000px;}
.w4{width:306.000000px;}
.w1{width:865.500000px;}
.w0{width:892.500000px;}
.x2{left:-27.000000px;}
.x0{left:0.000000px;}
.xc{left:3.149788px;}
.x1{left:27.000000px;}
.x3{left:47.250000px;}
.x14{left:69.000000px;}
.x6{left:74.474856px;}
.xe{left:76.500000px;}
.x5{left:111.825072px;}
.xd{left:125.300172px;}
.x7{left:127.575058px;}
.x10{left:162.748164px;}
.x12{left:165.765036px;}
.x15{left:172.191648px;}
.xf{left:187.469964px;}
.x13{left:233.524308px;}
.x18{left:275.259888px;}
.x17{left:279.839340px;}
.x16{left:316.061280px;}
.x9{left:361.713145px;}
.x11{left:372.914820px;}
.x8{left:380.662348px;}
.x4{left:404.025120px;}
.xb{left:420.450120px;}
.xa{left:807.975025px;}
@media print{
.v2{vertical-align:-39.680000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:39.680000pt;}
.ls3a{letter-spacing:-0.919296pt;}
.ls3b{letter-spacing:-0.798336pt;}
.ls2e{letter-spacing:-0.651776pt;}
.ls29{letter-spacing:-0.591744pt;}
.ls30{letter-spacing:-0.566016pt;}
.ls14{letter-spacing:-0.185856pt;}
.ls15{letter-spacing:-0.180224pt;}
.ls37{letter-spacing:-0.123648pt;}
.ls39{letter-spacing:-0.016128pt;}
.ls12{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.013824pt;}
.ls21{letter-spacing:0.032000pt;}
.ls2b{letter-spacing:0.032128pt;}
.ls2f{letter-spacing:0.032256pt;}
.ls2d{letter-spacing:0.041472pt;}
.ls32{letter-spacing:0.046080pt;}
.ls23{letter-spacing:0.069120pt;}
.ls20{letter-spacing:0.082944pt;}
.ls22{letter-spacing:0.089856pt;}
.ls1a{letter-spacing:0.092160pt;}
.ls1f{letter-spacing:0.096000pt;}
.ls1d{letter-spacing:0.096768pt;}
.ls26{letter-spacing:0.096896pt;}
.ls31{letter-spacing:0.097024pt;}
.ls25{letter-spacing:0.097280pt;}
.ls1b{letter-spacing:0.103680pt;}
.ls35{letter-spacing:0.108800pt;}
.ls34{letter-spacing:0.109440pt;}
.ls36{letter-spacing:0.110080pt;}
.ls1c{letter-spacing:0.110592pt;}
.ls1e{letter-spacing:0.117504pt;}
.ls19{letter-spacing:0.124416pt;}
.ls33{letter-spacing:0.131328pt;}
.ls24{letter-spacing:0.138240pt;}
.ls0{letter-spacing:0.153728pt;}
.ls2c{letter-spacing:0.158976pt;}
.ls28{letter-spacing:0.165888pt;}
.ls38{letter-spacing:0.179712pt;}
.ls2a{letter-spacing:0.463104pt;}
.ls4{letter-spacing:0.686080pt;}
.ls16{letter-spacing:1.279488pt;}
.ls6{letter-spacing:1.349376pt;}
.ls7{letter-spacing:1.487360pt;}
.ls5{letter-spacing:2.946048pt;}
.ls1{letter-spacing:3.080448pt;}
.ls13{letter-spacing:4.413696pt;}
.lse{letter-spacing:5.368602pt;}
.ls11{letter-spacing:5.368612pt;}
.ls10{letter-spacing:5.368614pt;}
.lsf{letter-spacing:5.465600pt;}
.ls18{letter-spacing:5.516800pt;}
.ls17{letter-spacing:6.624000pt;}
.lsc{letter-spacing:9.228800pt;}
.lsd{letter-spacing:9.241600pt;}
.ls8{letter-spacing:9.267200pt;}
.lsb{letter-spacing:9.280000pt;}
.lsa{letter-spacing:9.331200pt;}
.ls9{letter-spacing:9.344000pt;}
.ls2{letter-spacing:478.004864pt;}
.ls3{letter-spacing:1270.211840pt;}
.wsd{word-spacing:-26.276864pt;}
.ws11{word-spacing:-24.561664pt;}
.wsc{word-spacing:-24.535936pt;}
.wsf{word-spacing:-24.475904pt;}
.ws16{word-spacing:-24.441984pt;}
.wsa{word-spacing:-21.800448pt;}
.ws13{word-spacing:-21.758976pt;}
.ws9{word-spacing:-21.752064pt;}
.ws14{word-spacing:-21.745152pt;}
.wsb{word-spacing:-21.731328pt;}
.ws10{word-spacing:-21.724416pt;}
.wse{word-spacing:-21.703680pt;}
.ws12{word-spacing:-21.648384pt;}
.ws0{word-spacing:-21.401856pt;}
.ws1{word-spacing:-20.068608pt;}
.ws2{word-spacing:-19.934208pt;}
.ws5{word-spacing:-18.429440pt;}
.ws4{word-spacing:-18.337536pt;}
.ws15{word-spacing:-18.305792pt;}
.ws3{word-spacing:-16.826880pt;}
.ws6{word-spacing:-5.580800pt;}
.ws7{word-spacing:-5.529600pt;}
.ws8{word-spacing:0.000000pt;}
._1{margin-left:-12.308224pt;}
._0{margin-left:-0.913920pt;}
._2{width:1.566976pt;}
._5{width:5.864729pt;}
._4{width:63.922944pt;}
._3{width:121.724416pt;}
.fs1{font-size:53.760000pt;}
.fs2{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs7{font-size:80.640000pt;}
.fs9{font-size:85.760000pt;}
.fs5{font-size:96.000000pt;}
.fs4{font-size:128.000000pt;}
.fs3{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.ycc{bottom:18.773333pt;}
.y93{bottom:18.826667pt;}
.y100{bottom:19.253333pt;}
.y46{bottom:19.840000pt;}
.yea{bottom:19.893333pt;}
.y6c{bottom:21.173333pt;}
.y8{bottom:50.346667pt;}
.y7{bottom:70.826667pt;}
.y11a{bottom:79.146667pt;}
.y6{bottom:101.226667pt;}
.y5{bottom:111.786667pt;}
.y4{bottom:132.266667pt;}
.y44{bottom:151.466667pt;}
.y119{bottom:152.426667pt;}
.yca{bottom:157.226667pt;}
.yfe{bottom:162.986667pt;}
.ye8{bottom:164.266667pt;}
.yb8{bottom:167.466667pt;}
.y91{bottom:169.706667pt;}
.y43{bottom:172.586667pt;}
.y118{bottom:176.426667pt;}
.yc9{bottom:178.026667pt;}
.yfd{bottom:184.106667pt;}
.ye7{bottom:185.386667pt;}
.yb7{bottom:188.266667pt;}
.y90{bottom:190.506667pt;}
.y42{bottom:193.386667pt;}
.yc8{bottom:199.146667pt;}
.y117{bottom:200.106667pt;}
.yfc{bottom:204.906667pt;}
.ye6{bottom:206.186667pt;}
.yb6{bottom:209.386667pt;}
.y8f{bottom:211.306667pt;}
.y41{bottom:214.186667pt;}
.y6a{bottom:219.626667pt;}
.yc7{bottom:219.946667pt;}
.y116{bottom:224.426667pt;}
.yfb{bottom:225.706667pt;}
.ye5{bottom:227.306667pt;}
.yb5{bottom:230.186667pt;}
.y8e{bottom:232.426667pt;}
.y40{bottom:235.306667pt;}
.y69{bottom:240.426667pt;}
.yc6{bottom:241.066667pt;}
.yfa{bottom:246.826667pt;}
.ye4{bottom:248.106667pt;}
.yb4{bottom:250.986667pt;}
.y8d{bottom:253.226667pt;}
.y3f{bottom:256.106667pt;}
.y1d{bottom:259.946667pt;}
.y68{bottom:261.546667pt;}
.yc5{bottom:261.866667pt;}
.yf9{bottom:267.626667pt;}
.ye3{bottom:268.906667pt;}
.yb3{bottom:272.106667pt;}
.y8c{bottom:274.026667pt;}
.y3e{bottom:277.226667pt;}
.y67{bottom:282.346667pt;}
.yc4{bottom:282.666667pt;}
.y1c{bottom:284.906667pt;}
.yf8{bottom:288.746667pt;}
.ye2{bottom:290.026667pt;}
.yb2{bottom:292.906667pt;}
.y8b{bottom:295.146667pt;}
.y3d{bottom:298.026667pt;}
.y115{bottom:298.666667pt;}
.y66{bottom:303.146667pt;}
.yc3{bottom:303.786667pt;}
.yf7{bottom:309.546667pt;}
.y1b{bottom:309.866667pt;}
.ye1{bottom:310.826667pt;}
.yb1{bottom:313.706667pt;}
.y8a{bottom:315.946667pt;}
.y3c{bottom:318.826667pt;}
.y65{bottom:324.266667pt;}
.yc2{bottom:324.586667pt;}
.yf6{bottom:330.346667pt;}
.ye0{bottom:331.946667pt;}
.y1a{bottom:334.186667pt;}
.yb0{bottom:334.826667pt;}
.y114{bottom:335.786667pt;}
.y89{bottom:337.066667pt;}
.y3b{bottom:339.946667pt;}
.y64{bottom:345.066667pt;}
.yc1{bottom:345.386667pt;}
.yf5{bottom:351.466667pt;}
.ydf{bottom:352.746667pt;}
.yaf{bottom:355.626667pt;}
.y88{bottom:357.866667pt;}
.y3a{bottom:360.746667pt;}
.y19{bottom:363.306667pt;}
.y63{bottom:366.186667pt;}
.yc0{bottom:366.506667pt;}
.yf4{bottom:372.266667pt;}
.y113{bottom:373.226667pt;}
.yde{bottom:373.546667pt;}
.yae{bottom:376.746667pt;}
.y87{bottom:378.666667pt;}
.y39{bottom:381.866667pt;}
.y62{bottom:386.986667pt;}
.ybf{bottom:387.306667pt;}
.y18{bottom:392.426667pt;}
.yf3{bottom:393.386667pt;}
.ydd{bottom:394.666667pt;}
.yad{bottom:397.546667pt;}
.y86{bottom:399.786667pt;}
.y38{bottom:402.666667pt;}
.y61{bottom:407.786667pt;}
.ybe{bottom:408.426667pt;}
.y112{bottom:410.346667pt;}
.yf2{bottom:414.186667pt;}
.ydc{bottom:415.466667pt;}
.yac{bottom:418.346667pt;}
.y17{bottom:419.626667pt;}
.y85{bottom:420.586667pt;}
.y37{bottom:423.466667pt;}
.y60{bottom:428.906667pt;}
.ybd{bottom:429.226667pt;}
.yf1{bottom:434.986667pt;}
.ydb{bottom:436.266667pt;}
.yab{bottom:439.466667pt;}
.y16{bottom:440.426667pt;}
.y84{bottom:441.386667pt;}
.y36{bottom:444.586667pt;}
.y111{bottom:447.466667pt;}
.y5f{bottom:449.706667pt;}
.ybc{bottom:450.026667pt;}
.yf0{bottom:456.106667pt;}
.yda{bottom:457.386667pt;}
.yaa{bottom:460.266667pt;}
.y83{bottom:462.506667pt;}
.y35{bottom:465.386667pt;}
.y15{bottom:469.546667pt;}
.y5e{bottom:470.506667pt;}
.ybb{bottom:471.146667pt;}
.yef{bottom:476.906667pt;}
.yd9{bottom:478.186667pt;}
.ya9{bottom:481.386667pt;}
.y82{bottom:483.306667pt;}
.y110{bottom:484.906667pt;}
.y34{bottom:486.186667pt;}
.y5d{bottom:491.626667pt;}
.yba{bottom:491.946667pt;}
.yee{bottom:497.706667pt;}
.yd8{bottom:499.306667pt;}
.y14{bottom:500.266667pt;}
.ya8{bottom:502.186667pt;}
.y81{bottom:504.426667pt;}
.y33{bottom:507.306667pt;}
.yb9{bottom:509.226667pt;}
.ycb{bottom:509.333333pt;}
.y5c{bottom:512.426667pt;}
.yed{bottom:518.826667pt;}
.yd7{bottom:520.106667pt;}
.y10f{bottom:522.026667pt;}
.ya7{bottom:522.986667pt;}
.y80{bottom:525.226667pt;}
.y32{bottom:528.106667pt;}
.y5b{bottom:533.546667pt;}
.y13{bottom:538.986667pt;}
.yec{bottom:539.626667pt;}
.yd6{bottom:540.906667pt;}
.ya6{bottom:544.106667pt;}
.y7f{bottom:546.026667pt;}
.y31{bottom:549.226667pt;}
.y5a{bottom:554.346667pt;}
.y10e{bottom:559.146667pt;}
.yeb{bottom:560.746667pt;}
.yd5{bottom:562.026667pt;}
.ya5{bottom:564.906667pt;}
.y7e{bottom:567.146667pt;}
.y30{bottom:570.026667pt;}
.y59{bottom:575.146667pt;}
.yff{bottom:577.333333pt;}
.y12{bottom:577.706667pt;}
.yd4{bottom:582.826667pt;}
.ya4{bottom:585.706667pt;}
.y7d{bottom:587.946667pt;}
.y2f{bottom:590.826667pt;}
.y58{bottom:596.266667pt;}
.yd3{bottom:603.626667pt;}
.ya3{bottom:606.826667pt;}
.y7c{bottom:609.066667pt;}
.y2e{bottom:611.946667pt;}
.y11{bottom:616.426667pt;}
.y57{bottom:617.066667pt;}
.yd2{bottom:624.746667pt;}
.ya2{bottom:627.626667pt;}
.y7b{bottom:629.866667pt;}
.y2d{bottom:632.746667pt;}
.y10d{bottom:633.706667pt;}
.y56{bottom:638.186667pt;}
.yd1{bottom:645.546667pt;}
.ya1{bottom:648.746667pt;}
.y7a{bottom:650.666667pt;}
.y2c{bottom:653.546667pt;}
.y10{bottom:654.826667pt;}
.y55{bottom:658.986667pt;}
.yd0{bottom:666.666667pt;}
.ya0{bottom:669.546667pt;}
.y10c{bottom:670.826667pt;}
.y79{bottom:671.786667pt;}
.y2b{bottom:674.666667pt;}
.y54{bottom:679.786667pt;}
.ycf{bottom:687.466667pt;}
.y9f{bottom:690.346667pt;}
.y78{bottom:692.586667pt;}
.yf{bottom:693.546667pt;}
.y2a{bottom:695.466667pt;}
.y53{bottom:700.906667pt;}
.y10b{bottom:707.946667pt;}
.yce{bottom:708.266667pt;}
.y9e{bottom:711.466667pt;}
.y77{bottom:713.386667pt;}
.y29{bottom:716.586667pt;}
.y52{bottom:721.706667pt;}
.ycd{bottom:729.386667pt;}
.ye{bottom:732.266667pt;}
.y76{bottom:734.506667pt;}
.y28{bottom:737.386667pt;}
.y51{bottom:742.506667pt;}
.y10a{bottom:745.066667pt;}
.ye9{bottom:745.333333pt;}
.y9d{bottom:753.066667pt;}
.y75{bottom:755.306667pt;}
.y27{bottom:758.186667pt;}
.y50{bottom:763.626667pt;}
.yd{bottom:770.986667pt;}
.y9c{bottom:774.186667pt;}
.y74{bottom:776.426667pt;}
.y26{bottom:779.306667pt;}
.y109{bottom:782.506667pt;}
.y4f{bottom:784.426667pt;}
.y9b{bottom:794.986667pt;}
.y73{bottom:797.226667pt;}
.y25{bottom:800.106667pt;}
.y4e{bottom:805.546667pt;}
.yc{bottom:812.906667pt;}
.y9a{bottom:816.106667pt;}
.y72{bottom:818.026667pt;}
.y108{bottom:819.626667pt;}
.y24{bottom:821.226667pt;}
.y4d{bottom:826.346667pt;}
.y99{bottom:836.906667pt;}
.y71{bottom:839.146667pt;}
.y23{bottom:842.026667pt;}
.y4c{bottom:847.146667pt;}
.yb{bottom:854.826667pt;}
.y107{bottom:856.746667pt;}
.y98{bottom:857.706667pt;}
.y70{bottom:859.946667pt;}
.y22{bottom:862.826667pt;}
.y4b{bottom:868.266667pt;}
.y97{bottom:878.826667pt;}
.y6f{bottom:880.746667pt;}
.y106{bottom:881.066667pt;}
.y21{bottom:883.946667pt;}
.y4a{bottom:889.066667pt;}
.y9{bottom:891.626667pt;}
.ya{bottom:892.266667pt;}
.y96{bottom:899.626667pt;}
.y6e{bottom:901.866667pt;}
.y20{bottom:904.746667pt;}
.y105{bottom:905.066667pt;}
.y6b{bottom:905.333333pt;}
.y95{bottom:920.746667pt;}
.y6d{bottom:922.666667pt;}
.y1f{bottom:925.546667pt;}
.y104{bottom:929.386667pt;}
.y92{bottom:940.000000pt;}
.y94{bottom:941.546667pt;}
.y1e{bottom:946.666667pt;}
.y103{bottom:953.386667pt;}
.y49{bottom:962.346667pt;}
.y45{bottom:962.666667pt;}
.y102{bottom:977.706667pt;}
.y48{bottom:983.466667pt;}
.y101{bottom:1001.706667pt;}
.y47{bottom:1004.266667pt;}
.y3{bottom:1024.426667pt;}
.y2{bottom:1042.346667pt;}
.y1{bottom:1059.946667pt;}
.h5{height:40.320000pt;}
.h3{height:41.448750pt;}
.h2{height:44.160000pt;}
.h9{height:48.625000pt;}
.he{height:51.840000pt;}
.h10{height:52.000000pt;}
.hc{height:53.333333pt;}
.ha{height:61.267500pt;}
.hf{height:64.068750pt;}
.hb{height:69.153750pt;}
.hd{height:70.182500pt;}
.h8{height:72.937500pt;}
.h4{height:81.128750pt;}
.h6{height:103.680000pt;}
.h7{height:104.750000pt;}
.h1{height:1098.666667pt;}
.h0{height:1122.666667pt;}
.w2{width:265.333333pt;}
.w3{width:266.666667pt;}
.w4{width:272.000000pt;}
.w1{width:769.333333pt;}
.w0{width:793.333333pt;}
.x2{left:-24.000000pt;}
.x0{left:0.000000pt;}
.xc{left:2.799812pt;}
.x1{left:24.000000pt;}
.x3{left:42.000000pt;}
.x14{left:61.333333pt;}
.x6{left:66.199872pt;}
.xe{left:68.000000pt;}
.x5{left:99.400064pt;}
.xd{left:111.377931pt;}
.x7{left:113.400052pt;}
.x10{left:144.665035pt;}
.x12{left:147.346699pt;}
.x15{left:153.059243pt;}
.xf{left:166.639968pt;}
.x13{left:207.577163pt;}
.x18{left:244.675456pt;}
.x17{left:248.746080pt;}
.x16{left:280.943360pt;}
.x9{left:321.522795pt;}
.x11{left:331.479840pt;}
.x8{left:338.366532pt;}
.x4{left:359.133440pt;}
.xb{left:373.733440pt;}
.xa{left:718.200022pt;}
}




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