
    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_ab87bdca5a4368092ec67014.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959473;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_50e14591fb3dda5a3f9af216.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.942871;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_efca7a09b814b95082ef54c2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.970215;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_7cf40dbd644c14961163d349.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6ad86d7b386d7bacaf50eb8a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.708008;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_21762c4377fe3936c747a7f2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942871;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_8aa65ffbcd5007edee903763.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.088379;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_52b66762a378fcd52ab88f52.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.088379;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_632cb4cc38e9885aa125017a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.959473;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_f7c0f201bdf04eade4c89772.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.950684;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_04ac6c01a605907b4d7f0851.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.950684;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_98178789df1190f786a91a5b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.970215;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{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);}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-1.368000px;}
.ls18{letter-spacing:-1.254000px;}
.lsb{letter-spacing:-0.432000px;}
.ls9{letter-spacing:-0.168000px;}
.lse{letter-spacing:-0.126000px;}
.ls19{letter-spacing:-0.096000px;}
.ls1a{letter-spacing:-0.072000px;}
.lsa{letter-spacing:-0.054000px;}
.ls10{letter-spacing:-0.024000px;}
.ls8{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.060000px;}
.ls5{letter-spacing:0.138000px;}
.ls3{letter-spacing:0.192000px;}
.ls16{letter-spacing:0.198000px;}
.ls17{letter-spacing:0.240000px;}
.ls12{letter-spacing:0.246000px;}
.ls11{letter-spacing:0.300000px;}
.ls13{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.366000px;}
.ls14{letter-spacing:0.420000px;}
.ls1{letter-spacing:0.480000px;}
.ls0{letter-spacing:0.528000px;}
.lsd{letter-spacing:0.600000px;}
.ls7{letter-spacing:0.660000px;}
.ls15{letter-spacing:1.146000px;}
.ls6{letter-spacing:7.200000px;}
.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;}
}
.ws8{word-spacing:-18.973476px;}
.ws6{word-spacing:-18.000000px;}
.wse{word-spacing:-17.976000px;}
.ws3{word-spacing:-17.832000px;}
.ws7{word-spacing:-17.784000px;}
.wsd{word-spacing:-17.568000px;}
.ws0{word-spacing:-17.040000px;}
.wsf{word-spacing:-16.746000px;}
.ws10{word-spacing:-16.698000px;}
.ws5{word-spacing:-16.500000px;}
.ws12{word-spacing:-16.428000px;}
.ws11{word-spacing:-16.404000px;}
.ws2{word-spacing:-15.096000px;}
.ws9{word-spacing:-15.000000px;}
.ws1{word-spacing:-14.904000px;}
.wsc{word-spacing:-13.866000px;}
.wsa{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.374000px;}
.ws4{word-spacing:0.000000px;}
._16{margin-left:-5.112000px;}
._17{margin-left:-3.528000px;}
._9{margin-left:-2.430000px;}
._1{margin-left:-1.200000px;}
._0{width:1.080000px;}
._1b{width:2.148000px;}
._5{width:3.168000px;}
._6{width:4.662000px;}
._b{width:5.766000px;}
._3{width:6.978000px;}
._2{width:8.424000px;}
._e{width:10.098000px;}
._f{width:11.604000px;}
._c{width:12.870000px;}
._d{width:14.034000px;}
._a{width:15.444000px;}
._15{width:16.476000px;}
._12{width:17.862000px;}
._11{width:18.930000px;}
._13{width:20.526000px;}
._10{width:22.134000px;}
._7{width:23.826000px;}
._8{width:24.906000px;}
._1a{width:25.992000px;}
._20{width:27.216000px;}
._1f{width:28.440000px;}
._21{width:29.448000px;}
._1c{width:30.936000px;}
._26{width:32.010000px;}
._1d{width:33.048000px;}
._1e{width:34.446000px;}
._22{width:36.072000px;}
._14{width:37.296000px;}
._24{width:39.294000px;}
._25{width:40.320000px;}
._4{width:42.240000px;}
._19{width:43.848000px;}
._18{width:45.144000px;}
._23{width:47.064000px;}
._27{width:48.888000px;}
._28{width:52.488000px;}
._37{width:57.870000px;}
._36{width:62.376000px;}
._38{width:76.968000px;}
._33{width:78.210000px;}
._34{width:79.242000px;}
._29{width:97.740000px;}
._2a{width:99.480000px;}
._2e{width:134.970000px;}
._2f{width:136.026000px;}
._35{width:168.054000px;}
._32{width:175.692000px;}
._2b{width:204.534000px;}
._39{width:207.306000px;}
._3a{width:208.944000px;}
._31{width:261.522000px;}
._30{width:262.866000px;}
._2d{width:350.988000px;}
._2c{width:352.740000px;}
.fc2{color:rgb(70,120,134);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:75.893905px;}
.fs3{font-size:96.000000px;}
.fs6{font-size:101.191873px;}
.y0{bottom:0.000000px;}
.y133{bottom:3.600000px;}
.y12c{bottom:4.200000px;}
.y1a7{bottom:5.400000px;}
.y136{bottom:11.100000px;}
.y1b6{bottom:11.145000px;}
.y13b{bottom:11.400000px;}
.y1ae{bottom:11.445000px;}
.y12e{bottom:11.700000px;}
.y1a8{bottom:12.900000px;}
.y1ab{bottom:13.200000px;}
.y132{bottom:18.585000px;}
.y140{bottom:18.600000px;}
.y180{bottom:18.885000px;}
.y139{bottom:18.900000px;}
.y1b0{bottom:18.930000px;}
.y179{bottom:18.937500px;}
.y1b5{bottom:18.945000px;}
.y12a{bottom:19.200000px;}
.y1a6{bottom:20.700000px;}
.y173{bottom:26.100000px;}
.y16d{bottom:26.385000px;}
.y13a{bottom:26.400000px;}
.y135{bottom:26.430000px;}
.y17c{bottom:26.437500px;}
.y163{bottom:26.445000px;}
.y12d{bottom:27.000000px;}
.y13d{bottom:33.885000px;}
.y142{bottom:33.900000px;}
.y131{bottom:33.930000px;}
.y178{bottom:33.937500px;}
.y13f{bottom:33.945000px;}
.y17f{bottom:34.185000px;}
.y138{bottom:34.200000px;}
.y182{bottom:34.230000px;}
.y1af{bottom:34.245000px;}
.y12b{bottom:34.500000px;}
.y172{bottom:41.400000px;}
.y134{bottom:41.430000px;}
.y17b{bottom:41.437500px;}
.y16b{bottom:41.700000px;}
.y161{bottom:41.730000px;}
.y1ad{bottom:41.745000px;}
.y175{bottom:48.900000px;}
.y168{bottom:49.200000px;}
.y130{bottom:49.230000px;}
.y177{bottom:49.237500px;}
.y166{bottom:49.245000px;}
.y16c{bottom:56.700000px;}
.y17a{bottom:56.737500px;}
.y162{bottom:56.745000px;}
.y49{bottom:58.837500px;}
.y29{bottom:60.037500px;}
.y174{bottom:64.200000px;}
.y17d{bottom:64.237500px;}
.y169{bottom:64.500000px;}
.y16f{bottom:64.530000px;}
.y165{bottom:64.545000px;}
.y6{bottom:69.937500px;}
.y48{bottom:78.337500px;}
.y16e{bottom:79.530000px;}
.y164{bottom:79.545000px;}
.y28{bottom:80.737500px;}
.y5{bottom:97.837500px;}
.y1a9{bottom:99.637500px;}
.y15b{bottom:100.837500px;}
.y107{bottom:102.037500px;}
.y144{bottom:104.137500px;}
.y1cc{bottom:105.937500px;}
.ya5{bottom:106.237500px;}
.y68{bottom:107.437500px;}
.y226{bottom:108.037500px;}
.y122{bottom:110.737500px;}
.ydf{bottom:112.537500px;}
.y92{bottom:114.337500px;}
.y85{bottom:114.937500px;}
.y19c{bottom:115.537500px;}
.y1e4{bottom:117.637500px;}
.y47{bottom:121.537500px;}
.y15a{bottom:123.937500px;}
.y106{bottom:125.137500px;}
.y205{bottom:127.237500px;}
.y1cb{bottom:129.037500px;}
.ya4{bottom:129.337500px;}
.y67{bottom:130.537500px;}
.y25{bottom:132.037500px;}
.y176{bottom:132.637500px;}
.y121{bottom:133.837500px;}
.yde{bottom:135.637500px;}
.y1e3{bottom:136.537500px;}
.y91{bottom:137.437500px;}
.y84{bottom:138.037500px;}
.y19b{bottom:138.637500px;}
.yf3{bottom:139.837500px;}
.y46{bottom:144.675000px;}
.y204{bottom:146.475000px;}
.y159{bottom:147.075000px;}
.y105{bottom:148.275000px;}
.y143{bottom:150.675000px;}
.y24{bottom:151.275000px;}
.y1ca{bottom:152.175000px;}
.y15c{bottom:152.475000px;}
.y225{bottom:152.775000px;}
.y66{bottom:153.675000px;}
.ycd{bottom:154.275000px;}
.y1e2{bottom:155.775000px;}
.y120{bottom:156.975000px;}
.ydd{bottom:158.775000px;}
.y1a0{bottom:159.075000px;}
.y90{bottom:160.575000px;}
.y83{bottom:161.175000px;}
.y19a{bottom:161.775000px;}
.yf2{bottom:162.975000px;}
.y1d7{bottom:165.075000px;}
.y203{bottom:165.675000px;}
.y45{bottom:167.775000px;}
.ya3{bottom:170.175000px;}
.y23{bottom:170.475000px;}
.y104{bottom:171.375000px;}
.y224{bottom:171.975000px;}
.y1e1{bottom:174.975000px;}
.y1c9{bottom:175.275000px;}
.y65{bottom:176.775000px;}
.ycc{bottom:177.375000px;}
.y11f{bottom:180.075000px;}
.ydc{bottom:181.875000px;}
.y8f{bottom:183.675000px;}
.y82{bottom:184.275000px;}
.y202{bottom:184.575000px;}
.y199{bottom:184.875000px;}
.yf1{bottom:186.075000px;}
.y1d6{bottom:188.175000px;}
.y22{bottom:189.675000px;}
.y44{bottom:190.875000px;}
.y223{bottom:191.175000px;}
.ya2{bottom:193.275000px;}
.y1e0{bottom:193.875000px;}
.y103{bottom:194.775000px;}
.y141{bottom:196.875000px;}
.y1c8{bottom:198.375000px;}
.y64{bottom:199.875000px;}
.ycb{bottom:200.475000px;}
.y11e{bottom:203.175000px;}
.y201{bottom:203.775000px;}
.ydb{bottom:204.975000px;}
.y8e{bottom:206.775000px;}
.y198{bottom:207.975000px;}
.y21{bottom:208.875000px;}
.y171{bottom:209.475000px;}
.y222{bottom:210.375000px;}
.y1d5{bottom:211.275000px;}
.y1df{bottom:213.075000px;}
.y158{bottom:216.375000px;}
.ya1{bottom:216.675000px;}
.y1bf{bottom:221.175000px;}
.y1a5{bottom:221.775000px;}
.y127{bottom:222.975000px;}
.yca{bottom:223.575000px;}
.y81{bottom:225.375000px;}
.y11d{bottom:226.275000px;}
.yf0{bottom:227.175000px;}
.y20{bottom:227.775000px;}
.y221{bottom:229.275000px;}
.y43{bottom:230.175000px;}
.y1de{bottom:232.275000px;}
.y1d4{bottom:234.375000px;}
.y102{bottom:235.575000px;}
.y157{bottom:239.475000px;}
.ya0{bottom:239.775000px;}
.y63{bottom:240.975000px;}
.y200{bottom:241.875000px;}
.y13e{bottom:243.375000px;}
.y1be{bottom:244.275000px;}
.y1a4{bottom:244.875000px;}
.yda{bottom:246.075000px;}
.yc9{bottom:246.675000px;}
.y1f{bottom:246.975000px;}
.y80{bottom:248.475000px;}
.y197{bottom:249.075000px;}
.y11c{bottom:249.375000px;}
.yef{bottom:250.275000px;}
.y1dd{bottom:251.475000px;}
.y8d{bottom:253.275000px;}
.y1d3{bottom:257.475000px;}
.y101{bottom:258.675000px;}
.y1ff{bottom:261.075000px;}
.y1c7{bottom:262.575000px;}
.y9f{bottom:262.875000px;}
.y62{bottom:264.075000px;}
.y1e{bottom:266.175000px;}
.y1bd{bottom:267.375000px;}
.y220{bottom:267.675000px;}
.y42{bottom:268.275000px;}
.yd9{bottom:269.175000px;}
.yc8{bottom:269.775000px;}
.y1dc{bottom:270.375000px;}
.y7f{bottom:271.575000px;}
.y196{bottom:272.175000px;}
.y11b{bottom:272.475000px;}
.yee{bottom:273.375000px;}
.y1fe{bottom:280.320000px;}
.y156{bottom:280.620000px;}
.y100{bottom:281.820000px;}
.y1d{bottom:285.420000px;}
.y1c6{bottom:285.720000px;}
.y9e{bottom:286.005000px;}
.y170{bottom:286.020000px;}
.y21f{bottom:286.620000px;}
.y61{bottom:287.220000px;}
.y13c{bottom:289.620000px;}
.y1bc{bottom:290.520000px;}
.y8c{bottom:292.320000px;}
.yc7{bottom:292.905000px;}
.yb6{bottom:294.120000px;}
.y7e{bottom:294.720000px;}
.y195{bottom:295.320000px;}
.y11a{bottom:295.620000px;}
.y1fd{bottom:299.220000px;}
.y155{bottom:303.720000px;}
.y1c{bottom:304.620000px;}
.yff{bottom:304.920000px;}
.y21e{bottom:305.820000px;}
.y41{bottom:306.405000px;}
.y1c5{bottom:308.820000px;}
.y9d{bottom:309.120000px;}
.y60{bottom:310.320000px;}
.y1bb{bottom:313.620000px;}
.yed{bottom:314.220000px;}
.yd8{bottom:315.420000px;}
.yc6{bottom:316.020000px;}
.yb5{bottom:317.220000px;}
.y7d{bottom:317.820000px;}
.y194{bottom:318.420000px;}
.y119{bottom:318.720000px;}
.y1b{bottom:323.820000px;}
.y21d{bottom:325.005000px;}
.y154{bottom:326.820000px;}
.y1db{bottom:327.720000px;}
.yfe{bottom:328.020000px;}
.y1c4{bottom:331.920000px;}
.y9c{bottom:332.220000px;}
.y5f{bottom:333.405000px;}
.y137{bottom:335.820000px;}
.y1ba{bottom:336.720000px;}
.yec{bottom:337.320000px;}
.y1fc{bottom:337.620000px;}
.yd7{bottom:338.505000px;}
.yb4{bottom:340.320000px;}
.y7c{bottom:340.920000px;}
.y193{bottom:341.520000px;}
.y118{bottom:341.820000px;}
.y1a{bottom:343.020000px;}
.y40{bottom:343.920000px;}
.y1da{bottom:346.905000px;}
.y16a{bottom:347.520000px;}
.y153{bottom:349.905000px;}
.yfd{bottom:351.120000px;}
.y1c3{bottom:355.020000px;}
.y9b{bottom:355.320000px;}
.y5e{bottom:356.520000px;}
.yc5{bottom:357.120000px;}
.y1b9{bottom:359.820000px;}
.yeb{bottom:360.405000px;}
.yd6{bottom:361.620000px;}
.y19f{bottom:361.905000px;}
.y3f{bottom:363.120000px;}
.yb3{bottom:363.405000px;}
.y19{bottom:363.720000px;}
.y7b{bottom:364.005000px;}
.y192{bottom:364.620000px;}
.y117{bottom:364.920000px;}
.y1d9{bottom:366.120000px;}
.y152{bottom:373.020000px;}
.yfc{bottom:374.220000px;}
.y1fb{bottom:375.720000px;}
.y1c2{bottom:378.120000px;}
.y5d{bottom:379.620000px;}
.yc4{bottom:380.220000px;}
.y12f{bottom:382.320000px;}
.y1b8{bottom:382.920000px;}
.yd5{bottom:384.720000px;}
.y1cd{bottom:385.020000px;}
.y18{bottom:385.620000px;}
.yb2{bottom:386.520000px;}
.y7a{bottom:387.120000px;}
.y191{bottom:387.720000px;}
.y1fa{bottom:394.920000px;}
.y9a{bottom:396.120000px;}
.yfb{bottom:397.620000px;}
.y3e{bottom:400.020000px;}
.y1c1{bottom:401.220000px;}
.yea{bottom:401.520000px;}
.y5c{bottom:402.720000px;}
.yc3{bottom:403.320000px;}
.y1d8{bottom:403.905000px;}
.y116{bottom:406.005000px;}
.y17{bottom:407.220000px;}
.yd4{bottom:407.820000px;}
.yb1{bottom:409.650000px;}
.y79{bottom:410.250000px;}
.y190{bottom:410.850000px;}
.y1f9{bottom:413.850000px;}
.y151{bottom:419.250000px;}
.y99{bottom:419.550000px;}
.y21c{bottom:420.450000px;}
.yfa{bottom:420.750000px;}
.ye9{bottom:424.650000px;}
.y8b{bottom:425.850000px;}
.yc2{bottom:426.450000px;}
.y16{bottom:427.950000px;}
.y115{bottom:429.150000px;}
.yd3{bottom:430.950000px;}
.y1f8{bottom:433.050000px;}
.y78{bottom:433.350000px;}
.y18f{bottom:433.950000px;}
.y1d2{bottom:437.250000px;}
.y3d{bottom:437.550000px;}
.y167{bottom:439.350000px;}
.y21b{bottom:439.650000px;}
.y150{bottom:442.350000px;}
.y98{bottom:442.650000px;}
.y5b{bottom:443.850000px;}
.y15{bottom:447.450000px;}
.ye8{bottom:447.750000px;}
.y8a{bottom:448.950000px;}
.yc1{bottom:449.550000px;}
.yb0{bottom:450.750000px;}
.y114{bottom:452.250000px;}
.y3c{bottom:456.750000px;}
.y18e{bottom:457.050000px;}
.y21a{bottom:458.550000px;}
.y1d1{bottom:460.350000px;}
.y14f{bottom:465.450000px;}
.y97{bottom:465.750000px;}
.y5a{bottom:466.950000px;}
.y14{bottom:467.250000px;}
.ye7{bottom:470.850000px;}
.y1f7{bottom:471.150000px;}
.y89{bottom:472.050000px;}
.y77{bottom:472.650000px;}
.yaf{bottom:473.850000px;}
.y113{bottom:475.350000px;}
.y3b{bottom:475.950000px;}
.y219{bottom:477.750000px;}
.y18d{bottom:480.150000px;}
.y1d0{bottom:483.450000px;}
.y13{bottom:487.350000px;}
.y14e{bottom:488.550000px;}
.y96{bottom:488.850000px;}
.y59{bottom:490.050000px;}
.y1f6{bottom:490.350000px;}
.ye6{bottom:493.950000px;}
.y3a{bottom:495.150000px;}
.yc0{bottom:495.750000px;}
.yae{bottom:496.950000px;}
.y112{bottom:498.450000px;}
.y1c0{bottom:506.550000px;}
.y12{bottom:508.650000px;}
.y1f5{bottom:509.550000px;}
.y14d{bottom:511.650000px;}
.y76{bottom:511.950000px;}
.y1b7{bottom:512.550000px;}
.y58{bottom:513.150000px;}
.y39{bottom:514.350000px;}
.y218{bottom:515.850000px;}
.y160{bottom:516.150000px;}
.y129{bottom:517.050000px;}
.y88{bottom:518.250000px;}
.ybf{bottom:518.850000px;}
.yad{bottom:520.050000px;}
.y18c{bottom:521.250000px;}
.y111{bottom:521.550000px;}
.y1f4{bottom:528.450000px;}
.y11{bottom:529.350000px;}
.y1a3{bottom:529.650000px;}
.y38{bottom:533.550000px;}
.ye5{bottom:535.050000px;}
.y57{bottom:536.250000px;}
.y128{bottom:540.150000px;}
.yd2{bottom:541.395000px;}
.ybe{bottom:541.995000px;}
.yac{bottom:543.195000px;}
.y18b{bottom:544.380000px;}
.y110{bottom:544.695000px;}
.y1f3{bottom:547.695000px;}
.y10{bottom:548.895000px;}
.y37{bottom:552.780000px;}
.yf9{bottom:553.995000px;}
.y217{bottom:554.280000px;}
.ye4{bottom:558.195000px;}
.y56{bottom:559.380000px;}
.yd1{bottom:564.495000px;}
.y19e{bottom:564.795000px;}
.yab{bottom:566.280000px;}
.y1f2{bottom:566.895000px;}
.y18a{bottom:567.495000px;}
.y10f{bottom:567.795000px;}
.yf{bottom:568.695000px;}
.y36{bottom:571.995000px;}
.y216{bottom:573.195000px;}
.y75{bottom:575.895000px;}
.yf8{bottom:577.095000px;}
.ye3{bottom:581.295000px;}
.y1b4{bottom:581.595000px;}
.y55{bottom:582.495000px;}
.ybd{bottom:583.095000px;}
.y1f1{bottom:585.780000px;}
.yd0{bottom:587.595000px;}
.y19d{bottom:587.895000px;}
.yaa{bottom:589.395000px;}
.y189{bottom:590.595000px;}
.y10e{bottom:590.895000px;}
.y35{bottom:591.195000px;}
.y215{bottom:592.395000px;}
.y74{bottom:598.995000px;}
.yf7{bottom:600.495000px;}
.ye2{bottom:604.395000px;}
.y1f0{bottom:604.995000px;}
.y54{bottom:605.595000px;}
.ybc{bottom:606.195000px;}
.y15f{bottom:607.995000px;}
.ye{bottom:609.495000px;}
.y34{bottom:610.095000px;}
.ycf{bottom:610.695000px;}
.y214{bottom:611.595000px;}
.ya9{bottom:612.495000px;}
.y188{bottom:613.695000px;}
.y10d{bottom:613.995000px;}
.y14c{bottom:622.095000px;}
.y73{bottom:622.380000px;}
.yf6{bottom:623.595000px;}
.y1ef{bottom:624.195000px;}
.ye1{bottom:627.495000px;}
.y53{bottom:628.695000px;}
.y33{bottom:629.295000px;}
.y213{bottom:630.495000px;}
.yd{bottom:631.095000px;}
.ya8{bottom:635.880000px;}
.y187{bottom:636.795000px;}
.y10c{bottom:637.095000px;}
.y1b3{bottom:643.095000px;}
.y1ee{bottom:643.380000px;}
.y14b{bottom:645.195000px;}
.y72{bottom:645.495000px;}
.yf5{bottom:646.695000px;}
.y32{bottom:648.495000px;}
.y212{bottom:649.695000px;}
.ye0{bottom:650.595000px;}
.y52{bottom:651.795000px;}
.ybb{bottom:652.395000px;}
.yc{bottom:657.795000px;}
.ya7{bottom:658.995000px;}
.y186{bottom:659.895000px;}
.y10b{bottom:660.495000px;}
.y1ed{bottom:662.295000px;}
.y31{bottom:667.695000px;}
.y14a{bottom:668.295000px;}
.y71{bottom:668.595000px;}
.y211{bottom:668.880000px;}
.yf4{bottom:669.795000px;}
.y1b2{bottom:674.025000px;}
.y51{bottom:674.925000px;}
.yba{bottom:675.525000px;}
.y15e{bottom:680.025000px;}
.y1ec{bottom:681.525000px;}
.ya6{bottom:682.125000px;}
.y10a{bottom:683.625000px;}
.yb{bottom:684.825000px;}
.y1cf{bottom:686.325000px;}
.y30{bottom:686.925000px;}
.y210{bottom:688.125000px;}
.y149{bottom:691.425000px;}
.y70{bottom:691.725000px;}
.yce{bottom:692.925000px;}
.y87{bottom:698.025000px;}
.yb9{bottom:698.625000px;}
.y185{bottom:699.225000px;}
.y1eb{bottom:700.725000px;}
.y15d{bottom:703.425000px;}
.y20f{bottom:707.025000px;}
.y1ce{bottom:709.425000px;}
.ya{bottom:711.825000px;}
.y148{bottom:714.525000px;}
.y6f{bottom:714.825000px;}
.y50{bottom:716.025000px;}
.y184{bottom:719.625000px;}
.y86{bottom:721.125000px;}
.yb8{bottom:721.725000px;}
.y109{bottom:722.625000px;}
.y2f{bottom:723.825000px;}
.y20e{bottom:726.225000px;}
.y1a2{bottom:732.525000px;}
.y1b1{bottom:735.525000px;}
.y6e{bottom:737.925000px;}
.y9{bottom:738.525000px;}
.y1ea{bottom:738.825000px;}
.y4f{bottom:739.125000px;}
.y108{bottom:743.025000px;}
.y126{bottom:744.225000px;}
.yb7{bottom:744.825000px;}
.y20d{bottom:745.425000px;}
.y1a1{bottom:755.625000px;}
.y183{bottom:756.525000px;}
.y1e9{bottom:758.025000px;}
.y95{bottom:761.025000px;}
.y2e{bottom:761.325000px;}
.y4e{bottom:762.225000px;}
.y20c{bottom:764.325000px;}
.y8{bottom:765.525000px;}
.y125{bottom:767.625000px;}
.y1e8{bottom:776.925000px;}
.y6d{bottom:778.725000px;}
.y181{bottom:779.025000px;}
.y2d{bottom:780.525000px;}
.y20b{bottom:783.525000px;}
.y94{bottom:784.125000px;}
.y4d{bottom:785.325000px;}
.y124{bottom:790.725000px;}
.y7{bottom:792.225000px;}
.y1e7{bottom:796.125000px;}
.y1ac{bottom:797.025000px;}
.y6c{bottom:801.825000px;}
.y20a{bottom:802.725000px;}
.y93{bottom:807.255000px;}
.y4c{bottom:808.470000px;}
.y123{bottom:813.870000px;}
.y1e6{bottom:815.370000px;}
.y4{bottom:816.255000px;}
.y2c{bottom:817.170000px;}
.y209{bottom:821.670000px;}
.y147{bottom:823.170000px;}
.y6b{bottom:825.270000px;}
.y4b{bottom:831.570000px;}
.y1e5{bottom:834.255000px;}
.y17e{bottom:840.570000px;}
.y208{bottom:840.870000px;}
.y146{bottom:843.570000px;}
.y6a{bottom:848.370000px;}
.y2b{bottom:853.455000px;}
.y3{bottom:854.670000px;}
.y1aa{bottom:858.570000px;}
.y207{bottom:860.070000px;}
.y69{bottom:871.470000px;}
.y2{bottom:872.370000px;}
.y2a{bottom:872.670000px;}
.y4a{bottom:877.755000px;}
.y206{bottom:878.970000px;}
.y145{bottom:880.455000px;}
.y1{bottom:895.755000px;}
.y27{bottom:916.755000px;}
.y26{bottom:933.570000px;}
.h1d{height:30.337500px;}
.h1b{height:33.900000px;}
.h1c{height:34.200000px;}
.h11{height:37.599609px;}
.h4{height:40.500000px;}
.h15{height:41.777344px;}
.hf{height:45.246094px;}
.h13{height:45.337500px;}
.h12{height:45.600000px;}
.h14{height:45.637500px;}
.h1f{height:45.826172px;}
.h7{height:45.955078px;}
.he{height:46.800000px;}
.ha{height:49.500000px;}
.h8{height:49.992188px;}
.h2{height:50.132812px;}
.h3{height:54.000000px;}
.h9{height:55.300781px;}
.hb{height:60.328125px;}
.h1e{height:60.585000px;}
.h10{height:60.637500px;}
.h18{height:60.900000px;}
.h1a{height:60.937500px;}
.hc{height:63.590791px;}
.h6{height:66.843750px;}
.h19{height:75.937500px;}
.h17{height:76.200000px;}
.h5{height:80.437500px;}
.hd{height:84.787722px;}
.h16{height:91.237500px;}
.h1{height:999.000000px;}
.h0{height:999.300000px;}
.w8{width:78.937500px;}
.wb{width:81.637500px;}
.w9{width:82.237500px;}
.we{width:82.837500px;}
.w6{width:94.537500px;}
.wa{width:95.737500px;}
.wd{width:96.037500px;}
.w7{width:96.337500px;}
.w11{width:102.337500px;}
.wc{width:103.237500px;}
.wf{width:106.537500px;}
.w4{width:114.037500px;}
.w3{width:114.637500px;}
.w10{width:117.337500px;}
.w5{width:118.575000px;}
.w12{width:128.775000px;}
.w2{width:701.699990px;}
.w0{width:701.700000px;}
.w1{width:702.000000px;}
.x0{left:0.000000px;}
.x20{left:5.400000px;}
.x2c{left:6.900000px;}
.x1a{left:8.100000px;}
.x1c{left:10.200000px;}
.x2f{left:11.730000px;}
.x24{left:12.900000px;}
.x2a{left:14.430000px;}
.x22{left:15.585000px;}
.x3a{left:16.800000px;}
.x28{left:18.000000px;}
.x23{left:19.500000px;}
.x30{left:20.730000px;}
.x26{left:22.800000px;}
.x33{left:24.630000px;}
.x27{left:26.400000px;}
.x1e{left:27.600000px;}
.x32{left:28.830000px;}
.x40{left:30.030000px;}
.x2e{left:31.200000px;}
.x29{left:33.330000px;}
.x1d{left:34.545000px;}
.x2b{left:36.000000px;}
.x31{left:37.500000px;}
.x41{left:38.730000px;}
.x39{left:39.900000px;}
.x2d{left:41.430000px;}
.x34{left:43.530000px;}
.x3f{left:44.700000px;}
.x3e{left:46.530000px;}
.x14{left:83.737490px;}
.x5{left:84.937490px;}
.x9{left:93.337490px;}
.x2{left:103.537490px;}
.x7{left:113.737490px;}
.x19{left:138.074990px;}
.x6{left:159.674990px;}
.x35{left:163.875000px;}
.x3b{left:167.775000px;}
.x8{left:176.474990px;}
.x1b{left:199.575000px;}
.xb{left:204.374990px;}
.xa{left:212.474990px;}
.x36{left:246.120000px;}
.x3c{left:274.320000px;}
.x1f{left:313.620000px;}
.x37{left:341.850000px;}
.xf{left:391.949990px;}
.x3{left:401.849990px;}
.xe{left:409.049990px;}
.x38{left:423.495000px;}
.x12{left:425.279990px;}
.x21{left:432.195000px;}
.x18{left:461.279990px;}
.x10{left:463.394990px;}
.xc{left:470.879990px;}
.xd{left:481.694990px;}
.x11{left:487.094990px;}
.x3d{left:493.995000px;}
.x16{left:497.879990px;}
.x15{left:499.979990px;}
.x25{left:526.725000px;}
.x17{left:608.969990px;}
.x1{left:616.754990px;}
.x13{left:621.254990px;}
.x4{left:622.754990px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-1.216000pt;}
.ls18{letter-spacing:-1.114667pt;}
.lsb{letter-spacing:-0.384000pt;}
.ls9{letter-spacing:-0.149333pt;}
.lse{letter-spacing:-0.112000pt;}
.ls19{letter-spacing:-0.085333pt;}
.ls1a{letter-spacing:-0.064000pt;}
.lsa{letter-spacing:-0.048000pt;}
.ls10{letter-spacing:-0.021333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.053333pt;}
.ls5{letter-spacing:0.122667pt;}
.ls3{letter-spacing:0.170667pt;}
.ls16{letter-spacing:0.176000pt;}
.ls17{letter-spacing:0.213333pt;}
.ls12{letter-spacing:0.218667pt;}
.ls11{letter-spacing:0.266667pt;}
.ls13{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.325333pt;}
.ls14{letter-spacing:0.373333pt;}
.ls1{letter-spacing:0.426667pt;}
.ls0{letter-spacing:0.469333pt;}
.lsd{letter-spacing:0.533333pt;}
.ls7{letter-spacing:0.586667pt;}
.ls15{letter-spacing:1.018667pt;}
.ls6{letter-spacing:6.400000pt;}
.ws8{word-spacing:-16.865312pt;}
.ws6{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.978667pt;}
.ws3{word-spacing:-15.850667pt;}
.ws7{word-spacing:-15.808000pt;}
.wsd{word-spacing:-15.616000pt;}
.ws0{word-spacing:-15.146667pt;}
.wsf{word-spacing:-14.885333pt;}
.ws10{word-spacing:-14.842667pt;}
.ws5{word-spacing:-14.666667pt;}
.ws12{word-spacing:-14.602667pt;}
.ws11{word-spacing:-14.581333pt;}
.ws2{word-spacing:-13.418667pt;}
.ws9{word-spacing:-13.333333pt;}
.ws1{word-spacing:-13.248000pt;}
.wsc{word-spacing:-12.325333pt;}
.wsa{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.888000pt;}
.ws4{word-spacing:0.000000pt;}
._16{margin-left:-4.544000pt;}
._17{margin-left:-3.136000pt;}
._9{margin-left:-2.160000pt;}
._1{margin-left:-1.066667pt;}
._0{width:0.960000pt;}
._1b{width:1.909333pt;}
._5{width:2.816000pt;}
._6{width:4.144000pt;}
._b{width:5.125333pt;}
._3{width:6.202667pt;}
._2{width:7.488000pt;}
._e{width:8.976000pt;}
._f{width:10.314667pt;}
._c{width:11.440000pt;}
._d{width:12.474667pt;}
._a{width:13.728000pt;}
._15{width:14.645333pt;}
._12{width:15.877333pt;}
._11{width:16.826667pt;}
._13{width:18.245333pt;}
._10{width:19.674667pt;}
._7{width:21.178667pt;}
._8{width:22.138667pt;}
._1a{width:23.104000pt;}
._20{width:24.192000pt;}
._1f{width:25.280000pt;}
._21{width:26.176000pt;}
._1c{width:27.498667pt;}
._26{width:28.453333pt;}
._1d{width:29.376000pt;}
._1e{width:30.618667pt;}
._22{width:32.064000pt;}
._14{width:33.152000pt;}
._24{width:34.928000pt;}
._25{width:35.840000pt;}
._4{width:37.546667pt;}
._19{width:38.976000pt;}
._18{width:40.128000pt;}
._23{width:41.834667pt;}
._27{width:43.456000pt;}
._28{width:46.656000pt;}
._37{width:51.440000pt;}
._36{width:55.445333pt;}
._38{width:68.416000pt;}
._33{width:69.520000pt;}
._34{width:70.437333pt;}
._29{width:86.880000pt;}
._2a{width:88.426667pt;}
._2e{width:119.973333pt;}
._2f{width:120.912000pt;}
._35{width:149.381333pt;}
._32{width:156.170667pt;}
._2b{width:181.808000pt;}
._39{width:184.272000pt;}
._3a{width:185.728000pt;}
._31{width:232.464000pt;}
._30{width:233.658667pt;}
._2d{width:311.989333pt;}
._2c{width:313.546667pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:67.461249pt;}
.fs3{font-size:85.333333pt;}
.fs6{font-size:89.948332pt;}
.y0{bottom:0.000000pt;}
.y133{bottom:3.200000pt;}
.y12c{bottom:3.733333pt;}
.y1a7{bottom:4.800000pt;}
.y136{bottom:9.866667pt;}
.y1b6{bottom:9.906667pt;}
.y13b{bottom:10.133333pt;}
.y1ae{bottom:10.173333pt;}
.y12e{bottom:10.400000pt;}
.y1a8{bottom:11.466667pt;}
.y1ab{bottom:11.733333pt;}
.y132{bottom:16.520000pt;}
.y140{bottom:16.533333pt;}
.y180{bottom:16.786667pt;}
.y139{bottom:16.800000pt;}
.y1b0{bottom:16.826667pt;}
.y179{bottom:16.833333pt;}
.y1b5{bottom:16.840000pt;}
.y12a{bottom:17.066667pt;}
.y1a6{bottom:18.400000pt;}
.y173{bottom:23.200000pt;}
.y16d{bottom:23.453333pt;}
.y13a{bottom:23.466667pt;}
.y135{bottom:23.493333pt;}
.y17c{bottom:23.500000pt;}
.y163{bottom:23.506667pt;}
.y12d{bottom:24.000000pt;}
.y13d{bottom:30.120000pt;}
.y142{bottom:30.133333pt;}
.y131{bottom:30.160000pt;}
.y178{bottom:30.166667pt;}
.y13f{bottom:30.173333pt;}
.y17f{bottom:30.386667pt;}
.y138{bottom:30.400000pt;}
.y182{bottom:30.426667pt;}
.y1af{bottom:30.440000pt;}
.y12b{bottom:30.666667pt;}
.y172{bottom:36.800000pt;}
.y134{bottom:36.826667pt;}
.y17b{bottom:36.833333pt;}
.y16b{bottom:37.066667pt;}
.y161{bottom:37.093333pt;}
.y1ad{bottom:37.106667pt;}
.y175{bottom:43.466667pt;}
.y168{bottom:43.733333pt;}
.y130{bottom:43.760000pt;}
.y177{bottom:43.766667pt;}
.y166{bottom:43.773333pt;}
.y16c{bottom:50.400000pt;}
.y17a{bottom:50.433333pt;}
.y162{bottom:50.440000pt;}
.y49{bottom:52.300000pt;}
.y29{bottom:53.366667pt;}
.y174{bottom:57.066667pt;}
.y17d{bottom:57.100000pt;}
.y169{bottom:57.333333pt;}
.y16f{bottom:57.360000pt;}
.y165{bottom:57.373333pt;}
.y6{bottom:62.166667pt;}
.y48{bottom:69.633333pt;}
.y16e{bottom:70.693333pt;}
.y164{bottom:70.706667pt;}
.y28{bottom:71.766667pt;}
.y5{bottom:86.966667pt;}
.y1a9{bottom:88.566667pt;}
.y15b{bottom:89.633333pt;}
.y107{bottom:90.700000pt;}
.y144{bottom:92.566667pt;}
.y1cc{bottom:94.166667pt;}
.ya5{bottom:94.433333pt;}
.y68{bottom:95.500000pt;}
.y226{bottom:96.033333pt;}
.y122{bottom:98.433333pt;}
.ydf{bottom:100.033333pt;}
.y92{bottom:101.633333pt;}
.y85{bottom:102.166667pt;}
.y19c{bottom:102.700000pt;}
.y1e4{bottom:104.566667pt;}
.y47{bottom:108.033333pt;}
.y15a{bottom:110.166667pt;}
.y106{bottom:111.233333pt;}
.y205{bottom:113.100000pt;}
.y1cb{bottom:114.700000pt;}
.ya4{bottom:114.966667pt;}
.y67{bottom:116.033333pt;}
.y25{bottom:117.366667pt;}
.y176{bottom:117.900000pt;}
.y121{bottom:118.966667pt;}
.yde{bottom:120.566667pt;}
.y1e3{bottom:121.366667pt;}
.y91{bottom:122.166667pt;}
.y84{bottom:122.700000pt;}
.y19b{bottom:123.233333pt;}
.yf3{bottom:124.300000pt;}
.y46{bottom:128.600000pt;}
.y204{bottom:130.200000pt;}
.y159{bottom:130.733333pt;}
.y105{bottom:131.800000pt;}
.y143{bottom:133.933333pt;}
.y24{bottom:134.466667pt;}
.y1ca{bottom:135.266667pt;}
.y15c{bottom:135.533333pt;}
.y225{bottom:135.800000pt;}
.y66{bottom:136.600000pt;}
.ycd{bottom:137.133333pt;}
.y1e2{bottom:138.466667pt;}
.y120{bottom:139.533333pt;}
.ydd{bottom:141.133333pt;}
.y1a0{bottom:141.400000pt;}
.y90{bottom:142.733333pt;}
.y83{bottom:143.266667pt;}
.y19a{bottom:143.800000pt;}
.yf2{bottom:144.866667pt;}
.y1d7{bottom:146.733333pt;}
.y203{bottom:147.266667pt;}
.y45{bottom:149.133333pt;}
.ya3{bottom:151.266667pt;}
.y23{bottom:151.533333pt;}
.y104{bottom:152.333333pt;}
.y224{bottom:152.866667pt;}
.y1e1{bottom:155.533333pt;}
.y1c9{bottom:155.800000pt;}
.y65{bottom:157.133333pt;}
.ycc{bottom:157.666667pt;}
.y11f{bottom:160.066667pt;}
.ydc{bottom:161.666667pt;}
.y8f{bottom:163.266667pt;}
.y82{bottom:163.800000pt;}
.y202{bottom:164.066667pt;}
.y199{bottom:164.333333pt;}
.yf1{bottom:165.400000pt;}
.y1d6{bottom:167.266667pt;}
.y22{bottom:168.600000pt;}
.y44{bottom:169.666667pt;}
.y223{bottom:169.933333pt;}
.ya2{bottom:171.800000pt;}
.y1e0{bottom:172.333333pt;}
.y103{bottom:173.133333pt;}
.y141{bottom:175.000000pt;}
.y1c8{bottom:176.333333pt;}
.y64{bottom:177.666667pt;}
.ycb{bottom:178.200000pt;}
.y11e{bottom:180.600000pt;}
.y201{bottom:181.133333pt;}
.ydb{bottom:182.200000pt;}
.y8e{bottom:183.800000pt;}
.y198{bottom:184.866667pt;}
.y21{bottom:185.666667pt;}
.y171{bottom:186.200000pt;}
.y222{bottom:187.000000pt;}
.y1d5{bottom:187.800000pt;}
.y1df{bottom:189.400000pt;}
.y158{bottom:192.333333pt;}
.ya1{bottom:192.600000pt;}
.y1bf{bottom:196.600000pt;}
.y1a5{bottom:197.133333pt;}
.y127{bottom:198.200000pt;}
.yca{bottom:198.733333pt;}
.y81{bottom:200.333333pt;}
.y11d{bottom:201.133333pt;}
.yf0{bottom:201.933333pt;}
.y20{bottom:202.466667pt;}
.y221{bottom:203.800000pt;}
.y43{bottom:204.600000pt;}
.y1de{bottom:206.466667pt;}
.y1d4{bottom:208.333333pt;}
.y102{bottom:209.400000pt;}
.y157{bottom:212.866667pt;}
.ya0{bottom:213.133333pt;}
.y63{bottom:214.200000pt;}
.y200{bottom:215.000000pt;}
.y13e{bottom:216.333333pt;}
.y1be{bottom:217.133333pt;}
.y1a4{bottom:217.666667pt;}
.yda{bottom:218.733333pt;}
.yc9{bottom:219.266667pt;}
.y1f{bottom:219.533333pt;}
.y80{bottom:220.866667pt;}
.y197{bottom:221.400000pt;}
.y11c{bottom:221.666667pt;}
.yef{bottom:222.466667pt;}
.y1dd{bottom:223.533333pt;}
.y8d{bottom:225.133333pt;}
.y1d3{bottom:228.866667pt;}
.y101{bottom:229.933333pt;}
.y1ff{bottom:232.066667pt;}
.y1c7{bottom:233.400000pt;}
.y9f{bottom:233.666667pt;}
.y62{bottom:234.733333pt;}
.y1e{bottom:236.600000pt;}
.y1bd{bottom:237.666667pt;}
.y220{bottom:237.933333pt;}
.y42{bottom:238.466667pt;}
.yd9{bottom:239.266667pt;}
.yc8{bottom:239.800000pt;}
.y1dc{bottom:240.333333pt;}
.y7f{bottom:241.400000pt;}
.y196{bottom:241.933333pt;}
.y11b{bottom:242.200000pt;}
.yee{bottom:243.000000pt;}
.y1fe{bottom:249.173333pt;}
.y156{bottom:249.440000pt;}
.y100{bottom:250.506667pt;}
.y1d{bottom:253.706667pt;}
.y1c6{bottom:253.973333pt;}
.y9e{bottom:254.226667pt;}
.y170{bottom:254.240000pt;}
.y21f{bottom:254.773333pt;}
.y61{bottom:255.306667pt;}
.y13c{bottom:257.440000pt;}
.y1bc{bottom:258.240000pt;}
.y8c{bottom:259.840000pt;}
.yc7{bottom:260.360000pt;}
.yb6{bottom:261.440000pt;}
.y7e{bottom:261.973333pt;}
.y195{bottom:262.506667pt;}
.y11a{bottom:262.773333pt;}
.y1fd{bottom:265.973333pt;}
.y155{bottom:269.973333pt;}
.y1c{bottom:270.773333pt;}
.yff{bottom:271.040000pt;}
.y21e{bottom:271.840000pt;}
.y41{bottom:272.360000pt;}
.y1c5{bottom:274.506667pt;}
.y9d{bottom:274.773333pt;}
.y60{bottom:275.840000pt;}
.y1bb{bottom:278.773333pt;}
.yed{bottom:279.306667pt;}
.yd8{bottom:280.373333pt;}
.yc6{bottom:280.906667pt;}
.yb5{bottom:281.973333pt;}
.y7d{bottom:282.506667pt;}
.y194{bottom:283.040000pt;}
.y119{bottom:283.306667pt;}
.y1b{bottom:287.840000pt;}
.y21d{bottom:288.893333pt;}
.y154{bottom:290.506667pt;}
.y1db{bottom:291.306667pt;}
.yfe{bottom:291.573333pt;}
.y1c4{bottom:295.040000pt;}
.y9c{bottom:295.306667pt;}
.y5f{bottom:296.360000pt;}
.y137{bottom:298.506667pt;}
.y1ba{bottom:299.306667pt;}
.yec{bottom:299.840000pt;}
.y1fc{bottom:300.106667pt;}
.yd7{bottom:300.893333pt;}
.yb4{bottom:302.506667pt;}
.y7c{bottom:303.040000pt;}
.y193{bottom:303.573333pt;}
.y118{bottom:303.840000pt;}
.y1a{bottom:304.906667pt;}
.y40{bottom:305.706667pt;}
.y1da{bottom:308.360000pt;}
.y16a{bottom:308.906667pt;}
.y153{bottom:311.026667pt;}
.yfd{bottom:312.106667pt;}
.y1c3{bottom:315.573333pt;}
.y9b{bottom:315.840000pt;}
.y5e{bottom:316.906667pt;}
.yc5{bottom:317.440000pt;}
.y1b9{bottom:319.840000pt;}
.yeb{bottom:320.360000pt;}
.yd6{bottom:321.440000pt;}
.y19f{bottom:321.693333pt;}
.y3f{bottom:322.773333pt;}
.yb3{bottom:323.026667pt;}
.y19{bottom:323.306667pt;}
.y7b{bottom:323.560000pt;}
.y192{bottom:324.106667pt;}
.y117{bottom:324.373333pt;}
.y1d9{bottom:325.440000pt;}
.y152{bottom:331.573333pt;}
.yfc{bottom:332.640000pt;}
.y1fb{bottom:333.973333pt;}
.y1c2{bottom:336.106667pt;}
.y5d{bottom:337.440000pt;}
.yc4{bottom:337.973333pt;}
.y12f{bottom:339.840000pt;}
.y1b8{bottom:340.373333pt;}
.yd5{bottom:341.973333pt;}
.y1cd{bottom:342.240000pt;}
.y18{bottom:342.773333pt;}
.yb2{bottom:343.573333pt;}
.y7a{bottom:344.106667pt;}
.y191{bottom:344.640000pt;}
.y1fa{bottom:351.040000pt;}
.y9a{bottom:352.106667pt;}
.yfb{bottom:353.440000pt;}
.y3e{bottom:355.573333pt;}
.y1c1{bottom:356.640000pt;}
.yea{bottom:356.906667pt;}
.y5c{bottom:357.973333pt;}
.yc3{bottom:358.506667pt;}
.y1d8{bottom:359.026667pt;}
.y116{bottom:360.893333pt;}
.y17{bottom:361.973333pt;}
.yd4{bottom:362.506667pt;}
.yb1{bottom:364.133333pt;}
.y79{bottom:364.666667pt;}
.y190{bottom:365.200000pt;}
.y1f9{bottom:367.866667pt;}
.y151{bottom:372.666667pt;}
.y99{bottom:372.933333pt;}
.y21c{bottom:373.733333pt;}
.yfa{bottom:374.000000pt;}
.ye9{bottom:377.466667pt;}
.y8b{bottom:378.533333pt;}
.yc2{bottom:379.066667pt;}
.y16{bottom:380.400000pt;}
.y115{bottom:381.466667pt;}
.yd3{bottom:383.066667pt;}
.y1f8{bottom:384.933333pt;}
.y78{bottom:385.200000pt;}
.y18f{bottom:385.733333pt;}
.y1d2{bottom:388.666667pt;}
.y3d{bottom:388.933333pt;}
.y167{bottom:390.533333pt;}
.y21b{bottom:390.800000pt;}
.y150{bottom:393.200000pt;}
.y98{bottom:393.466667pt;}
.y5b{bottom:394.533333pt;}
.y15{bottom:397.733333pt;}
.ye8{bottom:398.000000pt;}
.y8a{bottom:399.066667pt;}
.yc1{bottom:399.600000pt;}
.yb0{bottom:400.666667pt;}
.y114{bottom:402.000000pt;}
.y3c{bottom:406.000000pt;}
.y18e{bottom:406.266667pt;}
.y21a{bottom:407.600000pt;}
.y1d1{bottom:409.200000pt;}
.y14f{bottom:413.733333pt;}
.y97{bottom:414.000000pt;}
.y5a{bottom:415.066667pt;}
.y14{bottom:415.333333pt;}
.ye7{bottom:418.533333pt;}
.y1f7{bottom:418.800000pt;}
.y89{bottom:419.600000pt;}
.y77{bottom:420.133333pt;}
.yaf{bottom:421.200000pt;}
.y113{bottom:422.533333pt;}
.y3b{bottom:423.066667pt;}
.y219{bottom:424.666667pt;}
.y18d{bottom:426.800000pt;}
.y1d0{bottom:429.733333pt;}
.y13{bottom:433.200000pt;}
.y14e{bottom:434.266667pt;}
.y96{bottom:434.533333pt;}
.y59{bottom:435.600000pt;}
.y1f6{bottom:435.866667pt;}
.ye6{bottom:439.066667pt;}
.y3a{bottom:440.133333pt;}
.yc0{bottom:440.666667pt;}
.yae{bottom:441.733333pt;}
.y112{bottom:443.066667pt;}
.y1c0{bottom:450.266667pt;}
.y12{bottom:452.133333pt;}
.y1f5{bottom:452.933333pt;}
.y14d{bottom:454.800000pt;}
.y76{bottom:455.066667pt;}
.y1b7{bottom:455.600000pt;}
.y58{bottom:456.133333pt;}
.y39{bottom:457.200000pt;}
.y218{bottom:458.533333pt;}
.y160{bottom:458.800000pt;}
.y129{bottom:459.600000pt;}
.y88{bottom:460.666667pt;}
.ybf{bottom:461.200000pt;}
.yad{bottom:462.266667pt;}
.y18c{bottom:463.333333pt;}
.y111{bottom:463.600000pt;}
.y1f4{bottom:469.733333pt;}
.y11{bottom:470.533333pt;}
.y1a3{bottom:470.800000pt;}
.y38{bottom:474.266667pt;}
.ye5{bottom:475.600000pt;}
.y57{bottom:476.666667pt;}
.y128{bottom:480.133333pt;}
.yd2{bottom:481.240000pt;}
.ybe{bottom:481.773333pt;}
.yac{bottom:482.840000pt;}
.y18b{bottom:483.893333pt;}
.y110{bottom:484.173333pt;}
.y1f3{bottom:486.840000pt;}
.y10{bottom:487.906667pt;}
.y37{bottom:491.360000pt;}
.yf9{bottom:492.440000pt;}
.y217{bottom:492.693333pt;}
.ye4{bottom:496.173333pt;}
.y56{bottom:497.226667pt;}
.yd1{bottom:501.773333pt;}
.y19e{bottom:502.040000pt;}
.yab{bottom:503.360000pt;}
.y1f2{bottom:503.906667pt;}
.y18a{bottom:504.440000pt;}
.y10f{bottom:504.706667pt;}
.yf{bottom:505.506667pt;}
.y36{bottom:508.440000pt;}
.y216{bottom:509.506667pt;}
.y75{bottom:511.906667pt;}
.yf8{bottom:512.973333pt;}
.ye3{bottom:516.706667pt;}
.y1b4{bottom:516.973333pt;}
.y55{bottom:517.773333pt;}
.ybd{bottom:518.306667pt;}
.y1f1{bottom:520.693333pt;}
.yd0{bottom:522.306667pt;}
.y19d{bottom:522.573333pt;}
.yaa{bottom:523.906667pt;}
.y189{bottom:524.973333pt;}
.y10e{bottom:525.240000pt;}
.y35{bottom:525.506667pt;}
.y215{bottom:526.573333pt;}
.y74{bottom:532.440000pt;}
.yf7{bottom:533.773333pt;}
.ye2{bottom:537.240000pt;}
.y1f0{bottom:537.773333pt;}
.y54{bottom:538.306667pt;}
.ybc{bottom:538.840000pt;}
.y15f{bottom:540.440000pt;}
.ye{bottom:541.773333pt;}
.y34{bottom:542.306667pt;}
.ycf{bottom:542.840000pt;}
.y214{bottom:543.640000pt;}
.ya9{bottom:544.440000pt;}
.y188{bottom:545.506667pt;}
.y10d{bottom:545.773333pt;}
.y14c{bottom:552.973333pt;}
.y73{bottom:553.226667pt;}
.yf6{bottom:554.306667pt;}
.y1ef{bottom:554.840000pt;}
.ye1{bottom:557.773333pt;}
.y53{bottom:558.840000pt;}
.y33{bottom:559.373333pt;}
.y213{bottom:560.440000pt;}
.yd{bottom:560.973333pt;}
.ya8{bottom:565.226667pt;}
.y187{bottom:566.040000pt;}
.y10c{bottom:566.306667pt;}
.y1b3{bottom:571.640000pt;}
.y1ee{bottom:571.893333pt;}
.y14b{bottom:573.506667pt;}
.y72{bottom:573.773333pt;}
.yf5{bottom:574.840000pt;}
.y32{bottom:576.440000pt;}
.y212{bottom:577.506667pt;}
.ye0{bottom:578.306667pt;}
.y52{bottom:579.373333pt;}
.ybb{bottom:579.906667pt;}
.yc{bottom:584.706667pt;}
.ya7{bottom:585.773333pt;}
.y186{bottom:586.573333pt;}
.y10b{bottom:587.106667pt;}
.y1ed{bottom:588.706667pt;}
.y31{bottom:593.506667pt;}
.y14a{bottom:594.040000pt;}
.y71{bottom:594.306667pt;}
.y211{bottom:594.560000pt;}
.yf4{bottom:595.373333pt;}
.y1b2{bottom:599.133333pt;}
.y51{bottom:599.933333pt;}
.yba{bottom:600.466667pt;}
.y15e{bottom:604.466667pt;}
.y1ec{bottom:605.800000pt;}
.ya6{bottom:606.333333pt;}
.y10a{bottom:607.666667pt;}
.yb{bottom:608.733333pt;}
.y1cf{bottom:610.066667pt;}
.y30{bottom:610.600000pt;}
.y210{bottom:611.666667pt;}
.y149{bottom:614.600000pt;}
.y70{bottom:614.866667pt;}
.yce{bottom:615.933333pt;}
.y87{bottom:620.466667pt;}
.yb9{bottom:621.000000pt;}
.y185{bottom:621.533333pt;}
.y1eb{bottom:622.866667pt;}
.y15d{bottom:625.266667pt;}
.y20f{bottom:628.466667pt;}
.y1ce{bottom:630.600000pt;}
.ya{bottom:632.733333pt;}
.y148{bottom:635.133333pt;}
.y6f{bottom:635.400000pt;}
.y50{bottom:636.466667pt;}
.y184{bottom:639.666667pt;}
.y86{bottom:641.000000pt;}
.yb8{bottom:641.533333pt;}
.y109{bottom:642.333333pt;}
.y2f{bottom:643.400000pt;}
.y20e{bottom:645.533333pt;}
.y1a2{bottom:651.133333pt;}
.y1b1{bottom:653.800000pt;}
.y6e{bottom:655.933333pt;}
.y9{bottom:656.466667pt;}
.y1ea{bottom:656.733333pt;}
.y4f{bottom:657.000000pt;}
.y108{bottom:660.466667pt;}
.y126{bottom:661.533333pt;}
.yb7{bottom:662.066667pt;}
.y20d{bottom:662.600000pt;}
.y1a1{bottom:671.666667pt;}
.y183{bottom:672.466667pt;}
.y1e9{bottom:673.800000pt;}
.y95{bottom:676.466667pt;}
.y2e{bottom:676.733333pt;}
.y4e{bottom:677.533333pt;}
.y20c{bottom:679.400000pt;}
.y8{bottom:680.466667pt;}
.y125{bottom:682.333333pt;}
.y1e8{bottom:690.600000pt;}
.y6d{bottom:692.200000pt;}
.y181{bottom:692.466667pt;}
.y2d{bottom:693.800000pt;}
.y20b{bottom:696.466667pt;}
.y94{bottom:697.000000pt;}
.y4d{bottom:698.066667pt;}
.y124{bottom:702.866667pt;}
.y7{bottom:704.200000pt;}
.y1e7{bottom:707.666667pt;}
.y1ac{bottom:708.466667pt;}
.y6c{bottom:712.733333pt;}
.y20a{bottom:713.533333pt;}
.y93{bottom:717.560000pt;}
.y4c{bottom:718.640000pt;}
.y123{bottom:723.440000pt;}
.y1e6{bottom:724.773333pt;}
.y4{bottom:725.560000pt;}
.y2c{bottom:726.373333pt;}
.y209{bottom:730.373333pt;}
.y147{bottom:731.706667pt;}
.y6b{bottom:733.573333pt;}
.y4b{bottom:739.173333pt;}
.y1e5{bottom:741.560000pt;}
.y17e{bottom:747.173333pt;}
.y208{bottom:747.440000pt;}
.y146{bottom:749.840000pt;}
.y6a{bottom:754.106667pt;}
.y2b{bottom:758.626667pt;}
.y3{bottom:759.706667pt;}
.y1aa{bottom:763.173333pt;}
.y207{bottom:764.506667pt;}
.y69{bottom:774.640000pt;}
.y2{bottom:775.440000pt;}
.y2a{bottom:775.706667pt;}
.y4a{bottom:780.226667pt;}
.y206{bottom:781.306667pt;}
.y145{bottom:782.626667pt;}
.y1{bottom:796.226667pt;}
.y27{bottom:814.893333pt;}
.y26{bottom:829.840000pt;}
.h1d{height:26.966667pt;}
.h1b{height:30.133333pt;}
.h1c{height:30.400000pt;}
.h11{height:33.421875pt;}
.h4{height:36.000000pt;}
.h15{height:37.135417pt;}
.hf{height:40.218750pt;}
.h13{height:40.300000pt;}
.h12{height:40.533333pt;}
.h14{height:40.566667pt;}
.h1f{height:40.734375pt;}
.h7{height:40.848958pt;}
.he{height:41.600000pt;}
.ha{height:44.000000pt;}
.h8{height:44.437500pt;}
.h2{height:44.562500pt;}
.h3{height:48.000000pt;}
.h9{height:49.156250pt;}
.hb{height:53.625000pt;}
.h1e{height:53.853333pt;}
.h10{height:53.900000pt;}
.h18{height:54.133333pt;}
.h1a{height:54.166667pt;}
.hc{height:56.525148pt;}
.h6{height:59.416667pt;}
.h19{height:67.500000pt;}
.h17{height:67.733333pt;}
.h5{height:71.500000pt;}
.hd{height:75.366864pt;}
.h16{height:81.100000pt;}
.h1{height:888.000000pt;}
.h0{height:888.266667pt;}
.w8{width:70.166667pt;}
.wb{width:72.566667pt;}
.w9{width:73.100000pt;}
.we{width:73.633333pt;}
.w6{width:84.033333pt;}
.wa{width:85.100000pt;}
.wd{width:85.366667pt;}
.w7{width:85.633333pt;}
.w11{width:90.966667pt;}
.wc{width:91.766667pt;}
.wf{width:94.700000pt;}
.w4{width:101.366667pt;}
.w3{width:101.900000pt;}
.w10{width:104.300000pt;}
.w5{width:105.400000pt;}
.w12{width:114.466667pt;}
.w2{width:623.733324pt;}
.w0{width:623.733333pt;}
.w1{width:624.000000pt;}
.x0{left:0.000000pt;}
.x20{left:4.800000pt;}
.x2c{left:6.133333pt;}
.x1a{left:7.200000pt;}
.x1c{left:9.066667pt;}
.x2f{left:10.426667pt;}
.x24{left:11.466667pt;}
.x2a{left:12.826667pt;}
.x22{left:13.853333pt;}
.x3a{left:14.933333pt;}
.x28{left:16.000000pt;}
.x23{left:17.333333pt;}
.x30{left:18.426667pt;}
.x26{left:20.266667pt;}
.x33{left:21.893333pt;}
.x27{left:23.466667pt;}
.x1e{left:24.533333pt;}
.x32{left:25.626667pt;}
.x40{left:26.693333pt;}
.x2e{left:27.733333pt;}
.x29{left:29.626667pt;}
.x1d{left:30.706667pt;}
.x2b{left:32.000000pt;}
.x31{left:33.333333pt;}
.x41{left:34.426667pt;}
.x39{left:35.466667pt;}
.x2d{left:36.826667pt;}
.x34{left:38.693333pt;}
.x3f{left:39.733333pt;}
.x3e{left:41.360000pt;}
.x14{left:74.433324pt;}
.x5{left:75.499991pt;}
.x9{left:82.966657pt;}
.x2{left:92.033324pt;}
.x7{left:101.099991pt;}
.x19{left:122.733324pt;}
.x6{left:141.933324pt;}
.x35{left:145.666667pt;}
.x3b{left:149.133333pt;}
.x8{left:156.866657pt;}
.x1b{left:177.400000pt;}
.xb{left:181.666657pt;}
.xa{left:188.866657pt;}
.x36{left:218.773333pt;}
.x3c{left:243.840000pt;}
.x1f{left:278.773333pt;}
.x37{left:303.866667pt;}
.xf{left:348.399991pt;}
.x3{left:357.199991pt;}
.xe{left:363.599991pt;}
.x38{left:376.440000pt;}
.x12{left:378.026657pt;}
.x21{left:384.173333pt;}
.x18{left:410.026657pt;}
.x10{left:411.906657pt;}
.xc{left:418.559991pt;}
.xd{left:428.173324pt;}
.x11{left:432.973324pt;}
.x3d{left:439.106667pt;}
.x16{left:442.559991pt;}
.x15{left:444.426657pt;}
.x25{left:468.200000pt;}
.x17{left:541.306657pt;}
.x1{left:548.226657pt;}
.x13{left:552.226657pt;}
.x4{left:553.559991pt;}
}




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