
    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_3036cd0c6896dd988eeb35e5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_4aaafb6afa86f03a806ee5ab.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6a54fdadfa4489fa85d56187.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5f3910da2ec147d6e68c49a4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_06ab3882a5ab3bd240d97028.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_f29436ece70e821fdc6632a6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_068e74a88c0ce2c812ae3f2d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_0a33af1b5501a1185080347e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_631e10262253156ad0b97022.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_8fd1f698f3c61994f7cd71e2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.854004;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);}
.v0{vertical-align:0.000000px;}
.ls1d{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.469200px;}
.ls1e{letter-spacing:-0.432000px;}
.lsd{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.072000px;}
.ls2{letter-spacing:-0.053280px;}
.lsa{letter-spacing:-0.018720px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.037440px;}
.ls1b{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.106800px;}
.ls21{letter-spacing:0.120000px;}
.lse{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.216000px;}
.ls16{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.576000px;}
.ls15{letter-spacing:0.648000px;}
.ls13{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.792000px;}
.ls1f{letter-spacing:0.864000px;}
.ls12{letter-spacing:21.197280px;}
.ls19{letter-spacing:23.184000px;}
.lsb{letter-spacing:23.976000px;}
.ls18{letter-spacing:27.504000px;}
.ls17{letter-spacing:30.360000px;}
.ls11{letter-spacing:31.104000px;}
.ls1a{letter-spacing:31.824000px;}
.ls4{letter-spacing:59.736000px;}
.ls10{letter-spacing:75.036000px;}
.ls5{letter-spacing:89.280000px;}
.ls6{letter-spacing:210.960000px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws6{word-spacing:-43.434720px;}
.ws7{word-spacing:-42.965520px;}
.ws0{word-spacing:-27.216000px;}
.wsb{word-spacing:-27.000000px;}
.wsf{word-spacing:-22.500000px;}
.ws8{word-spacing:-21.097440px;}
.wsa{word-spacing:-21.060000px;}
.ws9{word-spacing:-21.041280px;}
.wse{word-spacing:-18.792000px;}
.ws12{word-spacing:-18.720000px;}
.ws14{word-spacing:-18.648000px;}
.ws18{word-spacing:-18.576000px;}
.ws15{word-spacing:-18.288000px;}
.ws10{word-spacing:-18.216000px;}
.ws11{word-spacing:-18.144000px;}
.ws19{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.928000px;}
.ws16{word-spacing:-17.856000px;}
.wsc{word-spacing:-17.784000px;}
.wsd{word-spacing:-17.712000px;}
.ws17{word-spacing:-17.568000px;}
.ws2{word-spacing:-15.046800px;}
.ws1{word-spacing:-14.886720px;}
.ws4{word-spacing:0.000000px;}
._f{margin-left:-17.628000px;}
._b{margin-left:-15.936000px;}
._9{margin-left:-13.992000px;}
._e{margin-left:-12.886800px;}
._10{margin-left:-10.716000px;}
._11{margin-left:-8.520000px;}
._a{margin-left:-7.440000px;}
._d{margin-left:-5.676000px;}
._c{margin-left:-4.032000px;}
._3c{margin-left:-2.938800px;}
._4{margin-left:-1.581120px;}
._0{width:1.015920px;}
._18{width:2.304480px;}
._15{width:3.885120px;}
._13{width:5.112000px;}
._14{width:6.120000px;}
._16{width:7.200000px;}
._17{width:8.776080px;}
._1{width:9.860400px;}
._2{width:11.200080px;}
._7{width:12.253680px;}
._6{width:13.966560px;}
._2b{width:21.528000px;}
._21{width:23.760000px;}
._30{width:28.080000px;}
._24{width:29.160000px;}
._3a{width:30.232080px;}
._2c{width:31.392000px;}
._34{width:32.832000px;}
._22{width:35.424000px;}
._8{width:39.923280px;}
._3b{width:41.868720px;}
._2e{width:46.581120px;}
._35{width:48.240000px;}
._3d{width:50.256000px;}
._3e{width:51.888000px;}
._25{width:65.232000px;}
._36{width:70.488000px;}
._27{width:75.456000px;}
._2d{width:76.608000px;}
._1a{width:81.072000px;}
._39{width:85.176000px;}
._19{width:89.208000px;}
._23{width:91.368000px;}
._38{width:92.808000px;}
._1b{width:93.888000px;}
._5{width:101.138160px;}
._20{width:102.168000px;}
._2f{width:112.464000px;}
._32{width:123.336000px;}
._28{width:126.756000px;}
._29{width:133.632000px;}
._31{width:145.656000px;}
._1f{width:152.928000px;}
._26{width:157.536000px;}
._2a{width:164.232000px;}
._33{width:171.792000px;}
._1c{width:181.224000px;}
._1e{width:216.936000px;}
._3{width:220.566240px;}
._37{width:228.888000px;}
._1d{width:233.280000px;}
._12{width:442.776000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs6{font-size:90.000000px;}
.fs3{font-size:108.000000px;}
.fs2{font-size:131.760000px;}
.fs5{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y100{bottom:3.960000px;}
.y115{bottom:4.140000px;}
.y16{bottom:9.900000px;}
.y10{bottom:18.540000px;}
.yed{bottom:21.960000px;}
.y161{bottom:21.990000px;}
.y15e{bottom:22.005000px;}
.y130{bottom:23.040000px;}
.yff{bottom:24.654000px;}
.y118{bottom:24.660000px;}
.y14a{bottom:24.690000px;}
.y7{bottom:28.260000px;}
.y15{bottom:35.814000px;}
.y4{bottom:42.660000px;}
.y139{bottom:42.690000px;}
.ye9{bottom:42.696000px;}
.y12e{bottom:42.705000px;}
.y117{bottom:43.734000px;}
.y11b{bottom:43.740000px;}
.yfe{bottom:45.354000px;}
.y11c{bottom:45.360000px;}
.y149{bottom:45.390000px;}
.y122{bottom:45.405000px;}
.yb8{bottom:47.160000px;}
.yaa{bottom:47.340000px;}
.yaf{bottom:47.370000px;}
.ya7{bottom:47.385000px;}
.y14{bottom:60.294000px;}
.yeb{bottom:61.740000px;}
.yab{bottom:62.820000px;}
.yb1{bottom:62.850000px;}
.yb5{bottom:63.000000px;}
.yec{bottom:63.360000px;}
.y138{bottom:63.390000px;}
.y10b{bottom:63.405000px;}
.y171{bottom:64.470000px;}
.y175{bottom:64.485000px;}
.yfd{bottom:66.054000px;}
.y128{bottom:66.060000px;}
.y148{bottom:66.090000px;}
.y121{bottom:66.105000px;}
.ya9{bottom:78.300000px;}
.yb4{bottom:78.480000px;}
.yae{bottom:78.510000px;}
.y1e{bottom:78.525000px;}
.y3{bottom:81.396000px;}
.y150{bottom:82.440000px;}
.y12d{bottom:82.485000px;}
.yf3{bottom:84.060000px;}
.y137{bottom:84.090000px;}
.y10a{bottom:84.105000px;}
.y173{bottom:85.140000px;}
.y17a{bottom:85.320000px;}
.y15a{bottom:86.754000px;}
.y127{bottom:86.760000px;}
.y147{bottom:86.790000px;}
.yfc{bottom:86.799000px;}
.y120{bottom:86.805000px;}
.y1b{bottom:90.930000px;}
.yb9{bottom:93.780000px;}
.yb0{bottom:93.990000px;}
.y13{bottom:96.114000px;}
.y135{bottom:103.170000px;}
.yf2{bottom:104.760000px;}
.y136{bottom:104.790000px;}
.y109{bottom:104.805000px;}
.y11e{bottom:105.885000px;}
.y145{bottom:106.050000px;}
.y126{bottom:107.460000px;}
.y146{bottom:107.490000px;}
.yfb{bottom:107.499000px;}
.y11f{bottom:107.505000px;}
.y159{bottom:109.116000px;}
.yb7{bottom:109.260000px;}
.yad{bottom:109.470000px;}
.y88{bottom:113.436000px;}
.y68{bottom:116.856000px;}
.y176{bottom:117.756000px;}
.y11{bottom:118.296000px;}
.ybe{bottom:119.556000px;}
.y12f{bottom:122.256000px;}
.y116{bottom:123.156000px;}
.y15d{bottom:123.885000px;}
.y1a{bottom:124.950000px;}
.yf1{bottom:125.460000px;}
.yf7{bottom:125.490000px;}
.y108{bottom:125.505000px;}
.yf9{bottom:126.579000px;}
.y124{bottom:126.720000px;}
.y142{bottom:126.765000px;}
.y166{bottom:126.936000px;}
.y125{bottom:128.160000px;}
.yfa{bottom:128.199000px;}
.y143{bottom:128.205000px;}
.ye{bottom:130.500000px;}
.y12{bottom:131.754000px;}
.ye3{bottom:132.336000px;}
.y1ba{bottom:132.876000px;}
.y14e{bottom:134.856000px;}
.yf8{bottom:135.216000px;}
.y48{bottom:135.396000px;}
.ydc{bottom:137.916000px;}
.y30{bottom:138.636000px;}
.y87{bottom:144.396000px;}
.yef{bottom:144.540000px;}
.yf5{bottom:144.570000px;}
.y133{bottom:144.585000px;}
.y1d{bottom:144.765000px;}
.yf0{bottom:146.160000px;}
.yf6{bottom:146.190000px;}
.y107{bottom:146.205000px;}
.ybd{bottom:146.556000px;}
.y67{bottom:147.996000px;}
.y13f{bottom:153.030000px;}
.y165{bottom:157.890000px;}
.y174{bottom:159.150000px;}
.ye2{bottom:163.470000px;}
.y1b9{bottom:164.010000px;}
.y12c{bottom:164.370000px;}
.y160{bottom:165.270000px;}
.y152{bottom:165.285000px;}
.y19b{bottom:165.990000px;}
.y158{bottom:166.890000px;}
.y106{bottom:166.905000px;}
.ydb{bottom:169.050000px;}
.ya3{bottom:172.650000px;}
.y47{bottom:175.350000px;}
.y86{bottom:175.530000px;}
.y2f{bottom:177.150000px;}
.y66{bottom:178.950000px;}
.y14d{bottom:183.810000px;}
.y114{bottom:185.970000px;}
.y104{bottom:185.985000px;}
.y157{bottom:187.590000px;}
.y105{bottom:187.605000px;}
.y164{bottom:189.030000px;}
.y19{bottom:191.010000px;}
.ye1{bottom:194.430000px;}
.yba{bottom:194.970000px;}
.y19a{bottom:196.950000px;}
.yda{bottom:200.010000px;}
.y13e{bottom:201.990000px;}
.ya2{bottom:203.610000px;}
.yd{bottom:205.380000px;}
.y85{bottom:206.490000px;}
.y156{bottom:208.290000px;}
.y65{bottom:210.090000px;}
.yb6{bottom:212.250000px;}
.y46{bottom:215.490000px;}
.y2e{bottom:215.670000px;}
.y163{bottom:220.035000px;}
.ye0{bottom:225.570000px;}
.y1b8{bottom:226.110000px;}
.y18{bottom:226.650000px;}
.y154{bottom:227.370000px;}
.y199{bottom:228.090000px;}
.y155{bottom:228.990000px;}
.yd9{bottom:231.150000px;}
.y14c{bottom:232.815000px;}
.ya1{bottom:234.750000px;}
.y162{bottom:236.775000px;}
.y84{bottom:237.630000px;}
.y41{bottom:239.610000px;}
.y113{bottom:240.735000px;}
.y64{bottom:241.050000px;}
.y172{bottom:241.995000px;}
.y14b{bottom:249.555000px;}
.y13d{bottom:251.175000px;}
.y153{bottom:254.055000px;}
.y2d{bottom:254.190000px;}
.y45{bottom:255.450000px;}
.ydf{bottom:256.530000px;}
.y1b7{bottom:257.070000px;}
.y198{bottom:259.050000px;}
.yd8{bottom:262.110000px;}
.yc{bottom:262.470000px;}
.ya0{bottom:265.710000px;}
.y83{bottom:268.590000px;}
.y63{bottom:272.190000px;}
.yf4{bottom:280.155000px;}
.y40{bottom:284.790000px;}
.yde{bottom:287.670000px;}
.y1b6{bottom:288.210000px;}
.y112{bottom:289.875000px;}
.y197{bottom:290.190000px;}
.y2c{bottom:292.890000px;}
.yd7{bottom:293.250000px;}
.y1c{bottom:294.870000px;}
.y44{bottom:295.590000px;}
.y9f{bottom:296.850000px;}
.y12b{bottom:297.435000px;}
.y82{bottom:299.730000px;}
.y13c{bottom:300.135000px;}
.y62{bottom:303.150000px;}
.ye8{bottom:318.630000px;}
.y1b5{bottom:319.170000px;}
.yb{bottom:319.350000px;}
.y17e{bottom:320.835000px;}
.y196{bottom:321.150000px;}
.yd6{bottom:324.210000px;}
.y9e{bottom:327.810000px;}
.y81{bottom:330.690000px;}
.y13b{bottom:331.275000px;}
.y2b{bottom:331.410000px;}
.y61{bottom:334.110000px;}
.y43{bottom:335.550000px;}
.yb3{bottom:338.655000px;}
.y111{bottom:338.835000px;}
.y170{bottom:345.495000px;}
.y12a{bottom:346.575000px;}
.ye7{bottom:349.815000px;}
.y1b4{bottom:350.355000px;}
.y3f{bottom:351.795000px;}
.y195{bottom:352.155000px;}
.yd5{bottom:355.395000px;}
.ydd{bottom:357.015000px;}
.y80{bottom:361.875000px;}
.y13a{bottom:362.235000px;}
.y49{bottom:364.935000px;}
.y60{bottom:365.295000px;}
.y2a{bottom:369.975000px;}
.ya{bottom:376.230000px;}
.y42{bottom:378.075000px;}
.y134{bottom:378.975000px;}
.ye6{bottom:380.775000px;}
.y1b3{bottom:381.315000px;}
.y3e{bottom:382.935000px;}
.y8{bottom:383.295000px;}
.yd4{bottom:386.355000px;}
.y7f{bottom:392.835000px;}
.y144{bottom:394.455000px;}
.y129{bottom:395.535000px;}
.y5f{bottom:396.255000px;}
.y9d{bottom:398.415000px;}
.y15f{bottom:399.675000px;}
.y110{bottom:400.935000px;}
.y29{bottom:408.495000px;}
.ye5{bottom:411.915000px;}
.y123{bottom:412.305000px;}
.y1b2{bottom:412.455000px;}
.y3d{bottom:413.895000px;}
.y194{bottom:414.255000px;}
.yd3{bottom:417.495000px;}
.y17d{bottom:418.965000px;}
.y7e{bottom:423.975000px;}
.y5e{bottom:427.395000px;}
.y16f{bottom:429.045000px;}
.y10f{bottom:432.105000px;}
.y9{bottom:433.110000px;}
.yb2{bottom:434.235000px;}
.yee{bottom:443.085000px;}
.y1b1{bottom:443.415000px;}
.y3c{bottom:444.855000px;}
.y193{bottom:445.395000px;}
.y28{bottom:447.015000px;}
.yd2{bottom:448.455000px;}
.y7d{bottom:454.935000px;}
.y5d{bottom:458.355000px;}
.y10e{bottom:463.065000px;}
.y9c{bottom:466.635000px;}
.y17c{bottom:468.105000px;}
.y1b0{bottom:474.555000px;}
.y3b{bottom:475.995000px;}
.y192{bottom:476.355000px;}
.yd1{bottom:479.595000px;}
.ye4{bottom:481.215000px;}
.y1c6{bottom:481.935000px;}
.y16e{bottom:483.765000px;}
.y27{bottom:485.535000px;}
.y7c{bottom:486.075000px;}
.y5c{bottom:489.495000px;}
.y10d{bottom:494.205000px;}
.y9b{bottom:497.775000px;}
.y17b{bottom:499.065000px;}
.y151{bottom:499.785000px;}
.y132{bottom:500.505000px;}
.y1af{bottom:505.515000px;}
.y3a{bottom:506.955000px;}
.y191{bottom:507.495000px;}
.yd0{bottom:510.555000px;}
.y179{bottom:515.805000px;}
.y7b{bottom:517.035000px;}
.y141{bottom:518.685000px;}
.y5b{bottom:520.455000px;}
.y26{bottom:524.055000px;}
.y10c{bottom:525.165000px;}
.y9a{bottom:528.735000px;}
.y1c5{bottom:531.075000px;}
.y16d{bottom:532.905000px;}
.y1ae{bottom:536.655000px;}
.y39{bottom:538.095000px;}
.y190{bottom:538.455000px;}
.ycf{bottom:541.695000px;}
.y103{bottom:541.905000px;}
.y7a{bottom:548.175000px;}
.y5a{bottom:551.595000px;}
.y11d{bottom:557.205000px;}
.y99{bottom:559.875000px;}
.y25{bottom:562.755000px;}
.yac{bottom:565.635000px;}
.y1ad{bottom:567.615000px;}
.y38{bottom:569.055000px;}
.y18f{bottom:569.595000px;}
.yce{bottom:572.655000px;}
.y79{bottom:579.135000px;}
.y1c4{bottom:580.035000px;}
.y16c{bottom:581.865000px;}
.y59{bottom:582.555000px;}
.y15c{bottom:583.305000px;}
.y98{bottom:590.835000px;}
.y17{bottom:595.335000px;}
.y1ac{bottom:598.755000px;}
.y37{bottom:600.195000px;}
.y18e{bottom:600.555000px;}
.y24{bottom:601.275000px;}
.ycd{bottom:603.825000px;}
.yea{bottom:606.750000px;}
.y78{bottom:610.305000px;}
.y16b{bottom:613.050000px;}
.y58{bottom:613.725000px;}
.y178{bottom:619.350000px;}
.y97{bottom:622.005000px;}
.y1c3{bottom:629.205000px;}
.y1ab{bottom:629.745000px;}
.y36{bottom:631.185000px;}
.y18d{bottom:631.725000px;}
.ycc{bottom:634.785000px;}
.y23{bottom:639.825000px;}
.y77{bottom:641.265000px;}
.y16a{bottom:644.010000px;}
.y57{bottom:644.685000px;}
.y96{bottom:652.965000px;}
.y1c7{bottom:657.285000px;}
.y1c2{bottom:660.165000px;}
.y1aa{bottom:660.705000px;}
.y35{bottom:662.325000px;}
.y18c{bottom:662.685000px;}
.y131{bottom:663.450000px;}
.y140{bottom:664.350000px;}
.ycb{bottom:665.925000px;}
.y76{bottom:672.405000px;}
.y169{bottom:675.150000px;}
.y56{bottom:675.825000px;}
.y22{bottom:678.345000px;}
.y11a{bottom:681.450000px;}
.y95{bottom:684.105000px;}
.y14f{bottom:684.150000px;}
.y1a9{bottom:691.845000px;}
.y34{bottom:693.285000px;}
.y18b{bottom:693.825000px;}
.yca{bottom:696.885000px;}
.y75{bottom:703.365000px;}
.y168{bottom:706.110000px;}
.y55{bottom:706.785000px;}
.y1c1{bottom:709.305000px;}
.y94{bottom:715.065000px;}
.y21{bottom:716.865000px;}
.ybc{bottom:719.250000px;}
.y1a8{bottom:722.805000px;}
.y177{bottom:722.850000px;}
.y33{bottom:724.425000px;}
.y18a{bottom:724.785000px;}
.y15b{bottom:725.550000px;}
.yc9{bottom:728.025000px;}
.ya8{bottom:728.205000px;}
.y74{bottom:734.505000px;}
.y167{bottom:737.250000px;}
.y54{bottom:737.925000px;}
.y119{bottom:743.550000px;}
.y93{bottom:746.205000px;}
.y102{bottom:746.250000px;}
.y1a7{bottom:753.945000px;}
.y20{bottom:755.385000px;}
.y189{bottom:755.925000px;}
.y1c0{bottom:758.265000px;}
.yc8{bottom:758.985000px;}
.y73{bottom:765.465000px;}
.ybb{bottom:768.210000px;}
.y53{bottom:768.885000px;}
.y92{bottom:777.165000px;}
.y1a6{bottom:784.905000px;}
.y188{bottom:786.885000px;}
.y1bf{bottom:789.405000px;}
.yc7{bottom:790.125000px;}
.y72{bottom:796.605000px;}
.y52{bottom:800.025000px;}
.y91{bottom:808.305000px;}
.y1a5{bottom:816.045000px;}
.y187{bottom:818.025000px;}
.yc6{bottom:821.085000px;}
.y101{bottom:825.840000px;}
.y71{bottom:827.565000px;}
.y51{bottom:830.985000px;}
.y1be{bottom:838.365000px;}
.y90{bottom:839.265000px;}
.y1a4{bottom:847.005000px;}
.y186{bottom:848.985000px;}
.yc5{bottom:852.225000px;}
.y70{bottom:858.705000px;}
.ya6{bottom:861.585000px;}
.y50{bottom:862.125000px;}
.y8f{bottom:870.405000px;}
.y1a3{bottom:878.190000px;}
.y185{bottom:880.170000px;}
.yc4{bottom:883.230000px;}
.y1bd{bottom:887.550000px;}
.y6f{bottom:889.710000px;}
.y4f{bottom:893.130000px;}
.y8e{bottom:901.410000px;}
.y32{bottom:906.270000px;}
.y1a2{bottom:909.150000px;}
.y184{bottom:911.130000px;}
.yc3{bottom:914.190000px;}
.y6e{bottom:920.850000px;}
.y4e{bottom:924.270000px;}
.y8d{bottom:932.550000px;}
.y1bc{bottom:936.510000px;}
.y1f{bottom:937.410000px;}
.y1a1{bottom:940.290000px;}
.y183{bottom:942.270000px;}
.yc2{bottom:945.330000px;}
.y6d{bottom:951.810000px;}
.y4d{bottom:955.230000px;}
.yf{bottom:964.410000px;}
.y1a0{bottom:971.250000px;}
.y182{bottom:973.230000px;}
.yc1{bottom:976.290000px;}
.y19c{bottom:980.970000px;}
.y6c{bottom:982.950000px;}
.y4c{bottom:986.370000px;}
.ya5{bottom:993.930000px;}
.y6{bottom:995.370000px;}
.y19f{bottom:1002.210000px;}
.y8c{bottom:1002.930000px;}
.y181{bottom:1004.370000px;}
.y6b{bottom:1013.910000px;}
.y4b{bottom:1017.330000px;}
.y180{bottom:1035.330000px;}
.ya4{bottom:1043.070000px;}
.y6a{bottom:1045.050000px;}
.yc0{bottom:1045.770000px;}
.y8b{bottom:1056.390000px;}
.y19e{bottom:1065.390000px;}
.y17f{bottom:1066.290000px;}
.y69{bottom:1076.010000px;}
.y4a{bottom:1080.510000px;}
.ybf{bottom:1083.030000px;}
.y8a{bottom:1087.350000px;}
.y31{bottom:1107.150000px;}
.y1bb{bottom:1118.310000px;}
.y89{bottom:1129.470000px;}
.y19d{bottom:1137.960000px;}
.y5{bottom:1138.140000px;}
.y2{bottom:1178.460000px;}
.y1{bottom:1195.740000px;}
.h2f{height:22.500000px;}
.h26{height:22.536000px;}
.h24{height:38.700000px;}
.h29{height:41.400000px;}
.h7{height:43.920000px;}
.hb{height:58.651172px;}
.h33{height:59.400000px;}
.h28{height:62.100000px;}
.h2{height:62.327813px;}
.h1d{height:70.628906px;}
.h3{height:70.664062px;}
.he{height:72.562500px;}
.h1f{height:74.953125px;}
.h15{height:75.093750px;}
.h27{height:76.279219px;}
.h21{height:78.367500px;}
.h20{height:80.100000px;}
.h11{height:82.676953px;}
.h36{height:82.836000px;}
.hd{height:84.898125px;}
.h1e{height:87.695156px;}
.h10{height:87.859687px;}
.h14{height:93.691406px;}
.h19{height:95.220000px;}
.h16{height:100.116000px;}
.h30{height:100.800000px;}
.h2c{height:100.836000px;}
.h37{height:103.500000px;}
.h38{height:103.536000px;}
.h8{height:105.996094px;}
.ha{height:108.843750px;}
.h13{height:112.429688px;}
.h2d{height:121.500000px;}
.h2e{height:121.536000px;}
.h2a{height:124.236000px;}
.h1a{height:126.036000px;}
.h6{height:129.315234px;}
.h17{height:131.040000px;}
.h34{height:142.236000px;}
.h2b{height:144.900000px;}
.h23{height:144.936000px;}
.h9{height:156.960000px;}
.h18{height:162.210000px;}
.h35{height:162.900000px;}
.h22{height:162.930000px;}
.h12{height:162.953438px;}
.hf{height:164.370000px;}
.h4{height:172.290000px;}
.h31{height:183.630000px;}
.h25{height:204.330000px;}
.h32{height:245.730000px;}
.hc{height:251.850000px;}
.h5{height:463.890000px;}
.h1b{height:892.980000px;}
.h1c{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w26{width:30.060000px;}
.w23{width:30.420000px;}
.w32{width:31.140000px;}
.w1f{width:31.500000px;}
.w13{width:31.860000px;}
.w39{width:42.120000px;}
.w36{width:42.660000px;}
.w29{width:82.800000px;}
.w16{width:85.140000px;}
.w35{width:94.140000px;}
.w1a{width:94.176000px;}
.w34{width:94.320000px;}
.w2d{width:94.896000px;}
.w22{width:96.300000px;}
.w27{width:96.516000px;}
.w21{width:97.020000px;}
.w2c{width:99.000000px;}
.w14{width:99.396000px;}
.w19{width:101.880000px;}
.w2f{width:113.040000px;}
.w2e{width:113.940000px;}
.w2b{width:114.120000px;}
.w1c{width:116.316000px;}
.w18{width:116.820000px;}
.w1b{width:117.360000px;}
.w2a{width:124.056000px;}
.w17{width:127.656000px;}
.w28{width:131.040000px;}
.w15{width:134.820000px;}
.w33{width:148.716000px;}
.w30{width:150.510000px;}
.w20{width:153.030000px;}
.w1d{width:155.160000px;}
.w37{width:159.690000px;}
.w24{width:171.750000px;}
.w1e{width:191.370000px;}
.w31{width:220.350000px;}
.w3{width:237.630000px;}
.wb{width:289.290000px;}
.w9{width:289.470000px;}
.wc{width:297.615000px;}
.wa{width:297.795000px;}
.w8{width:318.270000px;}
.w4{width:380.415000px;}
.w7{width:405.975000px;}
.w5{width:721.770000px;}
.w6{width:721.950000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w25{width:1169.610000px;}
.w38{width:1180.230000px;}
.wf{width:1262.879981px;}
.wd{width:1262.880000px;}
.we{width:1263.000000px;}
.w12{width:1445.759978px;}
.w10{width:1445.760000px;}
.w11{width:1446.000000px;}
.x0{left:0.000000px;}
.x34{left:8.100000px;}
.x29{left:9.540000px;}
.x7{left:10.800000px;}
.xe{left:13.320000px;}
.x10{left:15.660000px;}
.x25{left:20.700000px;}
.x24{left:23.040000px;}
.x2e{left:26.640000px;}
.x22{left:27.720000px;}
.x27{left:33.840000px;}
.x50{left:35.820000px;}
.x42{left:41.940000px;}
.x2c{left:43.200000px;}
.x23{left:46.980000px;}
.x2b{left:59.934000px;}
.x20{left:62.094000px;}
.x21{left:65.340000px;}
.xa{left:66.780000px;}
.x2f{left:75.420000px;}
.x26{left:84.414000px;}
.x8{left:86.040000px;}
.x1f{left:99.936000px;}
.x2a{left:104.430000px;}
.x1{left:108.035987px;}
.x2d{left:113.754000px;}
.x14{left:116.676000px;}
.x28{left:119.370000px;}
.x17{left:124.595987px;}
.x16{left:134.814000px;}
.x18{left:141.155987px;}
.x19{left:153.029987px;}
.x1a{left:161.129987px;}
.x44{left:172.110000px;}
.x35{left:175.350000px;}
.x1e{left:188.129987px;}
.x5{left:226.830000px;}
.x51{left:235.650000px;}
.x9{left:238.755000px;}
.xb{left:245.415000px;}
.xf{left:250.275000px;}
.x12{left:264.675000px;}
.xc{left:275.835000px;}
.x11{left:278.895000px;}
.x13{left:281.235000px;}
.x45{left:303.150000px;}
.x15{left:307.479000px;}
.x36{left:309.990000px;}
.x4{left:326.235000px;}
.x1b{left:358.094987px;}
.xd{left:360.975000px;}
.x55{left:365.474987px;}
.x54{left:368.534987px;}
.x32{left:369.974987px;}
.x53{left:377.534987px;}
.x46{left:385.950000px;}
.x1d{left:388.694987px;}
.x37{left:395.130000px;}
.x6{left:435.135000px;}
.x43{left:493.965000px;}
.x52{left:499.365000px;}
.x47{left:510.015000px;}
.x38{left:522.795000px;}
.x4e{left:534.675000px;}
.x3f{left:548.175000px;}
.x48{left:624.135000px;}
.x4f{left:628.995000px;}
.x39{left:639.615000px;}
.x40{left:645.195000px;}
.x49{left:723.135000px;}
.x3a{left:741.495000px;}
.x1c{left:767.129987px;}
.x2{left:776.129987px;}
.x3{left:785.129987px;}
.x4a{left:818.025000px;}
.x3b{left:835.665000px;}
.x4b{left:931.965000px;}
.x3c{left:953.025000px;}
.x4c{left:1045.005000px;}
.x3d{left:1069.350000px;}
.x31{left:1113.269981px;}
.x30{left:1137.029981px;}
.x4d{left:1195.530000px;}
.x3e{left:1224.510000px;}
.x33{left:1319.909978px;}
.x41{left:1337.909978px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1d{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.417067pt;}
.ls1e{letter-spacing:-0.384000pt;}
.lsd{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:-0.047360pt;}
.lsa{letter-spacing:-0.016640pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.033280pt;}
.ls1b{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.094933pt;}
.ls21{letter-spacing:0.106667pt;}
.lse{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.192000pt;}
.ls16{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.512000pt;}
.ls15{letter-spacing:0.576000pt;}
.ls13{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.704000pt;}
.ls1f{letter-spacing:0.768000pt;}
.ls12{letter-spacing:18.842027pt;}
.ls19{letter-spacing:20.608000pt;}
.lsb{letter-spacing:21.312000pt;}
.ls18{letter-spacing:24.448000pt;}
.ls17{letter-spacing:26.986667pt;}
.ls11{letter-spacing:27.648000pt;}
.ls1a{letter-spacing:28.288000pt;}
.ls4{letter-spacing:53.098667pt;}
.ls10{letter-spacing:66.698667pt;}
.ls5{letter-spacing:79.360000pt;}
.ls6{letter-spacing:187.520000pt;}
.ws3{word-spacing:-64.000000pt;}
.ws6{word-spacing:-38.608640pt;}
.ws7{word-spacing:-38.191573pt;}
.ws0{word-spacing:-24.192000pt;}
.wsb{word-spacing:-24.000000pt;}
.wsf{word-spacing:-20.000000pt;}
.ws8{word-spacing:-18.753280pt;}
.wsa{word-spacing:-18.720000pt;}
.ws9{word-spacing:-18.703360pt;}
.wse{word-spacing:-16.704000pt;}
.ws12{word-spacing:-16.640000pt;}
.ws14{word-spacing:-16.576000pt;}
.ws18{word-spacing:-16.512000pt;}
.ws15{word-spacing:-16.256000pt;}
.ws10{word-spacing:-16.192000pt;}
.ws11{word-spacing:-16.128000pt;}
.ws19{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.936000pt;}
.ws16{word-spacing:-15.872000pt;}
.wsc{word-spacing:-15.808000pt;}
.wsd{word-spacing:-15.744000pt;}
.ws17{word-spacing:-15.616000pt;}
.ws2{word-spacing:-13.374933pt;}
.ws1{word-spacing:-13.232640pt;}
.ws4{word-spacing:0.000000pt;}
._f{margin-left:-15.669333pt;}
._b{margin-left:-14.165333pt;}
._9{margin-left:-12.437333pt;}
._e{margin-left:-11.454933pt;}
._10{margin-left:-9.525333pt;}
._11{margin-left:-7.573333pt;}
._a{margin-left:-6.613333pt;}
._d{margin-left:-5.045333pt;}
._c{margin-left:-3.584000pt;}
._3c{margin-left:-2.612267pt;}
._4{margin-left:-1.405440pt;}
._0{width:0.903040pt;}
._18{width:2.048427pt;}
._15{width:3.453440pt;}
._13{width:4.544000pt;}
._14{width:5.440000pt;}
._16{width:6.400000pt;}
._17{width:7.800960pt;}
._1{width:8.764800pt;}
._2{width:9.955627pt;}
._7{width:10.892160pt;}
._6{width:12.414720pt;}
._2b{width:19.136000pt;}
._21{width:21.120000pt;}
._30{width:24.960000pt;}
._24{width:25.920000pt;}
._3a{width:26.872960pt;}
._2c{width:27.904000pt;}
._34{width:29.184000pt;}
._22{width:31.488000pt;}
._8{width:35.487360pt;}
._3b{width:37.216640pt;}
._2e{width:41.405440pt;}
._35{width:42.880000pt;}
._3d{width:44.672000pt;}
._3e{width:46.122667pt;}
._25{width:57.984000pt;}
._36{width:62.656000pt;}
._27{width:67.072000pt;}
._2d{width:68.096000pt;}
._1a{width:72.064000pt;}
._39{width:75.712000pt;}
._19{width:79.296000pt;}
._23{width:81.216000pt;}
._38{width:82.496000pt;}
._1b{width:83.456000pt;}
._5{width:89.900587pt;}
._20{width:90.816000pt;}
._2f{width:99.968000pt;}
._32{width:109.632000pt;}
._28{width:112.672000pt;}
._29{width:118.784000pt;}
._31{width:129.472000pt;}
._1f{width:135.936000pt;}
._26{width:140.032000pt;}
._2a{width:145.984000pt;}
._33{width:152.704000pt;}
._1c{width:161.088000pt;}
._1e{width:192.832000pt;}
._3{width:196.058880pt;}
._37{width:203.456000pt;}
._1d{width:207.360000pt;}
._12{width:393.578667pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs6{font-size:80.000000pt;}
.fs3{font-size:96.000000pt;}
.fs2{font-size:117.120000pt;}
.fs5{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y100{bottom:3.520000pt;}
.y115{bottom:3.680000pt;}
.y16{bottom:8.800000pt;}
.y10{bottom:16.480000pt;}
.yed{bottom:19.520000pt;}
.y161{bottom:19.546667pt;}
.y15e{bottom:19.560000pt;}
.y130{bottom:20.480000pt;}
.yff{bottom:21.914667pt;}
.y118{bottom:21.920000pt;}
.y14a{bottom:21.946667pt;}
.y7{bottom:25.120000pt;}
.y15{bottom:31.834667pt;}
.y4{bottom:37.920000pt;}
.y139{bottom:37.946667pt;}
.ye9{bottom:37.952000pt;}
.y12e{bottom:37.960000pt;}
.y117{bottom:38.874667pt;}
.y11b{bottom:38.880000pt;}
.yfe{bottom:40.314667pt;}
.y11c{bottom:40.320000pt;}
.y149{bottom:40.346667pt;}
.y122{bottom:40.360000pt;}
.yb8{bottom:41.920000pt;}
.yaa{bottom:42.080000pt;}
.yaf{bottom:42.106667pt;}
.ya7{bottom:42.120000pt;}
.y14{bottom:53.594667pt;}
.yeb{bottom:54.880000pt;}
.yab{bottom:55.840000pt;}
.yb1{bottom:55.866667pt;}
.yb5{bottom:56.000000pt;}
.yec{bottom:56.320000pt;}
.y138{bottom:56.346667pt;}
.y10b{bottom:56.360000pt;}
.y171{bottom:57.306667pt;}
.y175{bottom:57.320000pt;}
.yfd{bottom:58.714667pt;}
.y128{bottom:58.720000pt;}
.y148{bottom:58.746667pt;}
.y121{bottom:58.760000pt;}
.ya9{bottom:69.600000pt;}
.yb4{bottom:69.760000pt;}
.yae{bottom:69.786667pt;}
.y1e{bottom:69.800000pt;}
.y3{bottom:72.352000pt;}
.y150{bottom:73.280000pt;}
.y12d{bottom:73.320000pt;}
.yf3{bottom:74.720000pt;}
.y137{bottom:74.746667pt;}
.y10a{bottom:74.760000pt;}
.y173{bottom:75.680000pt;}
.y17a{bottom:75.840000pt;}
.y15a{bottom:77.114667pt;}
.y127{bottom:77.120000pt;}
.y147{bottom:77.146667pt;}
.yfc{bottom:77.154667pt;}
.y120{bottom:77.160000pt;}
.y1b{bottom:80.826667pt;}
.yb9{bottom:83.360000pt;}
.yb0{bottom:83.546667pt;}
.y13{bottom:85.434667pt;}
.y135{bottom:91.706667pt;}
.yf2{bottom:93.120000pt;}
.y136{bottom:93.146667pt;}
.y109{bottom:93.160000pt;}
.y11e{bottom:94.120000pt;}
.y145{bottom:94.266667pt;}
.y126{bottom:95.520000pt;}
.y146{bottom:95.546667pt;}
.yfb{bottom:95.554667pt;}
.y11f{bottom:95.560000pt;}
.y159{bottom:96.992000pt;}
.yb7{bottom:97.120000pt;}
.yad{bottom:97.306667pt;}
.y88{bottom:100.832000pt;}
.y68{bottom:103.872000pt;}
.y176{bottom:104.672000pt;}
.y11{bottom:105.152000pt;}
.ybe{bottom:106.272000pt;}
.y12f{bottom:108.672000pt;}
.y116{bottom:109.472000pt;}
.y15d{bottom:110.120000pt;}
.y1a{bottom:111.066667pt;}
.yf1{bottom:111.520000pt;}
.yf7{bottom:111.546667pt;}
.y108{bottom:111.560000pt;}
.yf9{bottom:112.514667pt;}
.y124{bottom:112.640000pt;}
.y142{bottom:112.680000pt;}
.y166{bottom:112.832000pt;}
.y125{bottom:113.920000pt;}
.yfa{bottom:113.954667pt;}
.y143{bottom:113.960000pt;}
.ye{bottom:116.000000pt;}
.y12{bottom:117.114667pt;}
.ye3{bottom:117.632000pt;}
.y1ba{bottom:118.112000pt;}
.y14e{bottom:119.872000pt;}
.yf8{bottom:120.192000pt;}
.y48{bottom:120.352000pt;}
.ydc{bottom:122.592000pt;}
.y30{bottom:123.232000pt;}
.y87{bottom:128.352000pt;}
.yef{bottom:128.480000pt;}
.yf5{bottom:128.506667pt;}
.y133{bottom:128.520000pt;}
.y1d{bottom:128.680000pt;}
.yf0{bottom:129.920000pt;}
.yf6{bottom:129.946667pt;}
.y107{bottom:129.960000pt;}
.ybd{bottom:130.272000pt;}
.y67{bottom:131.552000pt;}
.y13f{bottom:136.026667pt;}
.y165{bottom:140.346667pt;}
.y174{bottom:141.466667pt;}
.ye2{bottom:145.306667pt;}
.y1b9{bottom:145.786667pt;}
.y12c{bottom:146.106667pt;}
.y160{bottom:146.906667pt;}
.y152{bottom:146.920000pt;}
.y19b{bottom:147.546667pt;}
.y158{bottom:148.346667pt;}
.y106{bottom:148.360000pt;}
.ydb{bottom:150.266667pt;}
.ya3{bottom:153.466667pt;}
.y47{bottom:155.866667pt;}
.y86{bottom:156.026667pt;}
.y2f{bottom:157.466667pt;}
.y66{bottom:159.066667pt;}
.y14d{bottom:163.386667pt;}
.y114{bottom:165.306667pt;}
.y104{bottom:165.320000pt;}
.y157{bottom:166.746667pt;}
.y105{bottom:166.760000pt;}
.y164{bottom:168.026667pt;}
.y19{bottom:169.786667pt;}
.ye1{bottom:172.826667pt;}
.yba{bottom:173.306667pt;}
.y19a{bottom:175.066667pt;}
.yda{bottom:177.786667pt;}
.y13e{bottom:179.546667pt;}
.ya2{bottom:180.986667pt;}
.yd{bottom:182.560000pt;}
.y85{bottom:183.546667pt;}
.y156{bottom:185.146667pt;}
.y65{bottom:186.746667pt;}
.yb6{bottom:188.666667pt;}
.y46{bottom:191.546667pt;}
.y2e{bottom:191.706667pt;}
.y163{bottom:195.586667pt;}
.ye0{bottom:200.506667pt;}
.y1b8{bottom:200.986667pt;}
.y18{bottom:201.466667pt;}
.y154{bottom:202.106667pt;}
.y199{bottom:202.746667pt;}
.y155{bottom:203.546667pt;}
.yd9{bottom:205.466667pt;}
.y14c{bottom:206.946667pt;}
.ya1{bottom:208.666667pt;}
.y162{bottom:210.466667pt;}
.y84{bottom:211.226667pt;}
.y41{bottom:212.986667pt;}
.y113{bottom:213.986667pt;}
.y64{bottom:214.266667pt;}
.y172{bottom:215.106667pt;}
.y14b{bottom:221.826667pt;}
.y13d{bottom:223.266667pt;}
.y153{bottom:225.826667pt;}
.y2d{bottom:225.946667pt;}
.y45{bottom:227.066667pt;}
.ydf{bottom:228.026667pt;}
.y1b7{bottom:228.506667pt;}
.y198{bottom:230.266667pt;}
.yd8{bottom:232.986667pt;}
.yc{bottom:233.306667pt;}
.ya0{bottom:236.186667pt;}
.y83{bottom:238.746667pt;}
.y63{bottom:241.946667pt;}
.yf4{bottom:249.026667pt;}
.y40{bottom:253.146667pt;}
.yde{bottom:255.706667pt;}
.y1b6{bottom:256.186667pt;}
.y112{bottom:257.666667pt;}
.y197{bottom:257.946667pt;}
.y2c{bottom:260.346667pt;}
.yd7{bottom:260.666667pt;}
.y1c{bottom:262.106667pt;}
.y44{bottom:262.746667pt;}
.y9f{bottom:263.866667pt;}
.y12b{bottom:264.386667pt;}
.y82{bottom:266.426667pt;}
.y13c{bottom:266.786667pt;}
.y62{bottom:269.466667pt;}
.ye8{bottom:283.226667pt;}
.y1b5{bottom:283.706667pt;}
.yb{bottom:283.866667pt;}
.y17e{bottom:285.186667pt;}
.y196{bottom:285.466667pt;}
.yd6{bottom:288.186667pt;}
.y9e{bottom:291.386667pt;}
.y81{bottom:293.946667pt;}
.y13b{bottom:294.466667pt;}
.y2b{bottom:294.586667pt;}
.y61{bottom:296.986667pt;}
.y43{bottom:298.266667pt;}
.yb3{bottom:301.026667pt;}
.y111{bottom:301.186667pt;}
.y170{bottom:307.106667pt;}
.y12a{bottom:308.066667pt;}
.ye7{bottom:310.946667pt;}
.y1b4{bottom:311.426667pt;}
.y3f{bottom:312.706667pt;}
.y195{bottom:313.026667pt;}
.yd5{bottom:315.906667pt;}
.ydd{bottom:317.346667pt;}
.y80{bottom:321.666667pt;}
.y13a{bottom:321.986667pt;}
.y49{bottom:324.386667pt;}
.y60{bottom:324.706667pt;}
.y2a{bottom:328.866667pt;}
.ya{bottom:334.426667pt;}
.y42{bottom:336.066667pt;}
.y134{bottom:336.866667pt;}
.ye6{bottom:338.466667pt;}
.y1b3{bottom:338.946667pt;}
.y3e{bottom:340.386667pt;}
.y8{bottom:340.706667pt;}
.yd4{bottom:343.426667pt;}
.y7f{bottom:349.186667pt;}
.y144{bottom:350.626667pt;}
.y129{bottom:351.586667pt;}
.y5f{bottom:352.226667pt;}
.y9d{bottom:354.146667pt;}
.y15f{bottom:355.266667pt;}
.y110{bottom:356.386667pt;}
.y29{bottom:363.106667pt;}
.ye5{bottom:366.146667pt;}
.y123{bottom:366.493333pt;}
.y1b2{bottom:366.626667pt;}
.y3d{bottom:367.906667pt;}
.y194{bottom:368.226667pt;}
.yd3{bottom:371.106667pt;}
.y17d{bottom:372.413333pt;}
.y7e{bottom:376.866667pt;}
.y5e{bottom:379.906667pt;}
.y16f{bottom:381.373333pt;}
.y10f{bottom:384.093333pt;}
.y9{bottom:384.986667pt;}
.yb2{bottom:385.986667pt;}
.yee{bottom:393.853333pt;}
.y1b1{bottom:394.146667pt;}
.y3c{bottom:395.426667pt;}
.y193{bottom:395.906667pt;}
.y28{bottom:397.346667pt;}
.yd2{bottom:398.626667pt;}
.y7d{bottom:404.386667pt;}
.y5d{bottom:407.426667pt;}
.y10e{bottom:411.613333pt;}
.y9c{bottom:414.786667pt;}
.y17c{bottom:416.093333pt;}
.y1b0{bottom:421.826667pt;}
.y3b{bottom:423.106667pt;}
.y192{bottom:423.426667pt;}
.yd1{bottom:426.306667pt;}
.ye4{bottom:427.746667pt;}
.y1c6{bottom:428.386667pt;}
.y16e{bottom:430.013333pt;}
.y27{bottom:431.586667pt;}
.y7c{bottom:432.066667pt;}
.y5c{bottom:435.106667pt;}
.y10d{bottom:439.293333pt;}
.y9b{bottom:442.466667pt;}
.y17b{bottom:443.613333pt;}
.y151{bottom:444.253333pt;}
.y132{bottom:444.893333pt;}
.y1af{bottom:449.346667pt;}
.y3a{bottom:450.626667pt;}
.y191{bottom:451.106667pt;}
.yd0{bottom:453.826667pt;}
.y179{bottom:458.493333pt;}
.y7b{bottom:459.586667pt;}
.y141{bottom:461.053333pt;}
.y5b{bottom:462.626667pt;}
.y26{bottom:465.826667pt;}
.y10c{bottom:466.813333pt;}
.y9a{bottom:469.986667pt;}
.y1c5{bottom:472.066667pt;}
.y16d{bottom:473.693333pt;}
.y1ae{bottom:477.026667pt;}
.y39{bottom:478.306667pt;}
.y190{bottom:478.626667pt;}
.ycf{bottom:481.506667pt;}
.y103{bottom:481.693333pt;}
.y7a{bottom:487.266667pt;}
.y5a{bottom:490.306667pt;}
.y11d{bottom:495.293333pt;}
.y99{bottom:497.666667pt;}
.y25{bottom:500.226667pt;}
.yac{bottom:502.786667pt;}
.y1ad{bottom:504.546667pt;}
.y38{bottom:505.826667pt;}
.y18f{bottom:506.306667pt;}
.yce{bottom:509.026667pt;}
.y79{bottom:514.786667pt;}
.y1c4{bottom:515.586667pt;}
.y16c{bottom:517.213333pt;}
.y59{bottom:517.826667pt;}
.y15c{bottom:518.493333pt;}
.y98{bottom:525.186667pt;}
.y17{bottom:529.186667pt;}
.y1ac{bottom:532.226667pt;}
.y37{bottom:533.506667pt;}
.y18e{bottom:533.826667pt;}
.y24{bottom:534.466667pt;}
.ycd{bottom:536.733333pt;}
.yea{bottom:539.333333pt;}
.y78{bottom:542.493333pt;}
.y16b{bottom:544.933333pt;}
.y58{bottom:545.533333pt;}
.y178{bottom:550.533333pt;}
.y97{bottom:552.893333pt;}
.y1c3{bottom:559.293333pt;}
.y1ab{bottom:559.773333pt;}
.y36{bottom:561.053333pt;}
.y18d{bottom:561.533333pt;}
.ycc{bottom:564.253333pt;}
.y23{bottom:568.733333pt;}
.y77{bottom:570.013333pt;}
.y16a{bottom:572.453333pt;}
.y57{bottom:573.053333pt;}
.y96{bottom:580.413333pt;}
.y1c7{bottom:584.253333pt;}
.y1c2{bottom:586.813333pt;}
.y1aa{bottom:587.293333pt;}
.y35{bottom:588.733333pt;}
.y18c{bottom:589.053333pt;}
.y131{bottom:589.733333pt;}
.y140{bottom:590.533333pt;}
.ycb{bottom:591.933333pt;}
.y76{bottom:597.693333pt;}
.y169{bottom:600.133333pt;}
.y56{bottom:600.733333pt;}
.y22{bottom:602.973333pt;}
.y11a{bottom:605.733333pt;}
.y95{bottom:608.093333pt;}
.y14f{bottom:608.133333pt;}
.y1a9{bottom:614.973333pt;}
.y34{bottom:616.253333pt;}
.y18b{bottom:616.733333pt;}
.yca{bottom:619.453333pt;}
.y75{bottom:625.213333pt;}
.y168{bottom:627.653333pt;}
.y55{bottom:628.253333pt;}
.y1c1{bottom:630.493333pt;}
.y94{bottom:635.613333pt;}
.y21{bottom:637.213333pt;}
.ybc{bottom:639.333333pt;}
.y1a8{bottom:642.493333pt;}
.y177{bottom:642.533333pt;}
.y33{bottom:643.933333pt;}
.y18a{bottom:644.253333pt;}
.y15b{bottom:644.933333pt;}
.yc9{bottom:647.133333pt;}
.ya8{bottom:647.293333pt;}
.y74{bottom:652.893333pt;}
.y167{bottom:655.333333pt;}
.y54{bottom:655.933333pt;}
.y119{bottom:660.933333pt;}
.y93{bottom:663.293333pt;}
.y102{bottom:663.333333pt;}
.y1a7{bottom:670.173333pt;}
.y20{bottom:671.453333pt;}
.y189{bottom:671.933333pt;}
.y1c0{bottom:674.013333pt;}
.yc8{bottom:674.653333pt;}
.y73{bottom:680.413333pt;}
.ybb{bottom:682.853333pt;}
.y53{bottom:683.453333pt;}
.y92{bottom:690.813333pt;}
.y1a6{bottom:697.693333pt;}
.y188{bottom:699.453333pt;}
.y1bf{bottom:701.693333pt;}
.yc7{bottom:702.333333pt;}
.y72{bottom:708.093333pt;}
.y52{bottom:711.133333pt;}
.y91{bottom:718.493333pt;}
.y1a5{bottom:725.373333pt;}
.y187{bottom:727.133333pt;}
.yc6{bottom:729.853333pt;}
.y101{bottom:734.080000pt;}
.y71{bottom:735.613333pt;}
.y51{bottom:738.653333pt;}
.y1be{bottom:745.213333pt;}
.y90{bottom:746.013333pt;}
.y1a4{bottom:752.893333pt;}
.y186{bottom:754.653333pt;}
.yc5{bottom:757.533333pt;}
.y70{bottom:763.293333pt;}
.ya6{bottom:765.853333pt;}
.y50{bottom:766.333333pt;}
.y8f{bottom:773.693333pt;}
.y1a3{bottom:780.613333pt;}
.y185{bottom:782.373333pt;}
.yc4{bottom:785.093333pt;}
.y1bd{bottom:788.933333pt;}
.y6f{bottom:790.853333pt;}
.y4f{bottom:793.893333pt;}
.y8e{bottom:801.253333pt;}
.y32{bottom:805.573333pt;}
.y1a2{bottom:808.133333pt;}
.y184{bottom:809.893333pt;}
.yc3{bottom:812.613333pt;}
.y6e{bottom:818.533333pt;}
.y4e{bottom:821.573333pt;}
.y8d{bottom:828.933333pt;}
.y1bc{bottom:832.453333pt;}
.y1f{bottom:833.253333pt;}
.y1a1{bottom:835.813333pt;}
.y183{bottom:837.573333pt;}
.yc2{bottom:840.293333pt;}
.y6d{bottom:846.053333pt;}
.y4d{bottom:849.093333pt;}
.yf{bottom:857.253333pt;}
.y1a0{bottom:863.333333pt;}
.y182{bottom:865.093333pt;}
.yc1{bottom:867.813333pt;}
.y19c{bottom:871.973333pt;}
.y6c{bottom:873.733333pt;}
.y4c{bottom:876.773333pt;}
.ya5{bottom:883.493333pt;}
.y6{bottom:884.773333pt;}
.y19f{bottom:890.853333pt;}
.y8c{bottom:891.493333pt;}
.y181{bottom:892.773333pt;}
.y6b{bottom:901.253333pt;}
.y4b{bottom:904.293333pt;}
.y180{bottom:920.293333pt;}
.ya4{bottom:927.173333pt;}
.y6a{bottom:928.933333pt;}
.yc0{bottom:929.573333pt;}
.y8b{bottom:939.013333pt;}
.y19e{bottom:947.013333pt;}
.y17f{bottom:947.813333pt;}
.y69{bottom:956.453333pt;}
.y4a{bottom:960.453333pt;}
.ybf{bottom:962.693333pt;}
.y8a{bottom:966.533333pt;}
.y31{bottom:984.133333pt;}
.y1bb{bottom:994.053333pt;}
.y89{bottom:1003.973333pt;}
.y19d{bottom:1011.520000pt;}
.y5{bottom:1011.680000pt;}
.y2{bottom:1047.520000pt;}
.y1{bottom:1062.880000pt;}
.h2f{height:20.000000pt;}
.h26{height:20.032000pt;}
.h24{height:34.400000pt;}
.h29{height:36.800000pt;}
.h7{height:39.040000pt;}
.hb{height:52.134375pt;}
.h33{height:52.800000pt;}
.h28{height:55.200000pt;}
.h2{height:55.402500pt;}
.h1d{height:62.781250pt;}
.h3{height:62.812500pt;}
.he{height:64.500000pt;}
.h1f{height:66.625000pt;}
.h15{height:66.750000pt;}
.h27{height:67.803750pt;}
.h21{height:69.660000pt;}
.h20{height:71.200000pt;}
.h11{height:73.490625pt;}
.h36{height:73.632000pt;}
.hd{height:75.465000pt;}
.h1e{height:77.951250pt;}
.h10{height:78.097500pt;}
.h14{height:83.281250pt;}
.h19{height:84.640000pt;}
.h16{height:88.992000pt;}
.h30{height:89.600000pt;}
.h2c{height:89.632000pt;}
.h37{height:92.000000pt;}
.h38{height:92.032000pt;}
.h8{height:94.218750pt;}
.ha{height:96.750000pt;}
.h13{height:99.937500pt;}
.h2d{height:108.000000pt;}
.h2e{height:108.032000pt;}
.h2a{height:110.432000pt;}
.h1a{height:112.032000pt;}
.h6{height:114.946875pt;}
.h17{height:116.480000pt;}
.h34{height:126.432000pt;}
.h2b{height:128.800000pt;}
.h23{height:128.832000pt;}
.h9{height:139.520000pt;}
.h18{height:144.186667pt;}
.h35{height:144.800000pt;}
.h22{height:144.826667pt;}
.h12{height:144.847500pt;}
.hf{height:146.106667pt;}
.h4{height:153.146667pt;}
.h31{height:163.226667pt;}
.h25{height:181.626667pt;}
.h32{height:218.426667pt;}
.hc{height:223.866667pt;}
.h5{height:412.346667pt;}
.h1b{height:793.760000pt;}
.h1c{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w26{width:26.720000pt;}
.w23{width:27.040000pt;}
.w32{width:27.680000pt;}
.w1f{width:28.000000pt;}
.w13{width:28.320000pt;}
.w39{width:37.440000pt;}
.w36{width:37.920000pt;}
.w29{width:73.600000pt;}
.w16{width:75.680000pt;}
.w35{width:83.680000pt;}
.w1a{width:83.712000pt;}
.w34{width:83.840000pt;}
.w2d{width:84.352000pt;}
.w22{width:85.600000pt;}
.w27{width:85.792000pt;}
.w21{width:86.240000pt;}
.w2c{width:88.000000pt;}
.w14{width:88.352000pt;}
.w19{width:90.560000pt;}
.w2f{width:100.480000pt;}
.w2e{width:101.280000pt;}
.w2b{width:101.440000pt;}
.w1c{width:103.392000pt;}
.w18{width:103.840000pt;}
.w1b{width:104.320000pt;}
.w2a{width:110.272000pt;}
.w17{width:113.472000pt;}
.w28{width:116.480000pt;}
.w15{width:119.840000pt;}
.w33{width:132.192000pt;}
.w30{width:133.786667pt;}
.w20{width:136.026667pt;}
.w1d{width:137.920000pt;}
.w37{width:141.946667pt;}
.w24{width:152.666667pt;}
.w1e{width:170.106667pt;}
.w31{width:195.866667pt;}
.w3{width:211.226667pt;}
.wb{width:257.146667pt;}
.w9{width:257.306667pt;}
.wc{width:264.546667pt;}
.wa{width:264.706667pt;}
.w8{width:282.906667pt;}
.w4{width:338.146667pt;}
.w7{width:360.866667pt;}
.w5{width:641.573333pt;}
.w6{width:641.733333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w25{width:1039.653333pt;}
.w38{width:1049.093333pt;}
.wf{width:1122.559983pt;}
.wd{width:1122.560000pt;}
.we{width:1122.666667pt;}
.w12{width:1285.119981pt;}
.w10{width:1285.120000pt;}
.w11{width:1285.333333pt;}
.x0{left:0.000000pt;}
.x34{left:7.200000pt;}
.x29{left:8.480000pt;}
.x7{left:9.600000pt;}
.xe{left:11.840000pt;}
.x10{left:13.920000pt;}
.x25{left:18.400000pt;}
.x24{left:20.480000pt;}
.x2e{left:23.680000pt;}
.x22{left:24.640000pt;}
.x27{left:30.080000pt;}
.x50{left:31.840000pt;}
.x42{left:37.280000pt;}
.x2c{left:38.400000pt;}
.x23{left:41.760000pt;}
.x2b{left:53.274667pt;}
.x20{left:55.194667pt;}
.x21{left:58.080000pt;}
.xa{left:59.360000pt;}
.x2f{left:67.040000pt;}
.x26{left:75.034667pt;}
.x8{left:76.480000pt;}
.x1f{left:88.832000pt;}
.x2a{left:92.826667pt;}
.x1{left:96.031988pt;}
.x2d{left:101.114667pt;}
.x14{left:103.712000pt;}
.x28{left:106.106667pt;}
.x17{left:110.751988pt;}
.x16{left:119.834667pt;}
.x18{left:125.471988pt;}
.x19{left:136.026655pt;}
.x1a{left:143.226655pt;}
.x44{left:152.986667pt;}
.x35{left:155.866667pt;}
.x1e{left:167.226655pt;}
.x5{left:201.626667pt;}
.x51{left:209.466667pt;}
.x9{left:212.226667pt;}
.xb{left:218.146667pt;}
.xf{left:222.466667pt;}
.x12{left:235.266667pt;}
.xc{left:245.186667pt;}
.x11{left:247.906667pt;}
.x13{left:249.986667pt;}
.x45{left:269.466667pt;}
.x15{left:273.314667pt;}
.x36{left:275.546667pt;}
.x4{left:289.986667pt;}
.x1b{left:318.306655pt;}
.xd{left:320.866667pt;}
.x55{left:324.866655pt;}
.x54{left:327.586655pt;}
.x32{left:328.866655pt;}
.x53{left:335.586655pt;}
.x46{left:343.066667pt;}
.x1d{left:345.506655pt;}
.x37{left:351.226667pt;}
.x6{left:386.786667pt;}
.x43{left:439.080000pt;}
.x52{left:443.880000pt;}
.x47{left:453.346667pt;}
.x38{left:464.706667pt;}
.x4e{left:475.266667pt;}
.x3f{left:487.266667pt;}
.x48{left:554.786667pt;}
.x4f{left:559.106667pt;}
.x39{left:568.546667pt;}
.x40{left:573.506667pt;}
.x49{left:642.786667pt;}
.x3a{left:659.106667pt;}
.x1c{left:681.893322pt;}
.x2{left:689.893322pt;}
.x3{left:697.893322pt;}
.x4a{left:727.133333pt;}
.x3b{left:742.813333pt;}
.x4b{left:828.413333pt;}
.x3c{left:847.133333pt;}
.x4c{left:928.893333pt;}
.x3d{left:950.533333pt;}
.x31{left:989.573317pt;}
.x30{left:1010.693317pt;}
.x4d{left:1062.693333pt;}
.x3e{left:1088.453333pt;}
.x33{left:1173.253314pt;}
.x41{left:1189.253314pt;}
}




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