
    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_8548a761b8cce594525daf33.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_4d64e4c71cbef20200ee27ee.woff')format("woff");}.ff2{font-family:ff2;line-height:0.904297;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_c50f8a74d58b00c8c5b2eb64.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_34a87893ae7a6f19a6b24703.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_75e740571b66ac518dd780de.woff')format("woff");}.ff5{font-family:ff5;line-height:0.690918;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_64182624672cc35be4d4994f.woff')format("woff");}.ff6{font-family:ff6;line-height:0.675781;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_1d809ea17bdcb1e9249e48e7.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ab2733148b88d8a0ed5ca4f5.woff')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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_bb6b7dcc237cb28a60776992.woff')format("woff");}.ff9{font-family:ff9;line-height:0.893555;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_6aae60bd1a0f37cd315d5edf.woff')format("woff");}.ffa{font-family:ffa;line-height:0.675781;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_52c2bd246c22108f4e3e8440.woff')format("woff");}.ffb{font-family:ffb;line-height:0.675781;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_e5df645b848ba46206b65169.woff')format("woff");}.ffc{font-family:ffc;line-height:0.910645;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_a01d2f6db25ee1033442b72b.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_4ee6ab115648a4c674a1c589.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_f87a081a8028b16d243e0d71.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;}
@font-face{font-family:ff10;src:url('chunks/assets/font_746e38ecd88880c876f87f94.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_702afe66c6667ae78f792f28.woff')format("woff");}.ff11{font-family:ff11;line-height:0.891602;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:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls2d{letter-spacing:-0.477792px;}
.ls18{letter-spacing:-0.459648px;}
.ls24{letter-spacing:-0.417312px;}
.ls1e{letter-spacing:-0.381024px;}
.ls29{letter-spacing:-0.361152px;}
.ls10{letter-spacing:-0.338688px;}
.ls1f{letter-spacing:-0.320544px;}
.ls1c{letter-spacing:-0.302400px;}
.ls28{letter-spacing:-0.273600px;}
.ls1d{letter-spacing:-0.260064px;}
.ls1a{letter-spacing:-0.241920px;}
.ls11{letter-spacing:-0.223776px;}
.ls14{letter-spacing:-0.198720px;}
.ls13{letter-spacing:-0.175392px;}
.lsf{letter-spacing:-0.158976px;}
.ls19{letter-spacing:-0.157248px;}
.lse{letter-spacing:-0.152352px;}
.lsd{letter-spacing:-0.145728px;}
.ls1b{letter-spacing:-0.145152px;}
.ls12{letter-spacing:-0.120960px;}
.lsc{letter-spacing:-0.119232px;}
.lsb{letter-spacing:-0.079488px;}
.lsa{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.014400px;}
.ls2{letter-spacing:0.060048px;}
.ls21{letter-spacing:0.123552px;}
.ls22{letter-spacing:0.161568px;}
.ls8{letter-spacing:0.194832px;}
.ls1{letter-spacing:0.240480px;}
.ls23{letter-spacing:0.242352px;}
.ls17{letter-spacing:0.283968px;}
.ls20{letter-spacing:0.285120px;}
.ls15{letter-spacing:0.359136px;}
.ls16{letter-spacing:0.442656px;}
.ls3{letter-spacing:1.141200px;}
.ls7{letter-spacing:7.801920px;}
.ls30{letter-spacing:8.510976px;}
.ls4{letter-spacing:8.941680px;}
.ls2f{letter-spacing:10.945440px;}
.ls2a{letter-spacing:10.946880px;}
.ls5{letter-spacing:13.451760px;}
.ls31{letter-spacing:14.833008px;}
.ls6{letter-spacing:15.275520px;}
.ls32{letter-spacing:16.185600px;}
.ls26{letter-spacing:18.133920px;}
.ls27{letter-spacing:24.528960px;}
.ls2c{letter-spacing:44.880048px;}
.ls2b{letter-spacing:44.880480px;}
.ls2e{letter-spacing:46.186560px;}
.ls9{letter-spacing:63.587520px;}
.ls25{letter-spacing:63.588960px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.480512px;}
.ws2{word-spacing:-16.440768px;}
.ws5{word-spacing:-15.120000px;}
.wsf{word-spacing:-14.974848px;}
.ws9{word-spacing:-14.962752px;}
.ws7{word-spacing:-14.944608px;}
.wse{word-spacing:-14.896224px;}
.ws6{word-spacing:-14.878080px;}
.ws11{word-spacing:-14.859936px;}
.ws3{word-spacing:-14.817888px;}
.ws10{word-spacing:-14.817600px;}
.ws12{word-spacing:-14.799456px;}
.ws4{word-spacing:-14.781312px;}
.ws8{word-spacing:-14.660352px;}
.wsc{word-spacing:-13.680000px;}
.wsd{word-spacing:-13.318848px;}
.wsa{word-spacing:-0.060480px;}
.wsb{word-spacing:0.000000px;}
._0{margin-left:-1.017504px;}
._1{width:1.023408px;}
._2{width:2.266560px;}
._b{width:3.636864px;}
._1f{width:4.709376px;}
._9{width:5.745600px;}
._3{width:6.834240px;}
._8{width:8.315280px;}
._4{width:9.555840px;}
._5{width:10.946880px;}
._c{width:12.337920px;}
._6{width:13.625136px;}
._7{width:16.584048px;}
._1a{width:17.740944px;}
._23{width:18.809280px;}
._14{width:20.085120px;}
._a{width:21.464640px;}
._1b{width:22.498560px;}
._19{width:23.587200px;}
._f{width:24.736320px;}
._22{width:25.955424px;}
._31{width:27.006048px;}
._30{width:28.425600px;}
._16{width:31.086720px;}
._11{width:33.143040px;}
._d{width:34.715520px;}
._e{width:35.748432px;}
._10{width:37.376640px;}
._17{width:38.787840px;}
._15{width:40.582080px;}
._1e{width:42.517440px;}
._1d{width:44.029440px;}
._25{width:45.061056px;}
._2c{width:46.630080px;}
._1c{width:48.625920px;}
._20{width:50.561280px;}
._18{width:51.836112px;}
._2f{width:53.040960px;}
._12{width:54.613440px;}
._13{width:56.367360px;}
._2e{width:58.902768px;}
._26{width:60.303312px;}
._27{width:63.927360px;}
._2d{width:65.378880px;}
._2b{width:66.709440px;}
._24{width:69.552000px;}
._29{width:72.031680px;}
._28{width:73.180800px;}
._21{width:74.329920px;}
._32{width:81.527040px;}
._2a{width:87.940800px;}
._33{width:116.847360px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:5.760000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:47.520000px;}
.fs7{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.y4e{bottom:-15.540000px;}
.y0{bottom:0.000000px;}
.y8b{bottom:0.240000px;}
.y77{bottom:0.540000px;}
.y87{bottom:0.780000px;}
.y83{bottom:1.380000px;}
.y7f{bottom:1.500000px;}
.y7b{bottom:1.560000px;}
.y4d{bottom:1.740000px;}
.y8d{bottom:3.480000px;}
.y9c{bottom:3.720000px;}
.y79{bottom:3.780000px;}
.yb4{bottom:3.840000px;}
.yab{bottom:3.900000px;}
.ya6{bottom:3.960000px;}
.y89{bottom:4.020000px;}
.y134{bottom:4.320000px;}
.y81{bottom:4.380000px;}
.y99{bottom:4.500000px;}
.ybc{bottom:4.560000px;}
.y85{bottom:4.620000px;}
.yf1{bottom:4.680000px;}
.ya3{bottom:4.740000px;}
.y7d{bottom:4.800000px;}
.yc4{bottom:4.860000px;}
.ycc{bottom:13.200000px;}
.yc5{bottom:13.500000px;}
.y137{bottom:20.820000px;}
.y9b{bottom:21.000000px;}
.y12b{bottom:21.060000px;}
.yb3{bottom:21.120000px;}
.ya5{bottom:21.240000px;}
.ya0{bottom:21.300000px;}
.y9e{bottom:21.720000px;}
.y98{bottom:21.780000px;}
.ycb{bottom:21.840000px;}
.yf9{bottom:21.900000px;}
.ya2{bottom:22.020000px;}
.y108{bottom:38.520000px;}
.y135{bottom:38.820000px;}
.y12a{bottom:39.060000px;}
.y50{bottom:53.640000px;}
.y107{bottom:55.800000px;}
.y6{bottom:58.320000px;}
.y4c{bottom:64.500000px;}
.y106{bottom:72.720000px;}
.y5{bottom:86.400000px;}
.y105{bottom:90.000000px;}
.y104{bottom:104.040000px;}
.y8c{bottom:111.000000px;}
.yc9{bottom:112.500000px;}
.y4b{bottom:119.520000px;}
.y13b{bottom:125.640000px;}
.y102{bottom:126.360000px;}
.y8a{bottom:129.000000px;}
.yc8{bottom:130.500000px;}
.y3b{bottom:132.120000px;}
.y163{bottom:136.800000px;}
.y18f{bottom:138.240000px;}
.y128{bottom:138.960000px;}
.y13a{bottom:140.040000px;}
.y101{bottom:143.280000px;}
.y4a{bottom:145.800000px;}
.yc7{bottom:148.500000px;}
.y11c{bottom:153.000000px;}
.y162{bottom:154.080000px;}
.y3a{bottom:158.400000px;}
.y100{bottom:160.560000px;}
.y18e{bottom:164.520000px;}
.yc6{bottom:166.500000px;}
.y127{bottom:171.000000px;}
.y161{bottom:171.360000px;}
.y49{bottom:172.080000px;}
.y39{bottom:175.680000px;}
.y7c{bottom:177.000000px;}
.yff{bottom:177.840000px;}
.y18d{bottom:181.800000px;}
.yc3{bottom:184.500000px;}
.y160{bottom:188.280000px;}
.y126{bottom:189.000000px;}
.y48{bottom:190.440000px;}
.y38{bottom:192.960000px;}
.y7a{bottom:195.000000px;}
.yfe{bottom:195.120000px;}
.y18c{bottom:199.080000px;}
.y15f{bottom:205.560000px;}
.y125{bottom:207.000000px;}
.y47{bottom:207.720000px;}
.yfd{bottom:208.500000px;}
.y37{bottom:210.240000px;}
.y18b{bottom:216.360000px;}
.y15e{bottom:222.840000px;}
.yc2{bottom:224.280000px;}
.y46{bottom:224.640000px;}
.y124{bottom:225.000000px;}
.yfc{bottom:226.500000px;}
.y36{bottom:227.520000px;}
.y18a{bottom:233.280000px;}
.yc1{bottom:241.560000px;}
.y45{bottom:241.920000px;}
.y123{bottom:243.000000px;}
.y35{bottom:244.440000px;}
.yfb{bottom:244.500000px;}
.y15d{bottom:249.120000px;}
.y189{bottom:250.560000px;}
.yc0{bottom:255.000000px;}
.y122{bottom:261.000000px;}
.y34{bottom:261.720000px;}
.yfa{bottom:262.500000px;}
.y15c{bottom:266.400000px;}
.y188{bottom:267.840000px;}
.y44{bottom:269.280000px;}
.ybf{bottom:273.000000px;}
.y33{bottom:279.000000px;}
.yf8{bottom:280.500000px;}
.y15b{bottom:283.680000px;}
.y187{bottom:285.120000px;}
.ybe{bottom:291.000000px;}
.y43{bottom:295.560000px;}
.y32{bottom:296.280000px;}
.y121{bottom:297.000000px;}
.y15a{bottom:300.960000px;}
.y186{bottom:302.400000px;}
.ybd{bottom:309.000000px;}
.y42{bottom:312.840000px;}
.y31{bottom:313.560000px;}
.y120{bottom:315.000000px;}
.y159{bottom:318.240000px;}
.y185{bottom:319.680000px;}
.yf7{bottom:320.400000px;}
.y88{bottom:322.500000px;}
.ybb{bottom:327.000000px;}
.y10a{bottom:328.680000px;}
.y41{bottom:330.120000px;}
.y30{bottom:330.840000px;}
.y11f{bottom:333.000000px;}
.y158{bottom:335.520000px;}
.y184{bottom:336.960000px;}
.yf6{bottom:337.680000px;}
.y86{bottom:340.500000px;}
.y109{bottom:345.960000px;}
.y40{bottom:347.400000px;}
.y2f{bottom:348.120000px;}
.yba{bottom:349.560000px;}
.yf5{bottom:351.000000px;}
.y183{bottom:354.240000px;}
.y157{bottom:361.800000px;}
.y3f{bottom:364.680000px;}
.y2e{bottom:365.400000px;}
.yb9{bottom:366.840000px;}
.yf4{bottom:369.000000px;}
.y156{bottom:379.080000px;}
.y182{bottom:380.520000px;}
.yb8{bottom:381.000000px;}
.y3e{bottom:381.960000px;}
.y2d{bottom:382.680000px;}
.yf3{bottom:387.000000px;}
.y155{bottom:396.000000px;}
.y181{bottom:397.800000px;}
.yb7{bottom:399.000000px;}
.y3d{bottom:399.240000px;}
.y2c{bottom:399.960000px;}
.yf2{bottom:405.000000px;}
.y154{bottom:413.280000px;}
.y180{bottom:415.080000px;}
.yb6{bottom:417.000000px;}
.y2b{bottom:417.240000px;}
.yf0{bottom:423.000000px;}
.y3c{bottom:425.520000px;}
.y153{bottom:430.560000px;}
.y17f{bottom:432.000000px;}
.y2a{bottom:434.520000px;}
.yb5{bottom:435.000000px;}
.y11e{bottom:441.000000px;}
.yef{bottom:445.680000px;}
.y152{bottom:447.840000px;}
.y17e{bottom:449.280000px;}
.y29{bottom:451.440000px;}
.yb2{bottom:453.000000px;}
.y11d{bottom:459.000000px;}
.yee{bottom:462.960000px;}
.y17d{bottom:466.560000px;}
.y151{bottom:474.120000px;}
.yed{bottom:477.000000px;}
.y28{bottom:477.720000px;}
.y17c{bottom:483.840000px;}
.y78{bottom:490.500000px;}
.y139{bottom:491.400000px;}
.yb1{bottom:492.120000px;}
.yec{bottom:495.000000px;}
.y17b{bottom:501.120000px;}
.y27{bottom:505.440000px;}
.y138{bottom:505.500000px;}
.y76{bottom:508.500000px;}
.y150{bottom:508.680000px;}
.yb0{bottom:509.400000px;}
.yeb{bottom:513.000000px;}
.y17a{bottom:518.400000px;}
.y26{bottom:519.480000px;}
.yaf{bottom:523.500000px;}
.y14f{bottom:525.960000px;}
.yea{bottom:531.000000px;}
.y25{bottom:533.520000px;}
.y179{bottom:535.680000px;}
.yae{bottom:541.500000px;}
.y14e{bottom:543.240000px;}
.y24{bottom:547.200000px;}
.ye9{bottom:549.000000px;}
.y136{bottom:558.000000px;}
.yad{bottom:559.500000px;}
.y14d{bottom:560.520000px;}
.y178{bottom:561.960000px;}
.y23{bottom:562.320000px;}
.y11b{bottom:567.000000px;}
.y84{bottom:568.500000px;}
.ye8{bottom:570.960000px;}
.y133{bottom:576.000000px;}
.yac{bottom:577.500000px;}
.y14c{bottom:577.800000px;}
.y177{bottom:579.240000px;}
.y22{bottom:579.600000px;}
.y11a{bottom:585.000000px;}
.y82{bottom:586.500000px;}
.ye7{bottom:588.240000px;}
.y1b1{bottom:588.960000px;}
.y14b{bottom:595.080000px;}
.yaa{bottom:595.500000px;}
.y176{bottom:596.520000px;}
.y21{bottom:596.880000px;}
.y132{bottom:598.320000px;}
.ye6{bottom:601.500000px;}
.y119{bottom:603.000000px;}
.y1b0{bottom:606.240000px;}
.y175{bottom:613.800000px;}
.y20{bottom:614.160000px;}
.y131{bottom:615.600000px;}
.ya9{bottom:617.400000px;}
.ye5{bottom:619.500000px;}
.y118{bottom:621.000000px;}
.y1af{bottom:623.520000px;}
.y174{bottom:631.080000px;}
.y1f{bottom:631.440000px;}
.y130{bottom:632.880000px;}
.ya8{bottom:634.680000px;}
.ye4{bottom:637.500000px;}
.y117{bottom:639.000000px;}
.y1ae{bottom:640.800000px;}
.y14a{bottom:647.280000px;}
.y173{bottom:648.000000px;}
.y1e{bottom:648.360000px;}
.y12f{bottom:650.160000px;}
.ya7{bottom:651.960000px;}
.ye3{bottom:655.500000px;}
.y116{bottom:657.000000px;}
.y1ad{bottom:658.080000px;}
.y12e{bottom:664.200000px;}
.y149{bottom:664.560000px;}
.y198{bottom:665.280000px;}
.y1d{bottom:665.640000px;}
.ya4{bottom:666.000000px;}
.ye2{bottom:673.500000px;}
.y172{bottom:674.280000px;}
.y115{bottom:675.000000px;}
.y148{bottom:681.840000px;}
.y197{bottom:682.560000px;}
.y1c{bottom:682.920000px;}
.y171{bottom:691.560000px;}
.y1ac{bottom:692.280000px;}
.y114{bottom:693.000000px;}
.ye1{bottom:696.240000px;}
.y147{bottom:699.120000px;}
.y196{bottom:699.840000px;}
.y1b{bottom:700.200000px;}
.ya1{bottom:700.500000px;}
.y170{bottom:708.840000px;}
.y1ab{bottom:709.560000px;}
.y113{bottom:711.000000px;}
.ye0{bottom:713.520000px;}
.y146{bottom:716.400000px;}
.y195{bottom:717.120000px;}
.y1a{bottom:717.480000px;}
.y16f{bottom:726.120000px;}
.y1aa{bottom:726.840000px;}
.ydf{bottom:727.500000px;}
.y112{bottom:729.000000px;}
.y145{bottom:733.680000px;}
.y194{bottom:734.400000px;}
.y19{bottom:734.760000px;}
.y9f{bottom:736.500000px;}
.y16e{bottom:743.400000px;}
.y1a9{bottom:744.120000px;}
.yde{bottom:745.500000px;}
.y111{bottom:747.000000px;}
.y144{bottom:750.960000px;}
.y193{bottom:751.680000px;}
.y18{bottom:752.040000px;}
.y16d{bottom:760.680000px;}
.y1a8{bottom:761.400000px;}
.ydd{bottom:763.500000px;}
.y110{bottom:765.000000px;}
.y143{bottom:768.240000px;}
.y192{bottom:768.960000px;}
.y17{bottom:769.320000px;}
.y9d{bottom:771.000000px;}
.y75{bottom:777.240000px;}
.y16c{bottom:777.960000px;}
.y1a7{bottom:778.680000px;}
.ydc{bottom:781.500000px;}
.y10f{bottom:783.000000px;}
.y191{bottom:786.240000px;}
.y16{bottom:786.600000px;}
.y74{bottom:794.520000px;}
.y16b{bottom:795.240000px;}
.y1a6{bottom:795.960000px;}
.ydb{bottom:799.500000px;}
.y62{bottom:800.640000px;}
.y10e{bottom:801.000000px;}
.y15{bottom:803.880000px;}
.y9a{bottom:807.000000px;}
.y73{bottom:811.800000px;}
.y190{bottom:812.520000px;}
.y1a5{bottom:813.240000px;}
.y61{bottom:817.920000px;}
.y10d{bottom:819.000000px;}
.y142{bottom:820.800000px;}
.y14{bottom:821.160000px;}
.y16a{bottom:821.520000px;}
.y72{bottom:828.720000px;}
.y1a4{bottom:830.520000px;}
.y60{bottom:834.840000px;}
.y10c{bottom:837.000000px;}
.y141{bottom:837.720000px;}
.y13{bottom:838.440000px;}
.yda{bottom:838.800000px;}
.y97{bottom:841.500000px;}
.y71{bottom:846.000000px;}
.y1a3{bottom:847.800000px;}
.y5f{bottom:852.120000px;}
.y10b{bottom:855.000000px;}
.yd9{bottom:855.720000px;}
.y12{bottom:857.880000px;}
.y70{bottom:863.280000px;}
.y1a2{bottom:864.720000px;}
.y80{bottom:871.500000px;}
.y140{bottom:872.280000px;}
.yd8{bottom:873.000000px;}
.y11{bottom:877.680000px;}
.y5e{bottom:878.400000px;}
.y96{bottom:881.280000px;}
.y1a1{bottom:882.000000px;}
.yd7{bottom:886.500000px;}
.y7e{bottom:889.500000px;}
.y6f{bottom:889.560000px;}
.y169{bottom:890.280000px;}
.y10{bottom:894.960000px;}
.y5d{bottom:895.680000px;}
.y95{bottom:898.560000px;}
.y1a0{bottom:899.280000px;}
.yd6{bottom:904.500000px;}
.y6e{bottom:906.840000px;}
.y168{bottom:907.560000px;}
.y5c{bottom:912.960000px;}
.yf{bottom:914.400000px;}
.y94{bottom:915.840000px;}
.y19f{bottom:916.560000px;}
.yd5{bottom:922.500000px;}
.y6d{bottom:924.120000px;}
.y167{bottom:924.840000px;}
.y5b{bottom:930.240000px;}
.y93{bottom:933.120000px;}
.y19e{bottom:933.840000px;}
.ye{bottom:937.080000px;}
.yd4{bottom:940.500000px;}
.y6c{bottom:941.400000px;}
.y166{bottom:942.120000px;}
.yd{bottom:948.960000px;}
.y92{bottom:950.400000px;}
.y19d{bottom:951.120000px;}
.y5a{bottom:956.520000px;}
.yd3{bottom:958.500000px;}
.y165{bottom:959.400000px;}
.y6b{bottom:967.680000px;}
.y19c{bottom:968.400000px;}
.yc{bottom:971.640000px;}
.y59{bottom:973.800000px;}
.y164{bottom:976.680000px;}
.y103{bottom:981.000000px;}
.y6a{bottom:984.960000px;}
.y19b{bottom:985.680000px;}
.y58{bottom:991.080000px;}
.yb{bottom:993.240000px;}
.y13f{bottom:993.960000px;}
.yd2{bottom:998.280000px;}
.y69{bottom:1002.240000px;}
.y19a{bottom:1002.960000px;}
.y57{bottom:1008.360000px;}
.y13e{bottom:1011.240000px;}
.yd1{bottom:1015.560000px;}
.y12d{bottom:1016.280000px;}
.y68{bottom:1019.520000px;}
.y199{bottom:1020.240000px;}
.ya{bottom:1023.480000px;}
.y13d{bottom:1028.520000px;}
.yd0{bottom:1029.000000px;}
.y12c{bottom:1030.500000px;}
.y56{bottom:1034.640000px;}
.y91{bottom:1037.520000px;}
.y67{bottom:1045.800000px;}
.ycf{bottom:1047.000000px;}
.y9{bottom:1047.600000px;}
.y129{bottom:1048.500000px;}
.y90{bottom:1054.800000px;}
.y55{bottom:1060.560000px;}
.y66{bottom:1062.720000px;}
.yce{bottom:1065.000000px;}
.y8{bottom:1071.720000px;}
.y54{bottom:1077.840000px;}
.y65{bottom:1080.000000px;}
.ycd{bottom:1083.000000px;}
.y8f{bottom:1089.000000px;}
.y53{bottom:1096.200000px;}
.y64{bottom:1097.280000px;}
.yca{bottom:1101.000000px;}
.y8e{bottom:1106.280000px;}
.y7{bottom:1106.640000px;}
.y52{bottom:1113.480000px;}
.y13c{bottom:1114.560000px;}
.y63{bottom:1123.560000px;}
.y4{bottom:1134.720000px;}
.y51{bottom:1140.840000px;}
.y3{bottom:1150.560000px;}
.y2{bottom:1164.960000px;}
.y1{bottom:1193.400000px;}
.y4f{bottom:1197.360000px;}
.h4{height:3.839063px;}
.hc{height:4.500000px;}
.hf{height:18.000000px;}
.h11{height:19.500000px;}
.h9{height:26.274375px;}
.hb{height:32.994844px;}
.h15{height:36.000000px;}
.hd{height:37.085625px;}
.h5{height:40.989375px;}
.ha{height:42.022969px;}
.h6{height:44.149219px;}
.h2{height:44.893125px;}
.h3{height:48.095156px;}
.h18{height:54.000000px;}
.h8{height:56.593125px;}
.h7{height:56.604375px;}
.h16{height:105.000000px;}
.h14{height:193.500000px;}
.h13{height:229.500000px;}
.he{height:265.500000px;}
.h12{height:286.500000px;}
.h10{height:295.500000px;}
.h17{height:360.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:7.500000px;}
.w20{width:36.000000px;}
.wa{width:39.000000px;}
.w17{width:40.500000px;}
.w2a{width:42.000000px;}
.w12{width:48.000000px;}
.w2b{width:49.500000px;}
.w24{width:51.000000px;}
.w8{width:52.500000px;}
.w1c{width:54.000000px;}
.w10{width:55.500000px;}
.wb{width:57.000000px;}
.w1d{width:58.500000px;}
.w11{width:61.500000px;}
.w1b{width:63.000000px;}
.w9{width:66.000000px;}
.w16{width:67.500000px;}
.w2f{width:73.500000px;}
.w22{width:75.000000px;}
.w1f{width:76.500000px;}
.w6{width:78.000000px;}
.w25{width:79.500000px;}
.wc{width:81.000000px;}
.w14{width:82.500000px;}
.wd{width:84.000000px;}
.w18{width:85.500000px;}
.w23{width:90.000000px;}
.w1a{width:91.500000px;}
.w28{width:93.000000px;}
.wf{width:94.500000px;}
.w7{width:96.000000px;}
.w15{width:100.500000px;}
.w32{width:106.500000px;}
.w2d{width:117.000000px;}
.w13{width:121.500000px;}
.w19{width:124.500000px;}
.w27{width:126.000000px;}
.w30{width:129.000000px;}
.we{width:136.500000px;}
.w26{width:138.000000px;}
.w5{width:142.500000px;}
.w29{width:145.500000px;}
.w1e{width:153.000000px;}
.w21{width:154.500000px;}
.w2c{width:156.000000px;}
.w31{width:235.500000px;}
.w2e{width:253.500000px;}
.w3{width:325.500000px;}
.w4{width:693.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x11{left:1.560048px;}
.x1b{left:7.500000px;}
.x1f{left:8.819856px;}
.x1a{left:100.500000px;}
.x5{left:108.000000px;}
.x12{left:109.746108px;}
.x9{left:119.513664px;}
.x65{left:121.902084px;}
.xd{left:126.532476px;}
.x4{left:129.812616px;}
.x5d{left:132.068124px;}
.x15{left:133.578360px;}
.x13{left:135.000000px;}
.x10{left:160.500000px;}
.x70{left:164.627928px;}
.x6d{left:166.078116px;}
.x8{left:169.132320px;}
.x5f{left:192.000000px;}
.x2d{left:222.000000px;}
.x34{left:223.500000px;}
.x48{left:226.500000px;}
.x6b{left:229.500000px;}
.x51{left:235.500000px;}
.x27{left:237.000000px;}
.x1d{left:243.000000px;}
.x4d{left:246.000000px;}
.x3b{left:252.000000px;}
.x40{left:255.000000px;}
.x56{left:264.596184px;}
.x3a{left:268.346196px;}
.x19{left:269.865000px;}
.x64{left:271.125756px;}
.x57{left:273.978540px;}
.x3f{left:277.728516px;}
.xc{left:283.770972px;}
.x45{left:288.561024px;}
.x1c{left:290.436048px;}
.x17{left:292.365000px;}
.x18{left:293.445000px;}
.x26{left:294.592536px;}
.x2{left:298.937628px;}
.x35{left:300.000000px;}
.x2c{left:302.092524px;}
.x2e{left:304.500000px;}
.x16{left:312.524640px;}
.x14{left:317.024640px;}
.x5e{left:318.161880px;}
.x1e{left:319.500000px;}
.x4e{left:321.000000px;}
.x60{left:327.000000px;}
.xb{left:328.941648px;}
.x58{left:331.500000px;}
.x6e{left:334.500000px;}
.xa{left:351.682632px;}
.x67{left:354.000000px;}
.x66{left:364.183560px;}
.x36{left:390.000000px;}
.x49{left:393.000000px;}
.x52{left:402.000000px;}
.x46{left:403.500000px;}
.x2f{left:405.000000px;}
.x28{left:411.000000px;}
.x4f{left:412.500000px;}
.x20{left:415.500000px;}
.x3c{left:418.500000px;}
.x59{left:421.500000px;}
.x68{left:426.000000px;}
.x3{left:446.474880px;}
.x4a{left:450.000000px;}
.x37{left:451.500000px;}
.x53{left:456.000000px;}
.x30{left:459.000000px;}
.x29{left:465.000000px;}
.x21{left:468.000000px;}
.x41{left:469.500000px;}
.x3d{left:471.000000px;}
.xe{left:473.040000px;}
.xf{left:500.040000px;}
.x1{left:514.061640px;}
.x4b{left:516.000000px;}
.x38{left:517.500000px;}
.x54{left:522.000000px;}
.x47{left:525.000000px;}
.x2a{left:526.500000px;}
.x50{left:531.000000px;}
.x22{left:534.000000px;}
.x3e{left:537.000000px;}
.x5a{left:538.500000px;}
.x61{left:562.500000px;}
.x31{left:567.000000px;}
.x4c{left:568.500000px;}
.x39{left:570.000000px;}
.x55{left:571.500000px;}
.x23{left:573.000000px;}
.x5b{left:574.500000px;}
.x42{left:576.000000px;}
.x7{left:603.506520px;}
.x69{left:609.000000px;}
.x32{left:627.000000px;}
.x2b{left:628.500000px;}
.x24{left:630.000000px;}
.x5c{left:631.500000px;}
.x43{left:633.000000px;}
.x6c{left:658.154880px;}
.x6f{left:678.314880px;}
.x62{left:681.000000px;}
.x6a{left:700.500000px;}
.x33{left:708.000000px;}
.x25{left:709.500000px;}
.x44{left:711.000000px;}
.x63{left:735.000000px;}
.x6{left:776.587320px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls2d{letter-spacing:-0.424704pt;}
.ls18{letter-spacing:-0.408576pt;}
.ls24{letter-spacing:-0.370944pt;}
.ls1e{letter-spacing:-0.338688pt;}
.ls29{letter-spacing:-0.321024pt;}
.ls10{letter-spacing:-0.301056pt;}
.ls1f{letter-spacing:-0.284928pt;}
.ls1c{letter-spacing:-0.268800pt;}
.ls28{letter-spacing:-0.243200pt;}
.ls1d{letter-spacing:-0.231168pt;}
.ls1a{letter-spacing:-0.215040pt;}
.ls11{letter-spacing:-0.198912pt;}
.ls14{letter-spacing:-0.176640pt;}
.ls13{letter-spacing:-0.155904pt;}
.lsf{letter-spacing:-0.141312pt;}
.ls19{letter-spacing:-0.139776pt;}
.lse{letter-spacing:-0.135424pt;}
.lsd{letter-spacing:-0.129536pt;}
.ls1b{letter-spacing:-0.129024pt;}
.ls12{letter-spacing:-0.107520pt;}
.lsc{letter-spacing:-0.105984pt;}
.lsb{letter-spacing:-0.070656pt;}
.lsa{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.012800pt;}
.ls2{letter-spacing:0.053376pt;}
.ls21{letter-spacing:0.109824pt;}
.ls22{letter-spacing:0.143616pt;}
.ls8{letter-spacing:0.173184pt;}
.ls1{letter-spacing:0.213760pt;}
.ls23{letter-spacing:0.215424pt;}
.ls17{letter-spacing:0.252416pt;}
.ls20{letter-spacing:0.253440pt;}
.ls15{letter-spacing:0.319232pt;}
.ls16{letter-spacing:0.393472pt;}
.ls3{letter-spacing:1.014400pt;}
.ls7{letter-spacing:6.935040pt;}
.ls30{letter-spacing:7.565312pt;}
.ls4{letter-spacing:7.948160pt;}
.ls2f{letter-spacing:9.729280pt;}
.ls2a{letter-spacing:9.730560pt;}
.ls5{letter-spacing:11.957120pt;}
.ls31{letter-spacing:13.184896pt;}
.ls6{letter-spacing:13.578240pt;}
.ls32{letter-spacing:14.387200pt;}
.ls26{letter-spacing:16.119040pt;}
.ls27{letter-spacing:21.803520pt;}
.ls2c{letter-spacing:39.893376pt;}
.ls2b{letter-spacing:39.893760pt;}
.ls2e{letter-spacing:41.054720pt;}
.ls9{letter-spacing:56.522240pt;}
.ls25{letter-spacing:56.523520pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.649344pt;}
.ws2{word-spacing:-14.614016pt;}
.ws5{word-spacing:-13.440000pt;}
.wsf{word-spacing:-13.310976pt;}
.ws9{word-spacing:-13.300224pt;}
.ws7{word-spacing:-13.284096pt;}
.wse{word-spacing:-13.241088pt;}
.ws6{word-spacing:-13.224960pt;}
.ws11{word-spacing:-13.208832pt;}
.ws3{word-spacing:-13.171456pt;}
.ws10{word-spacing:-13.171200pt;}
.ws12{word-spacing:-13.155072pt;}
.ws4{word-spacing:-13.138944pt;}
.ws8{word-spacing:-13.031424pt;}
.wsc{word-spacing:-12.160000pt;}
.wsd{word-spacing:-11.838976pt;}
.wsa{word-spacing:-0.053760pt;}
.wsb{word-spacing:0.000000pt;}
._0{margin-left:-0.904448pt;}
._1{width:0.909696pt;}
._2{width:2.014720pt;}
._b{width:3.232768pt;}
._1f{width:4.186112pt;}
._9{width:5.107200pt;}
._3{width:6.074880pt;}
._8{width:7.391360pt;}
._4{width:8.494080pt;}
._5{width:9.730560pt;}
._c{width:10.967040pt;}
._6{width:12.111232pt;}
._7{width:14.741376pt;}
._1a{width:15.769728pt;}
._23{width:16.719360pt;}
._14{width:17.853440pt;}
._a{width:19.079680pt;}
._1b{width:19.998720pt;}
._19{width:20.966400pt;}
._f{width:21.987840pt;}
._22{width:23.071488pt;}
._31{width:24.005376pt;}
._30{width:25.267200pt;}
._16{width:27.632640pt;}
._11{width:29.460480pt;}
._d{width:30.858240pt;}
._e{width:31.776384pt;}
._10{width:33.223680pt;}
._17{width:34.478080pt;}
._15{width:36.072960pt;}
._1e{width:37.793280pt;}
._1d{width:39.137280pt;}
._25{width:40.054272pt;}
._2c{width:41.448960pt;}
._1c{width:43.223040pt;}
._20{width:44.943360pt;}
._18{width:46.076544pt;}
._2f{width:47.147520pt;}
._12{width:48.545280pt;}
._13{width:50.104320pt;}
._2e{width:52.358016pt;}
._26{width:53.602944pt;}
._27{width:56.824320pt;}
._2d{width:58.114560pt;}
._2b{width:59.297280pt;}
._24{width:61.824000pt;}
._29{width:64.028160pt;}
._28{width:65.049600pt;}
._21{width:66.071040pt;}
._32{width:72.468480pt;}
._2a{width:78.169600pt;}
._33{width:103.864320pt;}
.fs1{font-size:5.120000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.240000pt;}
.fs7{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.y4e{bottom:-13.813333pt;}
.y0{bottom:0.000000pt;}
.y8b{bottom:0.213333pt;}
.y77{bottom:0.480000pt;}
.y87{bottom:0.693333pt;}
.y83{bottom:1.226667pt;}
.y7f{bottom:1.333333pt;}
.y7b{bottom:1.386667pt;}
.y4d{bottom:1.546667pt;}
.y8d{bottom:3.093333pt;}
.y9c{bottom:3.306667pt;}
.y79{bottom:3.360000pt;}
.yb4{bottom:3.413333pt;}
.yab{bottom:3.466667pt;}
.ya6{bottom:3.520000pt;}
.y89{bottom:3.573333pt;}
.y134{bottom:3.840000pt;}
.y81{bottom:3.893333pt;}
.y99{bottom:4.000000pt;}
.ybc{bottom:4.053333pt;}
.y85{bottom:4.106667pt;}
.yf1{bottom:4.160000pt;}
.ya3{bottom:4.213333pt;}
.y7d{bottom:4.266667pt;}
.yc4{bottom:4.320000pt;}
.ycc{bottom:11.733333pt;}
.yc5{bottom:12.000000pt;}
.y137{bottom:18.506667pt;}
.y9b{bottom:18.666667pt;}
.y12b{bottom:18.720000pt;}
.yb3{bottom:18.773333pt;}
.ya5{bottom:18.880000pt;}
.ya0{bottom:18.933333pt;}
.y9e{bottom:19.306667pt;}
.y98{bottom:19.360000pt;}
.ycb{bottom:19.413333pt;}
.yf9{bottom:19.466667pt;}
.ya2{bottom:19.573333pt;}
.y108{bottom:34.240000pt;}
.y135{bottom:34.506667pt;}
.y12a{bottom:34.720000pt;}
.y50{bottom:47.680000pt;}
.y107{bottom:49.600000pt;}
.y6{bottom:51.840000pt;}
.y4c{bottom:57.333333pt;}
.y106{bottom:64.640000pt;}
.y5{bottom:76.800000pt;}
.y105{bottom:80.000000pt;}
.y104{bottom:92.480000pt;}
.y8c{bottom:98.666667pt;}
.yc9{bottom:100.000000pt;}
.y4b{bottom:106.240000pt;}
.y13b{bottom:111.680000pt;}
.y102{bottom:112.320000pt;}
.y8a{bottom:114.666667pt;}
.yc8{bottom:116.000000pt;}
.y3b{bottom:117.440000pt;}
.y163{bottom:121.600000pt;}
.y18f{bottom:122.880000pt;}
.y128{bottom:123.520000pt;}
.y13a{bottom:124.480000pt;}
.y101{bottom:127.360000pt;}
.y4a{bottom:129.600000pt;}
.yc7{bottom:132.000000pt;}
.y11c{bottom:136.000000pt;}
.y162{bottom:136.960000pt;}
.y3a{bottom:140.800000pt;}
.y100{bottom:142.720000pt;}
.y18e{bottom:146.240000pt;}
.yc6{bottom:148.000000pt;}
.y127{bottom:152.000000pt;}
.y161{bottom:152.320000pt;}
.y49{bottom:152.960000pt;}
.y39{bottom:156.160000pt;}
.y7c{bottom:157.333333pt;}
.yff{bottom:158.080000pt;}
.y18d{bottom:161.600000pt;}
.yc3{bottom:164.000000pt;}
.y160{bottom:167.360000pt;}
.y126{bottom:168.000000pt;}
.y48{bottom:169.280000pt;}
.y38{bottom:171.520000pt;}
.y7a{bottom:173.333333pt;}
.yfe{bottom:173.440000pt;}
.y18c{bottom:176.960000pt;}
.y15f{bottom:182.720000pt;}
.y125{bottom:184.000000pt;}
.y47{bottom:184.640000pt;}
.yfd{bottom:185.333333pt;}
.y37{bottom:186.880000pt;}
.y18b{bottom:192.320000pt;}
.y15e{bottom:198.080000pt;}
.yc2{bottom:199.360000pt;}
.y46{bottom:199.680000pt;}
.y124{bottom:200.000000pt;}
.yfc{bottom:201.333333pt;}
.y36{bottom:202.240000pt;}
.y18a{bottom:207.360000pt;}
.yc1{bottom:214.720000pt;}
.y45{bottom:215.040000pt;}
.y123{bottom:216.000000pt;}
.y35{bottom:217.280000pt;}
.yfb{bottom:217.333333pt;}
.y15d{bottom:221.440000pt;}
.y189{bottom:222.720000pt;}
.yc0{bottom:226.666667pt;}
.y122{bottom:232.000000pt;}
.y34{bottom:232.640000pt;}
.yfa{bottom:233.333333pt;}
.y15c{bottom:236.800000pt;}
.y188{bottom:238.080000pt;}
.y44{bottom:239.360000pt;}
.ybf{bottom:242.666667pt;}
.y33{bottom:248.000000pt;}
.yf8{bottom:249.333333pt;}
.y15b{bottom:252.160000pt;}
.y187{bottom:253.440000pt;}
.ybe{bottom:258.666667pt;}
.y43{bottom:262.720000pt;}
.y32{bottom:263.360000pt;}
.y121{bottom:264.000000pt;}
.y15a{bottom:267.520000pt;}
.y186{bottom:268.800000pt;}
.ybd{bottom:274.666667pt;}
.y42{bottom:278.080000pt;}
.y31{bottom:278.720000pt;}
.y120{bottom:280.000000pt;}
.y159{bottom:282.880000pt;}
.y185{bottom:284.160000pt;}
.yf7{bottom:284.800000pt;}
.y88{bottom:286.666667pt;}
.ybb{bottom:290.666667pt;}
.y10a{bottom:292.160000pt;}
.y41{bottom:293.440000pt;}
.y30{bottom:294.080000pt;}
.y11f{bottom:296.000000pt;}
.y158{bottom:298.240000pt;}
.y184{bottom:299.520000pt;}
.yf6{bottom:300.160000pt;}
.y86{bottom:302.666667pt;}
.y109{bottom:307.520000pt;}
.y40{bottom:308.800000pt;}
.y2f{bottom:309.440000pt;}
.yba{bottom:310.720000pt;}
.yf5{bottom:312.000000pt;}
.y183{bottom:314.880000pt;}
.y157{bottom:321.600000pt;}
.y3f{bottom:324.160000pt;}
.y2e{bottom:324.800000pt;}
.yb9{bottom:326.080000pt;}
.yf4{bottom:328.000000pt;}
.y156{bottom:336.960000pt;}
.y182{bottom:338.240000pt;}
.yb8{bottom:338.666667pt;}
.y3e{bottom:339.520000pt;}
.y2d{bottom:340.160000pt;}
.yf3{bottom:344.000000pt;}
.y155{bottom:352.000000pt;}
.y181{bottom:353.600000pt;}
.yb7{bottom:354.666667pt;}
.y3d{bottom:354.880000pt;}
.y2c{bottom:355.520000pt;}
.yf2{bottom:360.000000pt;}
.y154{bottom:367.360000pt;}
.y180{bottom:368.960000pt;}
.yb6{bottom:370.666667pt;}
.y2b{bottom:370.880000pt;}
.yf0{bottom:376.000000pt;}
.y3c{bottom:378.240000pt;}
.y153{bottom:382.720000pt;}
.y17f{bottom:384.000000pt;}
.y2a{bottom:386.240000pt;}
.yb5{bottom:386.666667pt;}
.y11e{bottom:392.000000pt;}
.yef{bottom:396.160000pt;}
.y152{bottom:398.080000pt;}
.y17e{bottom:399.360000pt;}
.y29{bottom:401.280000pt;}
.yb2{bottom:402.666667pt;}
.y11d{bottom:408.000000pt;}
.yee{bottom:411.520000pt;}
.y17d{bottom:414.720000pt;}
.y151{bottom:421.440000pt;}
.yed{bottom:424.000000pt;}
.y28{bottom:424.640000pt;}
.y17c{bottom:430.080000pt;}
.y78{bottom:436.000000pt;}
.y139{bottom:436.800000pt;}
.yb1{bottom:437.440000pt;}
.yec{bottom:440.000000pt;}
.y17b{bottom:445.440000pt;}
.y27{bottom:449.280000pt;}
.y138{bottom:449.333333pt;}
.y76{bottom:452.000000pt;}
.y150{bottom:452.160000pt;}
.yb0{bottom:452.800000pt;}
.yeb{bottom:456.000000pt;}
.y17a{bottom:460.800000pt;}
.y26{bottom:461.760000pt;}
.yaf{bottom:465.333333pt;}
.y14f{bottom:467.520000pt;}
.yea{bottom:472.000000pt;}
.y25{bottom:474.240000pt;}
.y179{bottom:476.160000pt;}
.yae{bottom:481.333333pt;}
.y14e{bottom:482.880000pt;}
.y24{bottom:486.400000pt;}
.ye9{bottom:488.000000pt;}
.y136{bottom:496.000000pt;}
.yad{bottom:497.333333pt;}
.y14d{bottom:498.240000pt;}
.y178{bottom:499.520000pt;}
.y23{bottom:499.840000pt;}
.y11b{bottom:504.000000pt;}
.y84{bottom:505.333333pt;}
.ye8{bottom:507.520000pt;}
.y133{bottom:512.000000pt;}
.yac{bottom:513.333333pt;}
.y14c{bottom:513.600000pt;}
.y177{bottom:514.880000pt;}
.y22{bottom:515.200000pt;}
.y11a{bottom:520.000000pt;}
.y82{bottom:521.333333pt;}
.ye7{bottom:522.880000pt;}
.y1b1{bottom:523.520000pt;}
.y14b{bottom:528.960000pt;}
.yaa{bottom:529.333333pt;}
.y176{bottom:530.240000pt;}
.y21{bottom:530.560000pt;}
.y132{bottom:531.840000pt;}
.ye6{bottom:534.666667pt;}
.y119{bottom:536.000000pt;}
.y1b0{bottom:538.880000pt;}
.y175{bottom:545.600000pt;}
.y20{bottom:545.920000pt;}
.y131{bottom:547.200000pt;}
.ya9{bottom:548.800000pt;}
.ye5{bottom:550.666667pt;}
.y118{bottom:552.000000pt;}
.y1af{bottom:554.240000pt;}
.y174{bottom:560.960000pt;}
.y1f{bottom:561.280000pt;}
.y130{bottom:562.560000pt;}
.ya8{bottom:564.160000pt;}
.ye4{bottom:566.666667pt;}
.y117{bottom:568.000000pt;}
.y1ae{bottom:569.600000pt;}
.y14a{bottom:575.360000pt;}
.y173{bottom:576.000000pt;}
.y1e{bottom:576.320000pt;}
.y12f{bottom:577.920000pt;}
.ya7{bottom:579.520000pt;}
.ye3{bottom:582.666667pt;}
.y116{bottom:584.000000pt;}
.y1ad{bottom:584.960000pt;}
.y12e{bottom:590.400000pt;}
.y149{bottom:590.720000pt;}
.y198{bottom:591.360000pt;}
.y1d{bottom:591.680000pt;}
.ya4{bottom:592.000000pt;}
.ye2{bottom:598.666667pt;}
.y172{bottom:599.360000pt;}
.y115{bottom:600.000000pt;}
.y148{bottom:606.080000pt;}
.y197{bottom:606.720000pt;}
.y1c{bottom:607.040000pt;}
.y171{bottom:614.720000pt;}
.y1ac{bottom:615.360000pt;}
.y114{bottom:616.000000pt;}
.ye1{bottom:618.880000pt;}
.y147{bottom:621.440000pt;}
.y196{bottom:622.080000pt;}
.y1b{bottom:622.400000pt;}
.ya1{bottom:622.666667pt;}
.y170{bottom:630.080000pt;}
.y1ab{bottom:630.720000pt;}
.y113{bottom:632.000000pt;}
.ye0{bottom:634.240000pt;}
.y146{bottom:636.800000pt;}
.y195{bottom:637.440000pt;}
.y1a{bottom:637.760000pt;}
.y16f{bottom:645.440000pt;}
.y1aa{bottom:646.080000pt;}
.ydf{bottom:646.666667pt;}
.y112{bottom:648.000000pt;}
.y145{bottom:652.160000pt;}
.y194{bottom:652.800000pt;}
.y19{bottom:653.120000pt;}
.y9f{bottom:654.666667pt;}
.y16e{bottom:660.800000pt;}
.y1a9{bottom:661.440000pt;}
.yde{bottom:662.666667pt;}
.y111{bottom:664.000000pt;}
.y144{bottom:667.520000pt;}
.y193{bottom:668.160000pt;}
.y18{bottom:668.480000pt;}
.y16d{bottom:676.160000pt;}
.y1a8{bottom:676.800000pt;}
.ydd{bottom:678.666667pt;}
.y110{bottom:680.000000pt;}
.y143{bottom:682.880000pt;}
.y192{bottom:683.520000pt;}
.y17{bottom:683.840000pt;}
.y9d{bottom:685.333333pt;}
.y75{bottom:690.880000pt;}
.y16c{bottom:691.520000pt;}
.y1a7{bottom:692.160000pt;}
.ydc{bottom:694.666667pt;}
.y10f{bottom:696.000000pt;}
.y191{bottom:698.880000pt;}
.y16{bottom:699.200000pt;}
.y74{bottom:706.240000pt;}
.y16b{bottom:706.880000pt;}
.y1a6{bottom:707.520000pt;}
.ydb{bottom:710.666667pt;}
.y62{bottom:711.680000pt;}
.y10e{bottom:712.000000pt;}
.y15{bottom:714.560000pt;}
.y9a{bottom:717.333333pt;}
.y73{bottom:721.600000pt;}
.y190{bottom:722.240000pt;}
.y1a5{bottom:722.880000pt;}
.y61{bottom:727.040000pt;}
.y10d{bottom:728.000000pt;}
.y142{bottom:729.600000pt;}
.y14{bottom:729.920000pt;}
.y16a{bottom:730.240000pt;}
.y72{bottom:736.640000pt;}
.y1a4{bottom:738.240000pt;}
.y60{bottom:742.080000pt;}
.y10c{bottom:744.000000pt;}
.y141{bottom:744.640000pt;}
.y13{bottom:745.280000pt;}
.yda{bottom:745.600000pt;}
.y97{bottom:748.000000pt;}
.y71{bottom:752.000000pt;}
.y1a3{bottom:753.600000pt;}
.y5f{bottom:757.440000pt;}
.y10b{bottom:760.000000pt;}
.yd9{bottom:760.640000pt;}
.y12{bottom:762.560000pt;}
.y70{bottom:767.360000pt;}
.y1a2{bottom:768.640000pt;}
.y80{bottom:774.666667pt;}
.y140{bottom:775.360000pt;}
.yd8{bottom:776.000000pt;}
.y11{bottom:780.160000pt;}
.y5e{bottom:780.800000pt;}
.y96{bottom:783.360000pt;}
.y1a1{bottom:784.000000pt;}
.yd7{bottom:788.000000pt;}
.y7e{bottom:790.666667pt;}
.y6f{bottom:790.720000pt;}
.y169{bottom:791.360000pt;}
.y10{bottom:795.520000pt;}
.y5d{bottom:796.160000pt;}
.y95{bottom:798.720000pt;}
.y1a0{bottom:799.360000pt;}
.yd6{bottom:804.000000pt;}
.y6e{bottom:806.080000pt;}
.y168{bottom:806.720000pt;}
.y5c{bottom:811.520000pt;}
.yf{bottom:812.800000pt;}
.y94{bottom:814.080000pt;}
.y19f{bottom:814.720000pt;}
.yd5{bottom:820.000000pt;}
.y6d{bottom:821.440000pt;}
.y167{bottom:822.080000pt;}
.y5b{bottom:826.880000pt;}
.y93{bottom:829.440000pt;}
.y19e{bottom:830.080000pt;}
.ye{bottom:832.960000pt;}
.yd4{bottom:836.000000pt;}
.y6c{bottom:836.800000pt;}
.y166{bottom:837.440000pt;}
.yd{bottom:843.520000pt;}
.y92{bottom:844.800000pt;}
.y19d{bottom:845.440000pt;}
.y5a{bottom:850.240000pt;}
.yd3{bottom:852.000000pt;}
.y165{bottom:852.800000pt;}
.y6b{bottom:860.160000pt;}
.y19c{bottom:860.800000pt;}
.yc{bottom:863.680000pt;}
.y59{bottom:865.600000pt;}
.y164{bottom:868.160000pt;}
.y103{bottom:872.000000pt;}
.y6a{bottom:875.520000pt;}
.y19b{bottom:876.160000pt;}
.y58{bottom:880.960000pt;}
.yb{bottom:882.880000pt;}
.y13f{bottom:883.520000pt;}
.yd2{bottom:887.360000pt;}
.y69{bottom:890.880000pt;}
.y19a{bottom:891.520000pt;}
.y57{bottom:896.320000pt;}
.y13e{bottom:898.880000pt;}
.yd1{bottom:902.720000pt;}
.y12d{bottom:903.360000pt;}
.y68{bottom:906.240000pt;}
.y199{bottom:906.880000pt;}
.ya{bottom:909.760000pt;}
.y13d{bottom:914.240000pt;}
.yd0{bottom:914.666667pt;}
.y12c{bottom:916.000000pt;}
.y56{bottom:919.680000pt;}
.y91{bottom:922.240000pt;}
.y67{bottom:929.600000pt;}
.ycf{bottom:930.666667pt;}
.y9{bottom:931.200000pt;}
.y129{bottom:932.000000pt;}
.y90{bottom:937.600000pt;}
.y55{bottom:942.720000pt;}
.y66{bottom:944.640000pt;}
.yce{bottom:946.666667pt;}
.y8{bottom:952.640000pt;}
.y54{bottom:958.080000pt;}
.y65{bottom:960.000000pt;}
.ycd{bottom:962.666667pt;}
.y8f{bottom:968.000000pt;}
.y53{bottom:974.400000pt;}
.y64{bottom:975.360000pt;}
.yca{bottom:978.666667pt;}
.y8e{bottom:983.360000pt;}
.y7{bottom:983.680000pt;}
.y52{bottom:989.760000pt;}
.y13c{bottom:990.720000pt;}
.y63{bottom:998.720000pt;}
.y4{bottom:1008.640000pt;}
.y51{bottom:1014.080000pt;}
.y3{bottom:1022.720000pt;}
.y2{bottom:1035.520000pt;}
.y1{bottom:1060.800000pt;}
.y4f{bottom:1064.320000pt;}
.h4{height:3.412500pt;}
.hc{height:4.000000pt;}
.hf{height:16.000000pt;}
.h11{height:17.333333pt;}
.h9{height:23.355000pt;}
.hb{height:29.328750pt;}
.h15{height:32.000000pt;}
.hd{height:32.965000pt;}
.h5{height:36.435000pt;}
.ha{height:37.353750pt;}
.h6{height:39.243750pt;}
.h2{height:39.905000pt;}
.h3{height:42.751250pt;}
.h18{height:48.000000pt;}
.h8{height:50.305000pt;}
.h7{height:50.315000pt;}
.h16{height:93.333333pt;}
.h14{height:172.000000pt;}
.h13{height:204.000000pt;}
.he{height:236.000000pt;}
.h12{height:254.666667pt;}
.h10{height:262.666667pt;}
.h17{height:320.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:6.666667pt;}
.w20{width:32.000000pt;}
.wa{width:34.666667pt;}
.w17{width:36.000000pt;}
.w2a{width:37.333333pt;}
.w12{width:42.666667pt;}
.w2b{width:44.000000pt;}
.w24{width:45.333333pt;}
.w8{width:46.666667pt;}
.w1c{width:48.000000pt;}
.w10{width:49.333333pt;}
.wb{width:50.666667pt;}
.w1d{width:52.000000pt;}
.w11{width:54.666667pt;}
.w1b{width:56.000000pt;}
.w9{width:58.666667pt;}
.w16{width:60.000000pt;}
.w2f{width:65.333333pt;}
.w22{width:66.666667pt;}
.w1f{width:68.000000pt;}
.w6{width:69.333333pt;}
.w25{width:70.666667pt;}
.wc{width:72.000000pt;}
.w14{width:73.333333pt;}
.wd{width:74.666667pt;}
.w18{width:76.000000pt;}
.w23{width:80.000000pt;}
.w1a{width:81.333333pt;}
.w28{width:82.666667pt;}
.wf{width:84.000000pt;}
.w7{width:85.333333pt;}
.w15{width:89.333333pt;}
.w32{width:94.666667pt;}
.w2d{width:104.000000pt;}
.w13{width:108.000000pt;}
.w19{width:110.666667pt;}
.w27{width:112.000000pt;}
.w30{width:114.666667pt;}
.we{width:121.333333pt;}
.w26{width:122.666667pt;}
.w5{width:126.666667pt;}
.w29{width:129.333333pt;}
.w1e{width:136.000000pt;}
.w21{width:137.333333pt;}
.w2c{width:138.666667pt;}
.w31{width:209.333333pt;}
.w2e{width:225.333333pt;}
.w3{width:289.333333pt;}
.w4{width:616.000000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x11{left:1.386709pt;}
.x1b{left:6.666667pt;}
.x1f{left:7.839872pt;}
.x1a{left:89.333333pt;}
.x5{left:96.000000pt;}
.x12{left:97.552096pt;}
.x9{left:106.234368pt;}
.x65{left:108.357408pt;}
.xd{left:112.473312pt;}
.x4{left:115.388992pt;}
.x5d{left:117.393888pt;}
.x15{left:118.736320pt;}
.x13{left:120.000000pt;}
.x10{left:142.666667pt;}
.x70{left:146.335936pt;}
.x6d{left:147.624992pt;}
.x8{left:150.339840pt;}
.x5f{left:170.666667pt;}
.x2d{left:197.333333pt;}
.x34{left:198.666667pt;}
.x48{left:201.333333pt;}
.x6b{left:204.000000pt;}
.x51{left:209.333333pt;}
.x27{left:210.666667pt;}
.x1d{left:216.000000pt;}
.x4d{left:218.666667pt;}
.x3b{left:224.000000pt;}
.x40{left:226.666667pt;}
.x56{left:235.196608pt;}
.x3a{left:238.529952pt;}
.x19{left:239.880000pt;}
.x64{left:241.000672pt;}
.x57{left:243.536480pt;}
.x3f{left:246.869792pt;}
.xc{left:252.240864pt;}
.x45{left:256.498688pt;}
.x1c{left:258.165376pt;}
.x17{left:259.880000pt;}
.x18{left:260.840000pt;}
.x26{left:261.860032pt;}
.x2{left:265.722336pt;}
.x35{left:266.666667pt;}
.x2c{left:268.526688pt;}
.x2e{left:270.666667pt;}
.x16{left:277.799680pt;}
.x14{left:281.799680pt;}
.x5e{left:282.810560pt;}
.x1e{left:284.000000pt;}
.x4e{left:285.333333pt;}
.x60{left:290.666667pt;}
.xb{left:292.392576pt;}
.x58{left:294.666667pt;}
.x6e{left:297.333333pt;}
.xa{left:312.606784pt;}
.x67{left:314.666667pt;}
.x66{left:323.718720pt;}
.x36{left:346.666667pt;}
.x49{left:349.333333pt;}
.x52{left:357.333333pt;}
.x46{left:358.666667pt;}
.x2f{left:360.000000pt;}
.x28{left:365.333333pt;}
.x4f{left:366.666667pt;}
.x20{left:369.333333pt;}
.x3c{left:372.000000pt;}
.x59{left:374.666667pt;}
.x68{left:378.666667pt;}
.x3{left:396.866560pt;}
.x4a{left:400.000000pt;}
.x37{left:401.333333pt;}
.x53{left:405.333333pt;}
.x30{left:408.000000pt;}
.x29{left:413.333333pt;}
.x21{left:416.000000pt;}
.x41{left:417.333333pt;}
.x3d{left:418.666667pt;}
.xe{left:420.480000pt;}
.xf{left:444.480000pt;}
.x1{left:456.943680pt;}
.x4b{left:458.666667pt;}
.x38{left:460.000000pt;}
.x54{left:464.000000pt;}
.x47{left:466.666667pt;}
.x2a{left:468.000000pt;}
.x50{left:472.000000pt;}
.x22{left:474.666667pt;}
.x3e{left:477.333333pt;}
.x5a{left:478.666667pt;}
.x61{left:500.000000pt;}
.x31{left:504.000000pt;}
.x4c{left:505.333333pt;}
.x39{left:506.666667pt;}
.x55{left:508.000000pt;}
.x23{left:509.333333pt;}
.x5b{left:510.666667pt;}
.x42{left:512.000000pt;}
.x7{left:536.450240pt;}
.x69{left:541.333333pt;}
.x32{left:557.333333pt;}
.x2b{left:558.666667pt;}
.x24{left:560.000000pt;}
.x5c{left:561.333333pt;}
.x43{left:562.666667pt;}
.x6c{left:585.026560pt;}
.x6f{left:602.946560pt;}
.x62{left:605.333333pt;}
.x6a{left:622.666667pt;}
.x33{left:629.333333pt;}
.x25{left:630.666667pt;}
.x44{left:632.000000pt;}
.x63{left:653.333333pt;}
.x6{left:690.299840pt;}
}




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