
    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_70aae73c36249f935a70ff23.woff')format("woff");}.ff1{font-family:ff1;line-height:1.057617;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_73450a99b25f9a4520e78718.woff')format("woff");}.ff2{font-family:ff2;line-height:1.006836;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_864ac37ecf2954362834160a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.008301;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_728e5cddd31eaa32e9f0ff6e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.029297;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_652490001f8bce85cf7b1e09.woff')format("woff");}.ff5{font-family:ff5;line-height:1.014160;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_cb831bfc45030f6d94299355.woff')format("woff");}.ff6{font-family:ff6;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_54c3dda2c16a2bfbc03095e5.woff')format("woff");}.ff7{font-family:ff7;line-height:1.174316;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_b4ecb63f582c30e08f65d656.woff')format("woff");}.ff8{font-family:ff8;line-height:1.014160;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_2a1854aea0ea13319da53037.woff')format("woff");}.ff9{font-family:ff9;line-height:0.690918;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_a577e7d55a931a329b2b6214.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_3fa7198043ac6566d1de57c6.woff')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.240000px;}
.ls2{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.337200px;}
.lsd{letter-spacing:-0.234000px;}
.ls10{letter-spacing:-0.193800px;}
.ls4{letter-spacing:-0.181200px;}
.lse{letter-spacing:-0.108000px;}
.lsf{letter-spacing:-0.106800px;}
.lsc{letter-spacing:-0.041760px;}
.ls1{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.054720px;}
.ls0{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.206400px;}
.ls7{letter-spacing:0.259920px;}
.ls12{letter-spacing:0.298800px;}
.lsb{letter-spacing:0.306000px;}
.ls3{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.490800px;}
.ls9{letter-spacing:0.678000px;}
.ls8{letter-spacing:40.986720px;}
.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;}
}
.wsb{word-spacing:-59.760000px;}
.ws7{word-spacing:-16.560000px;}
.ws18{word-spacing:-15.430800px;}
.wsc{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.246000px;}
.wsa{word-spacing:-15.146400px;}
.ws14{word-spacing:-15.120000px;}
.ws9{word-spacing:-14.940000px;}
.wse{word-spacing:-14.898240px;}
.ws13{word-spacing:-14.833200px;}
.ws17{word-spacing:-14.580000px;}
.ws16{word-spacing:-14.274720px;}
.ws15{word-spacing:-14.026200px;}
.ws10{word-spacing:-13.860000px;}
.ws12{word-spacing:-13.680000px;}
.ws11{word-spacing:-13.392000px;}
.wsf{word-spacing:-13.266000px;}
.ws0{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.060000px;}
.ws3{word-spacing:-11.878800px;}
.ws4{word-spacing:-11.722800px;}
.ws5{word-spacing:-11.700000px;}
.ws6{word-spacing:-9.000000px;}
.ws2{word-spacing:-7.560000px;}
.ws8{word-spacing:0.000000px;}
._10{margin-left:-12.804000px;}
._0{margin-left:-1.013040px;}
._1{width:1.248960px;}
._9{width:3.223920px;}
._8{width:4.293360px;}
._4{width:5.644080px;}
._5{width:7.219920px;}
._12{width:8.260320px;}
._6{width:9.455040px;}
._d{width:10.517760px;}
._c{width:11.952000px;}
._b{width:13.870320px;}
._7{width:15.533280px;}
._f{width:16.798560px;}
._e{width:18.226800px;}
._11{width:19.601280px;}
._1c{width:20.629200px;}
._1a{width:22.714800px;}
._1b{width:23.718720px;}
._17{width:25.756560px;}
._18{width:26.951760px;}
._25{width:29.279520px;}
._13{width:30.901920px;}
._a{width:32.513760px;}
._1d{width:35.025360px;}
._1e{width:36.334080px;}
._15{width:37.341360px;}
._14{width:38.485440px;}
._19{width:40.696560px;}
._21{width:49.720320px;}
._16{width:51.698400px;}
._2a{width:60.238080px;}
._2b{width:61.313760px;}
._2c{width:62.321760px;}
._3{width:65.177040px;}
._27{width:66.306960px;}
._26{width:67.620000px;}
._24{width:73.190160px;}
._23{width:74.281680px;}
._22{width:90.894960px;}
._20{width:133.015920px;}
._1f{width:134.350320px;}
._29{width:243.772560px;}
._28{width:244.944720px;}
._2{width:387.000000px;}
.fc3{color:transparent;}
.fc2{color:rgb(15,36,62);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:2.880000px;}
.fs6{font-size:20.880000px;}
.fs5{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fsa{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fsb{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs8{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.ya{bottom:-74.160000px;}
.y9{bottom:-53.820000px;}
.y8{bottom:-33.660000px;}
.y7{bottom:-13.320000px;}
.y0{bottom:0.000000px;}
.y6{bottom:2.700000px;}
.y10{bottom:3.780000px;}
.yc6{bottom:3.960000px;}
.yc7{bottom:4.140000px;}
.y85{bottom:4.320000px;}
.y103{bottom:4.356000px;}
.y84{bottom:4.500000px;}
.y119{bottom:4.680000px;}
.y42{bottom:6.480000px;}
.y44{bottom:9.720000px;}
.yc3{bottom:13.500000px;}
.ye9{bottom:14.220000px;}
.y146{bottom:14.400000px;}
.y10e{bottom:14.580000px;}
.y82{bottom:14.760000px;}
.yf0{bottom:14.940000px;}
.y1f{bottom:19.980000px;}
.yc4{bottom:22.680000px;}
.y156{bottom:23.400000px;}
.y15e{bottom:23.430000px;}
.y153{bottom:23.580000px;}
.ydf{bottom:24.480000px;}
.y111{bottom:24.660000px;}
.y1c5{bottom:24.705000px;}
.ye8{bottom:32.400000px;}
.y154{bottom:33.120000px;}
.y13f{bottom:34.740000px;}
.y1e{bottom:36.180000px;}
.yde{bottom:42.660000px;}
.y152{bottom:42.840000px;}
.y13c{bottom:44.820000px;}
.y13d{bottom:45.000000px;}
.ye7{bottom:50.580000px;}
.y1d{bottom:52.380000px;}
.y13e{bottom:55.080000px;}
.y47{bottom:56.700000px;}
.ydd{bottom:61.020000px;}
.yca{bottom:61.200000px;}
.y150{bottom:62.280000px;}
.y141{bottom:65.160000px;}
.y1c{bottom:68.610000px;}
.y13a{bottom:75.600000px;}
.ydc{bottom:79.200000px;}
.yc9{bottom:79.380000px;}
.y1b{bottom:84.810000px;}
.ydb{bottom:97.380000px;}
.y1a{bottom:101.010000px;}
.y2b{bottom:103.890000px;}
.y40{bottom:108.900000px;}
.y1bc{bottom:110.700000px;}
.y11b{bottom:113.580000px;}
.y104{bottom:113.760000px;}
.y19{bottom:117.210000px;}
.yc0{bottom:119.700000px;}
.y2a{bottom:120.090000px;}
.y3f{bottom:120.960000px;}
.y18{bottom:133.410000px;}
.y11d{bottom:133.920000px;}
.y15d{bottom:134.640000px;}
.y3e{bottom:135.540000px;}
.y29{bottom:136.290000px;}
.ya1{bottom:136.980000px;}
.y102{bottom:139.320000px;}
.ybf{bottom:139.680000px;}
.y1bb{bottom:139.860000px;}
.y170{bottom:146.736000px;}
.y3d{bottom:146.916000px;}
.y75{bottom:148.896000px;}
.y17{bottom:149.610000px;}
.y28{bottom:152.490000px;}
.y11c{bottom:154.110000px;}
.y101{bottom:159.510000px;}
.y16{bottom:165.810000px;}
.ya0{bottom:166.350000px;}
.y16f{bottom:166.890000px;}
.y27{bottom:168.690000px;}
.ybe{bottom:169.050000px;}
.y74{bottom:169.230000px;}
.y15f{bottom:173.010000px;}
.y117{bottom:174.270000px;}
.y3c{bottom:175.350000px;}
.y138{bottom:178.230000px;}
.y100{bottom:179.850000px;}
.y15{bottom:182.010000px;}
.y26{bottom:184.890000px;}
.y9f{bottom:186.510000px;}
.y16e{bottom:187.230000px;}
.y15b{bottom:192.270000px;}
.y11a{bottom:194.610000px;}
.y3b{bottom:195.690000px;}
.y14{bottom:198.210000px;}
.y18c{bottom:198.390000px;}
.y73{bottom:198.570000px;}
.yff{bottom:200.010000px;}
.y25{bottom:201.090000px;}
.y137{bottom:207.390000px;}
.y13{bottom:214.410000px;}
.y118{bottom:214.770000px;}
.y9e{bottom:215.670000px;}
.y3a{bottom:215.850000px;}
.y16d{bottom:216.570000px;}
.y24{bottom:217.290000px;}
.ybd{bottom:218.550000px;}
.yfe{bottom:220.350000px;}
.y1a9{bottom:227.550000px;}
.y72{bottom:227.730000px;}
.y12{bottom:230.610000px;}
.y15c{bottom:230.790000px;}
.y23{bottom:233.490000px;}
.y114{bottom:235.110000px;}
.y9d{bottom:235.830000px;}
.y39{bottom:236.190000px;}
.y136{bottom:236.730000px;}
.ybc{bottom:238.710000px;}
.y18b{bottom:238.890000px;}
.yfd{bottom:240.510000px;}
.y16c{bottom:245.730000px;}
.y71{bottom:247.890000px;}
.y22{bottom:249.690000px;}
.y15a{bottom:250.050000px;}
.y116{bottom:255.270000px;}
.y9c{bottom:256.170000px;}
.y38{bottom:256.350000px;}
.y1ba{bottom:256.890000px;}
.ybb{bottom:259.050000px;}
.yfc{bottom:260.670000px;}
.y21{bottom:265.890000px;}
.y1a8{bottom:268.050000px;}
.y70{bottom:268.230000px;}
.y115{bottom:275.610000px;}
.y9b{bottom:276.330000px;}
.y37{bottom:276.690000px;}
.yba{bottom:279.210000px;}
.yfb{bottom:281.010000px;}
.y135{bottom:286.050000px;}
.y16b{bottom:286.230000px;}
.y6f{bottom:288.390000px;}
.y110{bottom:295.770000px;}
.y9a{bottom:296.670000px;}
.y36{bottom:296.850000px;}
.y1a7{bottom:297.390000px;}
.yb9{bottom:299.370000px;}
.yfa{bottom:301.170000px;}
.y134{bottom:306.390000px;}
.y159{bottom:307.650000px;}
.y6e{bottom:308.550000px;}
.y113{bottom:315.930000px;}
.y99{bottom:316.830000px;}
.y35{bottom:317.010000px;}
.y1a6{bottom:317.550000px;}
.yb8{bottom:319.710000px;}
.yf9{bottom:321.510000px;}
.y133{bottom:326.550000px;}
.y18a{bottom:328.710000px;}
.y6d{bottom:328.890000px;}
.y112{bottom:336.270000px;}
.y34{bottom:337.350000px;}
.y1a5{bottom:337.710000px;}
.yb7{bottom:339.870000px;}
.yf8{bottom:342.390000px;}
.y98{bottom:346.170000px;}
.y132{bottom:346.890000px;}
.y6c{bottom:349.050000px;}
.y1b9{bottom:355.710000px;}
.y10d{bottom:357.150000px;}
.y33{bottom:357.510000px;}
.y189{bottom:358.050000px;}
.yb6{bottom:360.210000px;}
.y157{bottom:365.250000px;}
.y97{bottom:366.330000px;}
.y16a{bottom:367.050000px;}
.yf7{bottom:367.950000px;}
.y6b{bottom:369.390000px;}
.y131{bottom:376.050000px;}
.y10f{bottom:377.490000px;}
.y32{bottom:377.850000px;}
.y188{bottom:378.210000px;}
.yb5{bottom:380.370000px;}
.y96{bottom:386.490000px;}
.y169{bottom:387.390000px;}
.y6a{bottom:389.550000px;}
.yf6{bottom:393.555000px;}
.y1a4{bottom:396.255000px;}
.y130{bottom:396.435000px;}
.y31{bottom:398.055000px;}
.y187{bottom:398.595000px;}
.y10c{bottom:403.095000px;}
.y158{bottom:403.815000px;}
.y95{bottom:406.875000px;}
.y168{bottom:407.595000px;}
.y69{bottom:409.755000px;}
.yf5{bottom:413.715000px;}
.y12f{bottom:416.595000px;}
.y30{bottom:418.395000px;}
.y14f{bottom:423.795000px;}
.y1b8{bottom:425.595000px;}
.y167{bottom:427.755000px;}
.yb4{bottom:429.915000px;}
.y10b{bottom:432.255000px;}
.yf4{bottom:433.875000px;}
.y94{bottom:436.035000px;}
.y1a3{bottom:436.755000px;}
.y2f{bottom:438.555000px;}
.y68{bottom:439.095000px;}
.y155{bottom:443.055000px;}
.y12e{bottom:445.755000px;}
.y186{bottom:448.095000px;}
.yb3{bottom:450.075000px;}
.yf3{bottom:454.215000px;}
.y93{bottom:456.375000px;}
.y10a{bottom:457.095000px;}
.y2e{bottom:458.715000px;}
.y1d6{bottom:461.595000px;}
.y1a2{bottom:466.095000px;}
.y67{bottom:468.255000px;}
.yf2{bottom:474.375000px;}
.y12d{bottom:475.095000px;}
.y92{bottom:476.535000px;}
.y166{bottom:477.255000px;}
.y2d{bottom:479.055000px;}
.yb2{bottom:479.415000px;}
.y1a1{bottom:486.255000px;}
.y66{bottom:488.595000px;}
.y1d5{bottom:490.755000px;}
.y12c{bottom:495.255000px;}
.yef{bottom:495.435000px;}
.y91{bottom:496.875000px;}
.y185{bottom:497.415000px;}
.y165{bottom:497.595000px;}
.y151{bottom:501.375000px;}
.y2c{bottom:508.395000px;}
.yb1{bottom:508.575000px;}
.y1d4{bottom:511.095000px;}
.y1a0{bottom:515.415000px;}
.y12b{bottom:515.595000px;}
.yf1{bottom:516.315000px;}
.y90{bottom:517.035000px;}
.y65{bottom:517.755000px;}
.y1b7{bottom:524.415000px;}
.y1d3{bottom:527.655000px;}
.y19f{bottom:535.755000px;}
.y8f{bottom:537.195000px;}
.y64{bottom:538.095000px;}
.y20{bottom:540.615000px;}
.y128{bottom:541.155000px;}
.yee{bottom:541.875000px;}
.y1b6{bottom:544.755000px;}
.y184{bottom:546.915000px;}
.y19e{bottom:555.915000px;}
.y8e{bottom:557.535000px;}
.y63{bottom:558.255000px;}
.y12a{bottom:561.315000px;}
.y14e{bottom:564.375000px;}
.y1b5{bottom:564.915000px;}
.yb0{bottom:567.075000px;}
.y183{bottom:567.255000px;}
.yed{bottom:567.435000px;}
.y1d2{bottom:568.155000px;}
.y11{bottom:575.895000px;}
.y8d{bottom:577.695000px;}
.y62{bottom:578.415000px;}
.y129{bottom:581.655000px;}
.y19d{bottom:585.255000px;}
.ye6{bottom:586.335000px;}
.yaf{bottom:587.415000px;}
.y1d1{bottom:588.315000px;}
.y14d{bottom:593.535000px;}
.y1b4{bottom:594.255000px;}
.y61{bottom:598.755000px;}
.y125{bottom:601.815000px;}
.yec{bottom:605.235000px;}
.y19c{bottom:605.415000px;}
.y8c{bottom:607.035000px;}
.yae{bottom:607.575000px;}
.y164{bottom:607.755000px;}
.y1d0{bottom:608.655000px;}
.y14c{bottom:613.695000px;}
.y1b3{bottom:614.415000px;}
.y182{bottom:616.755000px;}
.y60{bottom:618.915000px;}
.y127{bottom:622.155000px;}
.yeb{bottom:624.315000px;}
.y19b{bottom:625.755000px;}
.y163{bottom:627.915000px;}
.y1cf{bottom:628.815000px;}
.y8b{bottom:636.195000px;}
.yad{bottom:636.915000px;}
.y5f{bottom:639.255000px;}
.y126{bottom:642.345000px;}
.y14b{bottom:643.065000px;}
.yea{bottom:643.245000px;}
.y1b2{bottom:643.785000px;}
.y162{bottom:648.285000px;}
.y1ce{bottom:649.185000px;}
.y19a{bottom:654.945000px;}
.y8a{bottom:656.565000px;}
.yac{bottom:661.605000px;}
.yda{bottom:662.145000px;}
.y122{bottom:662.505000px;}
.y1b1{bottom:663.945000px;}
.y181{bottom:666.285000px;}
.y5e{bottom:668.445000px;}
.y149{bottom:668.625000px;}
.y1cd{bottom:669.345000px;}
.y199{bottom:675.105000px;}
.y89{bottom:676.725000px;}
.ye5{bottom:681.225000px;}
.y124{bottom:682.845000px;}
.y1b0{bottom:684.105000px;}
.y5d{bottom:688.785000px;}
.y1cc{bottom:689.505000px;}
.y180{bottom:695.445000px;}
.ye4{bottom:700.125000px;}
.y88{bottom:702.285000px;}
.y123{bottom:703.005000px;}
.y198{bottom:704.445000px;}
.y5c{bottom:708.945000px;}
.y14a{bottom:709.125000px;}
.y1af{bottom:713.445000px;}
.ye3{bottom:719.025000px;}
.y87{bottom:722.625000px;}
.y120{bottom:723.345000px;}
.y197{bottom:724.605000px;}
.y17f{bottom:724.785000px;}
.y5b{bottom:729.105000px;}
.y147{bottom:729.285000px;}
.y1cb{bottom:730.005000px;}
.y1ae{bottom:733.605000px;}
.ye2{bottom:738.105000px;}
.y86{bottom:742.785000px;}
.y121{bottom:743.505000px;}
.y196{bottom:744.945000px;}
.y5a{bottom:749.445000px;}
.y1ca{bottom:750.345000px;}
.y17e{bottom:753.945000px;}
.ye1{bottom:757.005000px;}
.y1ad{bottom:762.945000px;}
.y81{bottom:763.845000px;}
.y59{bottom:769.605000px;}
.y148{bottom:769.785000px;}
.y1c9{bottom:770.505000px;}
.y195{bottom:774.105000px;}
.ye0{bottom:775.905000px;}
.y1ac{bottom:783.105000px;}
.y17d{bottom:783.285000px;}
.y83{bottom:784.725000px;}
.y58{bottom:789.945000px;}
.y194{bottom:794.445000px;}
.yd2{bottom:794.985000px;}
.y11f{bottom:805.065000px;}
.y57{bottom:810.105000px;}
.y80{bottom:810.285000px;}
.y1c8{bottom:811.005000px;}
.y17c{bottom:812.445000px;}
.yd9{bottom:813.885000px;}
.y193{bottom:814.605000px;}
.y161{bottom:819.105000px;}
.yf{bottom:824.145000px;}
.y56{bottom:830.445000px;}
.y11e{bottom:830.625000px;}
.y1c7{bottom:831.165000px;}
.y17b{bottom:832.605000px;}
.yd8{bottom:832.965000px;}
.y7f{bottom:839.445000px;}
.y192{bottom:843.765000px;}
.ye{bottom:849.345000px;}
.y109{bottom:850.605000px;}
.y144{bottom:850.785000px;}
.y1c6{bottom:851.505000px;}
.yd7{bottom:851.865000px;}
.y17a{bottom:852.765000px;}
.y55{bottom:859.605000px;}
.y1ab{bottom:861.765000px;}
.yd6{bottom:870.765000px;}
.y1c4{bottom:871.665000px;}
.y191{bottom:873.105000px;}
.yd{bottom:876.345000px;}
.y54{bottom:879.765000px;}
.y1aa{bottom:882.105000px;}
.y179{bottom:882.285000px;}
.yd5{bottom:889.890000px;}
.y145{bottom:891.330000px;}
.y190{bottom:893.310000px;}
.y53{bottom:900.150000px;}
.yd4{bottom:908.790000px;}
.y178{bottom:911.310000px;}
.y142{bottom:911.490000px;}
.y1c3{bottom:912.210000px;}
.yc{bottom:919.410000px;}
.y52{bottom:920.310000px;}
.y18f{bottom:922.650000px;}
.yab{bottom:927.150000px;}
.yd3{bottom:927.690000px;}
.y177{bottom:931.650000px;}
.y7e{bottom:940.650000px;}
.y18e{bottom:942.810000px;}
.yaa{bottom:943.710000px;}
.yc8{bottom:946.770000px;}
.yb{bottom:947.670000px;}
.y51{bottom:949.650000px;}
.y176{bottom:951.810000px;}
.y143{bottom:951.990000px;}
.y1c2{bottom:952.710000px;}
.y7d{bottom:960.810000px;}
.ya9{bottom:963.870000px;}
.yd1{bottom:965.670000px;}
.y50{bottom:969.810000px;}
.y175{bottom:972.150000px;}
.y139{bottom:972.870000px;}
.y108{bottom:978.810000px;}
.y7c{bottom:981.150000px;}
.ya8{bottom:984.210000px;}
.yd0{bottom:984.570000px;}
.y4f{bottom:990.150000px;}
.y174{bottom:992.310000px;}
.y140{bottom:993.210000px;}
.y5{bottom:994.470000px;}
.y107{bottom:999.150000px;}
.y7b{bottom:1001.310000px;}
.ycf{bottom:1003.650000px;}
.y41{bottom:1004.010000px;}
.ya7{bottom:1004.370000px;}
.y4e{bottom:1010.310000px;}
.y18d{bottom:1012.470000px;}
.y1c1{bottom:1013.370000px;}
.y106{bottom:1019.310000px;}
.y7a{bottom:1021.470000px;}
.y173{bottom:1021.650000px;}
.yce{bottom:1022.550000px;}
.ya6{bottom:1024.710000px;}
.y4d{bottom:1030.470000px;}
.y1c0{bottom:1033.710000px;}
.y105{bottom:1039.470000px;}
.ycd{bottom:1041.450000px;}
.y79{bottom:1041.810000px;}
.ya5{bottom:1045.590000px;}
.y172{bottom:1050.810000px;}
.y160{bottom:1050.990000px;}
.y4c{bottom:1059.810000px;}
.ycc{bottom:1060.530000px;}
.y78{bottom:1061.970000px;}
.y171{bottom:1070.970000px;}
.ya4{bottom:1071.150000px;}
.y1bf{bottom:1074.210000px;}
.y13b{bottom:1074.930000px;}
.ycb{bottom:1079.430000px;}
.y4b{bottom:1079.970000px;}
.y77{bottom:1091.310000px;}
.ya3{bottom:1091.490000px;}
.y1be{bottom:1094.370000px;}
.yc2{bottom:1098.330000px;}
.y4a{bottom:1100.310000px;}
.y43{bottom:1105.170000px;}
.ya2{bottom:1111.470000px;}
.y1bd{bottom:1115.430000px;}
.yc5{bottom:1117.410000px;}
.y49{bottom:1120.470000px;}
.y48{bottom:1140.840000px;}
.yc1{bottom:1141.020000px;}
.y4{bottom:1148.760000px;}
.y3{bottom:1164.960000px;}
.y46{bottom:1173.600000px;}
.y76{bottom:1177.740000px;}
.y2{bottom:1181.160000px;}
.y1{bottom:1197.180000px;}
.y45{bottom:1197.360000px;}
.ha{height:16.200000px;}
.h1d{height:18.180000px;}
.h23{height:18.216000px;}
.h1e{height:18.360000px;}
.h36{height:19.080000px;}
.h33{height:19.260000px;}
.h1a{height:20.160000px;}
.h25{height:20.196000px;}
.h19{height:20.340000px;}
.h3b{height:20.376000px;}
.h11{height:22.790391px;}
.h13{height:23.940000px;}
.h16{height:30.361641px;}
.h12{height:32.150391px;}
.hf{height:32.400000px;}
.hb{height:35.072930px;}
.h9{height:35.355586px;}
.h3{height:35.520469px;}
.h1b{height:37.260000px;}
.h2{height:37.428398px;}
.h38{height:38.340000px;}
.h3a{height:38.376000px;}
.h37{height:38.520000px;}
.h35{height:38.556000px;}
.h1c{height:39.260742px;}
.h15{height:39.761719px;}
.h2a{height:40.500000px;}
.h26{height:40.536000px;}
.h18{height:41.220000px;}
.h2f{height:41.354648px;}
.h6{height:43.448555px;}
.h24{height:43.798711px;}
.h4{height:44.002969px;}
.h14{height:48.774375px;}
.h8{height:53.015625px;}
.h10{height:53.369648px;}
.h32{height:57.600000px;}
.h39{height:57.636000px;}
.h30{height:57.780000px;}
.h34{height:57.816000px;}
.he{height:59.439023px;}
.h27{height:60.660000px;}
.h29{height:60.696000px;}
.h28{height:60.840000px;}
.h17{height:61.423863px;}
.h7{height:62.028281px;}
.h22{height:75.096000px;}
.h31{height:76.860000px;}
.h2d{height:81.000000px;}
.h2c{height:101.340000px;}
.h21{height:132.120000px;}
.h2e{height:135.360000px;}
.h5{height:143.820000px;}
.h1f{height:150.840000px;}
.h20{height:150.870000px;}
.h2b{height:162.720000px;}
.hc{height:243.030000px;}
.hd{height:278.310000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:20.700000px;}
.w43{width:41.400000px;}
.w2b{width:42.480000px;}
.w28{width:42.660000px;}
.w31{width:42.840000px;}
.w29{width:45.540000px;}
.w2c{width:45.720000px;}
.w27{width:48.420000px;}
.w25{width:48.456000px;}
.w24{width:48.600000px;}
.w26{width:48.780000px;}
.w42{width:51.660000px;}
.wf{width:51.840000px;}
.w10{width:51.876000px;}
.w11{width:52.020000px;}
.w36{width:52.920000px;}
.w33{width:53.100000px;}
.wd{width:54.000000px;}
.we{width:54.036000px;}
.w12{width:54.180000px;}
.w3e{width:54.540000px;}
.w3d{width:54.576000px;}
.w3f{width:54.720000px;}
.w3b{width:62.460000px;}
.w3c{width:62.820000px;}
.w30{width:63.540000px;}
.w32{width:63.756000px;}
.w40{width:65.520000px;}
.w1b{width:66.240000px;}
.w19{width:66.420000px;}
.w1a{width:66.456000px;}
.w18{width:66.816000px;}
.wa{width:70.200000px;}
.w9{width:70.236000px;}
.w45{width:72.000000px;}
.w34{width:74.376000px;}
.w20{width:88.200000px;}
.w1f{width:91.260000px;}
.w1d{width:91.440000px;}
.w1e{width:91.476000px;}
.w14{width:99.000000px;}
.w41{width:103.500000px;}
.wc{width:105.300000px;}
.w35{width:106.020000px;}
.w2e{width:106.380000px;}
.w39{width:125.280000px;}
.w44{width:126.396000px;}
.w37{width:127.656000px;}
.w17{width:132.480000px;}
.w16{width:132.696000px;}
.w15{width:132.876000px;}
.w7{width:135.000000px;}
.w8{width:140.436000px;}
.w2a{width:145.296000px;}
.w23{width:145.440000px;}
.w22{width:145.476000px;}
.w21{width:145.836000px;}
.w13{width:159.300000px;}
.w38{width:167.790000px;}
.w2d{width:170.490000px;}
.w1c{width:223.410000px;}
.w5{width:254.415000px;}
.wb{width:348.375000px;}
.w3a{width:387.435000px;}
.w6{width:390.345000px;}
.w2f{width:403.635000px;}
.w3{width:415.515000px;}
.w46{width:608.145000px;}
.w2{width:716.010000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x53{left:2.340000px;}
.x38{left:4.140000px;}
.x54{left:5.940000px;}
.x58{left:7.020000px;}
.x7{left:8.100000px;}
.x37{left:9.180000px;}
.x2f{left:10.620000px;}
.x41{left:11.880000px;}
.x32{left:13.140000px;}
.x23{left:14.400000px;}
.x31{left:15.480000px;}
.x35{left:16.965000px;}
.x1e{left:18.180000px;}
.x34{left:20.160000px;}
.x1f{left:21.960000px;}
.x22{left:23.760000px;}
.x21{left:25.740000px;}
.x1d{left:27.540000px;}
.xe{left:29.745000px;}
.x20{left:31.320000px;}
.x39{left:32.940000px;}
.x17{left:34.560000px;}
.x4b{left:36.180000px;}
.x46{left:37.620000px;}
.x64{left:39.240000px;}
.x36{left:43.560000px;}
.x3b{left:44.640000px;}
.x13{left:46.305000px;}
.x3d{left:47.880000px;}
.x3e{left:50.400000px;}
.x15{left:53.460000px;}
.x4f{left:65.025000px;}
.x3{left:88.596000px;}
.x6{left:98.136000px;}
.x26{left:102.096000px;}
.x2{left:106.236000px;}
.x68{left:108.030000px;}
.x4d{left:111.276000px;}
.x11{left:127.476000px;}
.xc{left:135.225000px;}
.xa{left:140.256000px;}
.x6f{left:147.636000px;}
.x65{left:149.076000px;}
.x5c{left:153.930000px;}
.x70{left:170.130000px;}
.x3a{left:197.130000px;}
.x4e{left:199.470000px;}
.x27{left:207.390000px;}
.x12{left:233.130000px;}
.xb{left:241.950000px;}
.xd{left:247.530000px;}
.x28{left:261.390000px;}
.x42{left:263.550000px;}
.x66{left:274.035000px;}
.x5d{left:276.735000px;}
.x55{left:296.535000px;}
.x19{left:303.375000px;}
.x29{left:315.435000px;}
.x3c{left:330.015000px;}
.x69{left:336.495000px;}
.x5f{left:340.275000px;}
.x50{left:345.315000px;}
.x5{left:358.089000px;}
.x2a{left:367.275000px;}
.x14{left:373.575000px;}
.x5e{left:383.115000px;}
.x56{left:393.915000px;}
.x43{left:396.255000px;}
.x67{left:399.315000px;}
.x2b{left:419.115000px;}
.x47{left:421.095000px;}
.x57{left:442.365000px;}
.x1a{left:443.805000px;}
.x24{left:446.505000px;}
.x6a{left:453.885000px;}
.x1{left:463.425000px;}
.x2c{left:470.985000px;}
.x51{left:490.785000px;}
.x60{left:499.965000px;}
.x6b{left:508.425000px;}
.x48{left:512.565000px;}
.x16{left:514.005000px;}
.x8{left:516.705000px;}
.x2d{left:523.005000px;}
.x44{left:528.945000px;}
.x4c{left:536.145000px;}
.x59{left:539.205000px;}
.x9{left:540.465000px;}
.x61{left:553.245000px;}
.x6c{left:563.145000px;}
.x25{left:574.305000px;}
.x1b{left:584.205000px;}
.x5a{left:587.805000px;}
.x3f{left:595.185000px;}
.x4{left:597.714000px;}
.x49{left:604.005000px;}
.x62{left:606.345000px;}
.x6d{left:617.730000px;}
.x2e{left:628.890000px;}
.x52{left:636.270000px;}
.x18{left:654.450000px;}
.x45{left:661.650000px;}
.x63{left:680.730000px;}
.x30{left:682.890000px;}
.xf{left:684.510000px;}
.x4a{left:695.490000px;}
.x1c{left:724.650000px;}
.x40{left:728.070000px;}
.x5b{left:733.290000px;}
.x6e{left:735.090000px;}
.x33{left:737.070000px;}
.x10{left:768.750000px;}
@media print{
.v2{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.880000pt;}
.ls2{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.299733pt;}
.lsd{letter-spacing:-0.208000pt;}
.ls10{letter-spacing:-0.172267pt;}
.ls4{letter-spacing:-0.161067pt;}
.lse{letter-spacing:-0.096000pt;}
.lsf{letter-spacing:-0.094933pt;}
.lsc{letter-spacing:-0.037120pt;}
.ls1{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.048640pt;}
.ls0{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.183467pt;}
.ls7{letter-spacing:0.231040pt;}
.ls12{letter-spacing:0.265600pt;}
.lsb{letter-spacing:0.272000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.436267pt;}
.ls9{letter-spacing:0.602667pt;}
.ls8{letter-spacing:36.432640pt;}
.wsb{word-spacing:-53.120000pt;}
.ws7{word-spacing:-14.720000pt;}
.ws18{word-spacing:-13.716267pt;}
.wsc{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.552000pt;}
.wsa{word-spacing:-13.463467pt;}
.ws14{word-spacing:-13.440000pt;}
.ws9{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.242880pt;}
.ws13{word-spacing:-13.185067pt;}
.ws17{word-spacing:-12.960000pt;}
.ws16{word-spacing:-12.688640pt;}
.ws15{word-spacing:-12.467733pt;}
.ws10{word-spacing:-12.320000pt;}
.ws12{word-spacing:-12.160000pt;}
.ws11{word-spacing:-11.904000pt;}
.wsf{word-spacing:-11.792000pt;}
.ws0{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws3{word-spacing:-10.558933pt;}
.ws4{word-spacing:-10.420267pt;}
.ws5{word-spacing:-10.400000pt;}
.ws6{word-spacing:-8.000000pt;}
.ws2{word-spacing:-6.720000pt;}
.ws8{word-spacing:0.000000pt;}
._10{margin-left:-11.381333pt;}
._0{margin-left:-0.900480pt;}
._1{width:1.110187pt;}
._9{width:2.865707pt;}
._8{width:3.816320pt;}
._4{width:5.016960pt;}
._5{width:6.417707pt;}
._12{width:7.342507pt;}
._6{width:8.404480pt;}
._d{width:9.349120pt;}
._c{width:10.624000pt;}
._b{width:12.329173pt;}
._7{width:13.807360pt;}
._f{width:14.932053pt;}
._e{width:16.201600pt;}
._11{width:17.423360pt;}
._1c{width:18.337067pt;}
._1a{width:20.190933pt;}
._1b{width:21.083307pt;}
._17{width:22.894720pt;}
._18{width:23.957120pt;}
._25{width:26.026240pt;}
._13{width:27.468373pt;}
._a{width:28.901120pt;}
._1d{width:31.133653pt;}
._1e{width:32.296960pt;}
._15{width:33.192320pt;}
._14{width:34.209280pt;}
._19{width:36.174720pt;}
._21{width:44.195840pt;}
._16{width:45.954133pt;}
._2a{width:53.544960pt;}
._2b{width:54.501120pt;}
._2c{width:55.397120pt;}
._3{width:57.935147pt;}
._27{width:58.939520pt;}
._26{width:60.106667pt;}
._24{width:65.057920pt;}
._23{width:66.028160pt;}
._22{width:80.795520pt;}
._20{width:118.236373pt;}
._1f{width:119.422507pt;}
._29{width:216.686720pt;}
._28{width:217.728640pt;}
._2{width:344.000000pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:18.560000pt;}
.fs5{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fsa{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fsb{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs8{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.ya{bottom:-65.920000pt;}
.y9{bottom:-47.840000pt;}
.y8{bottom:-29.920000pt;}
.y7{bottom:-11.840000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:2.400000pt;}
.y10{bottom:3.360000pt;}
.yc6{bottom:3.520000pt;}
.yc7{bottom:3.680000pt;}
.y85{bottom:3.840000pt;}
.y103{bottom:3.872000pt;}
.y84{bottom:4.000000pt;}
.y119{bottom:4.160000pt;}
.y42{bottom:5.760000pt;}
.y44{bottom:8.640000pt;}
.yc3{bottom:12.000000pt;}
.ye9{bottom:12.640000pt;}
.y146{bottom:12.800000pt;}
.y10e{bottom:12.960000pt;}
.y82{bottom:13.120000pt;}
.yf0{bottom:13.280000pt;}
.y1f{bottom:17.760000pt;}
.yc4{bottom:20.160000pt;}
.y156{bottom:20.800000pt;}
.y15e{bottom:20.826667pt;}
.y153{bottom:20.960000pt;}
.ydf{bottom:21.760000pt;}
.y111{bottom:21.920000pt;}
.y1c5{bottom:21.960000pt;}
.ye8{bottom:28.800000pt;}
.y154{bottom:29.440000pt;}
.y13f{bottom:30.880000pt;}
.y1e{bottom:32.160000pt;}
.yde{bottom:37.920000pt;}
.y152{bottom:38.080000pt;}
.y13c{bottom:39.840000pt;}
.y13d{bottom:40.000000pt;}
.ye7{bottom:44.960000pt;}
.y1d{bottom:46.560000pt;}
.y13e{bottom:48.960000pt;}
.y47{bottom:50.400000pt;}
.ydd{bottom:54.240000pt;}
.yca{bottom:54.400000pt;}
.y150{bottom:55.360000pt;}
.y141{bottom:57.920000pt;}
.y1c{bottom:60.986667pt;}
.y13a{bottom:67.200000pt;}
.ydc{bottom:70.400000pt;}
.yc9{bottom:70.560000pt;}
.y1b{bottom:75.386667pt;}
.ydb{bottom:86.560000pt;}
.y1a{bottom:89.786667pt;}
.y2b{bottom:92.346667pt;}
.y40{bottom:96.800000pt;}
.y1bc{bottom:98.400000pt;}
.y11b{bottom:100.960000pt;}
.y104{bottom:101.120000pt;}
.y19{bottom:104.186667pt;}
.yc0{bottom:106.400000pt;}
.y2a{bottom:106.746667pt;}
.y3f{bottom:107.520000pt;}
.y18{bottom:118.586667pt;}
.y11d{bottom:119.040000pt;}
.y15d{bottom:119.680000pt;}
.y3e{bottom:120.480000pt;}
.y29{bottom:121.146667pt;}
.ya1{bottom:121.760000pt;}
.y102{bottom:123.840000pt;}
.ybf{bottom:124.160000pt;}
.y1bb{bottom:124.320000pt;}
.y170{bottom:130.432000pt;}
.y3d{bottom:130.592000pt;}
.y75{bottom:132.352000pt;}
.y17{bottom:132.986667pt;}
.y28{bottom:135.546667pt;}
.y11c{bottom:136.986667pt;}
.y101{bottom:141.786667pt;}
.y16{bottom:147.386667pt;}
.ya0{bottom:147.866667pt;}
.y16f{bottom:148.346667pt;}
.y27{bottom:149.946667pt;}
.ybe{bottom:150.266667pt;}
.y74{bottom:150.426667pt;}
.y15f{bottom:153.786667pt;}
.y117{bottom:154.906667pt;}
.y3c{bottom:155.866667pt;}
.y138{bottom:158.426667pt;}
.y100{bottom:159.866667pt;}
.y15{bottom:161.786667pt;}
.y26{bottom:164.346667pt;}
.y9f{bottom:165.786667pt;}
.y16e{bottom:166.426667pt;}
.y15b{bottom:170.906667pt;}
.y11a{bottom:172.986667pt;}
.y3b{bottom:173.946667pt;}
.y14{bottom:176.186667pt;}
.y18c{bottom:176.346667pt;}
.y73{bottom:176.506667pt;}
.yff{bottom:177.786667pt;}
.y25{bottom:178.746667pt;}
.y137{bottom:184.346667pt;}
.y13{bottom:190.586667pt;}
.y118{bottom:190.906667pt;}
.y9e{bottom:191.706667pt;}
.y3a{bottom:191.866667pt;}
.y16d{bottom:192.506667pt;}
.y24{bottom:193.146667pt;}
.ybd{bottom:194.266667pt;}
.yfe{bottom:195.866667pt;}
.y1a9{bottom:202.266667pt;}
.y72{bottom:202.426667pt;}
.y12{bottom:204.986667pt;}
.y15c{bottom:205.146667pt;}
.y23{bottom:207.546667pt;}
.y114{bottom:208.986667pt;}
.y9d{bottom:209.626667pt;}
.y39{bottom:209.946667pt;}
.y136{bottom:210.426667pt;}
.ybc{bottom:212.186667pt;}
.y18b{bottom:212.346667pt;}
.yfd{bottom:213.786667pt;}
.y16c{bottom:218.426667pt;}
.y71{bottom:220.346667pt;}
.y22{bottom:221.946667pt;}
.y15a{bottom:222.266667pt;}
.y116{bottom:226.906667pt;}
.y9c{bottom:227.706667pt;}
.y38{bottom:227.866667pt;}
.y1ba{bottom:228.346667pt;}
.ybb{bottom:230.266667pt;}
.yfc{bottom:231.706667pt;}
.y21{bottom:236.346667pt;}
.y1a8{bottom:238.266667pt;}
.y70{bottom:238.426667pt;}
.y115{bottom:244.986667pt;}
.y9b{bottom:245.626667pt;}
.y37{bottom:245.946667pt;}
.yba{bottom:248.186667pt;}
.yfb{bottom:249.786667pt;}
.y135{bottom:254.266667pt;}
.y16b{bottom:254.426667pt;}
.y6f{bottom:256.346667pt;}
.y110{bottom:262.906667pt;}
.y9a{bottom:263.706667pt;}
.y36{bottom:263.866667pt;}
.y1a7{bottom:264.346667pt;}
.yb9{bottom:266.106667pt;}
.yfa{bottom:267.706667pt;}
.y134{bottom:272.346667pt;}
.y159{bottom:273.466667pt;}
.y6e{bottom:274.266667pt;}
.y113{bottom:280.826667pt;}
.y99{bottom:281.626667pt;}
.y35{bottom:281.786667pt;}
.y1a6{bottom:282.266667pt;}
.yb8{bottom:284.186667pt;}
.yf9{bottom:285.786667pt;}
.y133{bottom:290.266667pt;}
.y18a{bottom:292.186667pt;}
.y6d{bottom:292.346667pt;}
.y112{bottom:298.906667pt;}
.y34{bottom:299.866667pt;}
.y1a5{bottom:300.186667pt;}
.yb7{bottom:302.106667pt;}
.yf8{bottom:304.346667pt;}
.y98{bottom:307.706667pt;}
.y132{bottom:308.346667pt;}
.y6c{bottom:310.266667pt;}
.y1b9{bottom:316.186667pt;}
.y10d{bottom:317.466667pt;}
.y33{bottom:317.786667pt;}
.y189{bottom:318.266667pt;}
.yb6{bottom:320.186667pt;}
.y157{bottom:324.666667pt;}
.y97{bottom:325.626667pt;}
.y16a{bottom:326.266667pt;}
.yf7{bottom:327.066667pt;}
.y6b{bottom:328.346667pt;}
.y131{bottom:334.266667pt;}
.y10f{bottom:335.546667pt;}
.y32{bottom:335.866667pt;}
.y188{bottom:336.186667pt;}
.yb5{bottom:338.106667pt;}
.y96{bottom:343.546667pt;}
.y169{bottom:344.346667pt;}
.y6a{bottom:346.266667pt;}
.yf6{bottom:349.826667pt;}
.y1a4{bottom:352.226667pt;}
.y130{bottom:352.386667pt;}
.y31{bottom:353.826667pt;}
.y187{bottom:354.306667pt;}
.y10c{bottom:358.306667pt;}
.y158{bottom:358.946667pt;}
.y95{bottom:361.666667pt;}
.y168{bottom:362.306667pt;}
.y69{bottom:364.226667pt;}
.yf5{bottom:367.746667pt;}
.y12f{bottom:370.306667pt;}
.y30{bottom:371.906667pt;}
.y14f{bottom:376.706667pt;}
.y1b8{bottom:378.306667pt;}
.y167{bottom:380.226667pt;}
.yb4{bottom:382.146667pt;}
.y10b{bottom:384.226667pt;}
.yf4{bottom:385.666667pt;}
.y94{bottom:387.586667pt;}
.y1a3{bottom:388.226667pt;}
.y2f{bottom:389.826667pt;}
.y68{bottom:390.306667pt;}
.y155{bottom:393.826667pt;}
.y12e{bottom:396.226667pt;}
.y186{bottom:398.306667pt;}
.yb3{bottom:400.066667pt;}
.yf3{bottom:403.746667pt;}
.y93{bottom:405.666667pt;}
.y10a{bottom:406.306667pt;}
.y2e{bottom:407.746667pt;}
.y1d6{bottom:410.306667pt;}
.y1a2{bottom:414.306667pt;}
.y67{bottom:416.226667pt;}
.yf2{bottom:421.666667pt;}
.y12d{bottom:422.306667pt;}
.y92{bottom:423.586667pt;}
.y166{bottom:424.226667pt;}
.y2d{bottom:425.826667pt;}
.yb2{bottom:426.146667pt;}
.y1a1{bottom:432.226667pt;}
.y66{bottom:434.306667pt;}
.y1d5{bottom:436.226667pt;}
.y12c{bottom:440.226667pt;}
.yef{bottom:440.386667pt;}
.y91{bottom:441.666667pt;}
.y185{bottom:442.146667pt;}
.y165{bottom:442.306667pt;}
.y151{bottom:445.666667pt;}
.y2c{bottom:451.906667pt;}
.yb1{bottom:452.066667pt;}
.y1d4{bottom:454.306667pt;}
.y1a0{bottom:458.146667pt;}
.y12b{bottom:458.306667pt;}
.yf1{bottom:458.946667pt;}
.y90{bottom:459.586667pt;}
.y65{bottom:460.226667pt;}
.y1b7{bottom:466.146667pt;}
.y1d3{bottom:469.026667pt;}
.y19f{bottom:476.226667pt;}
.y8f{bottom:477.506667pt;}
.y64{bottom:478.306667pt;}
.y20{bottom:480.546667pt;}
.y128{bottom:481.026667pt;}
.yee{bottom:481.666667pt;}
.y1b6{bottom:484.226667pt;}
.y184{bottom:486.146667pt;}
.y19e{bottom:494.146667pt;}
.y8e{bottom:495.586667pt;}
.y63{bottom:496.226667pt;}
.y12a{bottom:498.946667pt;}
.y14e{bottom:501.666667pt;}
.y1b5{bottom:502.146667pt;}
.yb0{bottom:504.066667pt;}
.y183{bottom:504.226667pt;}
.yed{bottom:504.386667pt;}
.y1d2{bottom:505.026667pt;}
.y11{bottom:511.906667pt;}
.y8d{bottom:513.506667pt;}
.y62{bottom:514.146667pt;}
.y129{bottom:517.026667pt;}
.y19d{bottom:520.226667pt;}
.ye6{bottom:521.186667pt;}
.yaf{bottom:522.146667pt;}
.y1d1{bottom:522.946667pt;}
.y14d{bottom:527.586667pt;}
.y1b4{bottom:528.226667pt;}
.y61{bottom:532.226667pt;}
.y125{bottom:534.946667pt;}
.yec{bottom:537.986667pt;}
.y19c{bottom:538.146667pt;}
.y8c{bottom:539.586667pt;}
.yae{bottom:540.066667pt;}
.y164{bottom:540.226667pt;}
.y1d0{bottom:541.026667pt;}
.y14c{bottom:545.506667pt;}
.y1b3{bottom:546.146667pt;}
.y182{bottom:548.226667pt;}
.y60{bottom:550.146667pt;}
.y127{bottom:553.026667pt;}
.yeb{bottom:554.946667pt;}
.y19b{bottom:556.226667pt;}
.y163{bottom:558.146667pt;}
.y1cf{bottom:558.946667pt;}
.y8b{bottom:565.506667pt;}
.yad{bottom:566.146667pt;}
.y5f{bottom:568.226667pt;}
.y126{bottom:570.973333pt;}
.y14b{bottom:571.613333pt;}
.yea{bottom:571.773333pt;}
.y1b2{bottom:572.253333pt;}
.y162{bottom:576.253333pt;}
.y1ce{bottom:577.053333pt;}
.y19a{bottom:582.173333pt;}
.y8a{bottom:583.613333pt;}
.yac{bottom:588.093333pt;}
.yda{bottom:588.573333pt;}
.y122{bottom:588.893333pt;}
.y1b1{bottom:590.173333pt;}
.y181{bottom:592.253333pt;}
.y5e{bottom:594.173333pt;}
.y149{bottom:594.333333pt;}
.y1cd{bottom:594.973333pt;}
.y199{bottom:600.093333pt;}
.y89{bottom:601.533333pt;}
.ye5{bottom:605.533333pt;}
.y124{bottom:606.973333pt;}
.y1b0{bottom:608.093333pt;}
.y5d{bottom:612.253333pt;}
.y1cc{bottom:612.893333pt;}
.y180{bottom:618.173333pt;}
.ye4{bottom:622.333333pt;}
.y88{bottom:624.253333pt;}
.y123{bottom:624.893333pt;}
.y198{bottom:626.173333pt;}
.y5c{bottom:630.173333pt;}
.y14a{bottom:630.333333pt;}
.y1af{bottom:634.173333pt;}
.ye3{bottom:639.133333pt;}
.y87{bottom:642.333333pt;}
.y120{bottom:642.973333pt;}
.y197{bottom:644.093333pt;}
.y17f{bottom:644.253333pt;}
.y5b{bottom:648.093333pt;}
.y147{bottom:648.253333pt;}
.y1cb{bottom:648.893333pt;}
.y1ae{bottom:652.093333pt;}
.ye2{bottom:656.093333pt;}
.y86{bottom:660.253333pt;}
.y121{bottom:660.893333pt;}
.y196{bottom:662.173333pt;}
.y5a{bottom:666.173333pt;}
.y1ca{bottom:666.973333pt;}
.y17e{bottom:670.173333pt;}
.ye1{bottom:672.893333pt;}
.y1ad{bottom:678.173333pt;}
.y81{bottom:678.973333pt;}
.y59{bottom:684.093333pt;}
.y148{bottom:684.253333pt;}
.y1c9{bottom:684.893333pt;}
.y195{bottom:688.093333pt;}
.ye0{bottom:689.693333pt;}
.y1ac{bottom:696.093333pt;}
.y17d{bottom:696.253333pt;}
.y83{bottom:697.533333pt;}
.y58{bottom:702.173333pt;}
.y194{bottom:706.173333pt;}
.yd2{bottom:706.653333pt;}
.y11f{bottom:715.613333pt;}
.y57{bottom:720.093333pt;}
.y80{bottom:720.253333pt;}
.y1c8{bottom:720.893333pt;}
.y17c{bottom:722.173333pt;}
.yd9{bottom:723.453333pt;}
.y193{bottom:724.093333pt;}
.y161{bottom:728.093333pt;}
.yf{bottom:732.573333pt;}
.y56{bottom:738.173333pt;}
.y11e{bottom:738.333333pt;}
.y1c7{bottom:738.813333pt;}
.y17b{bottom:740.093333pt;}
.yd8{bottom:740.413333pt;}
.y7f{bottom:746.173333pt;}
.y192{bottom:750.013333pt;}
.ye{bottom:754.973333pt;}
.y109{bottom:756.093333pt;}
.y144{bottom:756.253333pt;}
.y1c6{bottom:756.893333pt;}
.yd7{bottom:757.213333pt;}
.y17a{bottom:758.013333pt;}
.y55{bottom:764.093333pt;}
.y1ab{bottom:766.013333pt;}
.yd6{bottom:774.013333pt;}
.y1c4{bottom:774.813333pt;}
.y191{bottom:776.093333pt;}
.yd{bottom:778.973333pt;}
.y54{bottom:782.013333pt;}
.y1aa{bottom:784.093333pt;}
.y179{bottom:784.253333pt;}
.yd5{bottom:791.013333pt;}
.y145{bottom:792.293333pt;}
.y190{bottom:794.053333pt;}
.y53{bottom:800.133333pt;}
.yd4{bottom:807.813333pt;}
.y178{bottom:810.053333pt;}
.y142{bottom:810.213333pt;}
.y1c3{bottom:810.853333pt;}
.yc{bottom:817.253333pt;}
.y52{bottom:818.053333pt;}
.y18f{bottom:820.133333pt;}
.yab{bottom:824.133333pt;}
.yd3{bottom:824.613333pt;}
.y177{bottom:828.133333pt;}
.y7e{bottom:836.133333pt;}
.y18e{bottom:838.053333pt;}
.yaa{bottom:838.853333pt;}
.yc8{bottom:841.573333pt;}
.yb{bottom:842.373333pt;}
.y51{bottom:844.133333pt;}
.y176{bottom:846.053333pt;}
.y143{bottom:846.213333pt;}
.y1c2{bottom:846.853333pt;}
.y7d{bottom:854.053333pt;}
.ya9{bottom:856.773333pt;}
.yd1{bottom:858.373333pt;}
.y50{bottom:862.053333pt;}
.y175{bottom:864.133333pt;}
.y139{bottom:864.773333pt;}
.y108{bottom:870.053333pt;}
.y7c{bottom:872.133333pt;}
.ya8{bottom:874.853333pt;}
.yd0{bottom:875.173333pt;}
.y4f{bottom:880.133333pt;}
.y174{bottom:882.053333pt;}
.y140{bottom:882.853333pt;}
.y5{bottom:883.973333pt;}
.y107{bottom:888.133333pt;}
.y7b{bottom:890.053333pt;}
.ycf{bottom:892.133333pt;}
.y41{bottom:892.453333pt;}
.ya7{bottom:892.773333pt;}
.y4e{bottom:898.053333pt;}
.y18d{bottom:899.973333pt;}
.y1c1{bottom:900.773333pt;}
.y106{bottom:906.053333pt;}
.y7a{bottom:907.973333pt;}
.y173{bottom:908.133333pt;}
.yce{bottom:908.933333pt;}
.ya6{bottom:910.853333pt;}
.y4d{bottom:915.973333pt;}
.y1c0{bottom:918.853333pt;}
.y105{bottom:923.973333pt;}
.ycd{bottom:925.733333pt;}
.y79{bottom:926.053333pt;}
.ya5{bottom:929.413333pt;}
.y172{bottom:934.053333pt;}
.y160{bottom:934.213333pt;}
.y4c{bottom:942.053333pt;}
.ycc{bottom:942.693333pt;}
.y78{bottom:943.973333pt;}
.y171{bottom:951.973333pt;}
.ya4{bottom:952.133333pt;}
.y1bf{bottom:954.853333pt;}
.y13b{bottom:955.493333pt;}
.ycb{bottom:959.493333pt;}
.y4b{bottom:959.973333pt;}
.y77{bottom:970.053333pt;}
.ya3{bottom:970.213333pt;}
.y1be{bottom:972.773333pt;}
.yc2{bottom:976.293333pt;}
.y4a{bottom:978.053333pt;}
.y43{bottom:982.373333pt;}
.ya2{bottom:987.973333pt;}
.y1bd{bottom:991.493333pt;}
.yc5{bottom:993.253333pt;}
.y49{bottom:995.973333pt;}
.y48{bottom:1014.080000pt;}
.yc1{bottom:1014.240000pt;}
.y4{bottom:1021.120000pt;}
.y3{bottom:1035.520000pt;}
.y46{bottom:1043.200000pt;}
.y76{bottom:1046.880000pt;}
.y2{bottom:1049.920000pt;}
.y1{bottom:1064.160000pt;}
.y45{bottom:1064.320000pt;}
.ha{height:14.400000pt;}
.h1d{height:16.160000pt;}
.h23{height:16.192000pt;}
.h1e{height:16.320000pt;}
.h36{height:16.960000pt;}
.h33{height:17.120000pt;}
.h1a{height:17.920000pt;}
.h25{height:17.952000pt;}
.h19{height:18.080000pt;}
.h3b{height:18.112000pt;}
.h11{height:20.258125pt;}
.h13{height:21.280000pt;}
.h16{height:26.988125pt;}
.h12{height:28.578125pt;}
.hf{height:28.800000pt;}
.hb{height:31.175937pt;}
.h9{height:31.427187pt;}
.h3{height:31.573750pt;}
.h1b{height:33.120000pt;}
.h2{height:33.269687pt;}
.h38{height:34.080000pt;}
.h3a{height:34.112000pt;}
.h37{height:34.240000pt;}
.h35{height:34.272000pt;}
.h1c{height:34.898438pt;}
.h15{height:35.343750pt;}
.h2a{height:36.000000pt;}
.h26{height:36.032000pt;}
.h18{height:36.640000pt;}
.h2f{height:36.759687pt;}
.h6{height:38.620938pt;}
.h24{height:38.932188pt;}
.h4{height:39.113750pt;}
.h14{height:43.355000pt;}
.h8{height:47.125000pt;}
.h10{height:47.439687pt;}
.h32{height:51.200000pt;}
.h39{height:51.232000pt;}
.h30{height:51.360000pt;}
.h34{height:51.392000pt;}
.he{height:52.834688pt;}
.h27{height:53.920000pt;}
.h29{height:53.952000pt;}
.h28{height:54.080000pt;}
.h17{height:54.598989pt;}
.h7{height:55.136250pt;}
.h22{height:66.752000pt;}
.h31{height:68.320000pt;}
.h2d{height:72.000000pt;}
.h2c{height:90.080000pt;}
.h21{height:117.440000pt;}
.h2e{height:120.320000pt;}
.h5{height:127.840000pt;}
.h1f{height:134.080000pt;}
.h20{height:134.106667pt;}
.h2b{height:144.640000pt;}
.hc{height:216.026667pt;}
.hd{height:247.386667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:18.400000pt;}
.w43{width:36.800000pt;}
.w2b{width:37.760000pt;}
.w28{width:37.920000pt;}
.w31{width:38.080000pt;}
.w29{width:40.480000pt;}
.w2c{width:40.640000pt;}
.w27{width:43.040000pt;}
.w25{width:43.072000pt;}
.w24{width:43.200000pt;}
.w26{width:43.360000pt;}
.w42{width:45.920000pt;}
.wf{width:46.080000pt;}
.w10{width:46.112000pt;}
.w11{width:46.240000pt;}
.w36{width:47.040000pt;}
.w33{width:47.200000pt;}
.wd{width:48.000000pt;}
.we{width:48.032000pt;}
.w12{width:48.160000pt;}
.w3e{width:48.480000pt;}
.w3d{width:48.512000pt;}
.w3f{width:48.640000pt;}
.w3b{width:55.520000pt;}
.w3c{width:55.840000pt;}
.w30{width:56.480000pt;}
.w32{width:56.672000pt;}
.w40{width:58.240000pt;}
.w1b{width:58.880000pt;}
.w19{width:59.040000pt;}
.w1a{width:59.072000pt;}
.w18{width:59.392000pt;}
.wa{width:62.400000pt;}
.w9{width:62.432000pt;}
.w45{width:64.000000pt;}
.w34{width:66.112000pt;}
.w20{width:78.400000pt;}
.w1f{width:81.120000pt;}
.w1d{width:81.280000pt;}
.w1e{width:81.312000pt;}
.w14{width:88.000000pt;}
.w41{width:92.000000pt;}
.wc{width:93.600000pt;}
.w35{width:94.240000pt;}
.w2e{width:94.560000pt;}
.w39{width:111.360000pt;}
.w44{width:112.352000pt;}
.w37{width:113.472000pt;}
.w17{width:117.760000pt;}
.w16{width:117.952000pt;}
.w15{width:118.112000pt;}
.w7{width:120.000000pt;}
.w8{width:124.832000pt;}
.w2a{width:129.152000pt;}
.w23{width:129.280000pt;}
.w22{width:129.312000pt;}
.w21{width:129.632000pt;}
.w13{width:141.600000pt;}
.w38{width:149.146667pt;}
.w2d{width:151.546667pt;}
.w1c{width:198.586667pt;}
.w5{width:226.146667pt;}
.wb{width:309.666667pt;}
.w3a{width:344.386667pt;}
.w6{width:346.973333pt;}
.w2f{width:358.786667pt;}
.w3{width:369.346667pt;}
.w46{width:540.573333pt;}
.w2{width:636.453333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x53{left:2.080000pt;}
.x38{left:3.680000pt;}
.x54{left:5.280000pt;}
.x58{left:6.240000pt;}
.x7{left:7.200000pt;}
.x37{left:8.160000pt;}
.x2f{left:9.440000pt;}
.x41{left:10.560000pt;}
.x32{left:11.680000pt;}
.x23{left:12.800000pt;}
.x31{left:13.760000pt;}
.x35{left:15.080000pt;}
.x1e{left:16.160000pt;}
.x34{left:17.920000pt;}
.x1f{left:19.520000pt;}
.x22{left:21.120000pt;}
.x21{left:22.880000pt;}
.x1d{left:24.480000pt;}
.xe{left:26.440000pt;}
.x20{left:27.840000pt;}
.x39{left:29.280000pt;}
.x17{left:30.720000pt;}
.x4b{left:32.160000pt;}
.x46{left:33.440000pt;}
.x64{left:34.880000pt;}
.x36{left:38.720000pt;}
.x3b{left:39.680000pt;}
.x13{left:41.160000pt;}
.x3d{left:42.560000pt;}
.x3e{left:44.800000pt;}
.x15{left:47.520000pt;}
.x4f{left:57.800000pt;}
.x3{left:78.752000pt;}
.x6{left:87.232000pt;}
.x26{left:90.752000pt;}
.x2{left:94.432000pt;}
.x68{left:96.026667pt;}
.x4d{left:98.912000pt;}
.x11{left:113.312000pt;}
.xc{left:120.200000pt;}
.xa{left:124.672000pt;}
.x6f{left:131.232000pt;}
.x65{left:132.512000pt;}
.x5c{left:136.826667pt;}
.x70{left:151.226667pt;}
.x3a{left:175.226667pt;}
.x4e{left:177.306667pt;}
.x27{left:184.346667pt;}
.x12{left:207.226667pt;}
.xb{left:215.066667pt;}
.xd{left:220.026667pt;}
.x28{left:232.346667pt;}
.x42{left:234.266667pt;}
.x66{left:243.586667pt;}
.x5d{left:245.986667pt;}
.x55{left:263.586667pt;}
.x19{left:269.666667pt;}
.x29{left:280.386667pt;}
.x3c{left:293.346667pt;}
.x69{left:299.106667pt;}
.x5f{left:302.466667pt;}
.x50{left:306.946667pt;}
.x5{left:318.301333pt;}
.x2a{left:326.466667pt;}
.x14{left:332.066667pt;}
.x5e{left:340.546667pt;}
.x56{left:350.146667pt;}
.x43{left:352.226667pt;}
.x67{left:354.946667pt;}
.x2b{left:372.546667pt;}
.x47{left:374.306667pt;}
.x57{left:393.213333pt;}
.x1a{left:394.493333pt;}
.x24{left:396.893333pt;}
.x6a{left:403.453333pt;}
.x1{left:411.933333pt;}
.x2c{left:418.653333pt;}
.x51{left:436.253333pt;}
.x60{left:444.413333pt;}
.x6b{left:451.933333pt;}
.x48{left:455.613333pt;}
.x16{left:456.893333pt;}
.x8{left:459.293333pt;}
.x2d{left:464.893333pt;}
.x44{left:470.173333pt;}
.x4c{left:476.573333pt;}
.x59{left:479.293333pt;}
.x9{left:480.413333pt;}
.x61{left:491.773333pt;}
.x6c{left:500.573333pt;}
.x25{left:510.493333pt;}
.x1b{left:519.293333pt;}
.x5a{left:522.493333pt;}
.x3f{left:529.053333pt;}
.x4{left:531.301333pt;}
.x49{left:536.893333pt;}
.x62{left:538.973333pt;}
.x6d{left:549.093333pt;}
.x2e{left:559.013333pt;}
.x52{left:565.573333pt;}
.x18{left:581.733333pt;}
.x45{left:588.133333pt;}
.x63{left:605.093333pt;}
.x30{left:607.013333pt;}
.xf{left:608.453333pt;}
.x4a{left:618.213333pt;}
.x1c{left:644.133333pt;}
.x40{left:647.173333pt;}
.x5b{left:651.813333pt;}
.x6e{left:653.413333pt;}
.x33{left:655.173333pt;}
.x10{left:683.333333pt;}
}




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