
    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_c195123f066865b26c6ecf8e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.908203;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_813cb8e842d940991cf21d2d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_1b654c682dd0045130544262.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c5f437cb5f2b7483a8e73d4c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.877930;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_b1a8e3eb74c92bf24dd05026.woff')format("woff");}.ff5{font-family:ff5;line-height:1.026000;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_b349e4da75de60f1bafe0c73.woff')format("woff");}.ff6{font-family:ff6;line-height:0.681152;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_6463271b0f2d43edf5864ebb.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_501cf56c5b4a7cd7a08be5f9.woff')format("woff");}.ff8{font-family:ff8;line-height:0.893066;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);}
.v2{vertical-align:-23.975400px;}
.v3{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:3.289200px;}
.v4{vertical-align:13.986000px;}
.v1{vertical-align:23.975400px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.270000px;}
.lsf{letter-spacing:0.420000px;}
.ls8{letter-spacing:0.480000px;}
.ls7{letter-spacing:0.540000px;}
.ls11{letter-spacing:0.600000px;}
.ls0{letter-spacing:0.720000px;}
.lse{letter-spacing:0.810000px;}
.lsd{letter-spacing:1.080000px;}
.ls10{letter-spacing:1.200000px;}
.ls1{letter-spacing:1.260000px;}
.ls2{letter-spacing:1.350000px;}
.ls4{letter-spacing:1.890000px;}
.ls9{letter-spacing:1.944000px;}
.ls5{letter-spacing:2.700000px;}
.lsc{letter-spacing:3.618000px;}
.lsb{letter-spacing:6.102000px;}
.lsa{letter-spacing:14.688000px;}
.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;}
}
.ws4{word-spacing:-38.610000px;}
.ws8{word-spacing:-17.700000px;}
.wsb{word-spacing:-15.600000px;}
.wsc{word-spacing:-15.390000px;}
.ws3{word-spacing:-15.000000px;}
.ws9{word-spacing:-13.770000px;}
.ws2{word-spacing:-13.500000px;}
.wse{word-spacing:-12.480000px;}
.wsd{word-spacing:-12.000000px;}
.ws6{word-spacing:-10.500000px;}
.ws0{word-spacing:-10.494000px;}
.ws1{word-spacing:-6.996000px;}
.ws5{word-spacing:-6.121500px;}
.ws7{word-spacing:0.000000px;}
.wsa{word-spacing:48.047400px;}
._9{margin-left:-27.864000px;}
._a{margin-left:-26.412000px;}
._3{margin-left:-10.772232px;}
._e{margin-left:-8.757768px;}
._1{margin-left:-6.840000px;}
._2{margin-left:-5.040000px;}
._5{margin-left:-3.699768px;}
._4{margin-left:-2.448000px;}
._0{margin-left:-1.080000px;}
._6{width:1.755768px;}
._7{width:3.074928px;}
._8{width:4.698000px;}
._13{width:5.805768px;}
._18{width:7.366464px;}
._f{width:8.478000px;}
._10{width:9.936000px;}
._12{width:11.178000px;}
._1d{width:12.312000px;}
._11{width:14.814000px;}
._1c{width:16.182000px;}
._1b{width:17.874000px;}
._16{width:18.954000px;}
._17{width:20.034000px;}
._1e{width:21.564000px;}
._1a{width:22.734000px;}
._14{width:24.084000px;}
._15{width:25.785768px;}
._19{width:28.704000px;}
._23{width:31.320000px;}
._24{width:32.373768px;}
._22{width:33.912000px;}
._21{width:36.018000px;}
._1f{width:51.678000px;}
._20{width:53.379768px;}
._b{width:54.797400px;}
._c{width:275.310000px;}
._d{width:941.934000px;}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:24.486000px;}
.fs3{font-size:27.984000px;}
.fs2{font-size:41.976000px;}
.fs7{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.yaf{bottom:42.304050px;}
.y2c{bottom:42.304200px;}
.y172{bottom:42.304350px;}
.y103{bottom:43.126350px;}
.y90{bottom:43.126500px;}
.y102{bottom:43.366950px;}
.y1{bottom:43.367100px;}
.y8f{bottom:43.367250px;}
.y2b{bottom:46.605900px;}
.y2a{bottom:59.205900px;}
.y13e{bottom:110.404200px;}
.y171{bottom:110.551200px;}
.yac{bottom:110.555700px;}
.y151{bottom:110.564550px;}
.y148{bottom:110.591550px;}
.y8e{bottom:110.614350px;}
.yff{bottom:110.627550px;}
.y5d{bottom:110.632350px;}
.yae{bottom:110.723100px;}
.ydb{bottom:110.740050px;}
.yab{bottom:128.551200px;}
.y150{bottom:128.560050px;}
.y147{bottom:128.587050px;}
.y8d{bottom:128.609850px;}
.yfe{bottom:128.623050px;}
.y5c{bottom:128.627850px;}
.yda{bottom:128.735550px;}
.yaa{bottom:146.551200px;}
.y14f{bottom:146.555550px;}
.y146{bottom:146.582550px;}
.y8c{bottom:146.605350px;}
.yfd{bottom:146.618550px;}
.y5b{bottom:146.623350px;}
.yd9{bottom:146.731050px;}
.y14e{bottom:164.551050px;}
.y170{bottom:164.551200px;}
.y145{bottom:164.578050px;}
.y8b{bottom:164.600850px;}
.yfc{bottom:164.614050px;}
.y5a{bottom:164.618850px;}
.yd8{bottom:164.726550px;}
.y14d{bottom:182.551050px;}
.y16f{bottom:182.551200px;}
.y144{bottom:182.573550px;}
.y8a{bottom:182.596350px;}
.yfb{bottom:182.609550px;}
.y59{bottom:182.614350px;}
.ya9{bottom:182.659200px;}
.yd7{bottom:182.722050px;}
.y16e{bottom:200.551200px;}
.y143{bottom:200.569050px;}
.y89{bottom:200.591850px;}
.yfa{bottom:200.605050px;}
.y58{bottom:200.609850px;}
.ya8{bottom:200.654700px;}
.yd6{bottom:200.717550px;}
.y16d{bottom:218.551200px;}
.y142{bottom:218.564550px;}
.y88{bottom:218.587350px;}
.yf9{bottom:218.600550px;}
.y14c{bottom:218.605050px;}
.y57{bottom:218.605350px;}
.ya7{bottom:218.650200px;}
.yd5{bottom:218.713050px;}
.y16c{bottom:236.551200px;}
.y141{bottom:236.560050px;}
.y27{bottom:236.564700px;}
.y87{bottom:236.582850px;}
.yf8{bottom:236.596050px;}
.y14b{bottom:236.600550px;}
.y56{bottom:236.600850px;}
.ya6{bottom:236.645700px;}
.yd4{bottom:236.708550px;}
.y16b{bottom:254.551200px;}
.y140{bottom:254.555550px;}
.y26{bottom:254.560200px;}
.y86{bottom:254.578350px;}
.yf7{bottom:254.591550px;}
.y14a{bottom:254.596050px;}
.y55{bottom:254.596350px;}
.ya5{bottom:254.641200px;}
.yd3{bottom:254.704050px;}
.y13f{bottom:272.551050px;}
.y16a{bottom:272.551200px;}
.y25{bottom:272.555700px;}
.y85{bottom:272.573850px;}
.yf6{bottom:272.587050px;}
.y149{bottom:272.591550px;}
.y54{bottom:272.591850px;}
.ya4{bottom:272.636700px;}
.yd2{bottom:272.699550px;}
.y24{bottom:290.551200px;}
.y84{bottom:290.569350px;}
.yf5{bottom:290.582550px;}
.y53{bottom:290.587350px;}
.ya3{bottom:290.632200px;}
.yd1{bottom:290.695050px;}
.y153{bottom:305.516400px;}
.y169{bottom:308.551200px;}
.y83{bottom:308.564850px;}
.yf4{bottom:308.578050px;}
.y23{bottom:308.578200px;}
.y52{bottom:308.582850px;}
.ya2{bottom:308.627700px;}
.yd0{bottom:308.690550px;}
.y168{bottom:326.551200px;}
.y82{bottom:326.560350px;}
.yf3{bottom:326.573550px;}
.y22{bottom:326.573700px;}
.y51{bottom:326.578350px;}
.ya1{bottom:326.623200px;}
.ycf{bottom:326.686050px;}
.y167{bottom:344.551200px;}
.y81{bottom:344.555850px;}
.yf2{bottom:344.569050px;}
.y21{bottom:344.569200px;}
.y50{bottom:344.573850px;}
.ya0{bottom:344.618700px;}
.yce{bottom:344.681550px;}
.y166{bottom:362.551200px;}
.y80{bottom:362.551350px;}
.yf1{bottom:362.564550px;}
.y20{bottom:362.564700px;}
.y4f{bottom:362.569350px;}
.y9f{bottom:362.614200px;}
.ycd{bottom:362.677050px;}
.y165{bottom:380.551200px;}
.y7f{bottom:380.551350px;}
.yf0{bottom:380.560050px;}
.y1f{bottom:380.560200px;}
.y4e{bottom:380.564850px;}
.y9e{bottom:380.609700px;}
.ycc{bottom:380.672550px;}
.y164{bottom:398.551200px;}
.yef{bottom:398.555550px;}
.y1e{bottom:398.555700px;}
.y4d{bottom:398.560350px;}
.y9d{bottom:398.605200px;}
.ycb{bottom:398.668050px;}
.yee{bottom:416.551050px;}
.y4c{bottom:416.555850px;}
.y9c{bottom:416.600700px;}
.y1d{bottom:416.636700px;}
.yca{bottom:416.663550px;}
.y7e{bottom:416.771850px;}
.yed{bottom:434.551050px;}
.y4b{bottom:434.551350px;}
.y9b{bottom:434.596200px;}
.y1c{bottom:434.632200px;}
.yc9{bottom:434.659050px;}
.y7d{bottom:434.767350px;}
.y4a{bottom:452.551350px;}
.y162{bottom:452.564550px;}
.y15d{bottom:452.591550px;}
.y9a{bottom:452.591700px;}
.y1b{bottom:452.627700px;}
.yc8{bottom:452.654550px;}
.y7c{bottom:452.762850px;}
.y161{bottom:470.560050px;}
.y120{bottom:470.573550px;}
.y15c{bottom:470.587050px;}
.y99{bottom:470.587200px;}
.y1a{bottom:470.623200px;}
.y13d{bottom:470.627550px;}
.yc7{bottom:470.650050px;}
.y7b{bottom:470.758350px;}
.yec{bottom:470.812050px;}
.y49{bottom:488.551350px;}
.y160{bottom:488.555550px;}
.y11f{bottom:488.569050px;}
.y15b{bottom:488.582550px;}
.y98{bottom:488.582700px;}
.y19{bottom:488.618700px;}
.y13c{bottom:488.623050px;}
.yc6{bottom:488.645550px;}
.y7a{bottom:488.753850px;}
.yeb{bottom:488.807550px;}
.y15f{bottom:506.551050px;}
.y48{bottom:506.551350px;}
.y11e{bottom:506.564550px;}
.y15a{bottom:506.578050px;}
.y97{bottom:506.578200px;}
.y18{bottom:506.614200px;}
.y13b{bottom:506.618550px;}
.yc5{bottom:506.641050px;}
.y79{bottom:506.749350px;}
.yea{bottom:506.803050px;}
.y15e{bottom:524.551050px;}
.y47{bottom:524.551350px;}
.y11d{bottom:524.560050px;}
.y159{bottom:524.573550px;}
.y96{bottom:524.573700px;}
.y17{bottom:524.609700px;}
.y13a{bottom:524.614050px;}
.yc4{bottom:524.636550px;}
.y78{bottom:524.744850px;}
.ye9{bottom:524.798550px;}
.y46{bottom:542.551350px;}
.y11c{bottom:542.555550px;}
.y158{bottom:542.569050px;}
.y95{bottom:542.569200px;}
.y16{bottom:542.605200px;}
.y139{bottom:542.609550px;}
.yc3{bottom:542.632050px;}
.y77{bottom:542.740350px;}
.ye8{bottom:542.794050px;}
.y11b{bottom:560.551050px;}
.y157{bottom:560.564550px;}
.y94{bottom:560.564700px;}
.y15{bottom:560.600700px;}
.y138{bottom:560.605050px;}
.yc2{bottom:560.627550px;}
.y76{bottom:560.735850px;}
.ye7{bottom:560.789550px;}
.y11a{bottom:578.551050px;}
.y156{bottom:578.560050px;}
.y93{bottom:578.560200px;}
.y14{bottom:578.596200px;}
.y137{bottom:578.600550px;}
.yc1{bottom:578.623050px;}
.y45{bottom:578.650350px;}
.y75{bottom:578.731350px;}
.ye6{bottom:578.785050px;}
.y155{bottom:596.555550px;}
.y92{bottom:596.555700px;}
.y13{bottom:596.591700px;}
.y136{bottom:596.596050px;}
.yc0{bottom:596.618550px;}
.y44{bottom:596.645850px;}
.y74{bottom:596.726850px;}
.ye5{bottom:596.780550px;}
.y154{bottom:614.551050px;}
.y91{bottom:614.551200px;}
.y12{bottom:614.587200px;}
.y135{bottom:614.591550px;}
.ybf{bottom:614.614050px;}
.y119{bottom:614.618550px;}
.y43{bottom:614.641350px;}
.y73{bottom:614.722350px;}
.ye4{bottom:614.776050px;}
.y11{bottom:632.582700px;}
.y134{bottom:632.587050px;}
.ybe{bottom:632.609550px;}
.y118{bottom:632.614050px;}
.y42{bottom:632.636850px;}
.y72{bottom:632.717850px;}
.ye3{bottom:632.771550px;}
.y163{bottom:646.542000px;}
.y10{bottom:650.578200px;}
.y133{bottom:650.582550px;}
.ybd{bottom:650.605050px;}
.y117{bottom:650.609550px;}
.y41{bottom:650.632350px;}
.y71{bottom:650.713350px;}
.ye2{bottom:650.767050px;}
.yad{bottom:655.719300px;}
.y152{bottom:664.542000px;}
.yf{bottom:668.573700px;}
.y132{bottom:668.578050px;}
.ybc{bottom:668.600550px;}
.y116{bottom:668.605050px;}
.y40{bottom:668.627850px;}
.y70{bottom:668.708850px;}
.ye1{bottom:668.762550px;}
.ye{bottom:686.569200px;}
.y131{bottom:686.573550px;}
.ybb{bottom:686.596050px;}
.y115{bottom:686.600550px;}
.y3f{bottom:686.623350px;}
.y6f{bottom:686.704350px;}
.ye0{bottom:686.758050px;}
.yd{bottom:704.564700px;}
.y130{bottom:704.569050px;}
.yba{bottom:704.591550px;}
.y114{bottom:704.596050px;}
.y3e{bottom:704.618850px;}
.y6e{bottom:704.699850px;}
.ydf{bottom:704.753550px;}
.yc{bottom:722.560200px;}
.y12f{bottom:722.564550px;}
.yb9{bottom:722.587050px;}
.y113{bottom:722.591550px;}
.y3d{bottom:722.614350px;}
.y6d{bottom:722.695350px;}
.yde{bottom:722.749050px;}
.yb{bottom:740.555700px;}
.y12e{bottom:740.560050px;}
.yb8{bottom:740.582550px;}
.y112{bottom:740.587050px;}
.y3c{bottom:740.609850px;}
.y6c{bottom:740.690850px;}
.ydd{bottom:740.744550px;}
.ya{bottom:758.551200px;}
.y12d{bottom:758.555550px;}
.yb7{bottom:758.578050px;}
.y111{bottom:758.582550px;}
.y3b{bottom:758.605350px;}
.y6b{bottom:758.686350px;}
.ydc{bottom:758.740050px;}
.y12c{bottom:776.551050px;}
.y9{bottom:776.551200px;}
.yb6{bottom:776.573550px;}
.y110{bottom:776.578050px;}
.y3a{bottom:776.600850px;}
.y6a{bottom:776.681850px;}
.y12b{bottom:794.551050px;}
.yb5{bottom:794.569050px;}
.y10f{bottom:794.573550px;}
.y39{bottom:794.596350px;}
.y69{bottom:794.677350px;}
.y101{bottom:796.849050px;}
.yb4{bottom:812.564550px;}
.y10e{bottom:812.569050px;}
.y38{bottom:812.591850px;}
.y68{bottom:812.672850px;}
.yb3{bottom:830.560050px;}
.y10d{bottom:830.564550px;}
.y37{bottom:830.587350px;}
.y12a{bottom:830.618550px;}
.y67{bottom:830.668350px;}
.y6{bottom:848.465700px;}
.yb2{bottom:848.555550px;}
.y10c{bottom:848.560050px;}
.y36{bottom:848.582850px;}
.y129{bottom:848.614050px;}
.y66{bottom:848.663850px;}
.y17a{bottom:851.551500px;}
.yb1{bottom:866.551050px;}
.y10b{bottom:866.555550px;}
.y35{bottom:866.578350px;}
.y128{bottom:866.609550px;}
.y65{bottom:866.659350px;}
.y5{bottom:866.861700px;}
.y10a{bottom:884.551050px;}
.y34{bottom:884.573850px;}
.y127{bottom:884.605050px;}
.y64{bottom:884.654850px;}
.y4{bottom:898.865550px;}
.y100{bottom:901.341300px;}
.y109{bottom:902.551050px;}
.y179{bottom:902.551500px;}
.y33{bottom:902.569350px;}
.y126{bottom:902.600550px;}
.y63{bottom:902.650350px;}
.y3{bottom:920.465700px;}
.y178{bottom:920.551500px;}
.y32{bottom:920.564850px;}
.y125{bottom:920.596050px;}
.y62{bottom:920.645850px;}
.y177{bottom:938.551500px;}
.y31{bottom:938.560350px;}
.y108{bottom:938.564550px;}
.y124{bottom:938.591550px;}
.y61{bottom:938.641350px;}
.y2{bottom:942.065700px;}
.y176{bottom:956.551500px;}
.y30{bottom:956.555850px;}
.y107{bottom:956.560050px;}
.y123{bottom:956.587050px;}
.y60{bottom:956.636850px;}
.y2f{bottom:974.551350px;}
.y175{bottom:974.551500px;}
.y106{bottom:974.555550px;}
.y122{bottom:974.582550px;}
.y5f{bottom:974.632350px;}
.y105{bottom:992.551050px;}
.y2e{bottom:992.551350px;}
.y174{bottom:992.551500px;}
.y121{bottom:992.578050px;}
.y5e{bottom:992.627850px;}
.y8{bottom:994.364700px;}
.y7{bottom:1015.964700px;}
.y104{bottom:1093.084350px;}
.y2d{bottom:1093.084500px;}
.yb0{bottom:1094.144850px;}
.y173{bottom:1094.145150px;}
.y29{bottom:1105.705200px;}
.y28{bottom:1132.705200px;}
.h5{height:19.430297px;}
.h10{height:28.464844px;}
.he{height:29.162109px;}
.hf{height:30.987510px;}
.h6{height:33.328125px;}
.h11{height:34.710938px;}
.h13{height:36.597656px;}
.h2{height:37.494141px;}
.h9{height:39.049805px;}
.ha{height:40.322062px;}
.hb{height:40.556063px;}
.h12{height:40.634766px;}
.h8{height:40.664062px;}
.hd{height:42.984000px;}
.h7{height:48.796875px;}
.h3{height:53.120845px;}
.h4{height:53.121445px;}
.hc{height:62.088000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:26.455200px;}
.x1a{left:28.142700px;}
.x10{left:63.776850px;}
.x17{left:65.905500px;}
.xf{left:68.295150px;}
.x7{left:85.355850px;}
.x18{left:89.291400px;}
.x9{left:106.299150px;}
.x2{left:146.124900px;}
.xc{left:162.000000px;}
.xe{left:175.363050px;}
.x14{left:177.704550px;}
.xa{left:199.048350px;}
.x3{left:221.082300px;}
.x8{left:259.235850px;}
.x4{left:292.688400px;}
.x1c{left:309.254400px;}
.x6{left:313.786650px;}
.x5{left:355.033200px;}
.xb{left:385.223400px;}
.x11{left:457.085850px;}
.x16{left:459.194550px;}
.x12{left:478.348350px;}
.x15{left:480.457050px;}
.x19{left:482.598450px;}
.x13{left:499.608150px;}
.x1{left:842.833050px;}
.x1b{left:844.520550px;}
@media print{
.v2{vertical-align:-21.311467pt;}
.v3{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.923733pt;}
.v4{vertical-align:12.432000pt;}
.v1{vertical-align:21.311467pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.240000pt;}
.lsf{letter-spacing:0.373333pt;}
.ls8{letter-spacing:0.426667pt;}
.ls7{letter-spacing:0.480000pt;}
.ls11{letter-spacing:0.533333pt;}
.ls0{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.720000pt;}
.lsd{letter-spacing:0.960000pt;}
.ls10{letter-spacing:1.066667pt;}
.ls1{letter-spacing:1.120000pt;}
.ls2{letter-spacing:1.200000pt;}
.ls4{letter-spacing:1.680000pt;}
.ls9{letter-spacing:1.728000pt;}
.ls5{letter-spacing:2.400000pt;}
.lsc{letter-spacing:3.216000pt;}
.lsb{letter-spacing:5.424000pt;}
.lsa{letter-spacing:13.056000pt;}
.ws4{word-spacing:-34.320000pt;}
.ws8{word-spacing:-15.733333pt;}
.wsb{word-spacing:-13.866667pt;}
.wsc{word-spacing:-13.680000pt;}
.ws3{word-spacing:-13.333333pt;}
.ws9{word-spacing:-12.240000pt;}
.ws2{word-spacing:-12.000000pt;}
.wse{word-spacing:-11.093333pt;}
.wsd{word-spacing:-10.666667pt;}
.ws6{word-spacing:-9.333333pt;}
.ws0{word-spacing:-9.328000pt;}
.ws1{word-spacing:-6.218667pt;}
.ws5{word-spacing:-5.441333pt;}
.ws7{word-spacing:0.000000pt;}
.wsa{word-spacing:42.708800pt;}
._9{margin-left:-24.768000pt;}
._a{margin-left:-23.477333pt;}
._3{margin-left:-9.575317pt;}
._e{margin-left:-7.784683pt;}
._1{margin-left:-6.080000pt;}
._2{margin-left:-4.480000pt;}
._5{margin-left:-3.288683pt;}
._4{margin-left:-2.176000pt;}
._0{margin-left:-0.960000pt;}
._6{width:1.560683pt;}
._7{width:2.733269pt;}
._8{width:4.176000pt;}
._13{width:5.160683pt;}
._18{width:6.547968pt;}
._f{width:7.536000pt;}
._10{width:8.832000pt;}
._12{width:9.936000pt;}
._1d{width:10.944000pt;}
._11{width:13.168000pt;}
._1c{width:14.384000pt;}
._1b{width:15.888000pt;}
._16{width:16.848000pt;}
._17{width:17.808000pt;}
._1e{width:19.168000pt;}
._1a{width:20.208000pt;}
._14{width:21.408000pt;}
._15{width:22.920683pt;}
._19{width:25.514667pt;}
._23{width:27.840000pt;}
._24{width:28.776683pt;}
._22{width:30.144000pt;}
._21{width:32.016000pt;}
._1f{width:45.936000pt;}
._20{width:47.448683pt;}
._b{width:48.708800pt;}
._c{width:244.720000pt;}
._d{width:837.274667pt;}
.fs8{font-size:21.765333pt;}
.fs3{font-size:24.874667pt;}
.fs2{font-size:37.312000pt;}
.fs7{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.yaf{bottom:37.603600pt;}
.y2c{bottom:37.603733pt;}
.y172{bottom:37.603867pt;}
.y103{bottom:38.334533pt;}
.y90{bottom:38.334667pt;}
.y102{bottom:38.548400pt;}
.y1{bottom:38.548533pt;}
.y8f{bottom:38.548667pt;}
.y2b{bottom:41.427467pt;}
.y2a{bottom:52.627467pt;}
.y13e{bottom:98.137067pt;}
.y171{bottom:98.267733pt;}
.yac{bottom:98.271733pt;}
.y151{bottom:98.279600pt;}
.y148{bottom:98.303600pt;}
.y8e{bottom:98.323867pt;}
.yff{bottom:98.335600pt;}
.y5d{bottom:98.339867pt;}
.yae{bottom:98.420533pt;}
.ydb{bottom:98.435600pt;}
.yab{bottom:114.267733pt;}
.y150{bottom:114.275600pt;}
.y147{bottom:114.299600pt;}
.y8d{bottom:114.319867pt;}
.yfe{bottom:114.331600pt;}
.y5c{bottom:114.335867pt;}
.yda{bottom:114.431600pt;}
.yaa{bottom:130.267733pt;}
.y14f{bottom:130.271600pt;}
.y146{bottom:130.295600pt;}
.y8c{bottom:130.315867pt;}
.yfd{bottom:130.327600pt;}
.y5b{bottom:130.331867pt;}
.yd9{bottom:130.427600pt;}
.y14e{bottom:146.267600pt;}
.y170{bottom:146.267733pt;}
.y145{bottom:146.291600pt;}
.y8b{bottom:146.311867pt;}
.yfc{bottom:146.323600pt;}
.y5a{bottom:146.327867pt;}
.yd8{bottom:146.423600pt;}
.y14d{bottom:162.267600pt;}
.y16f{bottom:162.267733pt;}
.y144{bottom:162.287600pt;}
.y8a{bottom:162.307867pt;}
.yfb{bottom:162.319600pt;}
.y59{bottom:162.323867pt;}
.ya9{bottom:162.363733pt;}
.yd7{bottom:162.419600pt;}
.y16e{bottom:178.267733pt;}
.y143{bottom:178.283600pt;}
.y89{bottom:178.303867pt;}
.yfa{bottom:178.315600pt;}
.y58{bottom:178.319867pt;}
.ya8{bottom:178.359733pt;}
.yd6{bottom:178.415600pt;}
.y16d{bottom:194.267733pt;}
.y142{bottom:194.279600pt;}
.y88{bottom:194.299867pt;}
.yf9{bottom:194.311600pt;}
.y14c{bottom:194.315600pt;}
.y57{bottom:194.315867pt;}
.ya7{bottom:194.355733pt;}
.yd5{bottom:194.411600pt;}
.y16c{bottom:210.267733pt;}
.y141{bottom:210.275600pt;}
.y27{bottom:210.279733pt;}
.y87{bottom:210.295867pt;}
.yf8{bottom:210.307600pt;}
.y14b{bottom:210.311600pt;}
.y56{bottom:210.311867pt;}
.ya6{bottom:210.351733pt;}
.yd4{bottom:210.407600pt;}
.y16b{bottom:226.267733pt;}
.y140{bottom:226.271600pt;}
.y26{bottom:226.275733pt;}
.y86{bottom:226.291867pt;}
.yf7{bottom:226.303600pt;}
.y14a{bottom:226.307600pt;}
.y55{bottom:226.307867pt;}
.ya5{bottom:226.347733pt;}
.yd3{bottom:226.403600pt;}
.y13f{bottom:242.267600pt;}
.y16a{bottom:242.267733pt;}
.y25{bottom:242.271733pt;}
.y85{bottom:242.287867pt;}
.yf6{bottom:242.299600pt;}
.y149{bottom:242.303600pt;}
.y54{bottom:242.303867pt;}
.ya4{bottom:242.343733pt;}
.yd2{bottom:242.399600pt;}
.y24{bottom:258.267733pt;}
.y84{bottom:258.283867pt;}
.yf5{bottom:258.295600pt;}
.y53{bottom:258.299867pt;}
.ya3{bottom:258.339733pt;}
.yd1{bottom:258.395600pt;}
.y153{bottom:271.570133pt;}
.y169{bottom:274.267733pt;}
.y83{bottom:274.279867pt;}
.yf4{bottom:274.291600pt;}
.y23{bottom:274.291733pt;}
.y52{bottom:274.295867pt;}
.ya2{bottom:274.335733pt;}
.yd0{bottom:274.391600pt;}
.y168{bottom:290.267733pt;}
.y82{bottom:290.275867pt;}
.yf3{bottom:290.287600pt;}
.y22{bottom:290.287733pt;}
.y51{bottom:290.291867pt;}
.ya1{bottom:290.331733pt;}
.ycf{bottom:290.387600pt;}
.y167{bottom:306.267733pt;}
.y81{bottom:306.271867pt;}
.yf2{bottom:306.283600pt;}
.y21{bottom:306.283733pt;}
.y50{bottom:306.287867pt;}
.ya0{bottom:306.327733pt;}
.yce{bottom:306.383600pt;}
.y166{bottom:322.267733pt;}
.y80{bottom:322.267867pt;}
.yf1{bottom:322.279600pt;}
.y20{bottom:322.279733pt;}
.y4f{bottom:322.283867pt;}
.y9f{bottom:322.323733pt;}
.ycd{bottom:322.379600pt;}
.y165{bottom:338.267733pt;}
.y7f{bottom:338.267867pt;}
.yf0{bottom:338.275600pt;}
.y1f{bottom:338.275733pt;}
.y4e{bottom:338.279867pt;}
.y9e{bottom:338.319733pt;}
.ycc{bottom:338.375600pt;}
.y164{bottom:354.267733pt;}
.yef{bottom:354.271600pt;}
.y1e{bottom:354.271733pt;}
.y4d{bottom:354.275867pt;}
.y9d{bottom:354.315733pt;}
.ycb{bottom:354.371600pt;}
.yee{bottom:370.267600pt;}
.y4c{bottom:370.271867pt;}
.y9c{bottom:370.311733pt;}
.y1d{bottom:370.343733pt;}
.yca{bottom:370.367600pt;}
.y7e{bottom:370.463867pt;}
.yed{bottom:386.267600pt;}
.y4b{bottom:386.267867pt;}
.y9b{bottom:386.307733pt;}
.y1c{bottom:386.339733pt;}
.yc9{bottom:386.363600pt;}
.y7d{bottom:386.459867pt;}
.y4a{bottom:402.267867pt;}
.y162{bottom:402.279600pt;}
.y15d{bottom:402.303600pt;}
.y9a{bottom:402.303733pt;}
.y1b{bottom:402.335733pt;}
.yc8{bottom:402.359600pt;}
.y7c{bottom:402.455867pt;}
.y161{bottom:418.275600pt;}
.y120{bottom:418.287600pt;}
.y15c{bottom:418.299600pt;}
.y99{bottom:418.299733pt;}
.y1a{bottom:418.331733pt;}
.y13d{bottom:418.335600pt;}
.yc7{bottom:418.355600pt;}
.y7b{bottom:418.451867pt;}
.yec{bottom:418.499600pt;}
.y49{bottom:434.267867pt;}
.y160{bottom:434.271600pt;}
.y11f{bottom:434.283600pt;}
.y15b{bottom:434.295600pt;}
.y98{bottom:434.295733pt;}
.y19{bottom:434.327733pt;}
.y13c{bottom:434.331600pt;}
.yc6{bottom:434.351600pt;}
.y7a{bottom:434.447867pt;}
.yeb{bottom:434.495600pt;}
.y15f{bottom:450.267600pt;}
.y48{bottom:450.267867pt;}
.y11e{bottom:450.279600pt;}
.y15a{bottom:450.291600pt;}
.y97{bottom:450.291733pt;}
.y18{bottom:450.323733pt;}
.y13b{bottom:450.327600pt;}
.yc5{bottom:450.347600pt;}
.y79{bottom:450.443867pt;}
.yea{bottom:450.491600pt;}
.y15e{bottom:466.267600pt;}
.y47{bottom:466.267867pt;}
.y11d{bottom:466.275600pt;}
.y159{bottom:466.287600pt;}
.y96{bottom:466.287733pt;}
.y17{bottom:466.319733pt;}
.y13a{bottom:466.323600pt;}
.yc4{bottom:466.343600pt;}
.y78{bottom:466.439867pt;}
.ye9{bottom:466.487600pt;}
.y46{bottom:482.267867pt;}
.y11c{bottom:482.271600pt;}
.y158{bottom:482.283600pt;}
.y95{bottom:482.283733pt;}
.y16{bottom:482.315733pt;}
.y139{bottom:482.319600pt;}
.yc3{bottom:482.339600pt;}
.y77{bottom:482.435867pt;}
.ye8{bottom:482.483600pt;}
.y11b{bottom:498.267600pt;}
.y157{bottom:498.279600pt;}
.y94{bottom:498.279733pt;}
.y15{bottom:498.311733pt;}
.y138{bottom:498.315600pt;}
.yc2{bottom:498.335600pt;}
.y76{bottom:498.431867pt;}
.ye7{bottom:498.479600pt;}
.y11a{bottom:514.267600pt;}
.y156{bottom:514.275600pt;}
.y93{bottom:514.275733pt;}
.y14{bottom:514.307733pt;}
.y137{bottom:514.311600pt;}
.yc1{bottom:514.331600pt;}
.y45{bottom:514.355867pt;}
.y75{bottom:514.427867pt;}
.ye6{bottom:514.475600pt;}
.y155{bottom:530.271600pt;}
.y92{bottom:530.271733pt;}
.y13{bottom:530.303733pt;}
.y136{bottom:530.307600pt;}
.yc0{bottom:530.327600pt;}
.y44{bottom:530.351867pt;}
.y74{bottom:530.423867pt;}
.ye5{bottom:530.471600pt;}
.y154{bottom:546.267600pt;}
.y91{bottom:546.267733pt;}
.y12{bottom:546.299733pt;}
.y135{bottom:546.303600pt;}
.ybf{bottom:546.323600pt;}
.y119{bottom:546.327600pt;}
.y43{bottom:546.347867pt;}
.y73{bottom:546.419867pt;}
.ye4{bottom:546.467600pt;}
.y11{bottom:562.295733pt;}
.y134{bottom:562.299600pt;}
.ybe{bottom:562.319600pt;}
.y118{bottom:562.323600pt;}
.y42{bottom:562.343867pt;}
.y72{bottom:562.415867pt;}
.ye3{bottom:562.463600pt;}
.y163{bottom:574.704000pt;}
.y10{bottom:578.291733pt;}
.y133{bottom:578.295600pt;}
.ybd{bottom:578.315600pt;}
.y117{bottom:578.319600pt;}
.y41{bottom:578.339867pt;}
.y71{bottom:578.411867pt;}
.ye2{bottom:578.459600pt;}
.yad{bottom:582.861600pt;}
.y152{bottom:590.704000pt;}
.yf{bottom:594.287733pt;}
.y132{bottom:594.291600pt;}
.ybc{bottom:594.311600pt;}
.y116{bottom:594.315600pt;}
.y40{bottom:594.335867pt;}
.y70{bottom:594.407867pt;}
.ye1{bottom:594.455600pt;}
.ye{bottom:610.283733pt;}
.y131{bottom:610.287600pt;}
.ybb{bottom:610.307600pt;}
.y115{bottom:610.311600pt;}
.y3f{bottom:610.331867pt;}
.y6f{bottom:610.403867pt;}
.ye0{bottom:610.451600pt;}
.yd{bottom:626.279733pt;}
.y130{bottom:626.283600pt;}
.yba{bottom:626.303600pt;}
.y114{bottom:626.307600pt;}
.y3e{bottom:626.327867pt;}
.y6e{bottom:626.399867pt;}
.ydf{bottom:626.447600pt;}
.yc{bottom:642.275733pt;}
.y12f{bottom:642.279600pt;}
.yb9{bottom:642.299600pt;}
.y113{bottom:642.303600pt;}
.y3d{bottom:642.323867pt;}
.y6d{bottom:642.395867pt;}
.yde{bottom:642.443600pt;}
.yb{bottom:658.271733pt;}
.y12e{bottom:658.275600pt;}
.yb8{bottom:658.295600pt;}
.y112{bottom:658.299600pt;}
.y3c{bottom:658.319867pt;}
.y6c{bottom:658.391867pt;}
.ydd{bottom:658.439600pt;}
.ya{bottom:674.267733pt;}
.y12d{bottom:674.271600pt;}
.yb7{bottom:674.291600pt;}
.y111{bottom:674.295600pt;}
.y3b{bottom:674.315867pt;}
.y6b{bottom:674.387867pt;}
.ydc{bottom:674.435600pt;}
.y12c{bottom:690.267600pt;}
.y9{bottom:690.267733pt;}
.yb6{bottom:690.287600pt;}
.y110{bottom:690.291600pt;}
.y3a{bottom:690.311867pt;}
.y6a{bottom:690.383867pt;}
.y12b{bottom:706.267600pt;}
.yb5{bottom:706.283600pt;}
.y10f{bottom:706.287600pt;}
.y39{bottom:706.307867pt;}
.y69{bottom:706.379867pt;}
.y101{bottom:708.310267pt;}
.yb4{bottom:722.279600pt;}
.y10e{bottom:722.283600pt;}
.y38{bottom:722.303867pt;}
.y68{bottom:722.375867pt;}
.yb3{bottom:738.275600pt;}
.y10d{bottom:738.279600pt;}
.y37{bottom:738.299867pt;}
.y12a{bottom:738.327600pt;}
.y67{bottom:738.371867pt;}
.y6{bottom:754.191733pt;}
.yb2{bottom:754.271600pt;}
.y10c{bottom:754.275600pt;}
.y36{bottom:754.295867pt;}
.y129{bottom:754.323600pt;}
.y66{bottom:754.367867pt;}
.y17a{bottom:756.934667pt;}
.yb1{bottom:770.267600pt;}
.y10b{bottom:770.271600pt;}
.y35{bottom:770.291867pt;}
.y128{bottom:770.319600pt;}
.y65{bottom:770.363867pt;}
.y5{bottom:770.543733pt;}
.y10a{bottom:786.267600pt;}
.y34{bottom:786.287867pt;}
.y127{bottom:786.315600pt;}
.y64{bottom:786.359867pt;}
.y4{bottom:798.991600pt;}
.y100{bottom:801.192267pt;}
.y109{bottom:802.267600pt;}
.y179{bottom:802.268000pt;}
.y33{bottom:802.283867pt;}
.y126{bottom:802.311600pt;}
.y63{bottom:802.355867pt;}
.y3{bottom:818.191733pt;}
.y178{bottom:818.268000pt;}
.y32{bottom:818.279867pt;}
.y125{bottom:818.307600pt;}
.y62{bottom:818.351867pt;}
.y177{bottom:834.268000pt;}
.y31{bottom:834.275867pt;}
.y108{bottom:834.279600pt;}
.y124{bottom:834.303600pt;}
.y61{bottom:834.347867pt;}
.y2{bottom:837.391733pt;}
.y176{bottom:850.268000pt;}
.y30{bottom:850.271867pt;}
.y107{bottom:850.275600pt;}
.y123{bottom:850.299600pt;}
.y60{bottom:850.343867pt;}
.y2f{bottom:866.267867pt;}
.y175{bottom:866.268000pt;}
.y106{bottom:866.271600pt;}
.y122{bottom:866.295600pt;}
.y5f{bottom:866.339867pt;}
.y105{bottom:882.267600pt;}
.y2e{bottom:882.267867pt;}
.y174{bottom:882.268000pt;}
.y121{bottom:882.291600pt;}
.y5e{bottom:882.335867pt;}
.y8{bottom:883.879733pt;}
.y7{bottom:903.079733pt;}
.y104{bottom:971.630533pt;}
.y2d{bottom:971.630667pt;}
.yb0{bottom:972.573200pt;}
.y173{bottom:972.573467pt;}
.y29{bottom:982.849067pt;}
.y28{bottom:1006.849067pt;}
.h5{height:17.271375pt;}
.h10{height:25.302083pt;}
.he{height:25.921875pt;}
.hf{height:27.544453pt;}
.h6{height:29.625000pt;}
.h11{height:30.854167pt;}
.h13{height:32.531250pt;}
.h2{height:33.328125pt;}
.h9{height:34.710938pt;}
.ha{height:35.841833pt;}
.hb{height:36.049833pt;}
.h12{height:36.119792pt;}
.h8{height:36.145833pt;}
.hd{height:38.208000pt;}
.h7{height:43.375000pt;}
.h3{height:47.218529pt;}
.h4{height:47.219063pt;}
.hc{height:55.189333pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:23.515733pt;}
.x1a{left:25.015733pt;}
.x10{left:56.690533pt;}
.x17{left:58.582667pt;}
.xf{left:60.706800pt;}
.x7{left:75.871867pt;}
.x18{left:79.370133pt;}
.x9{left:94.488133pt;}
.x2{left:129.888800pt;}
.xc{left:144.000000pt;}
.xe{left:155.878267pt;}
.x14{left:157.959600pt;}
.xa{left:176.931867pt;}
.x3{left:196.517600pt;}
.x8{left:230.431867pt;}
.x4{left:260.167467pt;}
.x1c{left:274.892800pt;}
.x6{left:278.921467pt;}
.x5{left:315.585067pt;}
.xb{left:342.420800pt;}
.x11{left:406.298533pt;}
.x16{left:408.172933pt;}
.x12{left:425.198533pt;}
.x15{left:427.072933pt;}
.x19{left:428.976400pt;}
.x13{left:444.096133pt;}
.x1{left:749.184933pt;}
.x1b{left:750.684933pt;}
}




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