
    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_cb52f0a4418131e27d53d839.woff')format("woff");}.ff1{font-family:ff1;line-height:1.056152;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_75f5ac3ed64b3c13f25fa0fc.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6a28b4b2f09b5cffdae58d72.woff')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_f332278609622c3a97aeee58.woff')format("woff");}.ff4{font-family:ff4;line-height:1.072754;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_14993943a7fb5a03afc9c6cc.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2413ab26b714f0e5f2ea8ce9.woff')format("woff");}.ff6{font-family:ff6;line-height:0.689941;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_1557f783af397e31a5950a16.woff')format("woff");}.ff7{font-family:ff7;line-height:0.687500;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_3543d81bb0615357683a5dc9.woff')format("woff");}.ff8{font-family:ff8;line-height:1.093262;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_a7da8e2635ac883373915492.woff')format("woff");}.ff9{font-family:ff9;line-height:0.896973;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_f95d39053a5f36e2710edcb0.woff')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8a3d4440f2c183c916c97616.woff')format("woff");}.ffb{font-family:ffb;line-height:0.896973;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_234d6561b8f10ef9b31c15af.woff')format("woff");}.ffc{font-family:ffc;line-height:1.049805;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_772efa2e6edee72a803dbf97.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_c629c320408aacb6f088d42c.woff')format("woff");}.ffe{font-family:ffe;line-height:0.900391;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_12606e0cccc6315873b03880.woff')format("woff");}.fff{font-family:fff;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;}
