
    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_ab12df5bc7ffe44d88fed38b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_75de8185ead11caf91010764.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a0cc65cbf5d464d7986d50a2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_864df9424ef437895ca26feb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f95b233a1bce549bb4b4e378.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2f2826a849e2d00a9e9d08e9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722656;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_76295387ab76bedea8002329.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.947754;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_69cd2ab4e8db4760aa75e16e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.976074;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_48a5df2d4fe8b10397116fc0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.941406;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.m3{transform:matrix(0.192874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192874,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.242443,0.000000,-0.080806,0.236581,0,0);-ms-transform:matrix(0.242443,0.000000,-0.080806,0.236581,0,0);-webkit-transform:matrix(0.242443,0.000000,-0.080806,0.236581,0,0);}
.m6{transform:matrix(0.248534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248534,0.000000,0.000000,0.250000,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);}
.m4{transform:matrix(0.256195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256195,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:-56.896858px;}
.v3{vertical-align:-20.880000px;}
.vb{vertical-align:-11.520000px;}
.v5{vertical-align:-6.120000px;}
.v6{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:14.400000px;}
.v1{vertical-align:18.000000px;}
.v8{vertical-align:19.445198px;}
.v4{vertical-align:20.880000px;}
.v2{vertical-align:24.120000px;}
.v9{vertical-align:26.601646px;}
.ls21{letter-spacing:-1.849849px;}
.lsb{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.270000px;}
.ls12{letter-spacing:-0.206400px;}
.ls7{letter-spacing:-0.180000px;}
.ls18{letter-spacing:-0.103800px;}
.ls19{letter-spacing:-0.090000px;}
.ls29{letter-spacing:-0.053280px;}
.ls8{letter-spacing:-0.045360px;}
.ls28{letter-spacing:-0.018720px;}
.ls1a{letter-spacing:-0.008640px;}
.ls5{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.009360px;}
.lsc{letter-spacing:0.012960px;}
.ls1b{letter-spacing:0.017280px;}
.ls0{letter-spacing:0.036000px;}
.ls1{letter-spacing:0.090000px;}
.ls2{letter-spacing:0.108000px;}
.ls10{letter-spacing:0.120000px;}
.ls15{letter-spacing:0.129960px;}
.ls6{letter-spacing:0.139800px;}
.ls9{letter-spacing:0.153600px;}
.ls1c{letter-spacing:0.158400px;}
.ls16{letter-spacing:0.161400px;}
.lsf{letter-spacing:0.180000px;}
.ls2b{letter-spacing:0.300000px;}
.ls17{letter-spacing:0.309960px;}
.ls14{letter-spacing:0.501120px;}
.lse{letter-spacing:3.690000px;}
.lsd{letter-spacing:4.770000px;}
.ls2a{letter-spacing:16.406640px;}
.ls26{letter-spacing:20.610000px;}
.ls4{letter-spacing:36.926640px;}
.ls3{letter-spacing:41.148000px;}
.ls27{letter-spacing:46.286640px;}
.ls1e{letter-spacing:50.409404px;}
.ls25{letter-spacing:58.689360px;}
.ls24{letter-spacing:61.209360px;}
.ls22{letter-spacing:85.586332px;}
.ls20{letter-spacing:101.754323px;}
.ls1f{letter-spacing:110.249642px;}
.ls1d{letter-spacing:121.968987px;}
.ls11{letter-spacing:178.290000px;}
.ls23{letter-spacing:405.980123px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-60.120000px;}
.ws2{word-spacing:-27.036000px;}
.ws4{word-spacing:-16.424640px;}
.ws18{word-spacing:-15.330107px;}
.ws20{word-spacing:-15.210000px;}
.ws0{word-spacing:-15.030000px;}
.wsb{word-spacing:-14.850000px;}
.ws6{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.140000px;}
.ws10{word-spacing:-12.150000px;}
.wsf{word-spacing:-12.131400px;}
.wsc{word-spacing:-11.979360px;}
.ws1{word-spacing:-11.970000px;}
.ws1f{word-spacing:-11.951280px;}
.wse{word-spacing:-11.880000px;}
.ws14{word-spacing:-10.530000px;}
.ws3{word-spacing:-10.350000px;}
.ws12{word-spacing:-9.737280px;}
.wsa{word-spacing:-9.732960px;}
.ws5{word-spacing:-9.720000px;}
.ws11{word-spacing:-9.711360px;}
.wsd{word-spacing:-7.470000px;}
.ws9{word-spacing:0.000000px;}
.ws1d{word-spacing:3.802680px;}
.ws15{word-spacing:12.303663px;}
.ws13{word-spacing:65.044320px;}
.ws19{word-spacing:70.257943px;}
.ws17{word-spacing:85.215543px;}
.ws16{word-spacing:89.944874px;}
.ws1c{word-spacing:119.644320px;}
.ws1a{word-spacing:139.442654px;}
.ws1b{word-spacing:150.720000px;}
.ws1e{word-spacing:213.720000px;}
._2f{margin-left:-4.659569px;}
._2c{margin-left:-3.438934px;}
._2d{margin-left:-2.210009px;}
._0{margin-left:-1.202400px;}
._3{width:1.133640px;}
._5{width:2.345400px;}
._6{width:3.594720px;}
._9{width:5.470920px;}
._15{width:6.492960px;}
._d{width:7.722000px;}
._40{width:8.724240px;}
._7{width:9.739440px;}
._8{width:11.543040px;}
._13{width:12.805560px;}
._1e{width:13.887720px;}
._16{width:16.533000px;}
._10{width:17.555040px;}
._c{width:18.630000px;}
._17{width:19.659240px;}
._a{width:20.816400px;}
._b{width:22.188120px;}
._1d{width:23.867640px;}
._e{width:25.009920px;}
._22{width:26.573040px;}
._14{width:28.316520px;}
._1f{width:29.639160px;}
._11{width:31.128480px;}
._12{width:32.779080px;}
._f{width:34.508880px;}
._2e{width:35.591040px;}
._26{width:36.973800px;}
._3e{width:38.086560px;}
._21{width:39.138120px;}
._1c{width:40.821480px;}
._1b{width:41.843520px;}
._3c{width:42.865560px;}
._20{width:44.666280px;}
._23{width:45.680880px;}
._19{width:47.374560px;}
._1a{width:48.697200px;}
._3f{width:49.749840px;}
._24{width:50.801400px;}
._2b{width:52.304400px;}
._29{width:54.108000px;}
._3d{width:55.430640px;}
._18{width:56.572920px;}
._25{width:67.274280px;}
._39{width:99.507240px;}
._27{width:105.898440px;}
._3b{width:109.369920px;}
._36{width:125.010000px;}
._2{width:130.455480px;}
._32{width:135.960000px;}
._31{width:168.846809px;}
._30{width:171.360000px;}
._2a{width:172.675920px;}
._28{width:178.290000px;}
._37{width:201.090000px;}
._3a{width:204.030000px;}
._35{width:205.320000px;}
._34{width:213.720000px;}
._33{width:230.280000px;}
._1{width:341.548680px;}
._4{width:835.635120px;}
._38{width:1197.570000px;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs3{font-size:29.880000px;}
.fs14{font-size:32.040000px;}
.fsa{font-size:33.120000px;}
.fs11{font-size:35.412270px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fsd{font-size:43.790104px;}
.fs2{font-size:47.880000px;}
.fsb{font-size:48.000000px;}
.fs8{font-size:51.120000px;}
.fs13{font-size:52.519259px;}
.fs9{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fs12{font-size:61.320428px;}
.fs10{font-size:64.930380px;}
.fs4{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fse{font-size:75.747754px;}
.fsf{font-size:80.044353px;}
.fsc{font-size:99.251471px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y157{bottom:0.480000px;}
.y12b{bottom:1.950000px;}
.y89{bottom:2.610000px;}
.y6{bottom:2.700000px;}
.y36{bottom:2.970000px;}
.y102{bottom:3.071263px;}
.yb9{bottom:3.150000px;}
.y16{bottom:3.240000px;}
.yec{bottom:3.267714px;}
.yb7{bottom:4.140000px;}
.y117{bottom:4.560000px;}
.y155{bottom:4.770000px;}
.y2e{bottom:6.030000px;}
.y114{bottom:6.600000px;}
.yee{bottom:8.009030px;}
.y4{bottom:8.460000px;}
.y8c{bottom:9.450000px;}
.y129{bottom:9.720000px;}
.y101{bottom:9.721674px;}
.y8b{bottom:9.900000px;}
.ybc{bottom:9.990000px;}
.yd9{bottom:11.820000px;}
.y9{bottom:14.040000px;}
.y105{bottom:14.582974px;}
.y180{bottom:16.380000px;}
.y5{bottom:16.470000px;}
.ybf{bottom:16.920000px;}
.ybb{bottom:17.370000px;}
.y35{bottom:18.450000px;}
.y2c{bottom:19.350000px;}
.yea{bottom:20.925193px;}
.y154{bottom:21.480000px;}
.y103{bottom:21.716196px;}
.yf1{bottom:22.233248px;}
.yef{bottom:22.233254px;}
.yf2{bottom:22.233272px;}
.y113{bottom:23.070000px;}
.y104{bottom:25.561826px;}
.y17f{bottom:30.150000px;}
.yeb{bottom:31.062384px;}
.ybe{bottom:31.140000px;}
.y34{bottom:34.020000px;}
.y7{bottom:35.550000px;}
.yf0{bottom:35.803967px;}
.yed{bottom:35.803973px;}
.y2b{bottom:35.820000px;}
.y111{bottom:37.860000px;}
.y128{bottom:38.820000px;}
.y152{bottom:40.350000px;}
.yd8{bottom:43.080000px;}
.y17e{bottom:44.010000px;}
.y10a{bottom:47.550000px;}
.yd4{bottom:47.940000px;}
.y33{bottom:49.500000px;}
.y148{bottom:50.040000px;}
.y2a{bottom:51.300000px;}
.yd3{bottom:54.300000px;}
.y112{bottom:55.920000px;}
.y126{bottom:56.310000px;}
.y17d{bottom:57.780000px;}
.y3{bottom:58.140000px;}
.ycb{bottom:63.990000px;}
.y32{bottom:65.070000px;}
.y11b{bottom:66.000000px;}
.y29{bottom:66.870000px;}
.yd7{bottom:67.620000px;}
.y149{bottom:70.170000px;}
.y10b{bottom:71.220000px;}
.y153{bottom:78.330000px;}
.y31{bottom:80.550000px;}
.y28{bottom:82.380000px;}
.ycc{bottom:84.930000px;}
.y11c{bottom:88.200000px;}
.y14a{bottom:90.300000px;}
.y127{bottom:94.650000px;}
.y10c{bottom:94.890000px;}
.y30{bottom:96.120000px;}
.y27{bottom:97.860000px;}
.ycd{bottom:105.900000px;}
.y37{bottom:106.200000px;}
.y147{bottom:107.760000px;}
.y11d{bottom:110.400000px;}
.y14b{bottom:110.430000px;}
.y17b{bottom:111.420000px;}
.y3f{bottom:112.410000px;}
.y83{bottom:113.040000px;}
.y26{bottom:113.430000px;}
.y108{bottom:115.290000px;}
.y10d{bottom:118.530000px;}
.y77{bottom:124.020000px;}
.y82{bottom:126.810000px;}
.yce{bottom:126.840000px;}
.y17a{bottom:128.700000px;}
.y25{bottom:128.910000px;}
.yd5{bottom:129.390000px;}
.y3e{bottom:129.600000px;}
.y14c{bottom:130.560000px;}
.y11e{bottom:132.600000px;}
.yff{bottom:134.280000px;}
.y81{bottom:140.670000px;}
.y76{bottom:141.210000px;}
.y10e{bottom:142.200000px;}
.y145{bottom:142.650000px;}
.y179{bottom:145.890000px;}
.y107{bottom:146.070000px;}
.y3d{bottom:146.880000px;}
.ycf{bottom:147.810000px;}
.y14d{bottom:150.690000px;}
.yfe{bottom:151.560000px;}
.y80{bottom:154.440000px;}
.y11f{bottom:154.800000px;}
.y75{bottom:158.520000px;}
.y144{bottom:159.960000px;}
.y100{bottom:160.155000px;}
.yb2{bottom:161.670000px;}
.y178{bottom:163.200000px;}
.y3c{bottom:164.190000px;}
.y10f{bottom:165.870000px;}
.y17c{bottom:167.610000px;}
.y7f{bottom:168.240000px;}
.yd0{bottom:168.750000px;}
.yfd{bottom:168.780000px;}
.y14e{bottom:170.820000px;}
.y74{bottom:175.800000px;}
.y120{bottom:177.000000px;}
.y143{bottom:177.240000px;}
.yb1{bottom:178.860000px;}
.y177{bottom:180.480000px;}
.y3b{bottom:181.380000px;}
.y7e{bottom:182.100000px;}
.yfc{bottom:186.060000px;}
.yc9{bottom:189.300000px;}
.y110{bottom:189.540000px;}
.y23{bottom:189.630000px;}
.yd1{bottom:189.720000px;}
.y106{bottom:190.110000px;}
.y14f{bottom:190.950000px;}
.y11a{bottom:192.300000px;}
.y73{bottom:192.990000px;}
.y142{bottom:194.430000px;}
.y7d{bottom:195.870000px;}
.y115{bottom:196.050000px;}
.yb0{bottom:196.140000px;}
.y176{bottom:197.670000px;}
.y3a{bottom:198.660000px;}
.y121{bottom:199.200000px;}
.yfb{bottom:203.340000px;}
.ydb{bottom:204.480000px;}
.y22{bottom:204.750000px;}
.y119{bottom:206.070000px;}
.yc8{bottom:206.580000px;}
.y7c{bottom:209.640000px;}
.y72{bottom:210.270000px;}
.yd2{bottom:210.660000px;}
.y150{bottom:211.080000px;}
.y141{bottom:211.710000px;}
.yaf{bottom:213.420000px;}
.y175{bottom:214.950000px;}
.yda{bottom:215.190000px;}
.y39{bottom:215.940000px;}
.yfa{bottom:220.530000px;}
.y122{bottom:221.400000px;}
.y21{bottom:222.030000px;}
.y7b{bottom:223.410000px;}
.yc7{bottom:223.860000px;}
.y71{bottom:227.460000px;}
.y140{bottom:228.990000px;}
.yae{bottom:230.610000px;}
.y151{bottom:231.210000px;}
.y174{bottom:232.230000px;}
.y38{bottom:232.860000px;}
.yd6{bottom:233.490000px;}
.y7a{bottom:237.270000px;}
.yf9{bottom:237.810000px;}
.y20{bottom:239.310000px;}
.yc6{bottom:241.050000px;}
.y123{bottom:243.630000px;}
.y70{bottom:244.740000px;}
.y17{bottom:246.180000px;}
.yad{bottom:247.890000px;}
.y173{bottom:249.420000px;}
.y79{bottom:251.040000px;}
.yf8{bottom:255.090000px;}
.y1f{bottom:256.500000px;}
.yc5{bottom:258.330000px;}
.yac{bottom:261.930000px;}
.yca{bottom:261.990000px;}
.y6f{bottom:262.020000px;}
.y13f{bottom:263.460000px;}
.y78{bottom:264.810000px;}
.y124{bottom:265.830000px;}
.y172{bottom:266.700000px;}
.yf7{bottom:272.280000px;}
.y1e{bottom:273.780000px;}
.yc4{bottom:275.520000px;}
.y6e{bottom:279.210000px;}
.y13e{bottom:280.740000px;}
.y171{bottom:283.980000px;}
.y125{bottom:288.030000px;}
.yf6{bottom:289.560000px;}
.y1d{bottom:291.060000px;}
.yc3{bottom:292.800000px;}
.y6d{bottom:296.490000px;}
.y13d{bottom:297.930000px;}
.y170{bottom:301.170000px;}
.yf5{bottom:306.840000px;}
.y1c{bottom:308.250000px;}
.yc2{bottom:310.080000px;}
.y6c{bottom:313.770000px;}
.y13c{bottom:315.210000px;}
.y16f{bottom:318.450000px;}
.y118{bottom:320.940000px;}
.y1b{bottom:325.530000px;}
.yc1{bottom:327.270000px;}
.y6b{bottom:330.960000px;}
.y13b{bottom:332.490000px;}
.y16e{bottom:335.640000px;}
.y1a{bottom:342.840000px;}
.yc0{bottom:344.550000px;}
.y6a{bottom:348.240000px;}
.y13a{bottom:349.680000px;}
.y16d{bottom:352.920000px;}
.ybd{bottom:359.310000px;}
.y19{bottom:360.030000px;}
.y69{bottom:365.520000px;}
.y2f{bottom:365.700000px;}
.y139{bottom:366.960000px;}
.y16c{bottom:370.200000px;}
.y18{bottom:377.310000px;}
.y68{bottom:382.710000px;}
.y138{bottom:384.240000px;}
.y16b{bottom:387.390000px;}
.y67{bottom:399.990000px;}
.y137{bottom:401.430000px;}
.yba{bottom:402.330000px;}
.y16a{bottom:404.670000px;}
.y66{bottom:417.270000px;}
.y136{bottom:418.080000px;}
.y169{bottom:421.950000px;}
.yb8{bottom:431.580000px;}
.y135{bottom:431.850000px;}
.y65{bottom:434.460000px;}
.y168{bottom:439.140000px;}
.y134{bottom:443.010000px;}
.yb6{bottom:447.060000px;}
.y64{bottom:451.740000px;}
.y167{bottom:456.420000px;}
.yb5{bottom:467.220000px;}
.y63{bottom:469.020000px;}
.y166{bottom:473.700000px;}
.y2d{bottom:475.140000px;}
.yb4{bottom:480.990000px;}
.y62{bottom:486.210000px;}
.y165{bottom:490.350000px;}
.yb3{bottom:495.390000px;}
.y24{bottom:495.930000px;}
.y61{bottom:503.490000px;}
.y164{bottom:504.750000px;}
.yab{bottom:512.670000px;}
.y60{bottom:520.770000px;}
.y163{bottom:521.400000px;}
.yaa{bottom:529.860000px;}
.y162{bottom:535.800000px;}
.y5f{bottom:537.960000px;}
.ya9{bottom:547.140000px;}
.y161{bottom:549.750000px;}
.y5e{bottom:555.240000px;}
.ya8{bottom:564.330000px;}
.y5d{bottom:572.430000px;}
.ya7{bottom:581.640000px;}
.y5c{bottom:589.740000px;}
.ya6{bottom:598.920000px;}
.y5b{bottom:607.020000px;}
.y12a{bottom:610.560000px;}
.ya5{bottom:616.110000px;}
.y5a{bottom:624.210000px;}
.ya4{bottom:633.390000px;}
.y15{bottom:638.250000px;}
.y59{bottom:641.490000px;}
.ye8{bottom:642.480000px;}
.ya3{bottom:650.670000px;}
.yf4{bottom:656.070000px;}
.y58{bottom:658.770000px;}
.ye7{bottom:659.670000px;}
.y160{bottom:662.010000px;}
.ya2{bottom:667.860000px;}
.ye9{bottom:671.804959px;}
.y14{bottom:672.810000px;}
.y15f{bottom:675.780000px;}
.y57{bottom:675.960000px;}
.ye6{bottom:676.950000px;}
.ya1{bottom:685.140000px;}
.y15e{bottom:689.640000px;}
.y13{bottom:692.700000px;}
.y56{bottom:693.240000px;}
.ye5{bottom:694.230000px;}
.y133{bottom:698.730000px;}
.ya0{bottom:702.420000px;}
.y15d{bottom:703.410000px;}
.yf3{bottom:709.350000px;}
.y55{bottom:710.520000px;}
.ye4{bottom:711.420000px;}
.y15c{bottom:714.570000px;}
.y132{bottom:716.010000px;}
.y9f{bottom:719.610000px;}
.y12{bottom:726.360000px;}
.y54{bottom:727.710000px;}
.ye3{bottom:728.700000px;}
.y131{bottom:733.290000px;}
.y9e{bottom:736.890000px;}
.y11{bottom:743.640000px;}
.y53{bottom:744.990000px;}
.ye2{bottom:745.980000px;}
.y130{bottom:750.480000px;}
.y9d{bottom:751.650000px;}
.y10{bottom:755.970000px;}
.y52{bottom:762.270000px;}
.ye1{bottom:763.170000px;}
.y9c{bottom:766.230000px;}
.y12f{bottom:767.760000px;}
.yf{bottom:777.210000px;}
.y51{bottom:779.460000px;}
.ye0{bottom:780.450000px;}
.y9b{bottom:780.720000px;}
.y12e{bottom:785.040000px;}
.y9a{bottom:795.300000px;}
.y50{bottom:796.740000px;}
.ydf{bottom:797.730000px;}
.y12d{bottom:802.230000px;}
.ye{bottom:808.260000px;}
.y15b{bottom:809.430000px;}
.y99{bottom:809.880000px;}
.y4f{bottom:814.020000px;}
.yde{bottom:814.920000px;}
.y146{bottom:816.300000px;}
.y15a{bottom:823.290000px;}
.y98{bottom:824.370000px;}
.y4e{bottom:831.210000px;}
.ydd{bottom:832.200000px;}
.y159{bottom:837.060000px;}
.y97{bottom:838.950000px;}
.yd{bottom:839.310000px;}
.ydc{bottom:846.150000px;}
.y12c{bottom:846.240000px;}
.y109{bottom:846.270000px;}
.y158{bottom:848.220000px;}
.y4d{bottom:848.490000px;}
.y96{bottom:853.530000px;}
.y4c{bottom:865.770000px;}
.y95{bottom:868.020000px;}
.yc{bottom:870.360000px;}
.y94{bottom:882.600000px;}
.y4b{bottom:882.960000px;}
.y93{bottom:897.180000px;}
.y4a{bottom:900.240000px;}
.yb{bottom:901.410000px;}
.y92{bottom:911.670000px;}
.y49{bottom:917.430000px;}
.y91{bottom:926.250000px;}
.ya{bottom:930.210000px;}
.y48{bottom:934.710000px;}
.y90{bottom:940.740000px;}
.y8{bottom:945.600000px;}
.y47{bottom:951.990000px;}
.y8f{bottom:955.320000px;}
.y46{bottom:969.180000px;}
.y8e{bottom:969.900000px;}
.y8d{bottom:984.390000px;}
.y45{bottom:986.460000px;}
.y8a{bottom:999.000000px;}
.y44{bottom:1003.770000px;}
.y88{bottom:1013.580000px;}
.y43{bottom:1020.960000px;}
.y87{bottom:1031.310000px;}
.y42{bottom:1038.240000px;}
.y86{bottom:1047.960000px;}
.y156{bottom:1053.630000px;}
.y41{bottom:1055.520000px;}
.y116{bottom:1060.020000px;}
.y85{bottom:1061.820000px;}
.y40{bottom:1072.710000px;}
.y84{bottom:1075.590000px;}
.y2{bottom:1102.770000px;}
.y1{bottom:1119.960000px;}
.h1d{height:13.770000px;}
.h20{height:13.860000px;}
.h47{height:13.860150px;}
.h1f{height:13.890000px;}
.h44{height:13.950000px;}
.h22{height:14.760000px;}
.h41{height:16.020000px;}
.h21{height:16.740000px;}
.hf{height:17.190000px;}
.h3e{height:18.000000px;}
.h15{height:20.070000px;}
.h26{height:23.368359px;}
.h36{height:26.991481px;}
.hc{height:27.147656px;}
.h3{height:27.630000px;}
.h1e{height:28.350000px;}
.h23{height:28.530000px;}
.h2a{height:29.409961px;}
.h3d{height:29.718457px;}
.h2d{height:33.377125px;}
.h5{height:33.431836px;}
.h1b{height:33.782520px;}
.h28{height:34.600764px;}
.h40{height:34.600768px;}
.h43{height:34.600774px;}
.h29{height:34.600781px;}
.h27{height:34.687500px;}
.h45{height:34.857949px;}
.h11{height:35.694141px;}
.h3c{height:37.006348px;}
.h3a{height:37.619997px;}
.h17{height:37.705078px;}
.h19{height:38.100586px;}
.h1c{height:38.863477px;}
.h6{height:39.082324px;}
.h33{height:39.975230px;}
.h13{height:39.999023px;}
.h4{height:41.978320px;}
.h24{height:42.300000px;}
.he{height:42.418652px;}
.h39{height:42.576977px;}
.h35{height:42.816510px;}
.h46{height:43.769004px;}
.h14{height:44.532246px;}
.h2{height:45.295488px;}
.h8{height:46.000195px;}
.h31{height:46.510189px;}
.h37{height:46.738862px;}
.h1a{height:48.027656px;}
.h9{height:49.635176px;}
.h1{height:50.800781px;}
.h38{height:51.189658px;}
.h30{height:52.594387px;}
.h2b{height:53.625111px;}
.hb{height:53.838457px;}
.h2f{height:55.577671px;}
.h2e{height:57.735470px;}
.h34{height:62.261708px;}
.h32{height:65.526152px;}
.h2c{height:68.913863px;}
.h48{height:68.940000px;}
.hd{height:75.410156px;}
.ha{height:76.201172px;}
.h16{height:108.720000px;}
.h18{height:118.800000px;}
.h12{height:141.510000px;}
.h7{height:153.930000px;}
.h3b{height:240.480000px;}
.h25{height:247.500000px;}
.h42{height:270.450000px;}
.h3f{height:318.330000px;}
.h10{height:391.260000px;}
.h0{height:1188.000000px;}
.w2{width:39.060000px;}
.wd{width:42.570000px;}
.w10{width:49.320000px;}
.we{width:49.590000px;}
.wf{width:49.620000px;}
.wa{width:109.740000px;}
.wc{width:156.000000px;}
.w12{width:183.525991px;}
.w9{width:187.290000px;}
.w8{width:201.810000px;}
.w7{width:216.480000px;}
.w6{width:220.350000px;}
.w13{width:283.349734px;}
.w1a{width:339.420000px;}
.w11{width:382.140000px;}
.w5{width:588.480000px;}
.w14{width:590.490000px;}
.w15{width:590.580000px;}
.w16{width:596.160000px;}
.w17{width:596.250000px;}
.wb{width:717.570000px;}
.w18{width:741.690000px;}
.w19{width:741.780000px;}
.w3{width:787.950000px;}
.w4{width:821.790000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x46{left:1.925746px;}
.x13{left:6.660000px;}
.x3{left:8.640000px;}
.x2c{left:10.650000px;}
.x33{left:12.540000px;}
.x12{left:20.160000px;}
.x22{left:23.490000px;}
.x35{left:26.580000px;}
.x16{left:27.630000px;}
.x62{left:28.830000px;}
.x58{left:31.380000px;}
.x14{left:34.110000px;}
.x15{left:36.090000px;}
.x25{left:38.250000px;}
.x6{left:45.540000px;}
.x1f{left:48.330000px;}
.x2{left:53.999986px;}
.x37{left:56.520000px;}
.x18{left:59.669986px;}
.x1{left:60.749986px;}
.x56{left:61.950000px;}
.x32{left:63.660000px;}
.x17{left:65.429986px;}
.x38{left:66.630000px;}
.x1d{left:68.880000px;}
.xa{left:70.469986px;}
.x34{left:73.020000px;}
.x57{left:74.130000px;}
.x9{left:77.129986px;}
.x24{left:80.100000px;}
.x43{left:82.551543px;}
.x70{left:85.140000px;}
.x23{left:87.390000px;}
.x5f{left:90.990000px;}
.x50{left:93.780000px;}
.x4{left:100.890000px;}
.x61{left:101.970000px;}
.x45{left:106.454674px;}
.x5{left:107.999986px;}
.x41{left:120.561484px;}
.x42{left:123.157075px;}
.x4e{left:130.181089px;}
.x3f{left:132.743535px;}
.x40{left:133.831229px;}
.xf{left:136.619986px;}
.x5a{left:142.080000px;}
.x4c{left:143.381055px;}
.x44{left:147.938583px;}
.x4f{left:153.546663px;}
.x49{left:162.128684px;}
.x51{left:163.170000px;}
.x4b{left:166.174494px;}
.x4a{left:175.471684px;}
.x5b{left:176.790000px;}
.x3b{left:184.140000px;}
.x4d{left:187.057413px;}
.x52{left:210.030000px;}
.x53{left:215.730000px;}
.x69{left:217.199986px;}
.x3c{left:230.520000px;}
.xb{left:240.689986px;}
.xe{left:244.379986px;}
.x1b{left:251.309986px;}
.x59{left:260.820000px;}
.x64{left:275.730000px;}
.xd{left:276.779986px;}
.x1c{left:300.629986px;}
.x36{left:304.200000px;}
.x27{left:307.920000px;}
.x26{left:310.170000px;}
.x1e{left:317.460000px;}
.x55{left:335.910000px;}
.x54{left:337.080000px;}
.x39{left:343.140000px;}
.x63{left:355.920000px;}
.x3a{left:357.000000px;}
.x5e{left:380.909986px;}
.x66{left:383.699986px;}
.x6c{left:389.549986px;}
.x67{left:407.459986px;}
.x6b{left:427.709986px;}
.x28{left:441.749986px;}
.x8{left:459.029986px;}
.x1a{left:461.819986px;}
.xc{left:464.159986px;}
.x10{left:465.239986px;}
.x2b{left:473.700000px;}
.x68{left:475.319986px;}
.x19{left:478.229986px;}
.x6d{left:479.759986px;}
.x6e{left:506.759986px;}
.x6f{left:511.530000px;}
.x6a{left:517.199986px;}
.x20{left:519.990000px;}
.x48{left:529.395000px;}
.x60{left:555.630000px;}
.x3e{left:579.344959px;}
.x29{left:584.339986px;}
.x2d{left:630.420000px;}
.x11{left:642.210000px;}
.x2a{left:671.099986px;}
.x2e{left:673.710000px;}
.x21{left:708.090000px;}
.x2f{left:724.020000px;}
.x65{left:728.519986px;}
.x3d{left:757.049986px;}
.x47{left:762.899986px;}
.x30{left:774.330000px;}
.x7{left:812.430000px;}
.x5d{left:823.319986px;}
.x31{left:824.760000px;}
.x5c{left:832.679986px;}
@media print{
.v7{vertical-align:-50.574984pt;}
.v3{vertical-align:-18.560000pt;}
.vb{vertical-align:-10.240000pt;}
.v5{vertical-align:-5.440000pt;}
.v6{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:12.800000pt;}
.v1{vertical-align:16.000000pt;}
.v8{vertical-align:17.284621pt;}
.v4{vertical-align:18.560000pt;}
.v2{vertical-align:21.440000pt;}
.v9{vertical-align:23.645908pt;}
.ls21{letter-spacing:-1.644310pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.240000pt;}
.ls12{letter-spacing:-0.183467pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls18{letter-spacing:-0.092267pt;}
.ls19{letter-spacing:-0.080000pt;}
.ls29{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:-0.040320pt;}
.ls28{letter-spacing:-0.016640pt;}
.ls1a{letter-spacing:-0.007680pt;}
.ls5{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.008320pt;}
.lsc{letter-spacing:0.011520pt;}
.ls1b{letter-spacing:0.015360pt;}
.ls0{letter-spacing:0.032000pt;}
.ls1{letter-spacing:0.080000pt;}
.ls2{letter-spacing:0.096000pt;}
.ls10{letter-spacing:0.106667pt;}
.ls15{letter-spacing:0.115520pt;}
.ls6{letter-spacing:0.124267pt;}
.ls9{letter-spacing:0.136533pt;}
.ls1c{letter-spacing:0.140800pt;}
.ls16{letter-spacing:0.143467pt;}
.lsf{letter-spacing:0.160000pt;}
.ls2b{letter-spacing:0.266667pt;}
.ls17{letter-spacing:0.275520pt;}
.ls14{letter-spacing:0.445440pt;}
.lse{letter-spacing:3.280000pt;}
.lsd{letter-spacing:4.240000pt;}
.ls2a{letter-spacing:14.583680pt;}
.ls26{letter-spacing:18.320000pt;}
.ls4{letter-spacing:32.823680pt;}
.ls3{letter-spacing:36.576000pt;}
.ls27{letter-spacing:41.143680pt;}
.ls1e{letter-spacing:44.808359pt;}
.ls25{letter-spacing:52.168320pt;}
.ls24{letter-spacing:54.408320pt;}
.ls22{letter-spacing:76.076740pt;}
.ls20{letter-spacing:90.448287pt;}
.ls1f{letter-spacing:97.999682pt;}
.ls1d{letter-spacing:108.416878pt;}
.ls11{letter-spacing:158.480000pt;}
.ls23{letter-spacing:360.871221pt;}
.ws8{word-spacing:-53.440000pt;}
.ws2{word-spacing:-24.032000pt;}
.ws4{word-spacing:-14.599680pt;}
.ws18{word-spacing:-13.626762pt;}
.ws20{word-spacing:-13.520000pt;}
.ws0{word-spacing:-13.360000pt;}
.wsb{word-spacing:-13.200000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.680000pt;}
.ws10{word-spacing:-10.800000pt;}
.wsf{word-spacing:-10.783467pt;}
.wsc{word-spacing:-10.648320pt;}
.ws1{word-spacing:-10.640000pt;}
.ws1f{word-spacing:-10.623360pt;}
.wse{word-spacing:-10.560000pt;}
.ws14{word-spacing:-9.360000pt;}
.ws3{word-spacing:-9.200000pt;}
.ws12{word-spacing:-8.655360pt;}
.wsa{word-spacing:-8.651520pt;}
.ws5{word-spacing:-8.640000pt;}
.ws11{word-spacing:-8.632320pt;}
.wsd{word-spacing:-6.640000pt;}
.ws9{word-spacing:0.000000pt;}
.ws1d{word-spacing:3.380160pt;}
.ws15{word-spacing:10.936590pt;}
.ws13{word-spacing:57.817173pt;}
.ws19{word-spacing:62.451505pt;}
.ws17{word-spacing:75.747149pt;}
.ws16{word-spacing:79.950999pt;}
.ws1c{word-spacing:106.350507pt;}
.ws1a{word-spacing:123.949026pt;}
.ws1b{word-spacing:133.973333pt;}
.ws1e{word-spacing:189.973333pt;}
._2f{margin-left:-4.141839pt;}
._2c{margin-left:-3.056830pt;}
._2d{margin-left:-1.964452pt;}
._0{margin-left:-1.068800pt;}
._3{width:1.007680pt;}
._5{width:2.084800pt;}
._6{width:3.195307pt;}
._9{width:4.863040pt;}
._15{width:5.771520pt;}
._d{width:6.864000pt;}
._40{width:7.754880pt;}
._7{width:8.657280pt;}
._8{width:10.260480pt;}
._13{width:11.382720pt;}
._1e{width:12.344640pt;}
._16{width:14.696000pt;}
._10{width:15.604480pt;}
._c{width:16.560000pt;}
._17{width:17.474880pt;}
._a{width:18.503467pt;}
._b{width:19.722773pt;}
._1d{width:21.215680pt;}
._e{width:22.231040pt;}
._22{width:23.620480pt;}
._14{width:25.170240pt;}
._1f{width:26.345920pt;}
._11{width:27.669760pt;}
._12{width:29.136960pt;}
._f{width:30.674560pt;}
._2e{width:31.636480pt;}
._26{width:32.865600pt;}
._3e{width:33.854720pt;}
._21{width:34.789440pt;}
._1c{width:36.285760pt;}
._1b{width:37.194240pt;}
._3c{width:38.102720pt;}
._20{width:39.703360pt;}
._23{width:40.605227pt;}
._19{width:42.110720pt;}
._1a{width:43.286400pt;}
._3f{width:44.222080pt;}
._24{width:45.156800pt;}
._2b{width:46.492800pt;}
._29{width:48.096000pt;}
._3d{width:49.271680pt;}
._18{width:50.287040pt;}
._25{width:59.799360pt;}
._39{width:88.450880pt;}
._27{width:94.131947pt;}
._3b{width:97.217707pt;}
._36{width:111.120000pt;}
._2{width:115.960427pt;}
._32{width:120.853333pt;}
._31{width:150.086052pt;}
._30{width:152.320000pt;}
._2a{width:153.489707pt;}
._28{width:158.480000pt;}
._37{width:178.746667pt;}
._3a{width:181.360000pt;}
._35{width:182.506667pt;}
._34{width:189.973333pt;}
._33{width:204.693333pt;}
._1{width:303.598827pt;}
._4{width:742.786773pt;}
._38{width:1064.506667pt;}
.fs3{font-size:26.560000pt;}
.fs14{font-size:28.480000pt;}
.fsa{font-size:29.440000pt;}
.fs11{font-size:31.477573pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fsd{font-size:38.924537pt;}
.fs2{font-size:42.560000pt;}
.fsb{font-size:42.666667pt;}
.fs8{font-size:45.440000pt;}
.fs13{font-size:46.683786pt;}
.fs9{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fs12{font-size:54.507047pt;}
.fs10{font-size:57.715893pt;}
.fs4{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fse{font-size:67.331336pt;}
.fsf{font-size:71.150536pt;}
.fsc{font-size:88.223530pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y157{bottom:0.426667pt;}
.y12b{bottom:1.733333pt;}
.y89{bottom:2.320000pt;}
.y6{bottom:2.400000pt;}
.y36{bottom:2.640000pt;}
.y102{bottom:2.730011pt;}
.yb9{bottom:2.800000pt;}
.y16{bottom:2.880000pt;}
.yec{bottom:2.904635pt;}
.yb7{bottom:3.680000pt;}
.y117{bottom:4.053333pt;}
.y155{bottom:4.240000pt;}
.y2e{bottom:5.360000pt;}
.y114{bottom:5.866667pt;}
.yee{bottom:7.119138pt;}
.y4{bottom:7.520000pt;}
.y8c{bottom:8.400000pt;}
.y129{bottom:8.640000pt;}
.y101{bottom:8.641488pt;}
.y8b{bottom:8.800000pt;}
.ybc{bottom:8.880000pt;}
.yd9{bottom:10.506667pt;}
.y9{bottom:12.480000pt;}
.y105{bottom:12.962643pt;}
.y180{bottom:14.560000pt;}
.y5{bottom:14.640000pt;}
.ybf{bottom:15.040000pt;}
.ybb{bottom:15.440000pt;}
.y35{bottom:16.400000pt;}
.y2c{bottom:17.200000pt;}
.yea{bottom:18.600172pt;}
.y154{bottom:19.093333pt;}
.y103{bottom:19.303285pt;}
.yf1{bottom:19.762887pt;}
.yef{bottom:19.762892pt;}
.yf2{bottom:19.762908pt;}
.y113{bottom:20.506667pt;}
.y104{bottom:22.721623pt;}
.y17f{bottom:26.800000pt;}
.yeb{bottom:27.611008pt;}
.ybe{bottom:27.680000pt;}
.y34{bottom:30.240000pt;}
.y7{bottom:31.600000pt;}
.yf0{bottom:31.825749pt;}
.yed{bottom:31.825754pt;}
.y2b{bottom:31.840000pt;}
.y111{bottom:33.653333pt;}
.y128{bottom:34.506667pt;}
.y152{bottom:35.866667pt;}
.yd8{bottom:38.293333pt;}
.y17e{bottom:39.120000pt;}
.y10a{bottom:42.266667pt;}
.yd4{bottom:42.613333pt;}
.y33{bottom:44.000000pt;}
.y148{bottom:44.480000pt;}
.y2a{bottom:45.600000pt;}
.yd3{bottom:48.266667pt;}
.y112{bottom:49.706667pt;}
.y126{bottom:50.053333pt;}
.y17d{bottom:51.360000pt;}
.y3{bottom:51.680000pt;}
.ycb{bottom:56.880000pt;}
.y32{bottom:57.840000pt;}
.y11b{bottom:58.666667pt;}
.y29{bottom:59.440000pt;}
.yd7{bottom:60.106667pt;}
.y149{bottom:62.373333pt;}
.y10b{bottom:63.306667pt;}
.y153{bottom:69.626667pt;}
.y31{bottom:71.600000pt;}
.y28{bottom:73.226667pt;}
.ycc{bottom:75.493333pt;}
.y11c{bottom:78.400000pt;}
.y14a{bottom:80.266667pt;}
.y127{bottom:84.133333pt;}
.y10c{bottom:84.346667pt;}
.y30{bottom:85.440000pt;}
.y27{bottom:86.986667pt;}
.ycd{bottom:94.133333pt;}
.y37{bottom:94.400000pt;}
.y147{bottom:95.786667pt;}
.y11d{bottom:98.133333pt;}
.y14b{bottom:98.160000pt;}
.y17b{bottom:99.040000pt;}
.y3f{bottom:99.920000pt;}
.y83{bottom:100.480000pt;}
.y26{bottom:100.826667pt;}
.y108{bottom:102.480000pt;}
.y10d{bottom:105.360000pt;}
.y77{bottom:110.240000pt;}
.y82{bottom:112.720000pt;}
.yce{bottom:112.746667pt;}
.y17a{bottom:114.400000pt;}
.y25{bottom:114.586667pt;}
.yd5{bottom:115.013333pt;}
.y3e{bottom:115.200000pt;}
.y14c{bottom:116.053333pt;}
.y11e{bottom:117.866667pt;}
.yff{bottom:119.360000pt;}
.y81{bottom:125.040000pt;}
.y76{bottom:125.520000pt;}
.y10e{bottom:126.400000pt;}
.y145{bottom:126.800000pt;}
.y179{bottom:129.680000pt;}
.y107{bottom:129.840000pt;}
.y3d{bottom:130.560000pt;}
.ycf{bottom:131.386667pt;}
.y14d{bottom:133.946667pt;}
.yfe{bottom:134.720000pt;}
.y80{bottom:137.280000pt;}
.y11f{bottom:137.600000pt;}
.y75{bottom:140.906667pt;}
.y144{bottom:142.186667pt;}
.y100{bottom:142.360000pt;}
.yb2{bottom:143.706667pt;}
.y178{bottom:145.066667pt;}
.y3c{bottom:145.946667pt;}
.y10f{bottom:147.440000pt;}
.y17c{bottom:148.986667pt;}
.y7f{bottom:149.546667pt;}
.yd0{bottom:150.000000pt;}
.yfd{bottom:150.026667pt;}
.y14e{bottom:151.840000pt;}
.y74{bottom:156.266667pt;}
.y120{bottom:157.333333pt;}
.y143{bottom:157.546667pt;}
.yb1{bottom:158.986667pt;}
.y177{bottom:160.426667pt;}
.y3b{bottom:161.226667pt;}
.y7e{bottom:161.866667pt;}
.yfc{bottom:165.386667pt;}
.yc9{bottom:168.266667pt;}
.y110{bottom:168.480000pt;}
.y23{bottom:168.560000pt;}
.yd1{bottom:168.640000pt;}
.y106{bottom:168.986667pt;}
.y14f{bottom:169.733333pt;}
.y11a{bottom:170.933333pt;}
.y73{bottom:171.546667pt;}
.y142{bottom:172.826667pt;}
.y7d{bottom:174.106667pt;}
.y115{bottom:174.266667pt;}
.yb0{bottom:174.346667pt;}
.y176{bottom:175.706667pt;}
.y3a{bottom:176.586667pt;}
.y121{bottom:177.066667pt;}
.yfb{bottom:180.746667pt;}
.ydb{bottom:181.760000pt;}
.y22{bottom:182.000000pt;}
.y119{bottom:183.173333pt;}
.yc8{bottom:183.626667pt;}
.y7c{bottom:186.346667pt;}
.y72{bottom:186.906667pt;}
.yd2{bottom:187.253333pt;}
.y150{bottom:187.626667pt;}
.y141{bottom:188.186667pt;}
.yaf{bottom:189.706667pt;}
.y175{bottom:191.066667pt;}
.yda{bottom:191.280000pt;}
.y39{bottom:191.946667pt;}
.yfa{bottom:196.026667pt;}
.y122{bottom:196.800000pt;}
.y21{bottom:197.360000pt;}
.y7b{bottom:198.586667pt;}
.yc7{bottom:198.986667pt;}
.y71{bottom:202.186667pt;}
.y140{bottom:203.546667pt;}
.yae{bottom:204.986667pt;}
.y151{bottom:205.520000pt;}
.y174{bottom:206.426667pt;}
.y38{bottom:206.986667pt;}
.yd6{bottom:207.546667pt;}
.y7a{bottom:210.906667pt;}
.yf9{bottom:211.386667pt;}
.y20{bottom:212.720000pt;}
.yc6{bottom:214.266667pt;}
.y123{bottom:216.560000pt;}
.y70{bottom:217.546667pt;}
.y17{bottom:218.826667pt;}
.yad{bottom:220.346667pt;}
.y173{bottom:221.706667pt;}
.y79{bottom:223.146667pt;}
.yf8{bottom:226.746667pt;}
.y1f{bottom:228.000000pt;}
.yc5{bottom:229.626667pt;}
.yac{bottom:232.826667pt;}
.yca{bottom:232.880000pt;}
.y6f{bottom:232.906667pt;}
.y13f{bottom:234.186667pt;}
.y78{bottom:235.386667pt;}
.y124{bottom:236.293333pt;}
.y172{bottom:237.066667pt;}
.yf7{bottom:242.026667pt;}
.y1e{bottom:243.360000pt;}
.yc4{bottom:244.906667pt;}
.y6e{bottom:248.186667pt;}
.y13e{bottom:249.546667pt;}
.y171{bottom:252.426667pt;}
.y125{bottom:256.026667pt;}
.yf6{bottom:257.386667pt;}
.y1d{bottom:258.720000pt;}
.yc3{bottom:260.266667pt;}
.y6d{bottom:263.546667pt;}
.y13d{bottom:264.826667pt;}
.y170{bottom:267.706667pt;}
.yf5{bottom:272.746667pt;}
.y1c{bottom:274.000000pt;}
.yc2{bottom:275.626667pt;}
.y6c{bottom:278.906667pt;}
.y13c{bottom:280.186667pt;}
.y16f{bottom:283.066667pt;}
.y118{bottom:285.280000pt;}
.y1b{bottom:289.360000pt;}
.yc1{bottom:290.906667pt;}
.y6b{bottom:294.186667pt;}
.y13b{bottom:295.546667pt;}
.y16e{bottom:298.346667pt;}
.y1a{bottom:304.746667pt;}
.yc0{bottom:306.266667pt;}
.y6a{bottom:309.546667pt;}
.y13a{bottom:310.826667pt;}
.y16d{bottom:313.706667pt;}
.ybd{bottom:319.386667pt;}
.y19{bottom:320.026667pt;}
.y69{bottom:324.906667pt;}
.y2f{bottom:325.066667pt;}
.y139{bottom:326.186667pt;}
.y16c{bottom:329.066667pt;}
.y18{bottom:335.386667pt;}
.y68{bottom:340.186667pt;}
.y138{bottom:341.546667pt;}
.y16b{bottom:344.346667pt;}
.y67{bottom:355.546667pt;}
.y137{bottom:356.826667pt;}
.yba{bottom:357.626667pt;}
.y16a{bottom:359.706667pt;}
.y66{bottom:370.906667pt;}
.y136{bottom:371.626667pt;}
.y169{bottom:375.066667pt;}
.yb8{bottom:383.626667pt;}
.y135{bottom:383.866667pt;}
.y65{bottom:386.186667pt;}
.y168{bottom:390.346667pt;}
.y134{bottom:393.786667pt;}
.yb6{bottom:397.386667pt;}
.y64{bottom:401.546667pt;}
.y167{bottom:405.706667pt;}
.yb5{bottom:415.306667pt;}
.y63{bottom:416.906667pt;}
.y166{bottom:421.066667pt;}
.y2d{bottom:422.346667pt;}
.yb4{bottom:427.546667pt;}
.y62{bottom:432.186667pt;}
.y165{bottom:435.866667pt;}
.yb3{bottom:440.346667pt;}
.y24{bottom:440.826667pt;}
.y61{bottom:447.546667pt;}
.y164{bottom:448.666667pt;}
.yab{bottom:455.706667pt;}
.y60{bottom:462.906667pt;}
.y163{bottom:463.466667pt;}
.yaa{bottom:470.986667pt;}
.y162{bottom:476.266667pt;}
.y5f{bottom:478.186667pt;}
.ya9{bottom:486.346667pt;}
.y161{bottom:488.666667pt;}
.y5e{bottom:493.546667pt;}
.ya8{bottom:501.626667pt;}
.y5d{bottom:508.826667pt;}
.ya7{bottom:517.013333pt;}
.y5c{bottom:524.213333pt;}
.ya6{bottom:532.373333pt;}
.y5b{bottom:539.573333pt;}
.y12a{bottom:542.720000pt;}
.ya5{bottom:547.653333pt;}
.y5a{bottom:554.853333pt;}
.ya4{bottom:563.013333pt;}
.y15{bottom:567.333333pt;}
.y59{bottom:570.213333pt;}
.ye8{bottom:571.093333pt;}
.ya3{bottom:578.373333pt;}
.yf4{bottom:583.173333pt;}
.y58{bottom:585.573333pt;}
.ye7{bottom:586.373333pt;}
.y160{bottom:588.453333pt;}
.ya2{bottom:593.653333pt;}
.ye9{bottom:597.159964pt;}
.y14{bottom:598.053333pt;}
.y15f{bottom:600.693333pt;}
.y57{bottom:600.853333pt;}
.ye6{bottom:601.733333pt;}
.ya1{bottom:609.013333pt;}
.y15e{bottom:613.013333pt;}
.y13{bottom:615.733333pt;}
.y56{bottom:616.213333pt;}
.ye5{bottom:617.093333pt;}
.y133{bottom:621.093333pt;}
.ya0{bottom:624.373333pt;}
.y15d{bottom:625.253333pt;}
.yf3{bottom:630.533333pt;}
.y55{bottom:631.573333pt;}
.ye4{bottom:632.373333pt;}
.y15c{bottom:635.173333pt;}
.y132{bottom:636.453333pt;}
.y9f{bottom:639.653333pt;}
.y12{bottom:645.653333pt;}
.y54{bottom:646.853333pt;}
.ye3{bottom:647.733333pt;}
.y131{bottom:651.813333pt;}
.y9e{bottom:655.013333pt;}
.y11{bottom:661.013333pt;}
.y53{bottom:662.213333pt;}
.ye2{bottom:663.093333pt;}
.y130{bottom:667.093333pt;}
.y9d{bottom:668.133333pt;}
.y10{bottom:671.973333pt;}
.y52{bottom:677.573333pt;}
.ye1{bottom:678.373333pt;}
.y9c{bottom:681.093333pt;}
.y12f{bottom:682.453333pt;}
.yf{bottom:690.853333pt;}
.y51{bottom:692.853333pt;}
.ye0{bottom:693.733333pt;}
.y9b{bottom:693.973333pt;}
.y12e{bottom:697.813333pt;}
.y9a{bottom:706.933333pt;}
.y50{bottom:708.213333pt;}
.ydf{bottom:709.093333pt;}
.y12d{bottom:713.093333pt;}
.ye{bottom:718.453333pt;}
.y15b{bottom:719.493333pt;}
.y99{bottom:719.893333pt;}
.y4f{bottom:723.573333pt;}
.yde{bottom:724.373333pt;}
.y146{bottom:725.600000pt;}
.y15a{bottom:731.813333pt;}
.y98{bottom:732.773333pt;}
.y4e{bottom:738.853333pt;}
.ydd{bottom:739.733333pt;}
.y159{bottom:744.053333pt;}
.y97{bottom:745.733333pt;}
.yd{bottom:746.053333pt;}
.ydc{bottom:752.133333pt;}
.y12c{bottom:752.213333pt;}
.y109{bottom:752.240000pt;}
.y158{bottom:753.973333pt;}
.y4d{bottom:754.213333pt;}
.y96{bottom:758.693333pt;}
.y4c{bottom:769.573333pt;}
.y95{bottom:771.573333pt;}
.yc{bottom:773.653333pt;}
.y94{bottom:784.533333pt;}
.y4b{bottom:784.853333pt;}
.y93{bottom:797.493333pt;}
.y4a{bottom:800.213333pt;}
.yb{bottom:801.253333pt;}
.y92{bottom:810.373333pt;}
.y49{bottom:815.493333pt;}
.y91{bottom:823.333333pt;}
.ya{bottom:826.853333pt;}
.y48{bottom:830.853333pt;}
.y90{bottom:836.213333pt;}
.y8{bottom:840.533333pt;}
.y47{bottom:846.213333pt;}
.y8f{bottom:849.173333pt;}
.y46{bottom:861.493333pt;}
.y8e{bottom:862.133333pt;}
.y8d{bottom:875.013333pt;}
.y45{bottom:876.853333pt;}
.y8a{bottom:888.000000pt;}
.y44{bottom:892.240000pt;}
.y88{bottom:900.960000pt;}
.y43{bottom:907.520000pt;}
.y87{bottom:916.720000pt;}
.y42{bottom:922.880000pt;}
.y86{bottom:931.520000pt;}
.y156{bottom:936.560000pt;}
.y41{bottom:938.240000pt;}
.y116{bottom:942.240000pt;}
.y85{bottom:943.840000pt;}
.y40{bottom:953.520000pt;}
.y84{bottom:956.080000pt;}
.y2{bottom:980.240000pt;}
.y1{bottom:995.520000pt;}
.h1d{height:12.240000pt;}
.h20{height:12.320000pt;}
.h47{height:12.320133pt;}
.h1f{height:12.346667pt;}
.h44{height:12.400000pt;}
.h22{height:13.120000pt;}
.h41{height:14.240000pt;}
.h21{height:14.880000pt;}
.hf{height:15.280000pt;}
.h3e{height:16.000000pt;}
.h15{height:17.840000pt;}
.h26{height:20.771875pt;}
.h36{height:23.992428pt;}
.hc{height:24.131250pt;}
.h3{height:24.560000pt;}
.h1e{height:25.200000pt;}
.h23{height:25.360000pt;}
.h2a{height:26.142187pt;}
.h3d{height:26.416406pt;}
.h2d{height:29.668556pt;}
.h5{height:29.717188pt;}
.h1b{height:30.028906pt;}
.h28{height:30.756234pt;}
.h40{height:30.756238pt;}
.h43{height:30.756244pt;}
.h29{height:30.756250pt;}
.h27{height:30.833333pt;}
.h45{height:30.984844pt;}
.h11{height:31.728125pt;}
.h3c{height:32.894531pt;}
.h3a{height:33.439997pt;}
.h17{height:33.515625pt;}
.h19{height:33.867188pt;}
.h1c{height:34.545312pt;}
.h6{height:34.739844pt;}
.h33{height:35.533538pt;}
.h13{height:35.554688pt;}
.h4{height:37.314062pt;}
.h24{height:37.600000pt;}
.he{height:37.705469pt;}
.h39{height:37.846202pt;}
.h35{height:38.059120pt;}
.h46{height:38.905781pt;}
.h14{height:39.584219pt;}
.h2{height:40.262656pt;}
.h8{height:40.889062pt;}
.h31{height:41.342390pt;}
.h37{height:41.545655pt;}
.h1a{height:42.691250pt;}
.h9{height:44.120156pt;}
.h1{height:45.156250pt;}
.h38{height:45.501918pt;}
.h30{height:46.750567pt;}
.h2b{height:47.666765pt;}
.hb{height:47.856406pt;}
.h2f{height:49.402374pt;}
.h2e{height:51.320418pt;}
.h34{height:55.343741pt;}
.h32{height:58.245469pt;}
.h2c{height:61.256767pt;}
.h48{height:61.280000pt;}
.hd{height:67.031250pt;}
.ha{height:67.734375pt;}
.h16{height:96.640000pt;}
.h18{height:105.600000pt;}
.h12{height:125.786667pt;}
.h7{height:136.826667pt;}
.h3b{height:213.760000pt;}
.h25{height:220.000000pt;}
.h42{height:240.400000pt;}
.h3f{height:282.960000pt;}
.h10{height:347.786667pt;}
.h0{height:1056.000000pt;}
.w2{width:34.720000pt;}
.wd{width:37.840000pt;}
.w10{width:43.840000pt;}
.we{width:44.080000pt;}
.wf{width:44.106667pt;}
.wa{width:97.546667pt;}
.wc{width:138.666667pt;}
.w12{width:163.134215pt;}
.w9{width:166.480000pt;}
.w8{width:179.386667pt;}
.w7{width:192.426667pt;}
.w6{width:195.866667pt;}
.w13{width:251.866430pt;}
.w1a{width:301.706667pt;}
.w11{width:339.680000pt;}
.w5{width:523.093333pt;}
.w14{width:524.880000pt;}
.w15{width:524.960000pt;}
.w16{width:529.920000pt;}
.w17{width:530.000000pt;}
.wb{width:637.840000pt;}
.w18{width:659.280000pt;}
.w19{width:659.360000pt;}
.w3{width:700.400000pt;}
.w4{width:730.480000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x46{left:1.711774pt;}
.x13{left:5.920000pt;}
.x3{left:7.680000pt;}
.x2c{left:9.466667pt;}
.x33{left:11.146667pt;}
.x12{left:17.920000pt;}
.x22{left:20.880000pt;}
.x35{left:23.626667pt;}
.x16{left:24.560000pt;}
.x62{left:25.626667pt;}
.x58{left:27.893333pt;}
.x14{left:30.320000pt;}
.x15{left:32.080000pt;}
.x25{left:34.000000pt;}
.x6{left:40.480000pt;}
.x1f{left:42.960000pt;}
.x2{left:47.999988pt;}
.x37{left:50.240000pt;}
.x18{left:53.039988pt;}
.x1{left:53.999988pt;}
.x56{left:55.066667pt;}
.x32{left:56.586667pt;}
.x17{left:58.159988pt;}
.x38{left:59.226667pt;}
.x1d{left:61.226667pt;}
.xa{left:62.639988pt;}
.x34{left:64.906667pt;}
.x57{left:65.893333pt;}
.x9{left:68.559988pt;}
.x24{left:71.200000pt;}
.x43{left:73.379150pt;}
.x70{left:75.680000pt;}
.x23{left:77.680000pt;}
.x5f{left:80.880000pt;}
.x50{left:83.360000pt;}
.x4{left:89.680000pt;}
.x61{left:90.640000pt;}
.x45{left:94.626377pt;}
.x5{left:95.999988pt;}
.x41{left:107.165764pt;}
.x42{left:109.472956pt;}
.x4e{left:115.716523pt;}
.x3f{left:117.994253pt;}
.x40{left:118.961092pt;}
.xf{left:121.439988pt;}
.x5a{left:126.293333pt;}
.x4c{left:127.449826pt;}
.x44{left:131.500962pt;}
.x4f{left:136.485923pt;}
.x49{left:144.114386pt;}
.x51{left:145.040000pt;}
.x4b{left:147.710662pt;}
.x4a{left:155.974830pt;}
.x5b{left:157.146667pt;}
.x3b{left:163.680000pt;}
.x4d{left:166.273256pt;}
.x52{left:186.693333pt;}
.x53{left:191.760000pt;}
.x69{left:193.066655pt;}
.x3c{left:204.906667pt;}
.xb{left:213.946655pt;}
.xe{left:217.226655pt;}
.x1b{left:223.386655pt;}
.x59{left:231.840000pt;}
.x64{left:245.093333pt;}
.xd{left:246.026655pt;}
.x1c{left:267.226655pt;}
.x36{left:270.400000pt;}
.x27{left:273.706667pt;}
.x26{left:275.706667pt;}
.x1e{left:282.186667pt;}
.x55{left:298.586667pt;}
.x54{left:299.626667pt;}
.x39{left:305.013333pt;}
.x63{left:316.373333pt;}
.x3a{left:317.333333pt;}
.x5e{left:338.586655pt;}
.x66{left:341.066655pt;}
.x6c{left:346.266655pt;}
.x67{left:362.186655pt;}
.x6b{left:380.186655pt;}
.x28{left:392.666655pt;}
.x8{left:408.026655pt;}
.x1a{left:410.506655pt;}
.xc{left:412.586655pt;}
.x10{left:413.546655pt;}
.x2b{left:421.066667pt;}
.x68{left:422.506655pt;}
.x19{left:425.093321pt;}
.x6d{left:426.453321pt;}
.x6e{left:450.453321pt;}
.x6f{left:454.693333pt;}
.x6a{left:459.733321pt;}
.x20{left:462.213333pt;}
.x48{left:470.573333pt;}
.x60{left:493.893333pt;}
.x3e{left:514.973297pt;}
.x29{left:519.413321pt;}
.x2d{left:560.373333pt;}
.x11{left:570.853333pt;}
.x2a{left:596.533321pt;}
.x2e{left:598.853333pt;}
.x21{left:629.413333pt;}
.x2f{left:643.573333pt;}
.x65{left:647.573321pt;}
.x3d{left:672.933321pt;}
.x47{left:678.133321pt;}
.x30{left:688.293333pt;}
.x7{left:722.160000pt;}
.x5d{left:731.839988pt;}
.x31{left:733.120000pt;}
.x5c{left:740.159988pt;}
}




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