
    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_995595c483fa4d65325052f7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.935059;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_a1feca0553ef992ceb80494e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_dafb87757226eed37ca3783f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.933594;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_f924f464b8ce7f3af4680d12.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_3c166ea964d998dbdee17f90.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946777;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_f23560de29f9da5c6905dc73.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.937012;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_67d8c1015b5df829c7f64bde.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.953125;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_b73f52783b1533cded33138a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.953125;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_402be140b5aa70d268825b1c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.435059;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8dece421f868aa91cc8d14da.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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_4eef4d5b10712d66399277a7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.999512;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_3cd79bcd8c2f1d2169aee61b.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.401855;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v7{vertical-align:-14.820000px;}
.va{vertical-align:-11.520000px;}
.v9{vertical-align:-10.320000px;}
.v8{vertical-align:-2.340000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.340000px;}
.v4{vertical-align:10.380000px;}
.v6{vertical-align:11.400000px;}
.v5{vertical-align:13.800000px;}
.v2{vertical-align:14.940000px;}
.v1{vertical-align:27.660000px;}
.ls22{letter-spacing:-7.200000px;}
.ls18{letter-spacing:-4.302000px;}
.ls9{letter-spacing:-3.366000px;}
.ls14{letter-spacing:-2.880000px;}
.ls13{letter-spacing:-1.440000px;}
.ls7{letter-spacing:-1.422000px;}
.ls4{letter-spacing:-1.134000px;}
.lsb{letter-spacing:-0.972000px;}
.lsa{letter-spacing:-0.936000px;}
.ls8{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.486600px;}
.ls5{letter-spacing:-0.457800px;}
.ls1a{letter-spacing:-0.456000px;}
.ls6{letter-spacing:-0.447600px;}
.lse{letter-spacing:-0.432000px;}
.ls19{letter-spacing:-0.382800px;}
.ls3{letter-spacing:-0.305400px;}
.ls2{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.020160px;}
.ls12{letter-spacing:0.363000px;}
.lsf{letter-spacing:0.429000px;}
.ls1b{letter-spacing:0.466560px;}
.lsc{letter-spacing:0.466800px;}
.ls1{letter-spacing:0.507000px;}
.ls0{letter-spacing:0.720000px;}
.ls1e{letter-spacing:0.864000px;}
.ls16{letter-spacing:5.040000px;}
.ls1c{letter-spacing:7.058880px;}
.ls1d{letter-spacing:7.560000px;}
.ls21{letter-spacing:10.546560px;}
.ls20{letter-spacing:40.786560px;}
.ls10{letter-spacing:46.546560px;}
.ls11{letter-spacing:63.826560px;}
.ls1f{letter-spacing:98.760000px;}
.ls15{letter-spacing:196.560000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-60.480000px;}
.ws4{word-spacing:-24.840000px;}
.ws3{word-spacing:-24.120000px;}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.ws2{word-spacing:-16.102200px;}
.ws11{word-spacing:-15.627000px;}
.ws6{word-spacing:-15.586800px;}
.wsa{word-spacing:-15.399240px;}
.wsb{word-spacing:-15.333240px;}
.ws12{word-spacing:-15.140160px;}
.ws5{word-spacing:-15.120000px;}
.ws9{word-spacing:-14.970240px;}
.ws7{word-spacing:-14.633400px;}
.ws10{word-spacing:-14.184000px;}
.wsd{word-spacing:-14.148000px;}
.ws13{word-spacing:-13.716000px;}
.wsf{word-spacing:-13.698000px;}
.ws14{word-spacing:-13.680000px;}
.ws19{word-spacing:-12.399264px;}
.ws18{word-spacing:-12.366720px;}
.wse{word-spacing:-12.240000px;}
.ws1d{word-spacing:-11.916000px;}
.ws1c{word-spacing:-11.880000px;}
.ws1b{word-spacing:-10.772064px;}
.ws1a{word-spacing:-10.739520px;}
.ws1e{word-spacing:-3.680640px;}
.ws8{word-spacing:0.000000px;}
.ws15{word-spacing:17.027760px;}
.ws22{word-spacing:65.033760px;}
.ws17{word-spacing:69.584640px;}
.ws16{word-spacing:70.499040px;}
.ws25{word-spacing:97.522272px;}
.ws27{word-spacing:97.591680px;}
.ws24{word-spacing:97.836048px;}
.ws26{word-spacing:98.016048px;}
.ws23{word-spacing:98.138880px;}
.ws20{word-spacing:171.535200px;}
.ws28{word-spacing:175.346400px;}
.ws1f{word-spacing:187.435200px;}
.ws21{word-spacing:198.895200px;}
._3{margin-left:-2539.923840px;}
._4{margin-left:-1451.820960px;}
._8{margin-left:-1448.095320px;}
._7{margin-left:-991.126080px;}
._9{margin-left:-580.560480px;}
._a{margin-left:-11.181840px;}
._5{margin-left:-8.942400px;}
._19{margin-left:-7.152480px;}
._b{margin-left:-5.914080px;}
._1b{margin-left:-4.331520px;}
._c{margin-left:-3.312000px;}
._0{margin-left:-2.122560px;}
._2{margin-left:-1.061280px;}
._1{width:1.061280px;}
._6{width:2.387520px;}
._18{width:3.600960px;}
._1a{width:4.799040px;}
._15{width:5.843520px;}
._14{width:7.142400px;}
._13{width:8.208000px;}
._11{width:9.906720px;}
._10{width:11.427840px;}
._12{width:12.987360px;}
._1d{width:14.416800px;}
._1e{width:16.850880px;}
._16{width:17.951040px;}
._17{width:18.962400px;}
._1c{width:20.058720px;}
._28{width:21.658080px;}
._27{width:23.498880px;}
._1f{width:26.974080px;}
._22{width:28.627680px;}
._21{width:30.157920px;}
._20{width:31.370880px;}
._25{width:33.185760px;}
._26{width:34.312800px;}
._23{width:35.749440px;}
._24{width:37.624320px;}
._e{width:43.270080px;}
._f{width:46.986720px;}
._d{width:48.529440px;}
.fc2{color:transparent;}
.fc8{color:rgb(28,49,68);}
.fc1{color:rgb(0,0,255);}
.fc7{color:rgb(213,0,50);}
.fc6{color:rgb(127,127,127);}
.fc5{color:rgb(64,64,64);}
.fc4{color:rgb(89,89,89);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs7{font-size:47.520000px;}
.fs8{font-size:47.664000px;}
.fs5{font-size:54.720000px;}
.fs6{font-size:54.864000px;}
.fs3{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.yb4{bottom:5.760000px;}
.yb6{bottom:6.120000px;}
.y106{bottom:6.165000px;}
.y114{bottom:7.560000px;}
.y147{bottom:7.605000px;}
.ydd{bottom:8.280000px;}
.y104{bottom:9.045000px;}
.y169{bottom:10.695000px;}
.yc5{bottom:11.160000px;}
.yb9{bottom:12.240000px;}
.yc6{bottom:13.680000px;}
.y105{bottom:22.725000px;}
.ydb{bottom:25.560000px;}
.yc3{bottom:25.590000px;}
.y102{bottom:25.605000px;}
.y192{bottom:25.914000px;}
.yb7{bottom:25.920000px;}
.y10d{bottom:25.950000px;}
.yd1{bottom:27.030000px;}
.y18f{bottom:29.874000px;}
.y123{bottom:30.630000px;}
.y127{bottom:31.530000px;}
.y119{bottom:31.605000px;}
.y12c{bottom:31.650000px;}
.y130{bottom:32.295000px;}
.yf7{bottom:32.685000px;}
.y13d{bottom:33.090000px;}
.yfc{bottom:33.375000px;}
.y121{bottom:35.070000px;}
.ye9{bottom:36.030000px;}
.y145{bottom:42.015000px;}
.y135{bottom:42.330000px;}
.yd0{bottom:42.555000px;}
.yd8{bottom:43.305000px;}
.y191{bottom:45.714000px;}
.y13a{bottom:50.940000px;}
.y120{bottom:55.230000px;}
.ycf{bottom:58.065000px;}
.y6{bottom:59.760000px;}
.y144{bottom:59.910000px;}
.y165{bottom:63.255000px;}
.y190{bottom:65.919000px;}
.y139{bottom:68.430000px;}
.y124{bottom:69.375000px;}
.y128{bottom:70.275000px;}
.y11f{bottom:70.740000px;}
.y12d{bottom:71.205000px;}
.y131{bottom:71.850000px;}
.yf4{bottom:73.260000px;}
.yd3{bottom:73.650000px;}
.y143{bottom:75.420000px;}
.yf8{bottom:75.705000px;}
.yfd{bottom:76.350000px;}
.yd4{bottom:79.020000px;}
.y118{bottom:82.335000px;}
.yef{bottom:83.310000px;}
.yd7{bottom:84.630000px;}
.y39{bottom:86.796000px;}
.yc7{bottom:87.156000px;}
.y11a{bottom:87.630000px;}
.yce{bottom:89.565000px;}
.y136{bottom:89.850000px;}
.y115{bottom:90.756000px;}
.y38{bottom:92.196000px;}
.y18d{bottom:95.436000px;}
.y167{bottom:95.655000px;}
.ya0{bottom:101.196000px;}
.yc4{bottom:102.636000px;}
.y37{bottom:103.716000px;}
.y70{bottom:104.796000px;}
.ycd{bottom:105.090000px;}
.y113{bottom:105.156000px;}
.y11e{bottom:106.410000px;}
.y164{bottom:106.596000px;}
.y125{bottom:108.105000px;}
.y142{bottom:108.825000px;}
.y129{bottom:109.005000px;}
.ye5{bottom:109.116000px;}
.y12e{bottom:110.775000px;}
.y132{bottom:111.450000px;}
.y13c{bottom:115.095000px;}
.y18c{bottom:115.236000px;}
.y13e{bottom:118.110000px;}
.yf9{bottom:118.695000px;}
.yfe{bottom:119.340000px;}
.y36{bottom:120.996000px;}
.yc9{bottom:123.120000px;}
.yd6{bottom:126.000000px;}
.y35{bottom:126.396000px;}
.y137{bottom:126.720000px;}
.y163{bottom:126.756000px;}
.y110{bottom:127.116000px;}
.y134{bottom:127.800000px;}
.ye4{bottom:129.276000px;}
.yc8{bottom:129.960000px;}
.y18e{bottom:130.716000px;}
.yd2{bottom:131.760000px;}
.y6f{bottom:131.796000px;}
.y18b{bottom:135.036000px;}
.yd5{bottom:136.365000px;}
.ycc{bottom:136.545000px;}
.yca{bottom:137.055000px;}
.y34{bottom:138.276000px;}
.y9f{bottom:141.156000px;}
.y11d{bottom:142.095000px;}
.y141{bottom:142.275000px;}
.y33{bottom:143.676000px;}
.y162{bottom:146.556000px;}
.y126{bottom:146.850000px;}
.y12a{bottom:147.705000px;}
.ye3{bottom:149.076000px;}
.y12f{bottom:150.375000px;}
.y133{bottom:151.020000px;}
.y6e{bottom:151.950000px;}
.ycb{bottom:152.100000px;}
.y18a{bottom:154.830000px;}
.y32{bottom:156.630000px;}
.yfa{bottom:161.670000px;}
.y9e{bottom:162.030000px;}
.yff{bottom:162.360000px;}
.y168{bottom:163.260000px;}
.y161{bottom:166.350000px;}
.y13f{bottom:168.120000px;}
.ye2{bottom:168.870000px;}
.y11b{bottom:170.790000px;}
.y117{bottom:171.210000px;}
.y6d{bottom:171.750000px;}
.yf0{bottom:173.310000px;}
.y189{bottom:174.990000px;}
.y140{bottom:175.680000px;}
.y11c{bottom:177.810000px;}
.yf3{bottom:181.410000px;}
.y9d{bottom:181.830000px;}
.ye7{bottom:183.990000px;}
.y31{bottom:186.150000px;}
.y138{bottom:187.380000px;}
.yea{bottom:190.335000px;}
.y6c{bottom:191.550000px;}
.y166{bottom:191.670000px;}
.y188{bottom:194.835000px;}
.y16a{bottom:195.045000px;}
.y9c{bottom:201.675000px;}
.yfb{bottom:204.660000px;}
.y100{bottom:205.350000px;}
.y30{bottom:205.995000px;}
.yf6{bottom:206.280000px;}
.y6b{bottom:211.395000px;}
.y187{bottom:214.635000px;}
.y9b{bottom:221.475000px;}
.y112{bottom:221.829000px;}
.y160{bottom:225.795000px;}
.y2f{bottom:226.155000px;}
.y6a{bottom:231.195000px;}
.yed{bottom:232.380000px;}
.y186{bottom:234.435000px;}
.y111{bottom:241.629000px;}
.y9a{bottom:242.355000px;}
.y15f{bottom:245.595000px;}
.y2e{bottom:245.955000px;}
.y69{bottom:250.995000px;}
.y185{bottom:254.235000px;}
.yec{bottom:254.520000px;}
.y99{bottom:262.155000px;}
.y15e{bottom:265.395000px;}
.y2d{bottom:265.755000px;}
.y67{bottom:270.795000px;}
.yf5{bottom:272.415000px;}
.y184{bottom:274.035000px;}
.yf1{bottom:274.215000px;}
.y68{bottom:276.195000px;}
.yeb{bottom:276.690000px;}
.y98{bottom:281.955000px;}
.y15d{bottom:285.195000px;}
.y2b{bottom:285.555000px;}
.y66{bottom:290.595000px;}
.y2c{bottom:290.955000px;}
.y183{bottom:293.835000px;}
.y97{bottom:301.755000px;}
.yc2{bottom:304.635000px;}
.y15c{bottom:304.995000px;}
.y2a{bottom:305.355000px;}
.y65{bottom:310.395000px;}
.y182{bottom:313.635000px;}
.y96{bottom:321.585000px;}
.y29{bottom:325.185000px;}
.y64{bottom:330.225000px;}
.y181{bottom:333.465000px;}
.y95{bottom:341.745000px;}
.y27{bottom:344.985000px;}
.y28{bottom:350.385000px;}
.yc1{bottom:352.185000px;}
.y180{bottom:353.265000px;}
.y94{bottom:362.625000px;}
.y26{bottom:364.785000px;}
.y63{bottom:370.185000px;}
.yc0{bottom:371.985000px;}
.y17f{bottom:373.425000px;}
.y93{bottom:382.425000px;}
.y25{bottom:384.585000px;}
.y62{bottom:389.985000px;}
.ybf{bottom:391.785000px;}
.y17e{bottom:393.225000px;}
.y92{bottom:402.225000px;}
.y24{bottom:404.385000px;}
.y61{bottom:409.425000px;}
.y10f{bottom:409.785000px;}
.ybe{bottom:411.585000px;}
.y17d{bottom:413.025000px;}
.y91{bottom:422.025000px;}
.y15b{bottom:424.185000px;}
.y23{bottom:424.545000px;}
.y60{bottom:429.585000px;}
.ybd{bottom:431.385000px;}
.y17c{bottom:432.825000px;}
.y90{bottom:441.825000px;}
.y15a{bottom:443.985000px;}
.y22{bottom:444.345000px;}
.ybc{bottom:446.550000px;}
.y5f{bottom:449.430000px;}
.y17b{bottom:452.670000px;}
.ye6{bottom:455.910000px;}
.y8f{bottom:462.750000px;}
.y10e{bottom:463.830000px;}
.y21{bottom:464.190000px;}
.y5e{bottom:469.230000px;}
.y17a{bottom:472.470000px;}
.ybb{bottom:480.390000px;}
.y8e{bottom:482.550000px;}
.y159{bottom:483.630000px;}
.y20{bottom:483.990000px;}
.y122{bottom:485.280000px;}
.y12b{bottom:486.360000px;}
.y5d{bottom:489.030000px;}
.y179{bottom:492.270000px;}
.y8d{bottom:501.990000px;}
.ye1{bottom:503.430000px;}
.y1f{bottom:503.790000px;}
.y158{bottom:504.510000px;}
.y5c{bottom:508.830000px;}
.y178{bottom:512.070000px;}
.yba{bottom:513.870000px;}
.y8c{bottom:522.150000px;}
.ye0{bottom:523.230000px;}
.y1e{bottom:523.590000px;}
.y157{bottom:524.670000px;}
.y5b{bottom:528.630000px;}
.y177{bottom:531.870000px;}
.y8b{bottom:542.310000px;}
.ydf{bottom:543.030000px;}
.y1d{bottom:543.390000px;}
.y156{bottom:544.470000px;}
.yb8{bottom:547.710000px;}
.y5a{bottom:548.430000px;}
.y176{bottom:551.670000px;}
.yde{bottom:562.830000px;}
.y1c{bottom:563.190000px;}
.y155{bottom:563.910000px;}
.y59{bottom:568.590000px;}
.y175{bottom:571.830000px;}
.yb5{bottom:581.220000px;}
.y1b{bottom:583.020000px;}
.y154{bottom:583.740000px;}
.y58{bottom:589.500000px;}
.y174{bottom:591.660000px;}
.ydc{bottom:598.140000px;}
.y1a{bottom:602.820000px;}
.y153{bottom:604.980000px;}
.y57{bottom:609.300000px;}
.y173{bottom:611.460000px;}
.ye8{bottom:618.840000px;}
.yee{bottom:620.280000px;}
.yf2{bottom:622.080000px;}
.y8a{bottom:622.620000px;}
.y19{bottom:622.980000px;}
.y152{bottom:624.780000px;}
.y56{bottom:629.100000px;}
.y172{bottom:631.260000px;}
.y89{bottom:642.420000px;}
.y18{bottom:642.780000px;}
.y151{bottom:645.660000px;}
.y55{bottom:648.900000px;}
.yb3{bottom:649.980000px;}
.y171{bottom:651.060000px;}
.y88{bottom:662.220000px;}
.y17{bottom:662.580000px;}
.y150{bottom:665.460000px;}
.y54{bottom:668.700000px;}
.yb2{bottom:669.780000px;}
.y170{bottom:670.860000px;}
.y10c{bottom:678.780000px;}
.y87{bottom:682.020000px;}
.y16{bottom:682.380000px;}
.y14f{bottom:685.260000px;}
.y53{bottom:688.500000px;}
.yb1{bottom:689.580000px;}
.y16f{bottom:690.660000px;}
.y15{bottom:701.850000px;}
.y86{bottom:702.930000px;}
.y14e{bottom:705.090000px;}
.yb0{bottom:709.050000px;}
.y52{bottom:709.410000px;}
.y16e{bottom:710.490000px;}
.y14{bottom:721.650000px;}
.y85{bottom:722.730000px;}
.y10b{bottom:725.610000px;}
.y14d{bottom:726.330000px;}
.y51{bottom:729.210000px;}
.y16d{bottom:730.290000px;}
.y13{bottom:743.970000px;}
.y10a{bottom:745.410000px;}
.y14c{bottom:746.130000px;}
.y50{bottom:749.010000px;}
.y16c{bottom:750.090000px;}
.y84{bottom:763.770000px;}
.y109{bottom:765.210000px;}
.y14b{bottom:765.930000px;}
.y4f{bottom:769.170000px;}
.y16b{bottom:770.250000px;}
.y12{bottom:773.130000px;}
.y83{bottom:783.570000px;}
.y108{bottom:785.010000px;}
.y14a{bottom:785.370000px;}
.yaf{bottom:788.970000px;}
.y4e{bottom:790.050000px;}
.y11{bottom:792.930000px;}
.y82{bottom:804.450000px;}
.y107{bottom:804.810000px;}
.y149{bottom:805.170000px;}
.yae{bottom:808.770000px;}
.y4d{bottom:809.850000px;}
.y10{bottom:812.730000px;}
.y103{bottom:819.930000px;}
.y81{bottom:824.250000px;}
.yad{bottom:828.615000px;}
.y4c{bottom:829.695000px;}
.yf{bottom:832.575000px;}
.y148{bottom:840.855000px;}
.y13b{bottom:842.760000px;}
.y116{bottom:843.840000px;}
.y80{bottom:844.095000px;}
.yac{bottom:848.415000px;}
.y4b{bottom:849.495000px;}
.ye{bottom:852.375000px;}
.y7f{bottom:864.975000px;}
.yab{bottom:868.215000px;}
.y4a{bottom:869.295000px;}
.yd{bottom:872.175000px;}
.y7e{bottom:884.775000px;}
.yaa{bottom:888.015000px;}
.y49{bottom:889.095000px;}
.yc{bottom:893.775000px;}
.y7d{bottom:904.575000px;}
.ya9{bottom:907.815000px;}
.y48{bottom:908.895000px;}
.yb{bottom:913.935000px;}
.yda{bottom:921.135000px;}
.y7c{bottom:924.015000px;}
.ya8{bottom:927.615000px;}
.y47{bottom:928.695000px;}
.ya{bottom:934.095000px;}
.y7b{bottom:944.175000px;}
.ya7{bottom:947.415000px;}
.y46{bottom:948.495000px;}
.y9{bottom:955.365000px;}
.y7a{bottom:964.365000px;}
.ya6{bottom:967.245000px;}
.y45{bottom:968.685000px;}
.y8{bottom:978.765000px;}
.y79{bottom:985.245000px;}
.ya5{bottom:987.405000px;}
.y44{bottom:988.485000px;}
.y78{bottom:1005.045000px;}
.ya4{bottom:1007.205000px;}
.y43{bottom:1008.285000px;}
.y7{bottom:1010.445000px;}
.y77{bottom:1024.845000px;}
.ya3{bottom:1027.005000px;}
.y42{bottom:1028.085000px;}
.y76{bottom:1045.725000px;}
.ya2{bottom:1046.805000px;}
.y41{bottom:1047.885000px;}
.y5{bottom:1052.565000px;}
.y101{bottom:1060.125000px;}
.y146{bottom:1060.845000px;}
.y75{bottom:1065.525000px;}
.ya1{bottom:1066.605000px;}
.y40{bottom:1067.685000px;}
.y4{bottom:1083.210000px;}
.y74{bottom:1086.450000px;}
.y3f{bottom:1087.530000px;}
.y73{bottom:1106.250000px;}
.y3e{bottom:1107.330000px;}
.y3{bottom:1114.170000px;}
.y3d{bottom:1126.770000px;}
.y72{bottom:1127.130000px;}
.y2{bottom:1144.410000px;}
.yd9{bottom:1146.570000px;}
.y3c{bottom:1146.930000px;}
.y71{bottom:1166.730000px;}
.y3b{bottom:1167.090000px;}
.y1{bottom:1178.610000px;}
.y3a{bottom:1194.090000px;}
.h3b{height:0.359985px;}
.h3f{height:2.826563px;}
.h12{height:19.800000px;}
.h2f{height:21.240000px;}
.h16{height:32.040000px;}
.h14{height:32.076000px;}
.h15{height:32.400000px;}
.h33{height:36.080859px;}
.h34{height:36.190195px;}
.h38{height:36.823359px;}
.hd{height:38.158594px;}
.h13{height:39.600000px;}
.h17{height:39.636000px;}
.h1f{height:39.960000px;}
.h2c{height:39.996000px;}
.h29{height:41.547656px;}
.h2a{height:41.656992px;}
.h1a{height:42.402656px;}
.h26{height:42.514242px;}
.hb{height:43.410938px;}
.ha{height:43.499531px;}
.hc{height:44.208281px;}
.h23{height:46.638281px;}
.h24{height:46.779609px;}
.h36{height:47.891250px;}
.h37{height:48.036375px;}
.hf{height:51.329531px;}
.h1c{height:53.704687px;}
.h1b{height:53.846016px;}
.he{height:54.667969px;}
.h9{height:59.357813px;}
.h7{height:60.952500px;}
.h11{height:62.163910px;}
.h10{height:62.960625px;}
.h4{height:65.010937px;}
.h8{height:66.757500px;}
.h5{height:69.392109px;}
.h22{height:70.062656px;}
.h3{height:70.664062px;}
.h2{height:72.562500px;}
.h3e{height:79.596000px;}
.h3d{height:95.262656px;}
.h6{height:97.233750px;}
.h1d{height:171.720000px;}
.h19{height:173.520000px;}
.h31{height:187.920000px;}
.h32{height:191.160000px;}
.h18{height:200.550000px;}
.h35{height:213.480000px;}
.h2d{height:214.230000px;}
.h30{height:214.920000px;}
.h39{height:216.000000px;}
.h3c{height:216.720000px;}
.h2b{height:238.755000px;}
.h3a{height:240.195000px;}
.h28{height:247.680000px;}
.h2e{height:255.675000px;}
.h20{height:270.465000px;}
.h27{height:297.720000px;}
.h25{height:299.520000px;}
.h21{height:300.960000px;}
.h1e{height:321.555000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:135.756000px;}
.w6{width:135.792000px;}
.w7{width:136.116000px;}
.w8{width:136.512000px;}
.w9{width:136.836000px;}
.wa{width:137.232000px;}
.w14{width:209.160000px;}
.w26{width:210.315000px;}
.w15{width:214.560000px;}
.w10{width:216.435000px;}
.w11{width:228.315000px;}
.w22{width:229.395000px;}
.w13{width:246.960000px;}
.wf{width:253.545000px;}
.we{width:325.080000px;}
.w1e{width:326.520000px;}
.w1a{width:328.785000px;}
.w1c{width:331.920000px;}
.wc{width:335.265000px;}
.wd{width:335.520000px;}
.w24{width:342.000000px;}
.w18{width:342.150000px;}
.w25{width:344.520000px;}
.wb{width:352.230000px;}
.w1d{width:353.880000px;}
.w21{width:357.630000px;}
.w19{width:360.510000px;}
.w23{width:361.950000px;}
.w17{width:364.470000px;}
.w1f{width:540.000000px;}
.w4{width:548.490000px;}
.w1b{width:556.410000px;}
.w27{width:579.090000px;}
.w16{width:647.280000px;}
.w12{width:663.015000px;}
.w20{width:720.285000px;}
.w1{width:892.500000px;}
.w3{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x60{left:1.080000px;}
.x42{left:4.320000px;}
.x12{left:7.200000px;}
.x14{left:9.000000px;}
.x1a{left:16.560000px;}
.x33{left:22.320000px;}
.x53{left:25.845000px;}
.x3e{left:28.152000px;}
.x18{left:29.520000px;}
.x15{left:31.005000px;}
.x3d{left:32.370000px;}
.x4f{left:33.510000px;}
.x2d{left:35.385000px;}
.x24{left:39.960000px;}
.x31{left:41.760000px;}
.x5a{left:44.490000px;}
.x39{left:46.545000px;}
.x51{left:47.844000px;}
.x17{left:48.960000px;}
.x1b{left:50.805000px;}
.x1e{left:51.840000px;}
.x1c{left:52.965000px;}
.x1{left:54.395987px;}
.x1d{left:56.565000px;}
.xa{left:59.075987px;}
.x3a{left:61.380000px;}
.x21{left:63.039000px;}
.x66{left:66.635987px;}
.x47{left:74.910000px;}
.xb{left:81.035987px;}
.x41{left:83.910000px;}
.x5d{left:86.436000px;}
.x3{left:87.875973px;}
.x4{left:92.915987px;}
.x2e{left:96.156000px;}
.x2f{left:99.759000px;}
.x1f{left:102.276000px;}
.x2{left:106.955987px;}
.xc{left:108.035987px;}
.x25{left:109.800000px;}
.x34{left:115.236000px;}
.x3b{left:119.880000px;}
.x11{left:123.870000px;}
.x65{left:127.365000px;}
.x37{left:129.930000px;}
.x46{left:133.950000px;}
.x62{left:135.105000px;}
.x4e{left:137.055000px;}
.x4a{left:138.990000px;}
.x23{left:140.430000px;}
.x50{left:141.510000px;}
.x38{left:144.720000px;}
.x55{left:147.810000px;}
.x20{left:149.109000px;}
.x5b{left:150.840000px;}
.x44{left:153.069000px;}
.x2b{left:154.290000px;}
.x48{left:168.555000px;}
.x10{left:172.515000px;}
.x54{left:174.990000px;}
.x5c{left:185.790000px;}
.x36{left:187.629000px;}
.x67{left:190.869000px;}
.x27{left:195.150000px;}
.x4d{left:197.925000px;}
.x52{left:203.250000px;}
.x2c{left:207.870000px;}
.x28{left:219.165000px;}
.x4b{left:229.710000px;}
.x56{left:232.350000px;}
.x49{left:247.755000px;}
.x26{left:254.130000px;}
.x2a{left:260.100000px;}
.x4c{left:264.495000px;}
.x9{left:270.104987px;}
.xd{left:274.424973px;}
.xe{left:279.464987px;}
.x5f{left:280.554000px;}
.x35{left:304.314000px;}
.x64{left:306.750000px;}
.x13{left:309.705000px;}
.x57{left:316.875000px;}
.x5e{left:317.994000px;}
.x3c{left:328.350000px;}
.x43{left:337.425000px;}
.x30{left:351.150000px;}
.x3f{left:379.695000px;}
.x7{left:387.149973px;}
.x8{left:392.189987px;}
.x58{left:401.400000px;}
.x61{left:444.780000px;}
.x16{left:446.940000px;}
.x63{left:450.720000px;}
.x22{left:455.940000px;}
.x29{left:457.200000px;}
.x40{left:458.820000px;}
.x45{left:462.780000px;}
.xf{left:472.859987px;}
.x59{left:485.925000px;}
.x5{left:489.419973px;}
.x6{left:494.459987px;}
.x32{left:569.010000px;}
.x19{left:584.490000px;}
@media print{
.v7{vertical-align:-13.173333pt;}
.va{vertical-align:-10.240000pt;}
.v9{vertical-align:-9.173333pt;}
.v8{vertical-align:-2.080000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.080000pt;}
.v4{vertical-align:9.226667pt;}
.v6{vertical-align:10.133333pt;}
.v5{vertical-align:12.266667pt;}
.v2{vertical-align:13.280000pt;}
.v1{vertical-align:24.586667pt;}
.ls22{letter-spacing:-6.400000pt;}
.ls18{letter-spacing:-3.824000pt;}
.ls9{letter-spacing:-2.992000pt;}
.ls14{letter-spacing:-2.560000pt;}
.ls13{letter-spacing:-1.280000pt;}
.ls7{letter-spacing:-1.264000pt;}
.ls4{letter-spacing:-1.008000pt;}
.lsb{letter-spacing:-0.864000pt;}
.lsa{letter-spacing:-0.832000pt;}
.ls8{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.432533pt;}
.ls5{letter-spacing:-0.406933pt;}
.ls1a{letter-spacing:-0.405333pt;}
.ls6{letter-spacing:-0.397867pt;}
.lse{letter-spacing:-0.384000pt;}
.ls19{letter-spacing:-0.340267pt;}
.ls3{letter-spacing:-0.271467pt;}
.ls2{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.017920pt;}
.ls12{letter-spacing:0.322667pt;}
.lsf{letter-spacing:0.381333pt;}
.ls1b{letter-spacing:0.414720pt;}
.lsc{letter-spacing:0.414933pt;}
.ls1{letter-spacing:0.450667pt;}
.ls0{letter-spacing:0.640000pt;}
.ls1e{letter-spacing:0.768000pt;}
.ls16{letter-spacing:4.480000pt;}
.ls1c{letter-spacing:6.274560pt;}
.ls1d{letter-spacing:6.720000pt;}
.ls21{letter-spacing:9.374720pt;}
.ls20{letter-spacing:36.254720pt;}
.ls10{letter-spacing:41.374720pt;}
.ls11{letter-spacing:56.734720pt;}
.ls1f{letter-spacing:87.786667pt;}
.ls15{letter-spacing:174.720000pt;}
.wsc{word-spacing:-53.760000pt;}
.ws4{word-spacing:-22.080000pt;}
.ws3{word-spacing:-21.440000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws2{word-spacing:-14.313067pt;}
.ws11{word-spacing:-13.890667pt;}
.ws6{word-spacing:-13.854933pt;}
.wsa{word-spacing:-13.688213pt;}
.wsb{word-spacing:-13.629547pt;}
.ws12{word-spacing:-13.457920pt;}
.ws5{word-spacing:-13.440000pt;}
.ws9{word-spacing:-13.306880pt;}
.ws7{word-spacing:-13.007467pt;}
.ws10{word-spacing:-12.608000pt;}
.wsd{word-spacing:-12.576000pt;}
.ws13{word-spacing:-12.192000pt;}
.wsf{word-spacing:-12.176000pt;}
.ws14{word-spacing:-12.160000pt;}
.ws19{word-spacing:-11.021568pt;}
.ws18{word-spacing:-10.992640pt;}
.wse{word-spacing:-10.880000pt;}
.ws1d{word-spacing:-10.592000pt;}
.ws1c{word-spacing:-10.560000pt;}
.ws1b{word-spacing:-9.575168pt;}
.ws1a{word-spacing:-9.546240pt;}
.ws1e{word-spacing:-3.271680pt;}
.ws8{word-spacing:0.000000pt;}
.ws15{word-spacing:15.135787pt;}
.ws22{word-spacing:57.807787pt;}
.ws17{word-spacing:61.853013pt;}
.ws16{word-spacing:62.665813pt;}
.ws25{word-spacing:86.686464pt;}
.ws27{word-spacing:86.748160pt;}
.ws24{word-spacing:86.965376pt;}
.ws26{word-spacing:87.125376pt;}
.ws23{word-spacing:87.234560pt;}
.ws20{word-spacing:152.475733pt;}
.ws28{word-spacing:155.863467pt;}
.ws1f{word-spacing:166.609067pt;}
.ws21{word-spacing:176.795733pt;}
._3{margin-left:-2257.710080pt;}
._4{margin-left:-1290.507520pt;}
._8{margin-left:-1287.195840pt;}
._7{margin-left:-881.000960pt;}
._9{margin-left:-516.053760pt;}
._a{margin-left:-9.939413pt;}
._5{margin-left:-7.948800pt;}
._19{margin-left:-6.357760pt;}
._b{margin-left:-5.256960pt;}
._1b{margin-left:-3.850240pt;}
._c{margin-left:-2.944000pt;}
._0{margin-left:-1.886720pt;}
._2{margin-left:-0.943360pt;}
._1{width:0.943360pt;}
._6{width:2.122240pt;}
._18{width:3.200853pt;}
._1a{width:4.265813pt;}
._15{width:5.194240pt;}
._14{width:6.348800pt;}
._13{width:7.296000pt;}
._11{width:8.805973pt;}
._10{width:10.158080pt;}
._12{width:11.544320pt;}
._1d{width:12.814933pt;}
._1e{width:14.978560pt;}
._16{width:15.956480pt;}
._17{width:16.855467pt;}
._1c{width:17.829973pt;}
._28{width:19.251627pt;}
._27{width:20.887893pt;}
._1f{width:23.976960pt;}
._22{width:25.446827pt;}
._21{width:26.807040pt;}
._20{width:27.885227pt;}
._25{width:29.498453pt;}
._26{width:30.500267pt;}
._23{width:31.777280pt;}
._24{width:33.443840pt;}
._e{width:38.462293pt;}
._f{width:41.765973pt;}
._d{width:43.137280pt;}
.fs9{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs7{font-size:42.240000pt;}
.fs8{font-size:42.368000pt;}
.fs5{font-size:48.640000pt;}
.fs6{font-size:48.768000pt;}
.fs3{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.yb4{bottom:5.120000pt;}
.yb6{bottom:5.440000pt;}
.y106{bottom:5.480000pt;}
.y114{bottom:6.720000pt;}
.y147{bottom:6.760000pt;}
.ydd{bottom:7.360000pt;}
.y104{bottom:8.040000pt;}
.y169{bottom:9.506667pt;}
.yc5{bottom:9.920000pt;}
.yb9{bottom:10.880000pt;}
.yc6{bottom:12.160000pt;}
.y105{bottom:20.200000pt;}
.ydb{bottom:22.720000pt;}
.yc3{bottom:22.746667pt;}
.y102{bottom:22.760000pt;}
.y192{bottom:23.034667pt;}
.yb7{bottom:23.040000pt;}
.y10d{bottom:23.066667pt;}
.yd1{bottom:24.026667pt;}
.y18f{bottom:26.554667pt;}
.y123{bottom:27.226667pt;}
.y127{bottom:28.026667pt;}
.y119{bottom:28.093333pt;}
.y12c{bottom:28.133333pt;}
.y130{bottom:28.706667pt;}
.yf7{bottom:29.053333pt;}
.y13d{bottom:29.413333pt;}
.yfc{bottom:29.666667pt;}
.y121{bottom:31.173333pt;}
.ye9{bottom:32.026667pt;}
.y145{bottom:37.346667pt;}
.y135{bottom:37.626667pt;}
.yd0{bottom:37.826667pt;}
.yd8{bottom:38.493333pt;}
.y191{bottom:40.634667pt;}
.y13a{bottom:45.280000pt;}
.y120{bottom:49.093333pt;}
.ycf{bottom:51.613333pt;}
.y6{bottom:53.120000pt;}
.y144{bottom:53.253333pt;}
.y165{bottom:56.226667pt;}
.y190{bottom:58.594667pt;}
.y139{bottom:60.826667pt;}
.y124{bottom:61.666667pt;}
.y128{bottom:62.466667pt;}
.y11f{bottom:62.880000pt;}
.y12d{bottom:63.293333pt;}
.y131{bottom:63.866667pt;}
.yf4{bottom:65.120000pt;}
.yd3{bottom:65.466667pt;}
.y143{bottom:67.040000pt;}
.yf8{bottom:67.293333pt;}
.yfd{bottom:67.866667pt;}
.yd4{bottom:70.240000pt;}
.y118{bottom:73.186667pt;}
.yef{bottom:74.053333pt;}
.yd7{bottom:75.226667pt;}
.y39{bottom:77.152000pt;}
.yc7{bottom:77.472000pt;}
.y11a{bottom:77.893333pt;}
.yce{bottom:79.613333pt;}
.y136{bottom:79.866667pt;}
.y115{bottom:80.672000pt;}
.y38{bottom:81.952000pt;}
.y18d{bottom:84.832000pt;}
.y167{bottom:85.026667pt;}
.ya0{bottom:89.952000pt;}
.yc4{bottom:91.232000pt;}
.y37{bottom:92.192000pt;}
.y70{bottom:93.152000pt;}
.ycd{bottom:93.413333pt;}
.y113{bottom:93.472000pt;}
.y11e{bottom:94.586667pt;}
.y164{bottom:94.752000pt;}
.y125{bottom:96.093333pt;}
.y142{bottom:96.733333pt;}
.y129{bottom:96.893333pt;}
.ye5{bottom:96.992000pt;}
.y12e{bottom:98.466667pt;}
.y132{bottom:99.066667pt;}
.y13c{bottom:102.306667pt;}
.y18c{bottom:102.432000pt;}
.y13e{bottom:104.986667pt;}
.yf9{bottom:105.506667pt;}
.yfe{bottom:106.080000pt;}
.y36{bottom:107.552000pt;}
.yc9{bottom:109.440000pt;}
.yd6{bottom:112.000000pt;}
.y35{bottom:112.352000pt;}
.y137{bottom:112.640000pt;}
.y163{bottom:112.672000pt;}
.y110{bottom:112.992000pt;}
.y134{bottom:113.600000pt;}
.ye4{bottom:114.912000pt;}
.yc8{bottom:115.520000pt;}
.y18e{bottom:116.192000pt;}
.yd2{bottom:117.120000pt;}
.y6f{bottom:117.152000pt;}
.y18b{bottom:120.032000pt;}
.yd5{bottom:121.213333pt;}
.ycc{bottom:121.373333pt;}
.yca{bottom:121.826667pt;}
.y34{bottom:122.912000pt;}
.y9f{bottom:125.472000pt;}
.y11d{bottom:126.306667pt;}
.y141{bottom:126.466667pt;}
.y33{bottom:127.712000pt;}
.y162{bottom:130.272000pt;}
.y126{bottom:130.533333pt;}
.y12a{bottom:131.293333pt;}
.ye3{bottom:132.512000pt;}
.y12f{bottom:133.666667pt;}
.y133{bottom:134.240000pt;}
.y6e{bottom:135.066667pt;}
.ycb{bottom:135.200000pt;}
.y18a{bottom:137.626667pt;}
.y32{bottom:139.226667pt;}
.yfa{bottom:143.706667pt;}
.y9e{bottom:144.026667pt;}
.yff{bottom:144.320000pt;}
.y168{bottom:145.120000pt;}
.y161{bottom:147.866667pt;}
.y13f{bottom:149.440000pt;}
.ye2{bottom:150.106667pt;}
.y11b{bottom:151.813333pt;}
.y117{bottom:152.186667pt;}
.y6d{bottom:152.666667pt;}
.yf0{bottom:154.053333pt;}
.y189{bottom:155.546667pt;}
.y140{bottom:156.160000pt;}
.y11c{bottom:158.053333pt;}
.yf3{bottom:161.253333pt;}
.y9d{bottom:161.626667pt;}
.ye7{bottom:163.546667pt;}
.y31{bottom:165.466667pt;}
.y138{bottom:166.560000pt;}
.yea{bottom:169.186667pt;}
.y6c{bottom:170.266667pt;}
.y166{bottom:170.373333pt;}
.y188{bottom:173.186667pt;}
.y16a{bottom:173.373333pt;}
.y9c{bottom:179.266667pt;}
.yfb{bottom:181.920000pt;}
.y100{bottom:182.533333pt;}
.y30{bottom:183.106667pt;}
.yf6{bottom:183.360000pt;}
.y6b{bottom:187.906667pt;}
.y187{bottom:190.786667pt;}
.y9b{bottom:196.866667pt;}
.y112{bottom:197.181333pt;}
.y160{bottom:200.706667pt;}
.y2f{bottom:201.026667pt;}
.y6a{bottom:205.506667pt;}
.yed{bottom:206.560000pt;}
.y186{bottom:208.386667pt;}
.y111{bottom:214.781333pt;}
.y9a{bottom:215.426667pt;}
.y15f{bottom:218.306667pt;}
.y2e{bottom:218.626667pt;}
.y69{bottom:223.106667pt;}
.y185{bottom:225.986667pt;}
.yec{bottom:226.240000pt;}
.y99{bottom:233.026667pt;}
.y15e{bottom:235.906667pt;}
.y2d{bottom:236.226667pt;}
.y67{bottom:240.706667pt;}
.yf5{bottom:242.146667pt;}
.y184{bottom:243.586667pt;}
.yf1{bottom:243.746667pt;}
.y68{bottom:245.506667pt;}
.yeb{bottom:245.946667pt;}
.y98{bottom:250.626667pt;}
.y15d{bottom:253.506667pt;}
.y2b{bottom:253.826667pt;}
.y66{bottom:258.306667pt;}
.y2c{bottom:258.626667pt;}
.y183{bottom:261.186667pt;}
.y97{bottom:268.226667pt;}
.yc2{bottom:270.786667pt;}
.y15c{bottom:271.106667pt;}
.y2a{bottom:271.426667pt;}
.y65{bottom:275.906667pt;}
.y182{bottom:278.786667pt;}
.y96{bottom:285.853333pt;}
.y29{bottom:289.053333pt;}
.y64{bottom:293.533333pt;}
.y181{bottom:296.413333pt;}
.y95{bottom:303.773333pt;}
.y27{bottom:306.653333pt;}
.y28{bottom:311.453333pt;}
.yc1{bottom:313.053333pt;}
.y180{bottom:314.013333pt;}
.y94{bottom:322.333333pt;}
.y26{bottom:324.253333pt;}
.y63{bottom:329.053333pt;}
.yc0{bottom:330.653333pt;}
.y17f{bottom:331.933333pt;}
.y93{bottom:339.933333pt;}
.y25{bottom:341.853333pt;}
.y62{bottom:346.653333pt;}
.ybf{bottom:348.253333pt;}
.y17e{bottom:349.533333pt;}
.y92{bottom:357.533333pt;}
.y24{bottom:359.453333pt;}
.y61{bottom:363.933333pt;}
.y10f{bottom:364.253333pt;}
.ybe{bottom:365.853333pt;}
.y17d{bottom:367.133333pt;}
.y91{bottom:375.133333pt;}
.y15b{bottom:377.053333pt;}
.y23{bottom:377.373333pt;}
.y60{bottom:381.853333pt;}
.ybd{bottom:383.453333pt;}
.y17c{bottom:384.733333pt;}
.y90{bottom:392.733333pt;}
.y15a{bottom:394.653333pt;}
.y22{bottom:394.973333pt;}
.ybc{bottom:396.933333pt;}
.y5f{bottom:399.493333pt;}
.y17b{bottom:402.373333pt;}
.ye6{bottom:405.253333pt;}
.y8f{bottom:411.333333pt;}
.y10e{bottom:412.293333pt;}
.y21{bottom:412.613333pt;}
.y5e{bottom:417.093333pt;}
.y17a{bottom:419.973333pt;}
.ybb{bottom:427.013333pt;}
.y8e{bottom:428.933333pt;}
.y159{bottom:429.893333pt;}
.y20{bottom:430.213333pt;}
.y122{bottom:431.360000pt;}
.y12b{bottom:432.320000pt;}
.y5d{bottom:434.693333pt;}
.y179{bottom:437.573333pt;}
.y8d{bottom:446.213333pt;}
.ye1{bottom:447.493333pt;}
.y1f{bottom:447.813333pt;}
.y158{bottom:448.453333pt;}
.y5c{bottom:452.293333pt;}
.y178{bottom:455.173333pt;}
.yba{bottom:456.773333pt;}
.y8c{bottom:464.133333pt;}
.ye0{bottom:465.093333pt;}
.y1e{bottom:465.413333pt;}
.y157{bottom:466.373333pt;}
.y5b{bottom:469.893333pt;}
.y177{bottom:472.773333pt;}
.y8b{bottom:482.053333pt;}
.ydf{bottom:482.693333pt;}
.y1d{bottom:483.013333pt;}
.y156{bottom:483.973333pt;}
.yb8{bottom:486.853333pt;}
.y5a{bottom:487.493333pt;}
.y176{bottom:490.373333pt;}
.yde{bottom:500.293333pt;}
.y1c{bottom:500.613333pt;}
.y155{bottom:501.253333pt;}
.y59{bottom:505.413333pt;}
.y175{bottom:508.293333pt;}
.yb5{bottom:516.640000pt;}
.y1b{bottom:518.240000pt;}
.y154{bottom:518.880000pt;}
.y58{bottom:524.000000pt;}
.y174{bottom:525.920000pt;}
.ydc{bottom:531.680000pt;}
.y1a{bottom:535.840000pt;}
.y153{bottom:537.760000pt;}
.y57{bottom:541.600000pt;}
.y173{bottom:543.520000pt;}
.ye8{bottom:550.080000pt;}
.yee{bottom:551.360000pt;}
.yf2{bottom:552.960000pt;}
.y8a{bottom:553.440000pt;}
.y19{bottom:553.760000pt;}
.y152{bottom:555.360000pt;}
.y56{bottom:559.200000pt;}
.y172{bottom:561.120000pt;}
.y89{bottom:571.040000pt;}
.y18{bottom:571.360000pt;}
.y151{bottom:573.920000pt;}
.y55{bottom:576.800000pt;}
.yb3{bottom:577.760000pt;}
.y171{bottom:578.720000pt;}
.y88{bottom:588.640000pt;}
.y17{bottom:588.960000pt;}
.y150{bottom:591.520000pt;}
.y54{bottom:594.400000pt;}
.yb2{bottom:595.360000pt;}
.y170{bottom:596.320000pt;}
.y10c{bottom:603.360000pt;}
.y87{bottom:606.240000pt;}
.y16{bottom:606.560000pt;}
.y14f{bottom:609.120000pt;}
.y53{bottom:612.000000pt;}
.yb1{bottom:612.960000pt;}
.y16f{bottom:613.920000pt;}
.y15{bottom:623.866667pt;}
.y86{bottom:624.826667pt;}
.y14e{bottom:626.746667pt;}
.yb0{bottom:630.266667pt;}
.y52{bottom:630.586667pt;}
.y16e{bottom:631.546667pt;}
.y14{bottom:641.466667pt;}
.y85{bottom:642.426667pt;}
.y10b{bottom:644.986667pt;}
.y14d{bottom:645.626667pt;}
.y51{bottom:648.186667pt;}
.y16d{bottom:649.146667pt;}
.y13{bottom:661.306667pt;}
.y10a{bottom:662.586667pt;}
.y14c{bottom:663.226667pt;}
.y50{bottom:665.786667pt;}
.y16c{bottom:666.746667pt;}
.y84{bottom:678.906667pt;}
.y109{bottom:680.186667pt;}
.y14b{bottom:680.826667pt;}
.y4f{bottom:683.706667pt;}
.y16b{bottom:684.666667pt;}
.y12{bottom:687.226667pt;}
.y83{bottom:696.506667pt;}
.y108{bottom:697.786667pt;}
.y14a{bottom:698.106667pt;}
.yaf{bottom:701.306667pt;}
.y4e{bottom:702.266667pt;}
.y11{bottom:704.826667pt;}
.y82{bottom:715.066667pt;}
.y107{bottom:715.386667pt;}
.y149{bottom:715.706667pt;}
.yae{bottom:718.906667pt;}
.y4d{bottom:719.866667pt;}
.y10{bottom:722.426667pt;}
.y103{bottom:728.826667pt;}
.y81{bottom:732.666667pt;}
.yad{bottom:736.546667pt;}
.y4c{bottom:737.506667pt;}
.yf{bottom:740.066667pt;}
.y148{bottom:747.426667pt;}
.y13b{bottom:749.120000pt;}
.y116{bottom:750.080000pt;}
.y80{bottom:750.306667pt;}
.yac{bottom:754.146667pt;}
.y4b{bottom:755.106667pt;}
.ye{bottom:757.666667pt;}
.y7f{bottom:768.866667pt;}
.yab{bottom:771.746667pt;}
.y4a{bottom:772.706667pt;}
.yd{bottom:775.266667pt;}
.y7e{bottom:786.466667pt;}
.yaa{bottom:789.346667pt;}
.y49{bottom:790.306667pt;}
.yc{bottom:794.466667pt;}
.y7d{bottom:804.066667pt;}
.ya9{bottom:806.946667pt;}
.y48{bottom:807.906667pt;}
.yb{bottom:812.386667pt;}
.yda{bottom:818.786667pt;}
.y7c{bottom:821.346667pt;}
.ya8{bottom:824.546667pt;}
.y47{bottom:825.506667pt;}
.ya{bottom:830.306667pt;}
.y7b{bottom:839.266667pt;}
.ya7{bottom:842.146667pt;}
.y46{bottom:843.106667pt;}
.y9{bottom:849.213333pt;}
.y7a{bottom:857.213333pt;}
.ya6{bottom:859.773333pt;}
.y45{bottom:861.053333pt;}
.y8{bottom:870.013333pt;}
.y79{bottom:875.773333pt;}
.ya5{bottom:877.693333pt;}
.y44{bottom:878.653333pt;}
.y78{bottom:893.373333pt;}
.ya4{bottom:895.293333pt;}
.y43{bottom:896.253333pt;}
.y7{bottom:898.173333pt;}
.y77{bottom:910.973333pt;}
.ya3{bottom:912.893333pt;}
.y42{bottom:913.853333pt;}
.y76{bottom:929.533333pt;}
.ya2{bottom:930.493333pt;}
.y41{bottom:931.453333pt;}
.y5{bottom:935.613333pt;}
.y101{bottom:942.333333pt;}
.y146{bottom:942.973333pt;}
.y75{bottom:947.133333pt;}
.ya1{bottom:948.093333pt;}
.y40{bottom:949.053333pt;}
.y4{bottom:962.853333pt;}
.y74{bottom:965.733333pt;}
.y3f{bottom:966.693333pt;}
.y73{bottom:983.333333pt;}
.y3e{bottom:984.293333pt;}
.y3{bottom:990.373333pt;}
.y3d{bottom:1001.573333pt;}
.y72{bottom:1001.893333pt;}
.y2{bottom:1017.253333pt;}
.yd9{bottom:1019.173333pt;}
.y3c{bottom:1019.493333pt;}
.y71{bottom:1037.093333pt;}
.y3b{bottom:1037.413333pt;}
.y1{bottom:1047.653333pt;}
.y3a{bottom:1061.413333pt;}
.h3b{height:0.319987pt;}
.h3f{height:2.512500pt;}
.h12{height:17.600000pt;}
.h2f{height:18.880000pt;}
.h16{height:28.480000pt;}
.h14{height:28.512000pt;}
.h15{height:28.800000pt;}
.h33{height:32.071875pt;}
.h34{height:32.169063pt;}
.h38{height:32.731875pt;}
.hd{height:33.918750pt;}
.h13{height:35.200000pt;}
.h17{height:35.232000pt;}
.h1f{height:35.520000pt;}
.h2c{height:35.552000pt;}
.h29{height:36.931250pt;}
.h2a{height:37.028437pt;}
.h1a{height:37.691250pt;}
.h26{height:37.790437pt;}
.hb{height:38.587500pt;}
.ha{height:38.666250pt;}
.hc{height:39.296250pt;}
.h23{height:41.456250pt;}
.h24{height:41.581875pt;}
.h36{height:42.570000pt;}
.h37{height:42.699000pt;}
.hf{height:45.626250pt;}
.h1c{height:47.737500pt;}
.h1b{height:47.863125pt;}
.he{height:48.593750pt;}
.h9{height:52.762500pt;}
.h7{height:54.180000pt;}
.h11{height:55.256809pt;}
.h10{height:55.965000pt;}
.h4{height:57.787500pt;}
.h8{height:59.340000pt;}
.h5{height:61.681875pt;}
.h22{height:62.277917pt;}
.h3{height:62.812500pt;}
.h2{height:64.500000pt;}
.h3e{height:70.752000pt;}
.h3d{height:84.677917pt;}
.h6{height:86.430000pt;}
.h1d{height:152.640000pt;}
.h19{height:154.240000pt;}
.h31{height:167.040000pt;}
.h32{height:169.920000pt;}
.h18{height:178.266667pt;}
.h35{height:189.760000pt;}
.h2d{height:190.426667pt;}
.h30{height:191.040000pt;}
.h39{height:192.000000pt;}
.h3c{height:192.640000pt;}
.h2b{height:212.226667pt;}
.h3a{height:213.506667pt;}
.h28{height:220.160000pt;}
.h2e{height:227.266667pt;}
.h20{height:240.413333pt;}
.h27{height:264.640000pt;}
.h25{height:266.240000pt;}
.h21{height:267.520000pt;}
.h1e{height:285.826667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:120.672000pt;}
.w6{width:120.704000pt;}
.w7{width:120.992000pt;}
.w8{width:121.344000pt;}
.w9{width:121.632000pt;}
.wa{width:121.984000pt;}
.w14{width:185.920000pt;}
.w26{width:186.946667pt;}
.w15{width:190.720000pt;}
.w10{width:192.386667pt;}
.w11{width:202.946667pt;}
.w22{width:203.906667pt;}
.w13{width:219.520000pt;}
.wf{width:225.373333pt;}
.we{width:288.960000pt;}
.w1e{width:290.240000pt;}
.w1a{width:292.253333pt;}
.w1c{width:295.040000pt;}
.wc{width:298.013333pt;}
.wd{width:298.240000pt;}
.w24{width:304.000000pt;}
.w18{width:304.133333pt;}
.w25{width:306.240000pt;}
.wb{width:313.093333pt;}
.w1d{width:314.560000pt;}
.w21{width:317.893333pt;}
.w19{width:320.453333pt;}
.w23{width:321.733333pt;}
.w17{width:323.973333pt;}
.w1f{width:480.000000pt;}
.w4{width:487.546667pt;}
.w1b{width:494.586667pt;}
.w27{width:514.746667pt;}
.w16{width:575.360000pt;}
.w12{width:589.346667pt;}
.w20{width:640.253333pt;}
.w1{width:793.333333pt;}
.w3{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x60{left:0.960000pt;}
.x42{left:3.840000pt;}
.x12{left:6.400000pt;}
.x14{left:8.000000pt;}
.x1a{left:14.720000pt;}
.x33{left:19.840000pt;}
.x53{left:22.973333pt;}
.x3e{left:25.024000pt;}
.x18{left:26.240000pt;}
.x15{left:27.560000pt;}
.x3d{left:28.773333pt;}
.x4f{left:29.786667pt;}
.x2d{left:31.453333pt;}
.x24{left:35.520000pt;}
.x31{left:37.120000pt;}
.x5a{left:39.546667pt;}
.x39{left:41.373333pt;}
.x51{left:42.528000pt;}
.x17{left:43.520000pt;}
.x1b{left:45.160000pt;}
.x1e{left:46.080000pt;}
.x1c{left:47.080000pt;}
.x1{left:48.351988pt;}
.x1d{left:50.280000pt;}
.xa{left:52.511988pt;}
.x3a{left:54.560000pt;}
.x21{left:56.034667pt;}
.x66{left:59.231988pt;}
.x47{left:66.586667pt;}
.xb{left:72.031988pt;}
.x41{left:74.586667pt;}
.x5d{left:76.832000pt;}
.x3{left:78.111976pt;}
.x4{left:82.591988pt;}
.x2e{left:85.472000pt;}
.x2f{left:88.674667pt;}
.x1f{left:90.912000pt;}
.x2{left:95.071988pt;}
.xc{left:96.031988pt;}
.x25{left:97.600000pt;}
.x34{left:102.432000pt;}
.x3b{left:106.560000pt;}
.x11{left:110.106667pt;}
.x65{left:113.213333pt;}
.x37{left:115.493333pt;}
.x46{left:119.066667pt;}
.x62{left:120.093333pt;}
.x4e{left:121.826667pt;}
.x4a{left:123.546667pt;}
.x23{left:124.826667pt;}
.x50{left:125.786667pt;}
.x38{left:128.640000pt;}
.x55{left:131.386667pt;}
.x20{left:132.541333pt;}
.x5b{left:134.080000pt;}
.x44{left:136.061333pt;}
.x2b{left:137.146667pt;}
.x48{left:149.826667pt;}
.x10{left:153.346667pt;}
.x54{left:155.546667pt;}
.x5c{left:165.146667pt;}
.x36{left:166.781333pt;}
.x67{left:169.661333pt;}
.x27{left:173.466667pt;}
.x4d{left:175.933333pt;}
.x52{left:180.666667pt;}
.x2c{left:184.773333pt;}
.x28{left:194.813333pt;}
.x4b{left:204.186667pt;}
.x56{left:206.533333pt;}
.x49{left:220.226667pt;}
.x26{left:225.893333pt;}
.x2a{left:231.200000pt;}
.x4c{left:235.106667pt;}
.x9{left:240.093322pt;}
.xd{left:243.933310pt;}
.xe{left:248.413322pt;}
.x5f{left:249.381333pt;}
.x35{left:270.501333pt;}
.x64{left:272.666667pt;}
.x13{left:275.293333pt;}
.x57{left:281.666667pt;}
.x5e{left:282.661333pt;}
.x3c{left:291.866667pt;}
.x43{left:299.933333pt;}
.x30{left:312.133333pt;}
.x3f{left:337.506667pt;}
.x7{left:344.133310pt;}
.x8{left:348.613322pt;}
.x58{left:356.800000pt;}
.x61{left:395.360000pt;}
.x16{left:397.280000pt;}
.x63{left:400.640000pt;}
.x22{left:405.280000pt;}
.x29{left:406.400000pt;}
.x40{left:407.840000pt;}
.x45{left:411.360000pt;}
.xf{left:420.319988pt;}
.x59{left:431.933333pt;}
.x5{left:435.039976pt;}
.x6{left:439.519988pt;}
.x32{left:505.786667pt;}
.x19{left:519.546667pt;}
}




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