
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_673f352f5a60b42d4d7c098a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.970703;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_f47ac189a172b6028027f474.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_83f139f7c88df1a90b247660.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a3a7bc66d0c5dc10ce7d9016.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_9b74f589d03de4400e74520b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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_0a60f274dd87f4976e5f25cc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.970703;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_3ed26b9efa23524c44d4f335.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_10b93f1cb481725b6573aeac.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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_10201c0b441d1629d48bb1a5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.063477;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_2e2c754feeb1ab43897ea02e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.978027;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_fdd5697726a6b79655a4c900.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.921387;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_6193fc93719873dbca485474.woff2')format("woff");}.fff{font-family:fff;line-height:0.739746;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:-20.880000px;}
.vd{vertical-align:-12.240000px;}
.v3{vertical-align:-10.800000px;}
.ve{vertical-align:-8.640000px;}
.v6{vertical-align:-5.760000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:2.160000px;}
.vf{vertical-align:4.320000px;}
.v4{vertical-align:10.800000px;}
.v9{vertical-align:12.960000px;}
.v7{vertical-align:18.000000px;}
.v1{vertical-align:20.880000px;}
.va{vertical-align:22.320000px;}
.vc{vertical-align:30.240000px;}
.vb{vertical-align:35.280000px;}
.ls10{letter-spacing:-0.774000px;}
.lsd{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.352800px;}
.ls29{letter-spacing:-0.337200px;}
.ls25{letter-spacing:-0.331200px;}
.ls2f{letter-spacing:-0.322800px;}
.ls32{letter-spacing:-0.259800px;}
.ls5{letter-spacing:-0.226200px;}
.ls27{letter-spacing:-0.145200px;}
.ls2b{letter-spacing:-0.134400px;}
.ls9{letter-spacing:-0.108000px;}
.ls6{letter-spacing:-0.089400px;}
.ls8{letter-spacing:-0.072000px;}
.ls11{letter-spacing:-0.053280px;}
.ls28{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.017280px;}
.ls2{letter-spacing:0.018000px;}
.ls2e{letter-spacing:0.047520px;}
.ls1{letter-spacing:0.072000px;}
.ls13{letter-spacing:0.119520px;}
.ls26{letter-spacing:0.132600px;}
.ls2a{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.180000px;}
.ls2d{letter-spacing:0.206400px;}
.ls15{letter-spacing:0.234000px;}
.ls33{letter-spacing:0.298800px;}
.ls30{letter-spacing:0.323400px;}
.ls24{letter-spacing:0.324000px;}
.ls31{letter-spacing:0.331800px;}
.ls0{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.399600px;}
.ls7{letter-spacing:0.493800px;}
.ls1c{letter-spacing:0.532800px;}
.ls23{letter-spacing:0.540000px;}
.ls2c{letter-spacing:0.585600px;}
.ls1b{letter-spacing:1.396080px;}
.ls19{letter-spacing:2.116080px;}
.lsf{letter-spacing:12.600000px;}
.ls20{letter-spacing:12.639600px;}
.ls3{letter-spacing:13.109760px;}
.ls21{letter-spacing:13.359600px;}
.ls1f{letter-spacing:13.679280px;}
.ls1e{letter-spacing:15.076080px;}
.lsa{letter-spacing:16.506720px;}
.ls16{letter-spacing:16.559280px;}
.ls1d{letter-spacing:18.719280px;}
.lse{letter-spacing:19.386720px;}
.ls22{letter-spacing:46.026720px;}
.lsb{letter-spacing:61.146720px;}
.ls1a{letter-spacing:74.270160px;}
.ls17{letter-spacing:82.190160px;}
.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;}
}
.ws13{word-spacing:-59.760000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.940000px;}
.ws11{word-spacing:-14.886720px;}
.ws10{word-spacing:-14.166000px;}
.wse{word-spacing:-13.860000px;}
.ws12{word-spacing:-13.734000px;}
.ws20{word-spacing:-13.732800px;}
.wsa{word-spacing:-13.518000px;}
.ws7{word-spacing:-13.500000px;}
.ws26{word-spacing:-13.479000px;}
.ws28{word-spacing:-13.470600px;}
.ws9{word-spacing:-13.392000px;}
.ws19{word-spacing:-13.147200px;}
.ws1f{word-spacing:-13.012800px;}
.ws27{word-spacing:-12.824400px;}
.wsc{word-spacing:-11.880000px;}
.ws6{word-spacing:-10.933800px;}
.ws5{word-spacing:-10.440000px;}
.ws4{word-spacing:-10.213800px;}
.ws14{word-spacing:-9.737280px;}
.ws2{word-spacing:-9.720000px;}
.ws1d{word-spacing:-9.711360px;}
.ws22{word-spacing:-9.234720px;}
.ws17{word-spacing:-9.187200px;}
.wsf{word-spacing:-9.000000px;}
.ws8{word-spacing:-8.928000px;}
.wsd{word-spacing:-8.200800px;}
.ws25{word-spacing:-0.187920px;}
.wsb{word-spacing:0.000000px;}
.ws24{word-spacing:0.532080px;}
.ws16{word-spacing:1.481880px;}
.ws21{word-spacing:3.866400px;}
.ws15{word-spacing:5.986080px;}
.ws1a{word-spacing:6.381360px;}
.ws1e{word-spacing:6.939360px;}
.ws1b{word-spacing:8.845200px;}
.ws23{word-spacing:12.499200px;}
.ws1c{word-spacing:267.875040px;}
.ws18{word-spacing:290.033760px;}
._1a{margin-left:-379.233840px;}
._1d{margin-left:-4.992480px;}
._12{margin-left:-3.366000px;}
._0{margin-left:-1.093680px;}
._1{width:1.254960px;}
._6{width:2.653200px;}
._5{width:3.726000px;}
._9{width:4.914000px;}
._4{width:6.114960px;}
._3{width:7.263360px;}
._2{width:8.532000px;}
._8{width:10.476000px;}
._7{width:11.934000px;}
._c{width:13.566960px;}
._b{width:15.201360px;}
._a{width:16.470000px;}
._f{width:17.509680px;}
._2b{width:18.941760px;}
._e{width:20.081520px;}
._d{width:21.939840px;}
._16{width:43.425840px;}
._15{width:44.655600px;}
._1b{width:48.391680px;}
._11{width:49.572000px;}
._1c{width:51.924720px;}
._10{width:53.892000px;}
._19{width:55.636560px;}
._1f{width:56.779440px;}
._1e{width:58.086720px;}
._22{width:59.819760px;}
._18{width:66.296160px;}
._17{width:68.066640px;}
._25{width:70.875360px;}
._23{width:72.010800px;}
._13{width:74.102400px;}
._24{width:75.118320px;}
._2a{width:77.030640px;}
._29{width:85.636080px;}
._28{width:86.652000px;}
._20{width:93.106080px;}
._27{width:99.276000px;}
._26{width:100.516320px;}
._21{width:113.424480px;}
._14{width:174.186000px;}
.fc6{color:transparent;}
.fc5{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(10,10,10);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fsa{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y56{bottom:1.620000px;}
.y5{bottom:3.780000px;}
.y83{bottom:4.140000px;}
.yc2{bottom:4.320000px;}
.yd1{bottom:4.500000px;}
.yd4{bottom:4.680000px;}
.y63{bottom:5.010000px;}
.yc7{bottom:5.400000px;}
.y4c{bottom:5.580000px;}
.y7a{bottom:5.760000px;}
.y7f{bottom:6.480000px;}
.yde{bottom:6.660000px;}
.ya6{bottom:7.020000px;}
.y9d{bottom:7.200000px;}
.y131{bottom:8.280000px;}
.y12c{bottom:8.460000px;}
.ya4{bottom:9.180000px;}
.yc5{bottom:9.360000px;}
.y91{bottom:9.720000px;}
.y2{bottom:9.930000px;}
.y55{bottom:10.260000px;}
.ydb{bottom:11.160000px;}
.y12e{bottom:11.880000px;}
.y12a{bottom:12.060000px;}
.y61{bottom:12.240000px;}
.y7c{bottom:14.040000px;}
.y81{bottom:14.940000px;}
.y2a{bottom:15.300000px;}
.y128{bottom:15.525000px;}
.ya0{bottom:17.460000px;}
.ydc{bottom:19.470000px;}
.y132{bottom:20.880000px;}
.y79{bottom:22.500000px;}
.y4{bottom:22.710000px;}
.y7e{bottom:23.400000px;}
.y4b{bottom:24.300000px;}
.y12f{bottom:24.480000px;}
.ya2{bottom:25.920000px;}
.y60{bottom:27.720000px;}
.yda{bottom:27.930000px;}
.y7b{bottom:30.780000px;}
.y80{bottom:31.860000px;}
.y9f{bottom:34.200000px;}
.y9b{bottom:37.620000px;}
.y78{bottom:39.240000px;}
.y7d{bottom:40.140000px;}
.y29{bottom:40.320000px;}
.ya1{bottom:42.660000px;}
.y4a{bottom:42.840000px;}
.y5f{bottom:43.200000px;}
.y3{bottom:47.910000px;}
.y54{bottom:49.860000px;}
.y9e{bottom:50.940000px;}
.y9a{bottom:54.360000px;}
.y7{bottom:57.060000px;}
.y53{bottom:58.860000px;}
.ya3{bottom:59.400000px;}
.y5e{bottom:61.020000px;}
.y49{bottom:61.425000px;}
.y28{bottom:65.385000px;}
.y52{bottom:69.474000px;}
.y5d{bottom:76.494000px;}
.y48{bottom:80.145000px;}
.y51{bottom:81.534000px;}
.y4d{bottom:88.956000px;}
.y27{bottom:90.405000px;}
.yf7{bottom:91.476000px;}
.y50{bottom:93.594000px;}
.ya9{bottom:93.636000px;}
.y5c{bottom:94.314000px;}
.y47{bottom:98.685000px;}
.y139{bottom:104.436000px;}
.yf6{bottom:108.756000px;}
.y5b{bottom:109.794000px;}
.y26{bottom:115.425000px;}
.ya8{bottom:117.036000px;}
.y46{bottom:117.405000px;}
.y138{bottom:121.716000px;}
.y5a{bottom:125.274000px;}
.yf5{bottom:126.036000px;}
.y45{bottom:135.945000px;}
.y137{bottom:138.996000px;}
.ya7{bottom:140.436000px;}
.y25{bottom:140.445000px;}
.y59{bottom:140.754000px;}
.yf4{bottom:143.316000px;}
.yca{bottom:148.536000px;}
.y44{bottom:154.485000px;}
.y4f{bottom:154.614000px;}
.y136{bottom:156.090000px;}
.y58{bottom:156.414000px;}
.yf3{bottom:160.590000px;}
.yc9{bottom:162.570000px;}
.ya5{bottom:163.830000px;}
.y4e{bottom:164.334000px;}
.y24{bottom:165.465000px;}
.y57{bottom:171.894000px;}
.y43{bottom:173.205000px;}
.y135{bottom:173.370000px;}
.yf2{bottom:177.690000px;}
.y99{bottom:187.230000px;}
.y23{bottom:190.485000px;}
.y134{bottom:190.650000px;}
.y42{bottom:191.745000px;}
.yf1{bottom:194.970000px;}
.y133{bottom:209.190000px;}
.y41{bottom:210.465000px;}
.yf0{bottom:212.250000px;}
.y22{bottom:215.505000px;}
.y130{bottom:225.210000px;}
.y40{bottom:229.005000px;}
.yef{bottom:229.530000px;}
.y21{bottom:240.705000px;}
.yee{bottom:246.810000px;}
.y3f{bottom:247.725000px;}
.y12d{bottom:249.150000px;}
.yed{bottom:264.090000px;}
.y9c{bottom:264.990000px;}
.y20{bottom:265.725000px;}
.y3e{bottom:266.265000px;}
.y12b{bottom:276.690000px;}
.y1f{bottom:278.685000px;}
.yec{bottom:281.190000px;}
.y11{bottom:283.350000px;}
.y3d{bottom:284.805000px;}
.y98{bottom:293.070000px;}
.yeb{bottom:298.470000px;}
.y129{bottom:300.630000px;}
.y1e{bottom:302.805000px;}
.y3c{bottom:303.525000px;}
.y97{bottom:310.350000px;}
.yea{bottom:315.750000px;}
.y3b{bottom:321.735000px;}
.y1d{bottom:326.955000px;}
.y96{bottom:327.450000px;}
.y127{bottom:328.170000px;}
.ye9{bottom:333.030000px;}
.y3a{bottom:338.475000px;}
.y160{bottom:340.635000px;}
.y95{bottom:344.775000px;}
.ye8{bottom:350.355000px;}
.y1c{bottom:351.075000px;}
.y39{bottom:355.215000px;}
.y126{bottom:359.175000px;}
.y94{bottom:359.535000px;}
.y15f{bottom:363.135000px;}
.ye7{bottom:365.115000px;}
.y38{bottom:371.955000px;}
.y1b{bottom:375.375000px;}
.y125{bottom:382.395000px;}
.y93{bottom:382.755000px;}
.y15e{bottom:382.935000px;}
.ye6{bottom:387.615000px;}
.y37{bottom:388.695000px;}
.y1a{bottom:399.495000px;}
.y124{bottom:401.115000px;}
.y15d{bottom:402.735000px;}
.y36{bottom:405.435000px;}
.y92{bottom:405.795000px;}
.ye5{bottom:410.115000px;}
.y123{bottom:419.655000px;}
.y35{bottom:422.175000px;}
.y15c{bottom:422.715000px;}
.y19{bottom:423.615000px;}
.y90{bottom:428.835000px;}
.ye4{bottom:432.615000px;}
.y122{bottom:438.195000px;}
.y34{bottom:438.915000px;}
.y15b{bottom:442.515000px;}
.y18{bottom:447.735000px;}
.ye3{bottom:455.115000px;}
.y33{bottom:455.655000px;}
.y8f{bottom:456.555000px;}
.y121{bottom:456.915000px;}
.y15a{bottom:462.315000px;}
.y17{bottom:471.855000px;}
.y32{bottom:472.395000px;}
.y8e{bottom:475.095000px;}
.y120{bottom:475.455000px;}
.ye2{bottom:477.615000px;}
.y159{bottom:482.115000px;}
.y31{bottom:489.315000px;}
.y8d{bottom:493.815000px;}
.y11f{bottom:494.175000px;}
.y16{bottom:495.975000px;}
.ye1{bottom:500.115000px;}
.y158{bottom:501.915000px;}
.y30{bottom:506.055000px;}
.y11e{bottom:511.455000px;}
.y8c{bottom:512.355000px;}
.y15{bottom:520.275000px;}
.y157{bottom:521.895000px;}
.ye0{bottom:522.615000px;}
.y2f{bottom:522.795000px;}
.y11d{bottom:529.995000px;}
.y8b{bottom:531.075000px;}
.y2e{bottom:539.535000px;}
.y156{bottom:541.695000px;}
.yc8{bottom:542.955000px;}
.y14{bottom:544.395000px;}
.ydf{bottom:545.115000px;}
.y11c{bottom:548.535000px;}
.y8a{bottom:549.615000px;}
.y2d{bottom:556.275000px;}
.yc6{bottom:558.795000px;}
.y155{bottom:561.495000px;}
.y11b{bottom:567.255000px;}
.ydd{bottom:567.615000px;}
.y89{bottom:568.155000px;}
.y13{bottom:568.515000px;}
.y2c{bottom:573.015000px;}
.yc4{bottom:579.675000px;}
.y154{bottom:581.295000px;}
.y11a{bottom:585.795000px;}
.y88{bottom:586.875000px;}
.y2b{bottom:589.800000px;}
.yd9{bottom:590.115000px;}
.y12{bottom:592.680000px;}
.y153{bottom:601.095000px;}
.y119{bottom:604.545000px;}
.yc3{bottom:604.725000px;}
.y87{bottom:605.445000px;}
.y152{bottom:621.105000px;}
.y118{bottom:623.085000px;}
.y86{bottom:624.165000px;}
.yc1{bottom:624.345000px;}
.y151{bottom:640.905000px;}
.y85{bottom:641.445000px;}
.yd8{bottom:641.625000px;}
.yc0{bottom:644.145000px;}
.y84{bottom:659.985000px;}
.yd7{bottom:660.165000px;}
.y117{bottom:660.345000px;}
.y150{bottom:660.705000px;}
.ybf{bottom:663.945000px;}
.y82{bottom:674.745000px;}
.yd6{bottom:676.185000px;}
.y116{bottom:678.885000px;}
.y14f{bottom:680.505000px;}
.y77{bottom:692.205000px;}
.yd5{bottom:695.805000px;}
.y115{bottom:697.605000px;}
.y14e{bottom:700.305000px;}
.ybe{bottom:710.925000px;}
.yd3{bottom:715.605000px;}
.y114{bottom:716.145000px;}
.y14d{bottom:720.285000px;}
.ybd{bottom:729.465000px;}
.y113{bottom:734.685000px;}
.yd2{bottom:735.765000px;}
.y14c{bottom:740.085000px;}
.ybc{bottom:746.745000px;}
.y76{bottom:750.705000px;}
.y112{bottom:751.965000px;}
.yd0{bottom:755.565000px;}
.y14b{bottom:759.885000px;}
.ybb{bottom:764.025000px;}
.y75{bottom:769.425000px;}
.y111{bottom:770.685000px;}
.ycf{bottom:775.725000px;}
.y14a{bottom:779.685000px;}
.yba{bottom:781.305000px;}
.y74{bottom:787.965000px;}
.y110{bottom:789.225000px;}
.yb9{bottom:798.585000px;}
.yce{bottom:798.945000px;}
.y149{bottom:799.485000px;}
.y73{bottom:806.685000px;}
.y10f{bottom:808.125000px;}
.yb8{bottom:815.865000px;}
.ycd{bottom:817.485000px;}
.y148{bottom:819.465000px;}
.y72{bottom:823.965000px;}
.y10e{bottom:827.025000px;}
.yb7{bottom:832.965000px;}
.ycc{bottom:834.765000px;}
.y147{bottom:839.265000px;}
.y71{bottom:841.065000px;}
.y10c{bottom:845.925000px;}
.y10d{bottom:848.625000px;}
.ycb{bottom:848.805000px;}
.yb6{bottom:850.245000px;}
.y70{bottom:858.345000px;}
.y146{bottom:859.065000px;}
.y10b{bottom:865.185000px;}
.yb5{bottom:867.570000px;}
.y6f{bottom:875.670000px;}
.y145{bottom:878.910000px;}
.y10a{bottom:883.950000px;}
.yb4{bottom:884.850000px;}
.y10{bottom:891.150000px;}
.y144{bottom:898.710000px;}
.yb3{bottom:902.130000px;}
.y109{bottom:902.490000px;}
.y6e{bottom:903.210000px;}
.yf{bottom:909.870000px;}
.y108{bottom:918.150000px;}
.y143{bottom:918.690000px;}
.yb2{bottom:919.410000px;}
.y6d{bottom:921.930000px;}
.y107{bottom:925.710000px;}
.ye{bottom:928.410000px;}
.yb1{bottom:936.510000px;}
.y142{bottom:938.490000px;}
.y6c{bottom:940.470000px;}
.y106{bottom:948.570000px;}
.yd{bottom:952.350000px;}
.yb0{bottom:953.790000px;}
.y141{bottom:958.290000px;}
.y6b{bottom:959.190000px;}
.y105{bottom:967.470000px;}
.yc{bottom:970.890000px;}
.yaf{bottom:972.330000px;}
.y140{bottom:976.830000px;}
.y6a{bottom:977.730000px;}
.yb{bottom:984.210000px;}
.y104{bottom:984.930000px;}
.yae{bottom:987.270000px;}
.y103{bottom:992.490000px;}
.y69{bottom:996.270000px;}
.y13f{bottom:1003.110000px;}
.yad{bottom:1010.670000px;}
.y102{bottom:1013.910000px;}
.y68{bottom:1014.990000px;}
.ya{bottom:1016.790000px;}
.y13e{bottom:1020.390000px;}
.y101{bottom:1030.110000px;}
.yfe{bottom:1031.370000px;}
.y67{bottom:1033.530000px;}
.yac{bottom:1034.070000px;}
.yfd{bottom:1034.430000px;}
.yff{bottom:1037.130000px;}
.y13d{bottom:1037.670000px;}
.y100{bottom:1041.810000px;}
.y9{bottom:1043.070000px;}
.y66{bottom:1052.250000px;}
.yfc{bottom:1053.870000px;}
.y13c{bottom:1054.950000px;}
.yab{bottom:1057.470000px;}
.y65{bottom:1070.790000px;}
.yfb{bottom:1071.330000px;}
.y8{bottom:1071.870000px;}
.y13b{bottom:1072.230000px;}
.y62{bottom:1075.140000px;}
.yaa{bottom:1080.870000px;}
.yfa{bottom:1085.730000px;}
.yf8{bottom:1088.970000px;}
.y64{bottom:1089.330000px;}
.y13a{bottom:1089.510000px;}
.yf9{bottom:1091.670000px;}
.y6{bottom:1107.870000px;}
.y1{bottom:1123.530000px;}
.h1a{height:16.740000px;}
.h23{height:16.920000px;}
.h25{height:17.100000px;}
.h26{height:17.280000px;}
.h24{height:18.000000px;}
.h37{height:20.880000px;}
.h35{height:21.060000px;}
.h28{height:21.780000px;}
.h22{height:21.960000px;}
.h1c{height:22.320000px;}
.h21{height:22.500000px;}
.h1e{height:22.680000px;}
.h13{height:22.827656px;}
.h36{height:24.480000px;}
.h34{height:24.660000px;}
.h12{height:27.175781px;}
.h14{height:27.720000px;}
.h33{height:28.116000px;}
.ha{height:29.349844px;}
.h11{height:29.464453px;}
.hd{height:31.523906px;}
.h2f{height:35.194219px;}
.h7{height:40.132617px;}
.h18{height:40.763672px;}
.hf{height:41.159180px;}
.hb{height:42.164648px;}
.h16{height:43.506914px;}
.he{height:43.822266px;}
.h6{height:45.111797px;}
.h20{height:45.175781px;}
.h19{height:45.509766px;}
.h29{height:45.549492px;}
.h27{height:47.556000px;}
.h9{height:48.312422px;}
.h5{height:50.003437px;}
.h1b{height:50.229844px;}
.h2c{height:50.364141px;}
.h2a{height:50.514609px;}
.h2b{height:52.524141px;}
.h17{height:53.280000px;}
.h38{height:54.351562px;}
.h2d{height:58.509492px;}
.h2e{height:62.604141px;}
.h15{height:64.002656px;}
.h8{height:64.126055px;}
.h3{height:65.884219px;}
.h30{height:67.644141px;}
.h31{height:70.474219px;}
.h32{height:75.351797px;}
.h1f{height:77.040000px;}
.h2{height:84.996000px;}
.h1d{height:100.440000px;}
.h4{height:117.180000px;}
.h10{height:193.680000px;}
.hc{height:602.385000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w38{width:3.780000px;}
.w33{width:4.500000px;}
.w3b{width:37.080000px;}
.w13{width:59.220000px;}
.w9{width:66.420000px;}
.w3f{width:67.716000px;}
.w19{width:68.400000px;}
.w20{width:68.760000px;}
.we{width:73.620000px;}
.w3c{width:75.060000px;}
.w3e{width:75.096000px;}
.w28{width:77.400000px;}
.w1c{width:81.540000px;}
.w23{width:81.900000px;}
.w18{width:84.060000px;}
.w1d{width:84.096000px;}
.w1f{width:84.420000px;}
.w16{width:84.456000px;}
.w31{width:84.600000px;}
.w17{width:86.796000px;}
.wb{width:86.940000px;}
.w1e{width:87.156000px;}
.w24{width:87.480000px;}
.w12{width:88.200000px;}
.w1a{width:89.136000px;}
.w21{width:89.676000px;}
.w1b{width:90.576000px;}
.w22{width:91.116000px;}
.w30{width:91.296000px;}
.w3d{width:95.976000px;}
.wa{width:96.696000px;}
.w2e{width:102.636000px;}
.w2{width:104.076000px;}
.w2c{width:109.620000px;}
.w2d{width:110.016000px;}
.w10{width:116.136000px;}
.w11{width:119.736000px;}
.w2f{width:121.860000px;}
.w5{width:131.940000px;}
.w2b{width:137.340000px;}
.w3a{width:142.416000px;}
.wc{width:147.276000px;}
.w27{width:150.660000px;}
.w8{width:162.900000px;}
.wf{width:183.630000px;}
.w26{width:184.350000px;}
.w2a{width:199.155000px;}
.w25{width:209.910000px;}
.w29{width:214.230000px;}
.wd{width:229.710000px;}
.w14{width:241.050000px;}
.w15{width:263.415000px;}
.w32{width:358.635000px;}
.w39{width:375.195000px;}
.w35{width:433.185000px;}
.w36{width:455.835000px;}
.w37{width:510.945000px;}
.w34{width:530.385000px;}
.w6{width:593.430000px;}
.w7{width:594.150000px;}
.w3{width:622.410000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x71{left:-1.980000px;}
.x0{left:0.000000px;}
.x1e{left:7.056000px;}
.x19{left:8.100000px;}
.x37{left:9.900000px;}
.x4{left:12.780000px;}
.x35{left:13.860000px;}
.x3d{left:14.970000px;}
.x3a{left:16.380000px;}
.x17{left:18.180000px;}
.x6{left:19.260000px;}
.x36{left:21.060000px;}
.x28{left:23.040000px;}
.x82{left:24.300000px;}
.x11{left:25.560000px;}
.x61{left:27.225000px;}
.x12{left:28.980000px;}
.x10{left:31.140000px;}
.x3b{left:32.220000px;}
.x2e{left:33.300000px;}
.x41{left:34.380000px;}
.x30{left:35.820000px;}
.x16{left:37.260000px;}
.x40{left:38.880000px;}
.x15{left:40.320000px;}
.x14{left:42.480000px;}
.x60{left:44.640000px;}
.x5f{left:46.254000px;}
.x1c{left:47.340000px;}
.x2f{left:49.890000px;}
.x31{left:51.480000px;}
.x32{left:53.280000px;}
.x1d{left:56.700000px;}
.x4a{left:60.120000px;}
.x1a{left:62.145000px;}
.x13{left:65.874000px;}
.x4d{left:72.000000px;}
.x2a{left:73.665000px;}
.x49{left:76.860000px;}
.x1{left:78.300000px;}
.x56{left:81.030000px;}
.x9{left:86.435987px;}
.x4c{left:88.740000px;}
.x48{left:89.865000px;}
.x2{left:95.790000px;}
.x4b{left:101.565000px;}
.x24{left:103.005000px;}
.x1b{left:106.374000px;}
.x33{left:113.435987px;}
.x42{left:120.275987px;}
.x34{left:122.076000px;}
.x45{left:129.276000px;}
.x1f{left:131.616000px;}
.x59{left:135.756000px;}
.x5{left:141.345000px;}
.x27{left:155.190000px;}
.x3{left:182.370000px;}
.x58{left:184.755000px;}
.x20{left:198.750000px;}
.x57{left:199.845000px;}
.x53{left:209.730000px;}
.x18{left:218.370000px;}
.x29{left:229.170000px;}
.x5a{left:245.730000px;}
.x25{left:248.969987px;}
.x6e{left:259.274987px;}
.x51{left:265.214987px;}
.xc{left:270.074987px;}
.x43{left:288.794987px;}
.x21{left:296.175000px;}
.x7e{left:303.375000px;}
.x6f{left:319.214987px;}
.x63{left:330.914987px;}
.x52{left:336.134987px;}
.x4f{left:344.054987px;}
.x66{left:348.914987px;}
.x64{left:350.354987px;}
.x70{left:352.154973px;}
.x3c{left:354.315000px;}
.x5b{left:356.115000px;}
.x6a{left:359.354987px;}
.x72{left:362.775000px;}
.x73{left:370.874987px;}
.x7f{left:379.155000px;}
.x6c{left:382.034987px;}
.x22{left:384.015000px;}
.x74{left:387.434987px;}
.x44{left:397.514987px;}
.x6b{left:399.854987px;}
.x69{left:406.694987px;}
.x2b{left:413.175000px;}
.x6d{left:416.414987px;}
.x38{left:423.075000px;}
.x54{left:424.695000px;}
.x75{left:426.674973px;}
.x46{left:428.145000px;}
.x76{left:433.005000px;}
.x77{left:437.325000px;}
.x67{left:439.484987px;}
.x78{left:445.424987px;}
.x26{left:446.684987px;}
.x5c{left:459.105000px;}
.x62{left:460.184987px;}
.x79{left:461.984987px;}
.x65{left:463.964987px;}
.x68{left:472.424987px;}
.x80{left:475.845000px;}
.x7a{left:504.464973px;}
.x7b{left:510.765000px;}
.x3e{left:513.645000px;}
.x7c{left:517.965000px;}
.x7d{left:525.344987px;}
.x2c{left:529.845000px;}
.x23{left:532.005000px;}
.xe{left:541.544987px;}
.xa{left:545.504987px;}
.x81{left:551.625000px;}
.x5d{left:581.325000px;}
.x3f{left:604.950000px;}
.x47{left:613.230000px;}
.x55{left:624.570000px;}
.x83{left:627.450000px;}
.xb{left:640.409987px;}
.x2d{left:649.950000px;}
.xd{left:671.189987px;}
.x5e{left:672.990000px;}
.x39{left:686.850000px;}
.x50{left:688.829987px;}
.x84{left:703.230000px;}
.x8{left:766.049987px;}
.x4e{left:770.759987px;}
.x7{left:784.439987px;}
.xf{left:806.939987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.vd{vertical-align:-10.880000pt;}
.v3{vertical-align:-9.600000pt;}
.ve{vertical-align:-7.680000pt;}
.v6{vertical-align:-5.120000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.920000pt;}
.vf{vertical-align:3.840000pt;}
.v4{vertical-align:9.600000pt;}
.v9{vertical-align:11.520000pt;}
.v7{vertical-align:16.000000pt;}
.v1{vertical-align:18.560000pt;}
.va{vertical-align:19.840000pt;}
.vc{vertical-align:26.880000pt;}
.vb{vertical-align:31.360000pt;}
.ls10{letter-spacing:-0.688000pt;}
.lsd{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.313600pt;}
.ls29{letter-spacing:-0.299733pt;}
.ls25{letter-spacing:-0.294400pt;}
.ls2f{letter-spacing:-0.286933pt;}
.ls32{letter-spacing:-0.230933pt;}
.ls5{letter-spacing:-0.201067pt;}
.ls27{letter-spacing:-0.129067pt;}
.ls2b{letter-spacing:-0.119467pt;}
.ls9{letter-spacing:-0.096000pt;}
.ls6{letter-spacing:-0.079467pt;}
.ls8{letter-spacing:-0.064000pt;}
.ls11{letter-spacing:-0.047360pt;}
.ls28{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.015360pt;}
.ls2{letter-spacing:0.016000pt;}
.ls2e{letter-spacing:0.042240pt;}
.ls1{letter-spacing:0.064000pt;}
.ls13{letter-spacing:0.106240pt;}
.ls26{letter-spacing:0.117867pt;}
.ls2a{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.160000pt;}
.ls2d{letter-spacing:0.183467pt;}
.ls15{letter-spacing:0.208000pt;}
.ls33{letter-spacing:0.265600pt;}
.ls30{letter-spacing:0.287467pt;}
.ls24{letter-spacing:0.288000pt;}
.ls31{letter-spacing:0.294933pt;}
.ls0{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.355200pt;}
.ls7{letter-spacing:0.438933pt;}
.ls1c{letter-spacing:0.473600pt;}
.ls23{letter-spacing:0.480000pt;}
.ls2c{letter-spacing:0.520533pt;}
.ls1b{letter-spacing:1.240960pt;}
.ls19{letter-spacing:1.880960pt;}
.lsf{letter-spacing:11.200000pt;}
.ls20{letter-spacing:11.235200pt;}
.ls3{letter-spacing:11.653120pt;}
.ls21{letter-spacing:11.875200pt;}
.ls1f{letter-spacing:12.159360pt;}
.ls1e{letter-spacing:13.400960pt;}
.lsa{letter-spacing:14.672640pt;}
.ls16{letter-spacing:14.719360pt;}
.ls1d{letter-spacing:16.639360pt;}
.lse{letter-spacing:17.232640pt;}
.ls22{letter-spacing:40.912640pt;}
.lsb{letter-spacing:54.352640pt;}
.ls1a{letter-spacing:66.017920pt;}
.ls17{letter-spacing:73.057920pt;}
.ws13{word-spacing:-53.120000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws11{word-spacing:-13.232640pt;}
.ws10{word-spacing:-12.592000pt;}
.wse{word-spacing:-12.320000pt;}
.ws12{word-spacing:-12.208000pt;}
.ws20{word-spacing:-12.206933pt;}
.wsa{word-spacing:-12.016000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws26{word-spacing:-11.981333pt;}
.ws28{word-spacing:-11.973867pt;}
.ws9{word-spacing:-11.904000pt;}
.ws19{word-spacing:-11.686400pt;}
.ws1f{word-spacing:-11.566933pt;}
.ws27{word-spacing:-11.399467pt;}
.wsc{word-spacing:-10.560000pt;}
.ws6{word-spacing:-9.718933pt;}
.ws5{word-spacing:-9.280000pt;}
.ws4{word-spacing:-9.078933pt;}
.ws14{word-spacing:-8.655360pt;}
.ws2{word-spacing:-8.640000pt;}
.ws1d{word-spacing:-8.632320pt;}
.ws22{word-spacing:-8.208640pt;}
.ws17{word-spacing:-8.166400pt;}
.wsf{word-spacing:-8.000000pt;}
.ws8{word-spacing:-7.936000pt;}
.wsd{word-spacing:-7.289600pt;}
.ws25{word-spacing:-0.167040pt;}
.wsb{word-spacing:0.000000pt;}
.ws24{word-spacing:0.472960pt;}
.ws16{word-spacing:1.317227pt;}
.ws21{word-spacing:3.436800pt;}
.ws15{word-spacing:5.320960pt;}
.ws1a{word-spacing:5.672320pt;}
.ws1e{word-spacing:6.168320pt;}
.ws1b{word-spacing:7.862400pt;}
.ws23{word-spacing:11.110400pt;}
.ws1c{word-spacing:238.111147pt;}
.ws18{word-spacing:257.807787pt;}
._1a{margin-left:-337.096747pt;}
._1d{margin-left:-4.437760pt;}
._12{margin-left:-2.992000pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.115520pt;}
._6{width:2.358400pt;}
._5{width:3.312000pt;}
._9{width:4.368000pt;}
._4{width:5.435520pt;}
._3{width:6.456320pt;}
._2{width:7.584000pt;}
._8{width:9.312000pt;}
._7{width:10.608000pt;}
._c{width:12.059520pt;}
._b{width:13.512320pt;}
._a{width:14.640000pt;}
._f{width:15.564160pt;}
._2b{width:16.837120pt;}
._e{width:17.850240pt;}
._d{width:19.502080pt;}
._16{width:38.600747pt;}
._15{width:39.693867pt;}
._1b{width:43.014827pt;}
._11{width:44.064000pt;}
._1c{width:46.155307pt;}
._10{width:47.904000pt;}
._19{width:49.454720pt;}
._1f{width:50.470613pt;}
._1e{width:51.632640pt;}
._22{width:53.173120pt;}
._18{width:58.929920pt;}
._17{width:60.503680pt;}
._25{width:63.000320pt;}
._23{width:64.009600pt;}
._13{width:65.868800pt;}
._24{width:66.771840pt;}
._2a{width:68.471680pt;}
._29{width:76.120960pt;}
._28{width:77.024000pt;}
._20{width:82.760960pt;}
._27{width:88.245333pt;}
._26{width:89.347840pt;}
._21{width:100.821760pt;}
._14{width:154.832000pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fsa{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:1.440000pt;}
.y5{bottom:3.360000pt;}
.y83{bottom:3.680000pt;}
.yc2{bottom:3.840000pt;}
.yd1{bottom:4.000000pt;}
.yd4{bottom:4.160000pt;}
.y63{bottom:4.453333pt;}
.yc7{bottom:4.800000pt;}
.y4c{bottom:4.960000pt;}
.y7a{bottom:5.120000pt;}
.y7f{bottom:5.760000pt;}
.yde{bottom:5.920000pt;}
.ya6{bottom:6.240000pt;}
.y9d{bottom:6.400000pt;}
.y131{bottom:7.360000pt;}
.y12c{bottom:7.520000pt;}
.ya4{bottom:8.160000pt;}
.yc5{bottom:8.320000pt;}
.y91{bottom:8.640000pt;}
.y2{bottom:8.826667pt;}
.y55{bottom:9.120000pt;}
.ydb{bottom:9.920000pt;}
.y12e{bottom:10.560000pt;}
.y12a{bottom:10.720000pt;}
.y61{bottom:10.880000pt;}
.y7c{bottom:12.480000pt;}
.y81{bottom:13.280000pt;}
.y2a{bottom:13.600000pt;}
.y128{bottom:13.800000pt;}
.ya0{bottom:15.520000pt;}
.ydc{bottom:17.306667pt;}
.y132{bottom:18.560000pt;}
.y79{bottom:20.000000pt;}
.y4{bottom:20.186667pt;}
.y7e{bottom:20.800000pt;}
.y4b{bottom:21.600000pt;}
.y12f{bottom:21.760000pt;}
.ya2{bottom:23.040000pt;}
.y60{bottom:24.640000pt;}
.yda{bottom:24.826667pt;}
.y7b{bottom:27.360000pt;}
.y80{bottom:28.320000pt;}
.y9f{bottom:30.400000pt;}
.y9b{bottom:33.440000pt;}
.y78{bottom:34.880000pt;}
.y7d{bottom:35.680000pt;}
.y29{bottom:35.840000pt;}
.ya1{bottom:37.920000pt;}
.y4a{bottom:38.080000pt;}
.y5f{bottom:38.400000pt;}
.y3{bottom:42.586667pt;}
.y54{bottom:44.320000pt;}
.y9e{bottom:45.280000pt;}
.y9a{bottom:48.320000pt;}
.y7{bottom:50.720000pt;}
.y53{bottom:52.320000pt;}
.ya3{bottom:52.800000pt;}
.y5e{bottom:54.240000pt;}
.y49{bottom:54.600000pt;}
.y28{bottom:58.120000pt;}
.y52{bottom:61.754667pt;}
.y5d{bottom:67.994667pt;}
.y48{bottom:71.240000pt;}
.y51{bottom:72.474667pt;}
.y4d{bottom:79.072000pt;}
.y27{bottom:80.360000pt;}
.yf7{bottom:81.312000pt;}
.y50{bottom:83.194667pt;}
.ya9{bottom:83.232000pt;}
.y5c{bottom:83.834667pt;}
.y47{bottom:87.720000pt;}
.y139{bottom:92.832000pt;}
.yf6{bottom:96.672000pt;}
.y5b{bottom:97.594667pt;}
.y26{bottom:102.600000pt;}
.ya8{bottom:104.032000pt;}
.y46{bottom:104.360000pt;}
.y138{bottom:108.192000pt;}
.y5a{bottom:111.354667pt;}
.yf5{bottom:112.032000pt;}
.y45{bottom:120.840000pt;}
.y137{bottom:123.552000pt;}
.ya7{bottom:124.832000pt;}
.y25{bottom:124.840000pt;}
.y59{bottom:125.114667pt;}
.yf4{bottom:127.392000pt;}
.yca{bottom:132.032000pt;}
.y44{bottom:137.320000pt;}
.y4f{bottom:137.434667pt;}
.y136{bottom:138.746667pt;}
.y58{bottom:139.034667pt;}
.yf3{bottom:142.746667pt;}
.yc9{bottom:144.506667pt;}
.ya5{bottom:145.626667pt;}
.y4e{bottom:146.074667pt;}
.y24{bottom:147.080000pt;}
.y57{bottom:152.794667pt;}
.y43{bottom:153.960000pt;}
.y135{bottom:154.106667pt;}
.yf2{bottom:157.946667pt;}
.y99{bottom:166.426667pt;}
.y23{bottom:169.320000pt;}
.y134{bottom:169.466667pt;}
.y42{bottom:170.440000pt;}
.yf1{bottom:173.306667pt;}
.y133{bottom:185.946667pt;}
.y41{bottom:187.080000pt;}
.yf0{bottom:188.666667pt;}
.y22{bottom:191.560000pt;}
.y130{bottom:200.186667pt;}
.y40{bottom:203.560000pt;}
.yef{bottom:204.026667pt;}
.y21{bottom:213.960000pt;}
.yee{bottom:219.386667pt;}
.y3f{bottom:220.200000pt;}
.y12d{bottom:221.466667pt;}
.yed{bottom:234.746667pt;}
.y9c{bottom:235.546667pt;}
.y20{bottom:236.200000pt;}
.y3e{bottom:236.680000pt;}
.y12b{bottom:245.946667pt;}
.y1f{bottom:247.720000pt;}
.yec{bottom:249.946667pt;}
.y11{bottom:251.866667pt;}
.y3d{bottom:253.160000pt;}
.y98{bottom:260.506667pt;}
.yeb{bottom:265.306667pt;}
.y129{bottom:267.226667pt;}
.y1e{bottom:269.160000pt;}
.y3c{bottom:269.800000pt;}
.y97{bottom:275.866667pt;}
.yea{bottom:280.666667pt;}
.y3b{bottom:285.986667pt;}
.y1d{bottom:290.626667pt;}
.y96{bottom:291.066667pt;}
.y127{bottom:291.706667pt;}
.ye9{bottom:296.026667pt;}
.y3a{bottom:300.866667pt;}
.y160{bottom:302.786667pt;}
.y95{bottom:306.466667pt;}
.ye8{bottom:311.426667pt;}
.y1c{bottom:312.066667pt;}
.y39{bottom:315.746667pt;}
.y126{bottom:319.266667pt;}
.y94{bottom:319.586667pt;}
.y15f{bottom:322.786667pt;}
.ye7{bottom:324.546667pt;}
.y38{bottom:330.626667pt;}
.y1b{bottom:333.666667pt;}
.y125{bottom:339.906667pt;}
.y93{bottom:340.226667pt;}
.y15e{bottom:340.386667pt;}
.ye6{bottom:344.546667pt;}
.y37{bottom:345.506667pt;}
.y1a{bottom:355.106667pt;}
.y124{bottom:356.546667pt;}
.y15d{bottom:357.986667pt;}
.y36{bottom:360.386667pt;}
.y92{bottom:360.706667pt;}
.ye5{bottom:364.546667pt;}
.y123{bottom:373.026667pt;}
.y35{bottom:375.266667pt;}
.y15c{bottom:375.746667pt;}
.y19{bottom:376.546667pt;}
.y90{bottom:381.186667pt;}
.ye4{bottom:384.546667pt;}
.y122{bottom:389.506667pt;}
.y34{bottom:390.146667pt;}
.y15b{bottom:393.346667pt;}
.y18{bottom:397.986667pt;}
.ye3{bottom:404.546667pt;}
.y33{bottom:405.026667pt;}
.y8f{bottom:405.826667pt;}
.y121{bottom:406.146667pt;}
.y15a{bottom:410.946667pt;}
.y17{bottom:419.426667pt;}
.y32{bottom:419.906667pt;}
.y8e{bottom:422.306667pt;}
.y120{bottom:422.626667pt;}
.ye2{bottom:424.546667pt;}
.y159{bottom:428.546667pt;}
.y31{bottom:434.946667pt;}
.y8d{bottom:438.946667pt;}
.y11f{bottom:439.266667pt;}
.y16{bottom:440.866667pt;}
.ye1{bottom:444.546667pt;}
.y158{bottom:446.146667pt;}
.y30{bottom:449.826667pt;}
.y11e{bottom:454.626667pt;}
.y8c{bottom:455.426667pt;}
.y15{bottom:462.466667pt;}
.y157{bottom:463.906667pt;}
.ye0{bottom:464.546667pt;}
.y2f{bottom:464.706667pt;}
.y11d{bottom:471.106667pt;}
.y8b{bottom:472.066667pt;}
.y2e{bottom:479.586667pt;}
.y156{bottom:481.506667pt;}
.yc8{bottom:482.626667pt;}
.y14{bottom:483.906667pt;}
.ydf{bottom:484.546667pt;}
.y11c{bottom:487.586667pt;}
.y8a{bottom:488.546667pt;}
.y2d{bottom:494.466667pt;}
.yc6{bottom:496.706667pt;}
.y155{bottom:499.106667pt;}
.y11b{bottom:504.226667pt;}
.ydd{bottom:504.546667pt;}
.y89{bottom:505.026667pt;}
.y13{bottom:505.346667pt;}
.y2c{bottom:509.346667pt;}
.yc4{bottom:515.266667pt;}
.y154{bottom:516.706667pt;}
.y11a{bottom:520.706667pt;}
.y88{bottom:521.666667pt;}
.y2b{bottom:524.266667pt;}
.yd9{bottom:524.546667pt;}
.y12{bottom:526.826667pt;}
.y153{bottom:534.306667pt;}
.y119{bottom:537.373333pt;}
.yc3{bottom:537.533333pt;}
.y87{bottom:538.173333pt;}
.y152{bottom:552.093333pt;}
.y118{bottom:553.853333pt;}
.y86{bottom:554.813333pt;}
.yc1{bottom:554.973333pt;}
.y151{bottom:569.693333pt;}
.y85{bottom:570.173333pt;}
.yd8{bottom:570.333333pt;}
.yc0{bottom:572.573333pt;}
.y84{bottom:586.653333pt;}
.yd7{bottom:586.813333pt;}
.y117{bottom:586.973333pt;}
.y150{bottom:587.293333pt;}
.ybf{bottom:590.173333pt;}
.y82{bottom:599.773333pt;}
.yd6{bottom:601.053333pt;}
.y116{bottom:603.453333pt;}
.y14f{bottom:604.893333pt;}
.y77{bottom:615.293333pt;}
.yd5{bottom:618.493333pt;}
.y115{bottom:620.093333pt;}
.y14e{bottom:622.493333pt;}
.ybe{bottom:631.933333pt;}
.yd3{bottom:636.093333pt;}
.y114{bottom:636.573333pt;}
.y14d{bottom:640.253333pt;}
.ybd{bottom:648.413333pt;}
.y113{bottom:653.053333pt;}
.yd2{bottom:654.013333pt;}
.y14c{bottom:657.853333pt;}
.ybc{bottom:663.773333pt;}
.y76{bottom:667.293333pt;}
.y112{bottom:668.413333pt;}
.yd0{bottom:671.613333pt;}
.y14b{bottom:675.453333pt;}
.ybb{bottom:679.133333pt;}
.y75{bottom:683.933333pt;}
.y111{bottom:685.053333pt;}
.ycf{bottom:689.533333pt;}
.y14a{bottom:693.053333pt;}
.yba{bottom:694.493333pt;}
.y74{bottom:700.413333pt;}
.y110{bottom:701.533333pt;}
.yb9{bottom:709.853333pt;}
.yce{bottom:710.173333pt;}
.y149{bottom:710.653333pt;}
.y73{bottom:717.053333pt;}
.y10f{bottom:718.333333pt;}
.yb8{bottom:725.213333pt;}
.ycd{bottom:726.653333pt;}
.y148{bottom:728.413333pt;}
.y72{bottom:732.413333pt;}
.y10e{bottom:735.133333pt;}
.yb7{bottom:740.413333pt;}
.ycc{bottom:742.013333pt;}
.y147{bottom:746.013333pt;}
.y71{bottom:747.613333pt;}
.y10c{bottom:751.933333pt;}
.y10d{bottom:754.333333pt;}
.ycb{bottom:754.493333pt;}
.yb6{bottom:755.773333pt;}
.y70{bottom:762.973333pt;}
.y146{bottom:763.613333pt;}
.y10b{bottom:769.053333pt;}
.yb5{bottom:771.173333pt;}
.y6f{bottom:778.373333pt;}
.y145{bottom:781.253333pt;}
.y10a{bottom:785.733333pt;}
.yb4{bottom:786.533333pt;}
.y10{bottom:792.133333pt;}
.y144{bottom:798.853333pt;}
.yb3{bottom:801.893333pt;}
.y109{bottom:802.213333pt;}
.y6e{bottom:802.853333pt;}
.yf{bottom:808.773333pt;}
.y108{bottom:816.133333pt;}
.y143{bottom:816.613333pt;}
.yb2{bottom:817.253333pt;}
.y6d{bottom:819.493333pt;}
.y107{bottom:822.853333pt;}
.ye{bottom:825.253333pt;}
.yb1{bottom:832.453333pt;}
.y142{bottom:834.213333pt;}
.y6c{bottom:835.973333pt;}
.y106{bottom:843.173333pt;}
.yd{bottom:846.533333pt;}
.yb0{bottom:847.813333pt;}
.y141{bottom:851.813333pt;}
.y6b{bottom:852.613333pt;}
.y105{bottom:859.973333pt;}
.yc{bottom:863.013333pt;}
.yaf{bottom:864.293333pt;}
.y140{bottom:868.293333pt;}
.y6a{bottom:869.093333pt;}
.yb{bottom:874.853333pt;}
.y104{bottom:875.493333pt;}
.yae{bottom:877.573333pt;}
.y103{bottom:882.213333pt;}
.y69{bottom:885.573333pt;}
.y13f{bottom:891.653333pt;}
.yad{bottom:898.373333pt;}
.y102{bottom:901.253333pt;}
.y68{bottom:902.213333pt;}
.ya{bottom:903.813333pt;}
.y13e{bottom:907.013333pt;}
.y101{bottom:915.653333pt;}
.yfe{bottom:916.773333pt;}
.y67{bottom:918.693333pt;}
.yac{bottom:919.173333pt;}
.yfd{bottom:919.493333pt;}
.yff{bottom:921.893333pt;}
.y13d{bottom:922.373333pt;}
.y100{bottom:926.053333pt;}
.y9{bottom:927.173333pt;}
.y66{bottom:935.333333pt;}
.yfc{bottom:936.773333pt;}
.y13c{bottom:937.733333pt;}
.yab{bottom:939.973333pt;}
.y65{bottom:951.813333pt;}
.yfb{bottom:952.293333pt;}
.y8{bottom:952.773333pt;}
.y13b{bottom:953.093333pt;}
.y62{bottom:955.680000pt;}
.yaa{bottom:960.773333pt;}
.yfa{bottom:965.093333pt;}
.yf8{bottom:967.973333pt;}
.y64{bottom:968.293333pt;}
.y13a{bottom:968.453333pt;}
.yf9{bottom:970.373333pt;}
.y6{bottom:984.773333pt;}
.y1{bottom:998.693333pt;}
.h1a{height:14.880000pt;}
.h23{height:15.040000pt;}
.h25{height:15.200000pt;}
.h26{height:15.360000pt;}
.h24{height:16.000000pt;}
.h37{height:18.560000pt;}
.h35{height:18.720000pt;}
.h28{height:19.360000pt;}
.h22{height:19.520000pt;}
.h1c{height:19.840000pt;}
.h21{height:20.000000pt;}
.h1e{height:20.160000pt;}
.h13{height:20.291250pt;}
.h36{height:21.760000pt;}
.h34{height:21.920000pt;}
.h12{height:24.156250pt;}
.h14{height:24.640000pt;}
.h33{height:24.992000pt;}
.ha{height:26.088750pt;}
.h11{height:26.190625pt;}
.hd{height:28.021250pt;}
.h2f{height:31.283750pt;}
.h7{height:35.673437pt;}
.h18{height:36.234375pt;}
.hf{height:36.585938pt;}
.hb{height:37.479688pt;}
.h16{height:38.672812pt;}
.he{height:38.953125pt;}
.h6{height:40.099375pt;}
.h20{height:40.156250pt;}
.h19{height:40.453125pt;}
.h29{height:40.488438pt;}
.h27{height:42.272000pt;}
.h9{height:42.944375pt;}
.h5{height:44.447500pt;}
.h1b{height:44.648750pt;}
.h2c{height:44.768125pt;}
.h2a{height:44.901875pt;}
.h2b{height:46.688125pt;}
.h17{height:47.360000pt;}
.h38{height:48.312500pt;}
.h2d{height:52.008438pt;}
.h2e{height:55.648125pt;}
.h15{height:56.891250pt;}
.h8{height:57.000937pt;}
.h3{height:58.563750pt;}
.h30{height:60.128125pt;}
.h31{height:62.643750pt;}
.h32{height:66.979375pt;}
.h1f{height:68.480000pt;}
.h2{height:75.552000pt;}
.h1d{height:89.280000pt;}
.h4{height:104.160000pt;}
.h10{height:172.160000pt;}
.hc{height:535.453333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w38{width:3.360000pt;}
.w33{width:4.000000pt;}
.w3b{width:32.960000pt;}
.w13{width:52.640000pt;}
.w9{width:59.040000pt;}
.w3f{width:60.192000pt;}
.w19{width:60.800000pt;}
.w20{width:61.120000pt;}
.we{width:65.440000pt;}
.w3c{width:66.720000pt;}
.w3e{width:66.752000pt;}
.w28{width:68.800000pt;}
.w1c{width:72.480000pt;}
.w23{width:72.800000pt;}
.w18{width:74.720000pt;}
.w1d{width:74.752000pt;}
.w1f{width:75.040000pt;}
.w16{width:75.072000pt;}
.w31{width:75.200000pt;}
.w17{width:77.152000pt;}
.wb{width:77.280000pt;}
.w1e{width:77.472000pt;}
.w24{width:77.760000pt;}
.w12{width:78.400000pt;}
.w1a{width:79.232000pt;}
.w21{width:79.712000pt;}
.w1b{width:80.512000pt;}
.w22{width:80.992000pt;}
.w30{width:81.152000pt;}
.w3d{width:85.312000pt;}
.wa{width:85.952000pt;}
.w2e{width:91.232000pt;}
.w2{width:92.512000pt;}
.w2c{width:97.440000pt;}
.w2d{width:97.792000pt;}
.w10{width:103.232000pt;}
.w11{width:106.432000pt;}
.w2f{width:108.320000pt;}
.w5{width:117.280000pt;}
.w2b{width:122.080000pt;}
.w3a{width:126.592000pt;}
.wc{width:130.912000pt;}
.w27{width:133.920000pt;}
.w8{width:144.800000pt;}
.wf{width:163.226667pt;}
.w26{width:163.866667pt;}
.w2a{width:177.026667pt;}
.w25{width:186.586667pt;}
.w29{width:190.426667pt;}
.wd{width:204.186667pt;}
.w14{width:214.266667pt;}
.w15{width:234.146667pt;}
.w32{width:318.786667pt;}
.w39{width:333.506667pt;}
.w35{width:385.053333pt;}
.w36{width:405.186667pt;}
.w37{width:454.173333pt;}
.w34{width:471.453333pt;}
.w6{width:527.493333pt;}
.w7{width:528.133333pt;}
.w3{width:553.253333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x71{left:-1.760000pt;}
.x0{left:0.000000pt;}
.x1e{left:6.272000pt;}
.x19{left:7.200000pt;}
.x37{left:8.800000pt;}
.x4{left:11.360000pt;}
.x35{left:12.320000pt;}
.x3d{left:13.306667pt;}
.x3a{left:14.560000pt;}
.x17{left:16.160000pt;}
.x6{left:17.120000pt;}
.x36{left:18.720000pt;}
.x28{left:20.480000pt;}
.x82{left:21.600000pt;}
.x11{left:22.720000pt;}
.x61{left:24.200000pt;}
.x12{left:25.760000pt;}
.x10{left:27.680000pt;}
.x3b{left:28.640000pt;}
.x2e{left:29.600000pt;}
.x41{left:30.560000pt;}
.x30{left:31.840000pt;}
.x16{left:33.120000pt;}
.x40{left:34.560000pt;}
.x15{left:35.840000pt;}
.x14{left:37.760000pt;}
.x60{left:39.680000pt;}
.x5f{left:41.114667pt;}
.x1c{left:42.080000pt;}
.x2f{left:44.346667pt;}
.x31{left:45.760000pt;}
.x32{left:47.360000pt;}
.x1d{left:50.400000pt;}
.x4a{left:53.440000pt;}
.x1a{left:55.240000pt;}
.x13{left:58.554667pt;}
.x4d{left:64.000000pt;}
.x2a{left:65.480000pt;}
.x49{left:68.320000pt;}
.x1{left:69.600000pt;}
.x56{left:72.026667pt;}
.x9{left:76.831988pt;}
.x4c{left:78.880000pt;}
.x48{left:79.880000pt;}
.x2{left:85.146667pt;}
.x4b{left:90.280000pt;}
.x24{left:91.560000pt;}
.x1b{left:94.554667pt;}
.x33{left:100.831988pt;}
.x42{left:106.911988pt;}
.x34{left:108.512000pt;}
.x45{left:114.912000pt;}
.x1f{left:116.992000pt;}
.x59{left:120.672000pt;}
.x5{left:125.640000pt;}
.x27{left:137.946667pt;}
.x3{left:162.106667pt;}
.x58{left:164.226667pt;}
.x20{left:176.666667pt;}
.x57{left:177.640000pt;}
.x53{left:186.426667pt;}
.x18{left:194.106667pt;}
.x29{left:203.706667pt;}
.x5a{left:218.426667pt;}
.x25{left:221.306655pt;}
.x6e{left:230.466655pt;}
.x51{left:235.746655pt;}
.xc{left:240.066655pt;}
.x43{left:256.706655pt;}
.x21{left:263.266667pt;}
.x7e{left:269.666667pt;}
.x6f{left:283.746655pt;}
.x63{left:294.146655pt;}
.x52{left:298.786655pt;}
.x4f{left:305.826655pt;}
.x66{left:310.146655pt;}
.x64{left:311.426655pt;}
.x70{left:313.026643pt;}
.x3c{left:314.946667pt;}
.x5b{left:316.546667pt;}
.x6a{left:319.426655pt;}
.x72{left:322.466667pt;}
.x73{left:329.666655pt;}
.x7f{left:337.026667pt;}
.x6c{left:339.586655pt;}
.x22{left:341.346667pt;}
.x74{left:344.386655pt;}
.x44{left:353.346655pt;}
.x6b{left:355.426655pt;}
.x69{left:361.506655pt;}
.x2b{left:367.266667pt;}
.x6d{left:370.146655pt;}
.x38{left:376.066667pt;}
.x54{left:377.506667pt;}
.x75{left:379.266643pt;}
.x46{left:380.573333pt;}
.x76{left:384.893333pt;}
.x77{left:388.733333pt;}
.x67{left:390.653322pt;}
.x78{left:395.933322pt;}
.x26{left:397.053322pt;}
.x5c{left:408.093333pt;}
.x62{left:409.053322pt;}
.x79{left:410.653322pt;}
.x65{left:412.413322pt;}
.x68{left:419.933322pt;}
.x80{left:422.973333pt;}
.x7a{left:448.413310pt;}
.x7b{left:454.013333pt;}
.x3e{left:456.573333pt;}
.x7c{left:460.413333pt;}
.x7d{left:466.973322pt;}
.x2c{left:470.973333pt;}
.x23{left:472.893333pt;}
.xe{left:481.373322pt;}
.xa{left:484.893322pt;}
.x81{left:490.333333pt;}
.x5d{left:516.733333pt;}
.x3f{left:537.733333pt;}
.x47{left:545.093333pt;}
.x55{left:555.173333pt;}
.x83{left:557.733333pt;}
.xb{left:569.253322pt;}
.x2d{left:577.733333pt;}
.xd{left:596.613322pt;}
.x5e{left:598.213333pt;}
.x39{left:610.533333pt;}
.x50{left:612.293322pt;}
.x84{left:625.093333pt;}
.x8{left:680.933322pt;}
.x4e{left:685.119988pt;}
.x7{left:697.279988pt;}
.xf{left:717.279988pt;}
}




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