.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;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls2d{letter-spacing:-0.417312px;}
.ls2e{letter-spacing:-0.399168px;}
.ls2c{letter-spacing:-0.381024px;}
.lse{letter-spacing:-0.338688px;}
.lsc{letter-spacing:-0.320544px;}
.lsf{letter-spacing:-0.302400px;}
.ls31{letter-spacing:-0.272160px;}
.lsd{letter-spacing:-0.260064px;}
.ls8{letter-spacing:-0.241920px;}
.ls12{letter-spacing:-0.223776px;}
.ls2b{letter-spacing:-0.175392px;}
.ls7{letter-spacing:-0.158976px;}
.ls11{letter-spacing:-0.157248px;}
.ls2a{letter-spacing:-0.145152px;}
.ls13{letter-spacing:-0.125856px;}
.ls10{letter-spacing:-0.120960px;}
.ls6{letter-spacing:-0.119232px;}
.ls3{letter-spacing:-0.079488px;}
.ls5{letter-spacing:-0.059616px;}
.ls4{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.116928px;}
.ls0{letter-spacing:0.119952px;}
.ls1c{letter-spacing:0.158688px;}
.ls15{letter-spacing:0.159840px;}
.ls21{letter-spacing:0.160416px;}
.ls22{letter-spacing:0.160560px;}
.ls24{letter-spacing:0.160704px;}
.ls25{letter-spacing:0.160848px;}
.ls20{letter-spacing:0.161280px;}
.ls3e{letter-spacing:0.192096px;}
.lsb{letter-spacing:0.200448px;}
.ls18{letter-spacing:0.233856px;}
.ls36{letter-spacing:0.239040px;}
.ls19{letter-spacing:0.239904px;}
.ls28{letter-spacing:0.240480px;}
.ls14{letter-spacing:0.242208px;}
.ls1d{letter-spacing:0.275616px;}
.ls9{letter-spacing:0.283968px;}
.ls1e{letter-spacing:0.317376px;}
.ls3a{letter-spacing:0.319392px;}
.lsa{letter-spacing:0.359136px;}
.ls1f{letter-spacing:0.442656px;}
.ls39{letter-spacing:0.479952px;}
.ls4f{letter-spacing:1.601280px;}
.ls4d{letter-spacing:1.833120px;}
.ls4c{letter-spacing:1.834560px;}
.ls4e{letter-spacing:1.836000px;}
.ls1b{letter-spacing:2.200320px;}
.ls30{letter-spacing:2.260368px;}
.ls2f{letter-spacing:4.230288px;}
.ls1a{letter-spacing:4.897440px;}
.ls42{letter-spacing:8.121600px;}
.ls27{letter-spacing:10.293264px;}
.ls34{letter-spacing:12.350880px;}
.ls40{letter-spacing:12.637440px;}
.ls4a{letter-spacing:12.908160px;}
.ls4b{letter-spacing:12.908304px;}
.ls49{letter-spacing:12.908448px;}
.ls26{letter-spacing:13.788000px;}
.ls41{letter-spacing:14.004000px;}
.ls32{letter-spacing:14.964768px;}
.ls33{letter-spacing:14.965920px;}
.ls1{letter-spacing:16.119360px;}
.ls3b{letter-spacing:16.371072px;}
.ls16{letter-spacing:17.762400px;}
.ls3d{letter-spacing:18.938880px;}
.ls35{letter-spacing:18.953280px;}
.ls29{letter-spacing:19.218240px;}
.ls3c{letter-spacing:23.151744px;}
.ls3f{letter-spacing:23.386176px;}
.ls38{letter-spacing:24.223968px;}
.ls2{letter-spacing:25.567200px;}
.ls23{letter-spacing:41.286528px;}
.ls37{letter-spacing:62.205984px;}
.ls48{letter-spacing:66.368160px;}
.ls44{letter-spacing:66.369168px;}
.ls47{letter-spacing:66.369600px;}
.ls45{letter-spacing:66.370752px;}
.ls46{letter-spacing:66.371040px;}
.ls43{letter-spacing:180.111456px;}
.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;}
}
.wsc{word-spacing:-21.239136px;}
.ws18{word-spacing:-21.163968px;}
.ws17{word-spacing:-21.155616px;}
.wsb{word-spacing:-21.122208px;}
.ws9{word-spacing:-21.080448px;}
.ws19{word-spacing:-21.072096px;}
.ws13{word-spacing:-21.038688px;}
.wsa{word-spacing:-20.996928px;}
.wsd{word-spacing:-20.880000px;}
.ws1{word-spacing:-16.560000px;}
.ws7{word-spacing:-16.480512px;}
.ws0{word-spacing:-16.440768px;}
.ws3{word-spacing:-16.401024px;}
.ws5{word-spacing:-15.120000px;}
.ws12{word-spacing:-14.974848px;}
.wsf{word-spacing:-14.962752px;}
.ws10{word-spacing:-14.944608px;}
.ws11{word-spacing:-14.896224px;}
.ws2{word-spacing:-14.878080px;}
.ws6{word-spacing:-14.859936px;}
.ws14{word-spacing:-14.847840px;}
.ws15{word-spacing:-14.817600px;}
.ws4{word-spacing:-14.799456px;}
.wse{word-spacing:-14.781312px;}
.ws16{word-spacing:-14.738976px;}
.ws8{word-spacing:0.000000px;}
._2b{margin-left:-19.128960px;}
._2a{margin-left:-14.221296px;}
._31{margin-left:-6.488064px;}
._23{margin-left:-5.273280px;}
._19{margin-left:-4.106880px;}
._7{margin-left:-2.698560px;}
._5{margin-left:-1.085760px;}
._2{width:1.059840px;}
._12{width:2.848320px;}
._13{width:3.881376px;}
._f{width:5.382720px;}
._9{width:7.165440px;}
._1a{width:8.400960px;}
._a{width:9.676800px;}
._11{width:10.929600px;}
._10{width:12.254400px;}
._6{width:13.910400px;}
._14{width:15.367680px;}
._20{width:16.695360px;}
._1c{width:17.752320px;}
._27{width:19.543680px;}
._21{width:22.155264px;}
._17{width:23.856768px;}
._16{width:25.059168px;}
._1b{width:26.759232px;}
._d{width:28.123200px;}
._c{width:29.151360px;}
._26{width:30.228480px;}
._25{width:31.236480px;}
._24{width:32.489280px;}
._1f{width:33.563520px;}
._18{width:35.173440px;}
._2c{width:38.419200px;}
._28{width:40.590720px;}
._15{width:41.797440px;}
._1d{width:42.989760px;}
._29{width:45.396864px;}
._22{width:47.188800px;}
._2e{width:58.181760px;}
._2d{width:62.476848px;}
._8{width:66.375360px;}
._e{width:79.894080px;}
._3{width:134.463024px;}
._1{width:164.388960px;}
._30{width:179.489088px;}
._2f{width:180.898560px;}
._4{width:195.839424px;}
._b{width:515.047680px;}
._1e{width:843.120000px;}
._32{width:848.160000px;}
._0{width:909.056160px;}
.fc2{color:rgb(26,27,28);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs3{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs6{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.ya2{bottom:3.420000px;}
.yf0{bottom:3.540000px;}
.ye7{bottom:3.600000px;}
.ye1{bottom:3.660000px;}
.y8f{bottom:3.840000px;}
.y9b{bottom:3.960000px;}
.yd9{bottom:4.020000px;}
.y7b{bottom:4.140000px;}
.ycc{bottom:4.200000px;}
.yc6{bottom:4.260000px;}
.yec{bottom:4.320000px;}
.y4f{bottom:4.380000px;}
.yf3{bottom:4.620000px;}
.yaf{bottom:4.800000px;}
.yd5{bottom:4.860000px;}
.yee{bottom:12.180000px;}
.ye8{bottom:12.240000px;}
.y79{bottom:12.420000px;}
.yda{bottom:12.660000px;}
.ycf{bottom:12.780000px;}
.yc9{bottom:12.840000px;}
.yea{bottom:12.960000px;}
.ye4{bottom:13.020000px;}
.yf2{bottom:13.260000px;}
.yaa{bottom:13.440000px;}
.yd3{bottom:13.500000px;}
.ya0{bottom:20.340000px;}
.yef{bottom:20.820000px;}
.ye6{bottom:20.880000px;}
.y7a{bottom:21.060000px;}
.y8e{bottom:21.120000px;}
.y99{bottom:21.240000px;}
.yd8{bottom:21.300000px;}
.yd0{bottom:21.420000px;}
.ycb{bottom:21.480000px;}
.yc4{bottom:21.540000px;}
.yeb{bottom:21.600000px;}
.ye3{bottom:21.660000px;}
.yae{bottom:22.080000px;}
.yd4{bottom:22.140000px;}
.y4e{bottom:23.100000px;}
.ya5{bottom:28.980000px;}
.y8b{bottom:29.760000px;}
.yce{bottom:30.060000px;}
.yc8{bottom:30.120000px;}
.ya8{bottom:30.720000px;}
.y9e{bottom:37.620000px;}
.y85{bottom:38.400000px;}
.y97{bottom:38.520000px;}
.yd1{bottom:38.700000px;}
.yca{bottom:38.760000px;}
.yc5{bottom:38.820000px;}
.yad{bottom:39.360000px;}
.y4d{bottom:42.180000px;}
.ya4{bottom:46.260000px;}
.y8a{bottom:47.040000px;}
.ya7{bottom:48.000000px;}
.y4{bottom:52.560000px;}
.y9d{bottom:54.900000px;}
.y84{bottom:55.680000px;}
.y96{bottom:55.800000px;}
.yac{bottom:56.640000px;}
.y4c{bottom:61.260000px;}
.ya3{bottom:63.540000px;}
.y89{bottom:64.320000px;}
.y92{bottom:64.440000px;}
.ya9{bottom:65.280000px;}
.y9f{bottom:72.180000px;}
.y83{bottom:72.960000px;}
.y95{bottom:73.080000px;}
.yab{bottom:73.920000px;}
.y4b{bottom:79.980000px;}
.y7e{bottom:81.600000px;}
.y91{bottom:81.720000px;}
.ya1{bottom:89.460000px;}
.y104{bottom:90.000000px;}
.y82{bottom:90.240000px;}
.y94{bottom:90.360000px;}
.yc3{bottom:90.720000px;}
.y7d{bottom:98.880000px;}
.y4a{bottom:99.060000px;}
.y77{bottom:101.880000px;}
.y81{bottom:107.520000px;}
.y93{bottom:107.640000px;}
.y103{bottom:114.120000px;}
.yc2{bottom:114.840000px;}
.y88{bottom:116.160000px;}
.y49{bottom:118.140000px;}
.y98{bottom:124.560000px;}
.y80{bottom:124.800000px;}
.y76{bottom:126.000000px;}
.y87{bottom:133.440000px;}
.y48{bottom:137.220000px;}
.y102{bottom:138.240000px;}
.yc1{bottom:138.960000px;}
.y9a{bottom:141.840000px;}
.y7f{bottom:142.080000px;}
.y75{bottom:150.120000px;}
.y86{bottom:150.720000px;}
.ydf{bottom:155.520000px;}
.y47{bottom:155.940000px;}
.y8d{bottom:159.360000px;}
.y101{bottom:162.360000px;}
.yc0{bottom:163.080000px;}
.y74{bottom:174.240000px;}
.y46{bottom:175.020000px;}
.y8c{bottom:176.640000px;}
.yde{bottom:179.640000px;}
.y100{bottom:186.480000px;}
.ybf{bottom:187.200000px;}
.y45{bottom:194.100000px;}
.y73{bottom:198.720000px;}
.ydd{bottom:202.320000px;}
.yff{bottom:210.600000px;}
.ybe{bottom:211.320000px;}
.y44{bottom:212.820000px;}
.ydc{bottom:219.600000px;}
.y50{bottom:222.840000px;}
.y43{bottom:231.900000px;}
.yfe{bottom:234.720000px;}
.ybd{bottom:235.440000px;}
.ydb{bottom:236.520000px;}
.yc{bottom:241.500000px;}
.y72{bottom:246.960000px;}
.y28{bottom:247.740000px;}
.yd7{bottom:250.500000px;}
.y42{bottom:250.980000px;}
.yfd{bottom:258.840000px;}
.ybc{bottom:259.560000px;}
.y27{bottom:261.780000px;}
.y41{bottom:269.700000px;}
.y71{bottom:271.080000px;}
.yfc{bottom:282.960000px;}
.ybb{bottom:283.680000px;}
.yd6{bottom:285.000000px;}
.y40{bottom:288.780000px;}
.y26{bottom:294.180000px;}
.y70{bottom:295.200000px;}
.yfb{bottom:307.080000px;}
.yba{bottom:307.800000px;}
.y3f{bottom:307.860000px;}
.y25{bottom:311.460000px;}
.y6f{bottom:319.320000px;}
.y3e{bottom:326.940000px;}
.y24{bottom:328.380000px;}
.yfa{bottom:331.200000px;}
.yb9{bottom:331.920000px;}
.yd2{bottom:337.500000px;}
.y6e{bottom:343.440000px;}
.y23{bottom:345.660000px;}
.yf9{bottom:355.320000px;}
.yb8{bottom:356.040000px;}
.y22{bottom:362.940000px;}
.y3d{bottom:364.740000px;}
.y6d{bottom:367.560000px;}
.ycd{bottom:373.500000px;}
.yf8{bottom:379.440000px;}
.y21{bottom:380.220000px;}
.yb7{bottom:380.520000px;}
.y3c{bottom:383.820000px;}
.y6c{bottom:391.680000px;}
.y20{bottom:397.500000px;}
.y3b{bottom:402.540000px;}
.yf7{bottom:403.920000px;}
.yb6{bottom:404.640000px;}
.y1f{bottom:411.540000px;}
.y6b{bottom:415.800000px;}
.y3a{bottom:421.620000px;}
.yc7{bottom:426.000000px;}
.yf6{bottom:428.040000px;}
.yb5{bottom:428.760000px;}
.y6a{bottom:439.920000px;}
.y39{bottom:440.700000px;}
.yb4{bottom:452.160000px;}
.y1e{bottom:452.220000px;}
.y38{bottom:459.780000px;}
.y69{bottom:464.040000px;}
.y1d{bottom:469.500000px;}
.yb3{bottom:471.960000px;}
.yf5{bottom:474.840000px;}
.y37{bottom:478.500000px;}
.y1c{bottom:486.780000px;}
.y68{bottom:488.160000px;}
.yb2{bottom:489.240000px;}
.yf4{bottom:492.120000px;}
.y121{bottom:492.840000px;}
.y36{bottom:497.580000px;}
.y1b{bottom:504.060000px;}
.yf1{bottom:505.500000px;}
.yb1{bottom:506.520000px;}
.y120{bottom:510.840000px;}
.y67{bottom:512.640000px;}
.y35{bottom:516.660000px;}
.y1a{bottom:521.340000px;}
.yb0{bottom:523.800000px;}
.y11f{bottom:528.120000px;}
.y34{bottom:535.380000px;}
.y66{bottom:536.760000px;}
.ya6{bottom:537.000000px;}
.y19{bottom:538.620000px;}
.yed{bottom:541.500000px;}
.y11e{bottom:545.400000px;}
.y33{bottom:554.460000px;}
.y18{bottom:555.900000px;}
.y65{bottom:560.880000px;}
.y11d{bottom:562.680000px;}
.y17{bottom:573.180000px;}
.y32{bottom:573.540000px;}
.ye9{bottom:576.000000px;}
.y11c{bottom:579.960000px;}
.y64{bottom:585.000000px;}
.y16{bottom:590.460000px;}
.y31{bottom:592.260000px;}
.y11b{bottom:597.240000px;}
.y15{bottom:607.740000px;}
.y63{bottom:609.120000px;}
.y30{bottom:611.340000px;}
.ye5{bottom:612.000000px;}
.y11a{bottom:614.520000px;}
.y14{bottom:624.660000px;}
.y9c{bottom:625.500000px;}
.y2f{bottom:630.420000px;}
.y119{bottom:631.800000px;}
.y62{bottom:633.240000px;}
.y13{bottom:641.940000px;}
.ye2{bottom:646.500000px;}
.y118{bottom:649.080000px;}
.y2e{bottom:649.500000px;}
.y61{bottom:657.360000px;}
.y12{bottom:659.220000px;}
.y117{bottom:666.360000px;}
.y2d{bottom:668.220000px;}
.y11{bottom:676.500000px;}
.y60{bottom:681.480000px;}
.ye0{bottom:682.500000px;}
.y116{bottom:683.640000px;}
.y2c{bottom:687.300000px;}
.y10{bottom:693.780000px;}
.y115{bottom:700.920000px;}
.y5f{bottom:705.600000px;}
.y2b{bottom:706.380000px;}
.yf{bottom:711.060000px;}
.y114{bottom:717.840000px;}
.y2a{bottom:725.100000px;}
.ye{bottom:728.340000px;}
.y90{bottom:729.000000px;}
.y5e{bottom:729.720000px;}
.y113{bottom:735.120000px;}
.y29{bottom:744.180000px;}
.yd{bottom:745.620000px;}
.y112{bottom:752.400000px;}
.y5d{bottom:753.840000px;}
.y111{bottom:769.680000px;}
.y5c{bottom:777.960000px;}
.y110{bottom:786.960000px;}
.y5b{bottom:802.440000px;}
.y10f{bottom:804.240000px;}
.y10e{bottom:821.520000px;}
.y5a{bottom:826.560000px;}
.y10d{bottom:838.800000px;}
.y59{bottom:850.680000px;}
.y10c{bottom:856.080000px;}
.y10b{bottom:873.360000px;}
.y58{bottom:874.800000px;}
.y7c{bottom:885.000000px;}
.y10a{bottom:890.640000px;}
.y57{bottom:898.920000px;}
.y109{bottom:907.560000px;}
.y56{bottom:923.040000px;}
.y108{bottom:924.840000px;}
.y107{bottom:942.120000px;}
.y55{bottom:947.160000px;}
.y106{bottom:959.400000px;}
.y54{bottom:971.280000px;}
.y105{bottom:976.680000px;}
.y53{bottom:995.400000px;}
.yb{bottom:1005.840000px;}
.y52{bottom:1019.520000px;}
.ya{bottom:1028.880000px;}
.y51{bottom:1043.640000px;}
.y9{bottom:1054.800000px;}
.y8{bottom:1067.760000px;}
.y78{bottom:1075.500000px;}
.y7{bottom:1091.880000px;}
.y6{bottom:1116.360000px;}
.y5{bottom:1140.480000px;}
.y3{bottom:1165.680000px;}
.y2{bottom:1189.080000px;}
.y1{bottom:1208.160000px;}
.h15{height:18.000000px;}
.h6{height:28.303594px;}
.hb{height:36.000000px;}
.h14{height:37.500000px;}
.h9{height:41.196094px;}
.h10{height:41.993438px;}
.h16{height:42.229688px;}
.ha{height:45.119531px;}
.h12{height:52.500000px;}
.h4{height:53.067656px;}
.h13{height:54.000000px;}
.h2{height:55.663594px;}
.h3{height:55.666406px;}
.h11{height:60.046875px;}
.h5{height:71.571094px;}
.h7{height:73.283906px;}
.hf{height:88.500000px;}
.he{height:103.500000px;}
.hd{height:156.000000px;}
.hc{height:190.500000px;}
.h8{height:760.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:102.000000px;}
.wc{width:118.500000px;}
.wd{width:139.500000px;}
.w8{width:142.500000px;}
.w9{width:144.000000px;}
.wa{width:145.500000px;}
.w6{width:148.500000px;}
.w7{width:160.500000px;}
.wb{width:165.000000px;}
.w5{width:171.000000px;}
.w2{width:235.500000px;}
.w3{width:490.500000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x28{left:7.962120px;}
.x8{left:9.239856px;}
.x17{left:10.892220px;}
.x13{left:11.984520px;}
.x10{left:12.997932px;}
.x21{left:15.156840px;}
.x1f{left:16.584960px;}
.xe{left:18.009900px;}
.x25{left:20.255760px;}
.x22{left:22.429560px;}
.x1c{left:23.857320px;}
.x12{left:25.519800px;}
.x24{left:27.129600px;}
.x1b{left:28.431120px;}
.x32{left:29.497932px;}
.x18{left:30.685920px;}
.xb{left:32.640000px;}
.x16{left:35.086320px;}
.x20{left:36.590880px;}
.x1d{left:37.809840px;}
.x2c{left:39.272076px;}
.x29{left:40.557000px;}
.x35{left:42.532320px;}
.x23{left:44.105520px;}
.x19{left:46.092408px;}
.x34{left:47.947320px;}
.x33{left:49.701780px;}
.x27{left:52.131228px;}
.x26{left:53.387340px;}
.x2f{left:55.447200px;}
.x1e{left:57.797760px;}
.x1a{left:58.803576px;}
.x3c{left:62.047920px;}
.x3b{left:66.277560px;}
.x1{left:84.959856px;}
.xc{left:86.525388px;}
.x3d{left:106.259760px;}
.x9{left:117.239856px;}
.x4{left:125.833752px;}
.x7{left:127.484964px;}
.x3{left:132.273180px;}
.x36{left:147.766860px;}
.x2a{left:157.682376px;}
.xf{left:187.500000px;}
.x2d{left:229.500000px;}
.x2b{left:261.826164px;}
.xa{left:318.000000px;}
.x37{left:342.898668px;}
.xd{left:354.829104px;}
.x11{left:357.000000px;}
.x6{left:371.008440px;}
.x2e{left:373.500000px;}
.x38{left:393.000000px;}
.x2{left:438.922080px;}
.x5{left:446.421960px;}
.x14{left:505.500000px;}
.x30{left:519.000000px;}
.x39{left:552.000000px;}
.x31{left:663.000000px;}
.x15{left:666.000000px;}
.x3a{left:669.000000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls2d{letter-spacing:-0.370944pt;}
.ls2e{letter-spacing:-0.354816pt;}
.ls2c{letter-spacing:-0.338688pt;}
.lse{letter-spacing:-0.301056pt;}
.lsc{letter-spacing:-0.284928pt;}
.lsf{letter-spacing:-0.268800pt;}
.ls31{letter-spacing:-0.241920pt;}
.lsd{letter-spacing:-0.231168pt;}
.ls8{letter-spacing:-0.215040pt;}
.ls12{letter-spacing:-0.198912pt;}
.ls2b{letter-spacing:-0.155904pt;}
.ls7{letter-spacing:-0.141312pt;}
.ls11{letter-spacing:-0.139776pt;}
.ls2a{letter-spacing:-0.129024pt;}
.ls13{letter-spacing:-0.111872pt;}
.ls10{letter-spacing:-0.107520pt;}
.ls6{letter-spacing:-0.105984pt;}
.ls3{letter-spacing:-0.070656pt;}
.ls5{letter-spacing:-0.052992pt;}
.ls4{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.103936pt;}
.ls0{letter-spacing:0.106624pt;}
.ls1c{letter-spacing:0.141056pt;}
.ls15{letter-spacing:0.142080pt;}
.ls21{letter-spacing:0.142592pt;}
.ls22{letter-spacing:0.142720pt;}
.ls24{letter-spacing:0.142848pt;}
.ls25{letter-spacing:0.142976pt;}
.ls20{letter-spacing:0.143360pt;}
.ls3e{letter-spacing:0.170752pt;}
.lsb{letter-spacing:0.178176pt;}
.ls18{letter-spacing:0.207872pt;}
.ls36{letter-spacing:0.212480pt;}
.ls19{letter-spacing:0.213248pt;}
.ls28{letter-spacing:0.213760pt;}
.ls14{letter-spacing:0.215296pt;}
.ls1d{letter-spacing:0.244992pt;}
.ls9{letter-spacing:0.252416pt;}
.ls1e{letter-spacing:0.282112pt;}
.ls3a{letter-spacing:0.283904pt;}
.lsa{letter-spacing:0.319232pt;}
.ls1f{letter-spacing:0.393472pt;}
.ls39{letter-spacing:0.426624pt;}
.ls4f{letter-spacing:1.423360pt;}
.ls4d{letter-spacing:1.629440pt;}
.ls4c{letter-spacing:1.630720pt;}
.ls4e{letter-spacing:1.632000pt;}
.ls1b{letter-spacing:1.955840pt;}
.ls30{letter-spacing:2.009216pt;}
.ls2f{letter-spacing:3.760256pt;}
.ls1a{letter-spacing:4.353280pt;}
.ls42{letter-spacing:7.219200pt;}
.ls27{letter-spacing:9.149568pt;}
.ls34{letter-spacing:10.978560pt;}
.ls40{letter-spacing:11.233280pt;}
.ls4a{letter-spacing:11.473920pt;}
.ls4b{letter-spacing:11.474048pt;}
.ls49{letter-spacing:11.474176pt;}
.ls26{letter-spacing:12.256000pt;}
.ls41{letter-spacing:12.448000pt;}
.ls32{letter-spacing:13.302016pt;}
.ls33{letter-spacing:13.303040pt;}
.ls1{letter-spacing:14.328320pt;}
.ls3b{letter-spacing:14.552064pt;}
.ls16{letter-spacing:15.788800pt;}
.ls3d{letter-spacing:16.834560pt;}
.ls35{letter-spacing:16.847360pt;}
.ls29{letter-spacing:17.082880pt;}
.ls3c{letter-spacing:20.579328pt;}
.ls3f{letter-spacing:20.787712pt;}
.ls38{letter-spacing:21.532416pt;}
.ls2{letter-spacing:22.726400pt;}
.ls23{letter-spacing:36.699136pt;}
.ls37{letter-spacing:55.294208pt;}
.ls48{letter-spacing:58.993920pt;}
.ls44{letter-spacing:58.994816pt;}
.ls47{letter-spacing:58.995200pt;}
.ls45{letter-spacing:58.996224pt;}
.ls46{letter-spacing:58.996480pt;}
.ls43{letter-spacing:160.099072pt;}
.wsc{word-spacing:-18.879232pt;}
.ws18{word-spacing:-18.812416pt;}
.ws17{word-spacing:-18.804992pt;}
.wsb{word-spacing:-18.775296pt;}
.ws9{word-spacing:-18.738176pt;}
.ws19{word-spacing:-18.730752pt;}
.ws13{word-spacing:-18.701056pt;}
.wsa{word-spacing:-18.663936pt;}
.wsd{word-spacing:-18.560000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.649344pt;}
.ws0{word-spacing:-14.614016pt;}
.ws3{word-spacing:-14.578688pt;}
.ws5{word-spacing:-13.440000pt;}
.ws12{word-spacing:-13.310976pt;}
.wsf{word-spacing:-13.300224pt;}
.ws10{word-spacing:-13.284096pt;}
.ws11{word-spacing:-13.241088pt;}
.ws2{word-spacing:-13.224960pt;}
.ws6{word-spacing:-13.208832pt;}
.ws14{word-spacing:-13.198080pt;}
.ws15{word-spacing:-13.171200pt;}
.ws4{word-spacing:-13.155072pt;}
.wse{word-spacing:-13.138944pt;}
.ws16{word-spacing:-13.101312pt;}
.ws8{word-spacing:0.000000pt;}
._2b{margin-left:-17.003520pt;}
._2a{margin-left:-12.641152pt;}
._31{margin-left:-5.767168pt;}
._23{margin-left:-4.687360pt;}
._19{margin-left:-3.650560pt;}
._7{margin-left:-2.398720pt;}
._5{margin-left:-0.965120pt;}
._2{width:0.942080pt;}
._12{width:2.531840pt;}
._13{width:3.450112pt;}
._f{width:4.784640pt;}
._9{width:6.369280pt;}
._1a{width:7.467520pt;}
._a{width:8.601600pt;}
._11{width:9.715200pt;}
._10{width:10.892800pt;}
._6{width:12.364800pt;}
._14{width:13.660160pt;}
._20{width:14.840320pt;}
._1c{width:15.779840pt;}
._27{width:17.372160pt;}
._21{width:19.693568pt;}
._17{width:21.206016pt;}
._16{width:22.274816pt;}
._1b{width:23.785984pt;}
._d{width:24.998400pt;}
._c{width:25.912320pt;}
._26{width:26.869760pt;}
._25{width:27.765760pt;}
._24{width:28.879360pt;}
._1f{width:29.834240pt;}
._18{width:31.265280pt;}
._2c{width:34.150400pt;}
._28{width:36.080640pt;}
._15{width:37.153280pt;}
._1d{width:38.213120pt;}
._29{width:40.352768pt;}
._22{width:41.945600pt;}
._2e{width:51.717120pt;}
._2d{width:55.534976pt;}
._8{width:59.000320pt;}
._e{width:71.016960pt;}
._3{width:119.522688pt;}
._1{width:146.123520pt;}
._30{width:159.545856pt;}
._2f{width:160.798720pt;}
._4{width:174.079488pt;}
._b{width:457.820160pt;}
._1e{width:749.440000pt;}
._32{width:753.920000pt;}
._0{width:808.049920pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs6{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.ya2{bottom:3.040000pt;}
.yf0{bottom:3.146667pt;}
.ye7{bottom:3.200000pt;}
.ye1{bottom:3.253333pt;}
.y8f{bottom:3.413333pt;}
.y9b{bottom:3.520000pt;}
.yd9{bottom:3.573333pt;}
.y7b{bottom:3.680000pt;}
.ycc{bottom:3.733333pt;}
.yc6{bottom:3.786667pt;}
.yec{bottom:3.840000pt;}
.y4f{bottom:3.893333pt;}
.yf3{bottom:4.106667pt;}
.yaf{bottom:4.266667pt;}
.yd5{bottom:4.320000pt;}
.yee{bottom:10.826667pt;}
.ye8{bottom:10.880000pt;}
.y79{bottom:11.040000pt;}
.yda{bottom:11.253333pt;}
.ycf{bottom:11.360000pt;}
.yc9{bottom:11.413333pt;}
.yea{bottom:11.520000pt;}
.ye4{bottom:11.573333pt;}
.yf2{bottom:11.786667pt;}
.yaa{bottom:11.946667pt;}
.yd3{bottom:12.000000pt;}
.ya0{bottom:18.080000pt;}
.yef{bottom:18.506667pt;}
.ye6{bottom:18.560000pt;}
.y7a{bottom:18.720000pt;}
.y8e{bottom:18.773333pt;}
.y99{bottom:18.880000pt;}
.yd8{bottom:18.933333pt;}
.yd0{bottom:19.040000pt;}
.ycb{bottom:19.093333pt;}
.yc4{bottom:19.146667pt;}
.yeb{bottom:19.200000pt;}
.ye3{bottom:19.253333pt;}
.yae{bottom:19.626667pt;}
.yd4{bottom:19.680000pt;}
.y4e{bottom:20.533333pt;}
.ya5{bottom:25.760000pt;}
.y8b{bottom:26.453333pt;}
.yce{bottom:26.720000pt;}
.yc8{bottom:26.773333pt;}
.ya8{bottom:27.306667pt;}
.y9e{bottom:33.440000pt;}
.y85{bottom:34.133333pt;}
.y97{bottom:34.240000pt;}
.yd1{bottom:34.400000pt;}
.yca{bottom:34.453333pt;}
.yc5{bottom:34.506667pt;}
.yad{bottom:34.986667pt;}
.y4d{bottom:37.493333pt;}
.ya4{bottom:41.120000pt;}
.y8a{bottom:41.813333pt;}
.ya7{bottom:42.666667pt;}
.y4{bottom:46.720000pt;}
.y9d{bottom:48.800000pt;}
.y84{bottom:49.493333pt;}
.y96{bottom:49.600000pt;}
.yac{bottom:50.346667pt;}
.y4c{bottom:54.453333pt;}
.ya3{bottom:56.480000pt;}
.y89{bottom:57.173333pt;}
.y92{bottom:57.280000pt;}
.ya9{bottom:58.026667pt;}
.y9f{bottom:64.160000pt;}
.y83{bottom:64.853333pt;}
.y95{bottom:64.960000pt;}
.yab{bottom:65.706667pt;}
.y4b{bottom:71.093333pt;}
.y7e{bottom:72.533333pt;}
.y91{bottom:72.640000pt;}
.ya1{bottom:79.520000pt;}
.y104{bottom:80.000000pt;}
.y82{bottom:80.213333pt;}
.y94{bottom:80.320000pt;}
.yc3{bottom:80.640000pt;}
.y7d{bottom:87.893333pt;}
.y4a{bottom:88.053333pt;}
.y77{bottom:90.560000pt;}
.y81{bottom:95.573333pt;}
.y93{bottom:95.680000pt;}
.y103{bottom:101.440000pt;}
.yc2{bottom:102.080000pt;}
.y88{bottom:103.253333pt;}
.y49{bottom:105.013333pt;}
.y98{bottom:110.720000pt;}
.y80{bottom:110.933333pt;}
.y76{bottom:112.000000pt;}
.y87{bottom:118.613333pt;}
.y48{bottom:121.973333pt;}
.y102{bottom:122.880000pt;}
.yc1{bottom:123.520000pt;}
.y9a{bottom:126.080000pt;}
.y7f{bottom:126.293333pt;}
.y75{bottom:133.440000pt;}
.y86{bottom:133.973333pt;}
.ydf{bottom:138.240000pt;}
.y47{bottom:138.613333pt;}
.y8d{bottom:141.653333pt;}
.y101{bottom:144.320000pt;}
.yc0{bottom:144.960000pt;}
.y74{bottom:154.880000pt;}
.y46{bottom:155.573333pt;}
.y8c{bottom:157.013333pt;}
.yde{bottom:159.680000pt;}
.y100{bottom:165.760000pt;}
.ybf{bottom:166.400000pt;}
.y45{bottom:172.533333pt;}
.y73{bottom:176.640000pt;}
.ydd{bottom:179.840000pt;}
.yff{bottom:187.200000pt;}
.ybe{bottom:187.840000pt;}
.y44{bottom:189.173333pt;}
.ydc{bottom:195.200000pt;}
.y50{bottom:198.080000pt;}
.y43{bottom:206.133333pt;}
.yfe{bottom:208.640000pt;}
.ybd{bottom:209.280000pt;}
.ydb{bottom:210.240000pt;}
.yc{bottom:214.666667pt;}
.y72{bottom:219.520000pt;}
.y28{bottom:220.213333pt;}
.yd7{bottom:222.666667pt;}
.y42{bottom:223.093333pt;}
.yfd{bottom:230.080000pt;}
.ybc{bottom:230.720000pt;}
.y27{bottom:232.693333pt;}
.y41{bottom:239.733333pt;}
.y71{bottom:240.960000pt;}
.yfc{bottom:251.520000pt;}
.ybb{bottom:252.160000pt;}
.yd6{bottom:253.333333pt;}
.y40{bottom:256.693333pt;}
.y26{bottom:261.493333pt;}
.y70{bottom:262.400000pt;}
.yfb{bottom:272.960000pt;}
.yba{bottom:273.600000pt;}
.y3f{bottom:273.653333pt;}
.y25{bottom:276.853333pt;}
.y6f{bottom:283.840000pt;}
.y3e{bottom:290.613333pt;}
.y24{bottom:291.893333pt;}
.yfa{bottom:294.400000pt;}
.yb9{bottom:295.040000pt;}
.yd2{bottom:300.000000pt;}
.y6e{bottom:305.280000pt;}
.y23{bottom:307.253333pt;}
.yf9{bottom:315.840000pt;}
.yb8{bottom:316.480000pt;}
.y22{bottom:322.613333pt;}
.y3d{bottom:324.213333pt;}
.y6d{bottom:326.720000pt;}
.ycd{bottom:332.000000pt;}
.yf8{bottom:337.280000pt;}
.y21{bottom:337.973333pt;}
.yb7{bottom:338.240000pt;}
.y3c{bottom:341.173333pt;}
.y6c{bottom:348.160000pt;}
.y20{bottom:353.333333pt;}
.y3b{bottom:357.813333pt;}
.yf7{bottom:359.040000pt;}
.yb6{bottom:359.680000pt;}
.y1f{bottom:365.813333pt;}
.y6b{bottom:369.600000pt;}
.y3a{bottom:374.773333pt;}
.yc7{bottom:378.666667pt;}
.yf6{bottom:380.480000pt;}
.yb5{bottom:381.120000pt;}
.y6a{bottom:391.040000pt;}
.y39{bottom:391.733333pt;}
.yb4{bottom:401.920000pt;}
.y1e{bottom:401.973333pt;}
.y38{bottom:408.693333pt;}
.y69{bottom:412.480000pt;}
.y1d{bottom:417.333333pt;}
.yb3{bottom:419.520000pt;}
.yf5{bottom:422.080000pt;}
.y37{bottom:425.333333pt;}
.y1c{bottom:432.693333pt;}
.y68{bottom:433.920000pt;}
.yb2{bottom:434.880000pt;}
.yf4{bottom:437.440000pt;}
.y121{bottom:438.080000pt;}
.y36{bottom:442.293333pt;}
.y1b{bottom:448.053333pt;}
.yf1{bottom:449.333333pt;}
.yb1{bottom:450.240000pt;}
.y120{bottom:454.080000pt;}
.y67{bottom:455.680000pt;}
.y35{bottom:459.253333pt;}
.y1a{bottom:463.413333pt;}
.yb0{bottom:465.600000pt;}
.y11f{bottom:469.440000pt;}
.y34{bottom:475.893333pt;}
.y66{bottom:477.120000pt;}
.ya6{bottom:477.333333pt;}
.y19{bottom:478.773333pt;}
.yed{bottom:481.333333pt;}
.y11e{bottom:484.800000pt;}
.y33{bottom:492.853333pt;}
.y18{bottom:494.133333pt;}
.y65{bottom:498.560000pt;}
.y11d{bottom:500.160000pt;}
.y17{bottom:509.493333pt;}
.y32{bottom:509.813333pt;}
.ye9{bottom:512.000000pt;}
.y11c{bottom:515.520000pt;}
.y64{bottom:520.000000pt;}
.y16{bottom:524.853333pt;}
.y31{bottom:526.453333pt;}
.y11b{bottom:530.880000pt;}
.y15{bottom:540.213333pt;}
.y63{bottom:541.440000pt;}
.y30{bottom:543.413333pt;}
.ye5{bottom:544.000000pt;}
.y11a{bottom:546.240000pt;}
.y14{bottom:555.253333pt;}
.y9c{bottom:556.000000pt;}
.y2f{bottom:560.373333pt;}
.y119{bottom:561.600000pt;}
.y62{bottom:562.880000pt;}
.y13{bottom:570.613333pt;}
.ye2{bottom:574.666667pt;}
.y118{bottom:576.960000pt;}
.y2e{bottom:577.333333pt;}
.y61{bottom:584.320000pt;}
.y12{bottom:585.973333pt;}
.y117{bottom:592.320000pt;}
.y2d{bottom:593.973333pt;}
.y11{bottom:601.333333pt;}
.y60{bottom:605.760000pt;}
.ye0{bottom:606.666667pt;}
.y116{bottom:607.680000pt;}
.y2c{bottom:610.933333pt;}
.y10{bottom:616.693333pt;}
.y115{bottom:623.040000pt;}
.y5f{bottom:627.200000pt;}
.y2b{bottom:627.893333pt;}
.yf{bottom:632.053333pt;}
.y114{bottom:638.080000pt;}
.y2a{bottom:644.533333pt;}
.ye{bottom:647.413333pt;}
.y90{bottom:648.000000pt;}
.y5e{bottom:648.640000pt;}
.y113{bottom:653.440000pt;}
.y29{bottom:661.493333pt;}
.yd{bottom:662.773333pt;}
.y112{bottom:668.800000pt;}
.y5d{bottom:670.080000pt;}
.y111{bottom:684.160000pt;}
.y5c{bottom:691.520000pt;}
.y110{bottom:699.520000pt;}
.y5b{bottom:713.280000pt;}
.y10f{bottom:714.880000pt;}
.y10e{bottom:730.240000pt;}
.y5a{bottom:734.720000pt;}
.y10d{bottom:745.600000pt;}
.y59{bottom:756.160000pt;}
.y10c{bottom:760.960000pt;}
.y10b{bottom:776.320000pt;}
.y58{bottom:777.600000pt;}
.y7c{bottom:786.666667pt;}
.y10a{bottom:791.680000pt;}
.y57{bottom:799.040000pt;}
.y109{bottom:806.720000pt;}
.y56{bottom:820.480000pt;}
.y108{bottom:822.080000pt;}
.y107{bottom:837.440000pt;}
.y55{bottom:841.920000pt;}
.y106{bottom:852.800000pt;}
.y54{bottom:863.360000pt;}
.y105{bottom:868.160000pt;}
.y53{bottom:884.800000pt;}
.yb{bottom:894.080000pt;}
.y52{bottom:906.240000pt;}
.ya{bottom:914.560000pt;}
.y51{bottom:927.680000pt;}
.y9{bottom:937.600000pt;}
.y8{bottom:949.120000pt;}
.y78{bottom:956.000000pt;}
.y7{bottom:970.560000pt;}
.y6{bottom:992.320000pt;}
.y5{bottom:1013.760000pt;}
.y3{bottom:1036.160000pt;}
.y2{bottom:1056.960000pt;}
.y1{bottom:1073.920000pt;}
.h15{height:16.000000pt;}
.h6{height:25.158750pt;}
.hb{height:32.000000pt;}
.h14{height:33.333333pt;}
.h9{height:36.618750pt;}
.h10{height:37.327500pt;}
.h16{height:37.537500pt;}
.ha{height:40.106250pt;}
.h12{height:46.666667pt;}
.h4{height:47.171250pt;}
.h13{height:48.000000pt;}
.h2{height:49.478750pt;}
.h3{height:49.481250pt;}
.h11{height:53.375000pt;}
.h5{height:63.618750pt;}
.h7{height:65.141250pt;}
.hf{height:78.666667pt;}
.he{height:92.000000pt;}
.hd{height:138.666667pt;}
.hc{height:169.333333pt;}
.h8{height:676.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:90.666667pt;}
.wc{width:105.333333pt;}
.wd{width:124.000000pt;}
.w8{width:126.666667pt;}
.w9{width:128.000000pt;}
.wa{width:129.333333pt;}
.w6{width:132.000000pt;}
.w7{width:142.666667pt;}
.wb{width:146.666667pt;}
.w5{width:152.000000pt;}
.w2{width:209.333333pt;}
.w3{width:436.000000pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x28{left:7.077440pt;}
.x8{left:8.213205pt;}
.x17{left:9.681973pt;}
.x13{left:10.652907pt;}
.x10{left:11.553717pt;}
.x21{left:13.472747pt;}
.x1f{left:14.742187pt;}
.xe{left:16.008800pt;}
.x25{left:18.005120pt;}
.x22{left:19.937387pt;}
.x1c{left:21.206507pt;}
.x12{left:22.684267pt;}
.x24{left:24.115200pt;}
.x1b{left:25.272107pt;}
.x32{left:26.220384pt;}
.x18{left:27.276373pt;}
.xb{left:29.013333pt;}
.x16{left:31.187840pt;}
.x20{left:32.525227pt;}
.x1d{left:33.608747pt;}
.x2c{left:34.908512pt;}
.x29{left:36.050667pt;}
.x35{left:37.806507pt;}
.x23{left:39.204907pt;}
.x19{left:40.971029pt;}
.x34{left:42.619840pt;}
.x33{left:44.179360pt;}
.x27{left:46.338869pt;}
.x26{left:47.455413pt;}
.x2f{left:49.286400pt;}
.x1e{left:51.375787pt;}
.x1a{left:52.269845pt;}
.x3c{left:55.153707pt;}
.x3b{left:58.913387pt;}
.x1{left:75.519872pt;}
.xc{left:76.911456pt;}
.x3d{left:94.453120pt;}
.x9{left:104.213205pt;}
.x4{left:111.852224pt;}
.x7{left:113.319968pt;}
.x3{left:117.576160pt;}
.x36{left:131.348320pt;}
.x2a{left:140.162112pt;}
.xf{left:166.666667pt;}
.x2d{left:204.000000pt;}
.x2b{left:232.734368pt;}
.xa{left:282.666667pt;}
.x37{left:304.798816pt;}
.xd{left:315.403648pt;}
.x11{left:317.333333pt;}
.x6{left:329.785280pt;}
.x2e{left:332.000000pt;}
.x38{left:349.333333pt;}
.x2{left:390.152960pt;}
.x5{left:396.819520pt;}
.x14{left:449.333333pt;}
.x30{left:461.333333pt;}
.x39{left:490.666667pt;}
.x31{left:589.333333pt;}
.x15{left:592.000000pt;}
.x3a{left:594.666667pt;}
}




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