
    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_3d746f74ab5e020c50bff798.woff')format("woff");}.ff1{font-family:ff1;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7c2d15af66d8bbc8dff0cd4e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2da07d020bffc85e7a558e4b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_90eff0a2734316078c69050b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b4feb020e884746ba36338c3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2245b01d6506a49666dcf0f2.woff')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f8292668389f3023c011dca0.woff')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lse{letter-spacing:-2.160000px;}
.ls6{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.612000px;}
.ls20{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.457800px;}
.lsa{letter-spacing:-0.414600px;}
.ls1f{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.305400px;}
.ls10{letter-spacing:-0.262200px;}
.ls1d{letter-spacing:-0.219000px;}
.ls18{letter-spacing:-0.206400px;}
.ls14{letter-spacing:-0.109200px;}
.ls1c{letter-spacing:-0.051840px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.152400px;}
.ls0{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.262080px;}
.ls9{letter-spacing:0.262200px;}
.ls1e{letter-spacing:0.265200px;}
.ls17{letter-spacing:0.298800px;}
.lsf{letter-spacing:0.305400px;}
.ls1b{letter-spacing:0.334200px;}
.ls1{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.504000px;}
.lsd{letter-spacing:6.785280px;}
.ls2{letter-spacing:10.944000px;}
.lsb{letter-spacing:11.520000px;}
.ls7{letter-spacing:26.945280px;}
.lsc{letter-spacing:39.905280px;}
.ls16{letter-spacing:88.626720px;}
.ls12{letter-spacing:190.385280px;}
.ls1a{letter-spacing:389.520000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-18.000000px;}
.ws8{word-spacing:-16.865400px;}
.wsc{word-spacing:-16.822200px;}
.wsf{word-spacing:-16.712400px;}
.ws5{word-spacing:-16.560000px;}
.wse{word-spacing:-16.450800px;}
.ws9{word-spacing:-16.297800px;}
.wsa{word-spacing:-16.254600px;}
.ws12{word-spacing:-16.174200px;}
.ws6{word-spacing:-16.145400px;}
.wsd{word-spacing:-15.948000px;}
.wsb{word-spacing:-15.840000px;}
.ws14{word-spacing:-15.621000px;}
.ws1{word-spacing:-15.300000px;}
.ws16{word-spacing:-15.238800px;}
.ws13{word-spacing:-15.120000px;}
.ws0{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.733600px;}
.ws15{word-spacing:-14.580000px;}
.ws7{word-spacing:-14.400000px;}
.ws2{word-spacing:-12.060000px;}
.ws11{word-spacing:-0.066240px;}
.ws4{word-spacing:0.000000px;}
._16{margin-left:-8.520000px;}
._9{margin-left:-7.444320px;}
._19{margin-left:-6.222240px;}
._b{margin-left:-5.193840px;}
._3{margin-left:-4.123440px;}
._0{margin-left:-2.928240px;}
._2{margin-left:-1.553760px;}
._1{width:1.075680px;}
._6{width:2.775840px;}
._c{width:4.469040px;}
._13{width:5.470560px;}
._11{width:6.555840px;}
._18{width:7.560240px;}
._10{width:8.568000px;}
._12{width:9.864000px;}
._e{width:11.160000px;}
._f{width:12.312000px;}
._1e{width:13.605360px;}
._a{width:14.976000px;}
._17{width:17.686080px;}
._7{width:19.560000px;}
._8{width:21.124320px;}
._d{width:22.608000px;}
._1a{width:23.884560px;}
._1c{width:25.016640px;}
._1b{width:26.192880px;}
._20{width:27.262800px;}
._1d{width:29.314080px;}
._14{width:30.504000px;}
._15{width:31.560000px;}
._1f{width:32.723520px;}
._21{width:34.705440px;}
._24{width:38.715840px;}
._23{width:40.043520px;}
._2d{width:43.718400px;}
._2e{width:45.208800px;}
._2c{width:47.236320px;}
._2f{width:51.924960px;}
._30{width:53.007120px;}
._31{width:54.269280px;}
._32{width:55.640160px;}
._27{width:60.968400px;}
._25{width:63.360000px;}
._26{width:64.406880px;}
._35{width:67.731840px;}
._33{width:68.968800px;}
._34{width:70.080960px;}
._2b{width:91.841760px;}
._36{width:96.532320px;}
._2a{width:97.860960px;}
._37{width:99.723840px;}
._28{width:149.682720px;}
._29{width:150.897120px;}
._4{width:176.962080px;}
._22{width:213.624000px;}
._5{width:899.760000px;}
.fc7{color:rgb(238,0,0);}
.fc5{color:rgb(0,112,192);}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(5,99,193);}
.fc6{color:rgb(0,0,204);}
.fc1{color:rgb(4,98,194);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs7{font-size:63.360000px;}
.fs6{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y1de{bottom:-10.440000px;}
.y0{bottom:0.000000px;}
.y21e{bottom:0.180000px;}
.y223{bottom:0.360000px;}
.y1a1{bottom:2.700000px;}
.y1d2{bottom:3.240000px;}
.y90{bottom:3.600000px;}
.y8e{bottom:3.780000px;}
.y160{bottom:5.220000px;}
.yb7{bottom:5.400000px;}
.yb4{bottom:5.580000px;}
.y98{bottom:5.940000px;}
.y9f{bottom:6.120000px;}
.ya4{bottom:6.300000px;}
.ya1{bottom:6.480000px;}
.y8c{bottom:6.660000px;}
.y9a{bottom:6.840000px;}
.y21d{bottom:7.050000px;}
.y9d{bottom:7.380000px;}
.y229{bottom:7.920000px;}
.y1e4{bottom:8.100000px;}
.y1e6{bottom:8.280000px;}
.y1fb{bottom:8.640000px;}
.y2a5{bottom:9.000000px;}
.y22f{bottom:9.225000px;}
.y231{bottom:10.620000px;}
.y1d3{bottom:11.880000px;}
.y17a{bottom:12.960000px;}
.y17f{bottom:13.005000px;}
.y17b{bottom:13.140000px;}
.y228{bottom:13.320000px;}
.y1e1{bottom:13.500000px;}
.y196{bottom:15.480000px;}
.y1e2{bottom:18.000000px;}
.yab{bottom:18.720000px;}
.y1d1{bottom:20.520000px;}
.y1a7{bottom:21.060000px;}
.y8b{bottom:21.780000px;}
.y1a5{bottom:21.960000px;}
.y1aa{bottom:22.680000px;}
.y178{bottom:22.860000px;}
.y163{bottom:23.400000px;}
.y15f{bottom:24.120000px;}
.y89{bottom:25.560000px;}
.y5{bottom:25.920000px;}
.y21c{bottom:25.950000px;}
.y2a4{bottom:26.280000px;}
.y209{bottom:27.945000px;}
.y203{bottom:28.620000px;}
.y22d{bottom:29.700000px;}
.y232{bottom:30.420000px;}
.y205{bottom:30.600000px;}
.y220{bottom:32.040000px;}
.y239{bottom:32.220000px;}
.y1e0{bottom:32.400000px;}
.y1fd{bottom:34.740000px;}
.y201{bottom:35.460000px;}
.y1db{bottom:35.640000px;}
.y19e{bottom:38.520000px;}
.y236{bottom:40.680000px;}
.y1a4{bottom:40.860000px;}
.y1ff{bottom:41.220000px;}
.y222{bottom:41.580000px;}
.y225{bottom:41.760000px;}
.y1d9{bottom:42.480000px;}
.y15e{bottom:43.020000px;}
.y2a3{bottom:43.560000px;}
.y1d5{bottom:44.100000px;}
.y199{bottom:44.820000px;}
.y219{bottom:45.030000px;}
.y1dd{bottom:45.720000px;}
.y208{bottom:47.025000px;}
.y1a0{bottom:48.060000px;}
.y1d7{bottom:51.165000px;}
.y227{bottom:51.300000px;}
.y4{bottom:51.840000px;}
.y19a{bottom:54.180000px;}
.y19d{bottom:57.630000px;}
.y235{bottom:59.580000px;}
.y221{bottom:60.480000px;}
.y238{bottom:60.660000px;}
.y23b{bottom:60.690000px;}
.y2a2{bottom:60.840000px;}
.y198{bottom:63.720000px;}
.y21b{bottom:63.930000px;}
.y19f{bottom:67.170000px;}
.y3{bottom:69.120000px;}
.y226{bottom:70.380000px;}
.y19c{bottom:76.530000px;}
.y2a1{bottom:77.940000px;}
.y234{bottom:78.660000px;}
.y21a{bottom:83.010000px;}
.y2a0{bottom:95.220000px;}
.y2{bottom:98.820000px;}
.y29f{bottom:112.500000px;}
.y216{bottom:117.720000px;}
.y71{bottom:118.260000px;}
.y1cd{bottom:120.960000px;}
.y148{bottom:121.320000px;}
.y3a{bottom:122.040000px;}
.y1cc{bottom:124.560000px;}
.y23c{bottom:124.920000px;}
.y1dc{bottom:125.640000px;}
.y293{bottom:125.820000px;}
.y261{bottom:127.980000px;}
.y1a2{bottom:128.700000px;}
.yff{bottom:129.060000px;}
.y29e{bottom:129.780000px;}
.y139{bottom:130.140000px;}
.y125{bottom:131.400000px;}
.y7a{bottom:132.120000px;}
.yd5{bottom:133.200000px;}
.yaa{bottom:134.100000px;}
.y215{bottom:136.620000px;}
.y70{bottom:137.340000px;}
.y165{bottom:137.565000px;}
.y200{bottom:138.240000px;}
.y147{bottom:140.400000px;}
.y23a{bottom:140.940000px;}
.y39{bottom:141.120000px;}
.y1cb{bottom:143.460000px;}
.y292{bottom:143.820000px;}
.y19b{bottom:144.900000px;}
.y260{bottom:146.160000px;}
.y29d{bottom:147.060000px;}
.y79{bottom:151.020000px;}
.y214{bottom:151.920000px;}
.ya9{bottom:153.000000px;}
.yfe{bottom:153.360000px;}
.y124{bottom:154.620000px;}
.y6f{bottom:156.240000px;}
.yd4{bottom:157.500000px;}
.y146{bottom:159.300000px;}
.y38{bottom:160.020000px;}
.y291{bottom:162.000000px;}
.y1ca{bottom:162.360000px;}
.y25f{bottom:164.340000px;}
.y78{bottom:170.100000px;}
.ya8{bottom:172.080000px;}
.y6e{bottom:175.140000px;}
.yfd{bottom:176.760000px;}
.y138{bottom:177.840000px;}
.y145{bottom:178.380000px;}
.y123{bottom:178.920000px;}
.y37{bottom:179.100000px;}
.y290{bottom:180.180000px;}
.yd3{bottom:180.720000px;}
.y1c9{bottom:181.440000px;}
.y25e{bottom:182.340000px;}
.ya7{bottom:188.100000px;}
.y77{bottom:189.000000px;}
.y6d{bottom:194.220000px;}
.y144{bottom:197.280000px;}
.y36{bottom:198.030000px;}
.y28f{bottom:198.210000px;}
.y29c{bottom:198.720000px;}
.y1c8{bottom:200.370000px;}
.y25d{bottom:200.550000px;}
.y18b{bottom:200.910000px;}
.yfc{bottom:201.090000px;}
.y122{bottom:202.170000px;}
.yd2{bottom:205.230000px;}
.y76{bottom:207.930000px;}
.y6c{bottom:213.150000px;}
.ya6{bottom:213.330000px;}
.y29b{bottom:216.045000px;}
.y143{bottom:216.210000px;}
.y28e{bottom:216.390000px;}
.y35{bottom:216.930000px;}
.y237{bottom:217.650000px;}
.y25c{bottom:218.730000px;}
.y1c7{bottom:219.450000px;}
.y18a{bottom:219.810000px;}
.y1fe{bottom:221.610000px;}
.yfb{bottom:224.310000px;}
.y137{bottom:225.390000px;}
.y121{bottom:226.650000px;}
.y75{bottom:227.010000px;}
.yd1{bottom:228.450000px;}
.y1da{bottom:228.630000px;}
.y6b{bottom:232.230000px;}
.y29a{bottom:233.325000px;}
.y295{bottom:233.670000px;}
.y28d{bottom:234.570000px;}
.y142{bottom:235.290000px;}
.y34{bottom:236.010000px;}
.y25b{bottom:236.730000px;}
.ya5{bottom:238.170000px;}
.y1c6{bottom:238.350000px;}
.y189{bottom:238.890000px;}
.y74{bottom:245.910000px;}
.yfa{bottom:248.790000px;}
.y120{bottom:249.870000px;}
.y6a{bottom:250.050000px;}
.y299{bottom:250.605000px;}
.y28c{bottom:252.570000px;}
.yd0{bottom:252.750000px;}
.y141{bottom:254.190000px;}
.y33{bottom:254.910000px;}
.y1c5{bottom:257.250000px;}
.y188{bottom:257.790000px;}
.ya3{bottom:263.910000px;}
.y69{bottom:264.990000px;}
.y298{bottom:267.885000px;}
.y28b{bottom:270.750000px;}
.yf9{bottom:272.010000px;}
.y197{bottom:272.550000px;}
.y25a{bottom:272.910000px;}
.y136{bottom:273.090000px;}
.y140{bottom:273.270000px;}
.y32{bottom:273.990000px;}
.y11f{bottom:274.170000px;}
.ycf{bottom:275.970000px;}
.y1c4{bottom:276.330000px;}
.y187{bottom:276.870000px;}
.y83{bottom:281.010000px;}
.y68{bottom:283.890000px;}
.y297{bottom:284.985000px;}
.ya2{bottom:288.750000px;}
.y13f{bottom:291.090000px;}
.y31{bottom:292.890000px;}
.y233{bottom:294.330000px;}
.y1c3{bottom:295.230000px;}
.y186{bottom:295.770000px;}
.yf8{bottom:296.310000px;}
.y11e{bottom:297.390000px;}
.y166{bottom:297.930000px;}
.y82{bottom:299.910000px;}
.yce{bottom:300.450000px;}
.y296{bottom:302.265000px;}
.y67{bottom:302.790000px;}
.y13e{bottom:306.030000px;}
.y28a{bottom:306.930000px;}
.y259{bottom:309.270000px;}
.y1d8{bottom:311.250000px;}
.y30{bottom:311.790000px;}
.ya0{bottom:313.410000px;}
.y164{bottom:313.950000px;}
.y1c2{bottom:314.310000px;}
.y185{bottom:314.850000px;}
.y1fc{bottom:316.470000px;}
.y81{bottom:318.990000px;}
.yf7{bottom:319.530000px;}
.y135{bottom:320.790000px;}
.y66{bottom:321.870000px;}
.ycd{bottom:323.670000px;}
.y13d{bottom:324.930000px;}
.y289{bottom:325.110000px;}
.y258{bottom:327.270000px;}
.y2f{bottom:330.870000px;}
.y1c1{bottom:333.210000px;}
.y184{bottom:333.750000px;}
.y80{bottom:334.290000px;}
.y9e{bottom:338.790000px;}
.y65{bottom:340.770000px;}
.y288{bottom:343.110000px;}
.y13c{bottom:343.830000px;}
.yf6{bottom:344.010000px;}
.y11d{bottom:345.090000px;}
.y257{bottom:345.450000px;}
.ycc{bottom:347.970000px;}
.y2e{bottom:349.770000px;}
.y1c0{bottom:352.110000px;}
.y183{bottom:352.650000px;}
.y64{bottom:359.850000px;}
.y287{bottom:361.290000px;}
.y13b{bottom:362.910000px;}
.y9c{bottom:363.270000px;}
.y256{bottom:363.450000px;}
.yf5{bottom:367.230000px;}
.y134{bottom:368.310000px;}
.y2d{bottom:368.850000px;}
.y11c{bottom:369.390000px;}
.y1bf{bottom:371.190000px;}
.ycb{bottom:371.370000px;}
.y182{bottom:371.730000px;}
.y63{bottom:378.750000px;}
.y286{bottom:379.290000px;}
.y13a{bottom:380.730000px;}
.y255{bottom:382.170000px;}
.y2c{bottom:387.750000px;}
.y22c{bottom:389.010000px;}
.y1be{bottom:390.090000px;}
.y9b{bottom:390.270000px;}
.y181{bottom:390.630000px;}
.yf4{bottom:391.530000px;}
.y11b{bottom:392.790000px;}
.y195{bottom:393.510000px;}
.yca{bottom:395.670000px;}
.y285{bottom:397.470000px;}
.y62{bottom:397.830000px;}
.y1fa{bottom:398.190000px;}
.y254{bottom:402.870000px;}
.y2b{bottom:406.830000px;}
.y1d6{bottom:407.730000px;}
.y230{bottom:408.810000px;}
.y1bd{bottom:409.170000px;}
.y180{bottom:409.710000px;}
.yf3{bottom:414.930000px;}
.y284{bottom:415.650000px;}
.y133{bottom:416.010000px;}
.y99{bottom:416.370000px;}
.y61{bottom:416.730000px;}
.y11a{bottom:417.090000px;}
.yc9{bottom:418.890000px;}
.y253{bottom:423.210000px;}
.y2a{bottom:425.730000px;}
.y1bc{bottom:428.070000px;}
.y213{bottom:430.230000px;}
.y1f9{bottom:431.490000px;}
.y283{bottom:433.650000px;}
.y22e{bottom:435.450000px;}
.y60{bottom:435.630000px;}
.yf2{bottom:439.275000px;}
.y119{bottom:440.355000px;}
.y194{bottom:440.715000px;}
.y97{bottom:442.155000px;}
.y252{bottom:442.515000px;}
.yc8{bottom:443.415000px;}
.y29{bottom:444.675000px;}
.y1bb{bottom:447.195000px;}
.y212{bottom:449.175000px;}
.y1f8{bottom:450.615000px;}
.y282{bottom:451.875000px;}
.y5f{bottom:454.755000px;}
.y193{bottom:459.615000px;}
.yf1{bottom:462.495000px;}
.y251{bottom:463.215000px;}
.y132{bottom:463.575000px;}
.y28{bottom:463.755000px;}
.y22b{bottom:464.295000px;}
.y211{bottom:464.475000px;}
.y118{bottom:464.835000px;}
.y1ba{bottom:466.095000px;}
.y96{bottom:466.275000px;}
.yc7{bottom:466.635000px;}
.y15d{bottom:467.535000px;}
.y1f7{bottom:469.515000px;}
.y281{bottom:470.055000px;}
.y5e{bottom:473.655000px;}
.y192{bottom:478.515000px;}
.y27{bottom:482.655000px;}
.y22a{bottom:483.375000px;}
.y250{bottom:483.735000px;}
.y17e{bottom:483.915000px;}
.y1b9{bottom:484.995000px;}
.y95{bottom:486.075000px;}
.yf0{bottom:486.975000px;}
.y162{bottom:487.155000px;}
.y117{bottom:488.055000px;}
.y1f6{bottom:488.415000px;}
.yc6{bottom:490.935000px;}
.y5d{bottom:492.735000px;}
.y191{bottom:493.815000px;}
.y224{bottom:499.395000px;}
.y26{bottom:501.735000px;}
.y24f{bottom:502.995000px;}
.y1b8{bottom:504.075000px;}
.y94{bottom:505.695000px;}
.y280{bottom:506.235000px;}
.y161{bottom:506.955000px;}
.y1f5{bottom:507.495000px;}
.yef{bottom:510.195000px;}
.y131{bottom:511.275000px;}
.y5c{bottom:511.635000px;}
.y116{bottom:512.355000px;}
.y17d{bottom:513.075000px;}
.yc5{bottom:514.155000px;}
.y25{bottom:520.635000px;}
.y1d4{bottom:521.355000px;}
.y1b7{bottom:522.975000px;}
.y24e{bottom:523.335000px;}
.y27f{bottom:524.235000px;}
.y93{bottom:525.495000px;}
.y1f4{bottom:526.395000px;}
.y15c{bottom:530.355000px;}
.y5b{bottom:530.535000px;}
.yee{bottom:534.495000px;}
.y115{bottom:535.575000px;}
.yc4{bottom:538.635000px;}
.y24{bottom:539.535000px;}
.y17c{bottom:542.055000px;}
.y24d{bottom:542.415000px;}
.y92{bottom:545.115000px;}
.y1f3{bottom:545.475000px;}
.y15b{bottom:549.255000px;}
.y5a{bottom:549.615000px;}
.y1cf{bottom:555.945000px;}
.yed{bottom:557.715000px;}
.y23{bottom:558.615000px;}
.y130{bottom:558.975000px;}
.y114{bottom:560.055000px;}
.y27e{bottom:560.595000px;}
.y1b6{bottom:560.955000px;}
.y24c{bottom:561.675000px;}
.yc3{bottom:561.855000px;}
.y1f2{bottom:564.375000px;}
.y91{bottom:564.915000px;}
.y15a{bottom:568.335000px;}
.y59{bottom:568.515000px;}
.y177{bottom:571.215000px;}
.y1ce{bottom:573.225000px;}
.y22{bottom:577.515000px;}
.y27d{bottom:578.595000px;}
.y1b5{bottom:579.855000px;}
.yec{bottom:582.195000px;}
.y24b{bottom:582.375000px;}
.y113{bottom:583.275000px;}
.y8f{bottom:584.715000px;}
.yc2{bottom:586.155000px;}
.y159{bottom:587.235000px;}
.y58{bottom:587.595000px;}
.y294{bottom:594.795000px;}
.y21f{bottom:595.515000px;}
.y21{bottom:596.775000px;}
.y1b4{bottom:598.935000px;}
.y179{bottom:600.375000px;}
.y1f1{bottom:602.355000px;}
.y24a{bottom:602.715000px;}
.y8d{bottom:604.335000px;}
.yeb{bottom:605.415000px;}
.y158{bottom:606.315000px;}
.y57{bottom:606.495000px;}
.y112{bottom:607.575000px;}
.yc1{bottom:609.375000px;}
.y27c{bottom:614.955000px;}
.y20{bottom:615.675000px;}
.y1b3{bottom:617.835000px;}
.y1d0{bottom:621.075000px;}
.y1f0{bottom:621.255000px;}
.y249{bottom:621.975000px;}
.y88{bottom:624.135000px;}
.y157{bottom:625.215000px;}
.y56{bottom:625.395000px;}
.y1f{bottom:629.535000px;}
.yea{bottom:629.715000px;}
.y111{bottom:630.975000px;}
.y27b{bottom:632.955000px;}
.y176{bottom:633.135000px;}
.yc0{bottom:633.855000px;}
.y1b2{bottom:636.915000px;}
.y1ef{bottom:640.335000px;}
.y1e{bottom:641.955000px;}
.y248{bottom:642.675000px;}
.y156{bottom:644.115000px;}
.y55{bottom:644.475000px;}
.y8a{bottom:649.875000px;}
.y27a{bottom:651.135000px;}
.y175{bottom:652.035000px;}
.ye9{bottom:652.935000px;}
.y12f{bottom:654.195000px;}
.y110{bottom:655.275000px;}
.y1b1{bottom:655.815000px;}
.ybf{bottom:657.075000px;}
.y1ee{bottom:659.235000px;}
.y1d{bottom:662.655000px;}
.y247{bottom:663.015000px;}
.y155{bottom:663.195000px;}
.y54{bottom:663.375000px;}
.y279{bottom:669.135000px;}
.y174{bottom:671.115000px;}
.y218{bottom:672.195000px;}
.y1b0{bottom:674.745000px;}
.ye8{bottom:677.445000px;}
.y1ed{bottom:678.345000px;}
.y10f{bottom:678.525000px;}
.ybe{bottom:681.405000px;}
.y1c{bottom:681.765000px;}
.y154{bottom:682.125000px;}
.y53{bottom:682.485000px;}
.y278{bottom:687.345000px;}
.y173{bottom:690.045000px;}
.y7f{bottom:691.305000px;}
.y87{bottom:691.485000px;}
.y1ec{bottom:693.645000px;}
.y1af{bottom:693.825000px;}
.y1b{bottom:695.445000px;}
.ye7{bottom:700.665000px;}
.y246{bottom:701.025000px;}
.y153{bottom:701.205000px;}
.y52{bottom:701.385000px;}
.y12e{bottom:701.745000px;}
.y10e{bottom:703.005000px;}
.y277{bottom:705.525000px;}
.ybd{bottom:705.885000px;}
.y172{bottom:708.945000px;}
.y7e{bottom:710.385000px;}
.y1ae{bottom:712.725000px;}
.y1a{bottom:716.145000px;}
.y152{bottom:720.105000px;}
.y51{bottom:720.285000px;}
.y276{bottom:723.525000px;}
.ye6{bottom:724.965000px;}
.y10d{bottom:726.225000px;}
.y171{bottom:728.025000px;}
.y7d{bottom:729.285000px;}
.y86{bottom:729.465000px;}
.ybc{bottom:730.185000px;}
.y1ad{bottom:731.805000px;}
.y190{bottom:736.125000px;}
.y19{bottom:736.845000px;}
.y151{bottom:739.005000px;}
.y50{bottom:739.365000px;}
.y275{bottom:741.705000px;}
.y170{bottom:746.925000px;}
.y1ac{bottom:747.105000px;}
.y7c{bottom:748.365000px;}
.y12d{bottom:749.445000px;}
.y10c{bottom:750.525000px;}
.ybb{bottom:754.665000px;}
.y18f{bottom:755.025000px;}
.y18{bottom:757.545000px;}
.y150{bottom:758.085000px;}
.y73{bottom:758.265000px;}
.y4f{bottom:758.625000px;}
.y274{bottom:759.705000px;}
.y245{bottom:760.065000px;}
.y7b{bottom:763.665000px;}
.y16f{bottom:766.005000px;}
.y85{bottom:767.265000px;}
.ye5{bottom:772.665000px;}
.y10b{bottom:773.745000px;}
.y18e{bottom:774.105000px;}
.y217{bottom:774.645000px;}
.y210{bottom:776.445000px;}
.y14f{bottom:776.985000px;}
.y72{bottom:777.525000px;}
.yba{bottom:777.885000px;}
.y17{bottom:778.245000px;}
.y4e{bottom:778.965000px;}
.y244{bottom:780.405000px;}
.y84{bottom:782.565000px;}
.y16e{bottom:784.905000px;}
.y20f{bottom:792.465000px;}
.y18d{bottom:793.005000px;}
.ye4{bottom:795.885000px;}
.y14e{bottom:796.065000px;}
.y12c{bottom:796.965000px;}
.y4d{bottom:798.045000px;}
.y10a{bottom:798.225000px;}
.y16{bottom:798.945000px;}
.y243{bottom:799.305000px;}
.yb9{bottom:802.185000px;}
.y16d{bottom:803.805000px;}
.y18c{bottom:808.305000px;}
.y20e{bottom:812.265000px;}
.y273{bottom:814.065000px;}
.y14d{bottom:814.965000px;}
.y4c{bottom:816.945000px;}
.y242{bottom:818.385000px;}
.y15{bottom:819.645000px;}
.ye3{bottom:820.365000px;}
.y109{bottom:821.445000px;}
.y16c{bottom:822.885000px;}
.yb8{bottom:825.405000px;}
.y20d{bottom:831.885000px;}
.y272{bottom:832.245000px;}
.y14c{bottom:834.045000px;}
.y4b{bottom:835.845000px;}
.y241{bottom:837.285000px;}
.y14{bottom:840.345000px;}
.y16b{bottom:841.785000px;}
.ye2{bottom:843.585000px;}
.y12b{bottom:844.665000px;}
.y108{bottom:845.745000px;}
.yb6{bottom:849.885000px;}
.y271{bottom:850.425000px;}
.y20c{bottom:851.685000px;}
.y14b{bottom:852.945000px;}
.y4a{bottom:854.925000px;}
.y240{bottom:856.365000px;}
.y16a{bottom:860.865000px;}
.y13{bottom:861.045000px;}
.ye1{bottom:867.885000px;}
.y270{bottom:868.425000px;}
.y107{bottom:868.965000px;}
.y20b{bottom:871.305000px;}
.y14a{bottom:871.845000px;}
.yb5{bottom:873.105000px;}
.y49{bottom:873.825000px;}
.y23f{bottom:875.265000px;}
.y169{bottom:879.765000px;}
.y12{bottom:881.745000px;}
.y26f{bottom:886.605000px;}
.y149{bottom:887.325000px;}
.ye0{bottom:891.105000px;}
.y12a{bottom:892.365000px;}
.y48{bottom:892.905000px;}
.y106{bottom:893.445000px;}
.y23e{bottom:894.165000px;}
.yb3{bottom:897.405000px;}
.y168{bottom:898.665000px;}
.y11{bottom:902.445000px;}
.y26e{bottom:904.605000px;}
.y23d{bottom:909.465000px;}
.y47{bottom:911.805000px;}
.y167{bottom:914.010000px;}
.ydf{bottom:915.630000px;}
.y105{bottom:916.710000px;}
.yb2{bottom:920.850000px;}
.y20a{bottom:922.650000px;}
.y26d{bottom:922.830000px;}
.y10{bottom:923.190000px;}
.y46{bottom:930.930000px;}
.y1eb{bottom:931.290000px;}
.yde{bottom:938.850000px;}
.y129{bottom:939.930000px;}
.y104{bottom:941.010000px;}
.yf{bottom:941.910000px;}
.yb1{bottom:945.150000px;}
.y1ea{bottom:947.310000px;}
.y45{bottom:949.830000px;}
.ye{bottom:955.950000px;}
.y207{bottom:957.750000px;}
.y26c{bottom:959.010000px;}
.ydd{bottom:963.150000px;}
.y103{bottom:964.410000px;}
.yd{bottom:968.370000px;}
.y44{bottom:968.730000px;}
.yb0{bottom:969.450000px;}
.y1e9{bottom:971.610000px;}
.y206{bottom:976.830000px;}
.y26b{bottom:977.190000px;}
.y1ab{bottom:985.470000px;}
.ydc{bottom:986.550000px;}
.y128{bottom:987.630000px;}
.y43{bottom:987.810000px;}
.y102{bottom:988.710000px;}
.yc{bottom:989.070000px;}
.yaf{bottom:993.930000px;}
.y26a{bottom:995.190000px;}
.y1e8{bottom:995.730000px;}
.y1a9{bottom:1001.490000px;}
.y42{bottom:1006.710000px;}
.ydb{bottom:1010.850000px;}
.y204{bottom:1011.750000px;}
.y101{bottom:1011.930000px;}
.y269{bottom:1013.370000px;}
.yae{bottom:1018.230000px;}
.y1e7{bottom:1020.030000px;}
.yb{bottom:1025.610000px;}
.y41{bottom:1025.790000px;}
.y268{bottom:1031.550000px;}
.yda{bottom:1035.150000px;}
.y100{bottom:1036.410000px;}
.ya{bottom:1039.470000px;}
.y1a8{bottom:1040.190000px;}
.yad{bottom:1042.710000px;}
.y1e5{bottom:1044.150000px;}
.y40{bottom:1044.690000px;}
.y267{bottom:1049.550000px;}
.yd9{bottom:1059.630000px;}
.y1a3{bottom:1059.990000px;}
.y3f{bottom:1063.590000px;}
.y9{bottom:1067.010000px;}
.y266{bottom:1067.730000px;}
.y1df{bottom:1068.450000px;}
.y1a6{bottom:1079.790000px;}
.y8{bottom:1080.870000px;}
.y3e{bottom:1082.670000px;}
.y127{bottom:1082.850000px;}
.yd8{bottom:1083.930000px;}
.y202{bottom:1085.370000px;}
.y265{bottom:1085.910000px;}
.yac{bottom:1091.490000px;}
.y1e3{bottom:1092.750000px;}
.y3d{bottom:1101.570000px;}
.y264{bottom:1103.910000px;}
.yd7{bottom:1107.150000px;}
.y7{bottom:1111.110000px;}
.y3c{bottom:1120.650000px;}
.y263{bottom:1122.090000px;}
.y126{bottom:1130.550000px;}
.yd6{bottom:1131.630000px;}
.y6{bottom:1135.230000px;}
.y3b{bottom:1139.550000px;}
.y262{bottom:1140.090000px;}
.y1{bottom:1195.740000px;}
.h15{height:18.900000px;}
.h14{height:19.080000px;}
.h23{height:22.500000px;}
.h22{height:22.536000px;}
.h16{height:23.400000px;}
.h21{height:23.580000px;}
.h24{height:23.616000px;}
.h1a{height:23.760000px;}
.h25{height:23.796000px;}
.h1c{height:23.940000px;}
.h1d{height:24.120000px;}
.h1f{height:24.516000px;}
.h1b{height:24.660000px;}
.h13{height:24.840000px;}
.h1e{height:25.020000px;}
.h17{height:25.056000px;}
.h18{height:25.380000px;}
.h9{height:25.400391px;}
.h4b{height:25.920000px;}
.h19{height:26.100000px;}
.h2b{height:28.260000px;}
.h2d{height:28.296000px;}
.h2c{height:28.440000px;}
.h3e{height:28.980000px;}
.ha{height:29.158594px;}
.h45{height:30.780000px;}
.h46{height:30.816000px;}
.h6{height:33.683203px;}
.h10{height:34.036523px;}
.h35{height:34.560000px;}
.h32{height:36.360000px;}
.h12{height:37.116000px;}
.h33{height:37.980000px;}
.h27{height:38.700000px;}
.h3{height:41.726953px;}
.h2{height:42.164648px;}
.h2e{height:42.696000px;}
.h37{height:43.506914px;}
.h50{height:44.240625px;}
.h4c{height:45.720000px;}
.hc{height:46.251562px;}
.hf{height:46.736719px;}
.h3d{height:47.700000px;}
.he{height:48.224531px;}
.h20{height:49.140000px;}
.h53{height:49.255313px;}
.h7{height:50.273438px;}
.h8{height:50.800781px;}
.h51{height:52.222500px;}
.hb{height:52.417969px;}
.hd{height:54.596250px;}
.h31{height:56.160000px;}
.h2a{height:57.420000px;}
.h5{height:57.796523px;}
.h26{height:58.320000px;}
.h4{height:59.436914px;}
.h3c{height:59.439023px;}
.h44{height:62.316000px;}
.h11{height:62.856000px;}
.h42{height:68.796000px;}
.h4a{height:70.956000px;}
.h43{height:72.900000px;}
.h48{height:75.780000px;}
.h4e{height:75.960000px;}
.h4f{height:75.996000px;}
.h3f{height:81.000000px;}
.h3a{height:81.900000px;}
.h41{height:82.476000px;}
.h4d{height:93.960000px;}
.h40{height:94.140000px;}
.h49{height:95.400000px;}
.h39{height:95.760000px;}
.h36{height:99.000000px;}
.h47{height:101.736000px;}
.h3b{height:102.276000px;}
.h38{height:112.896000px;}
.h2f{height:120.240000px;}
.h30{height:126.936000px;}
.h29{height:152.850000px;}
.h28{height:192.270000px;}
.h52{height:316.290000px;}
.h34{height:587.085000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w23{width:39.600000px;}
.wd{width:62.820000px;}
.w35{width:69.840000px;}
.w3{width:73.440000px;}
.w14{width:79.200000px;}
.wb{width:79.236000px;}
.w2c{width:79.380000px;}
.w24{width:79.596000px;}
.w8{width:84.060000px;}
.w13{width:84.276000px;}
.w12{width:84.816000px;}
.wc{width:86.940000px;}
.we{width:94.860000px;}
.w2f{width:103.140000px;}
.w30{width:103.176000px;}
.w3d{width:104.616000px;}
.w3b{width:104.760000px;}
.w2d{width:106.056000px;}
.w18{width:108.000000px;}
.w26{width:117.000000px;}
.w27{width:117.216000px;}
.w1a{width:122.220000px;}
.w3c{width:123.516000px;}
.w33{width:126.540000px;}
.w2b{width:134.856000px;}
.w20{width:135.756000px;}
.w1d{width:135.900000px;}
.w1e{width:135.936000px;}
.w21{width:136.296000px;}
.w19{width:148.356000px;}
.w29{width:151.230000px;}
.w2a{width:152.460000px;}
.w7{width:155.010000px;}
.w32{width:157.530000px;}
.w15{width:160.410000px;}
.wa{width:166.890000px;}
.w17{width:174.090000px;}
.w1b{width:175.140000px;}
.w6{width:179.850000px;}
.w11{width:180.030000px;}
.w34{width:182.370000px;}
.w25{width:219.990000px;}
.w3a{width:228.855000px;}
.w10{width:243.390000px;}
.w36{width:252.210000px;}
.w38{width:260.490000px;}
.w4{width:264.990000px;}
.wf{width:265.575000px;}
.w1c{width:280.335000px;}
.w39{width:334.335000px;}
.w5{width:335.595000px;}
.w37{width:352.155000px;}
.w22{width:389.055000px;}
.w1f{width:409.395000px;}
.w9{width:423.075000px;}
.w16{width:432.075000px;}
.w28{width:439.995000px;}
.w31{width:467.895000px;}
.w2e{width:486.075000px;}
.w3e{width:685.365000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:7.740000px;}
.x58{left:9.930000px;}
.x29{left:12.060000px;}
.x10{left:13.500000px;}
.x31{left:14.805000px;}
.x21{left:16.740000px;}
.x1e{left:18.900000px;}
.x2f{left:20.910000px;}
.x38{left:21.960000px;}
.x5a{left:24.870000px;}
.x1b{left:28.980000px;}
.x24{left:31.140000px;}
.x4e{left:32.220000px;}
.x17{left:33.840000px;}
.x26{left:35.280000px;}
.x64{left:37.980000px;}
.x25{left:39.240000px;}
.x3b{left:40.545000px;}
.x23{left:41.934000px;}
.x48{left:43.374000px;}
.x3d{left:44.685000px;}
.x4d{left:46.665000px;}
.x16{left:47.745000px;}
.x5d{left:49.320000px;}
.x63{left:50.760000px;}
.x3a{left:53.460000px;}
.x62{left:54.900000px;}
.x3c{left:57.600000px;}
.x49{left:58.725000px;}
.x11{left:60.660000px;}
.x14{left:63.210000px;}
.x6e{left:65.745000px;}
.x47{left:67.854000px;}
.x1d{left:69.165000px;}
.x34{left:70.920000px;}
.x1a{left:73.305000px;}
.x2d{left:74.385000px;}
.x56{left:76.320000px;}
.x42{left:78.300000px;}
.x1c{left:81.570000px;}
.x2b{left:83.025000px;}
.x19{left:85.710000px;}
.x6f{left:88.425000px;}
.x78{left:98.850000px;}
.x13{left:101.190000px;}
.x7b{left:103.536000px;}
.x44{left:106.230000px;}
.x1{left:108.035987px;}
.x33{left:110.016000px;}
.x27{left:112.176000px;}
.x71{left:116.865000px;}
.x51{left:119.010000px;}
.x76{left:121.005000px;}
.x4{left:124.775987px;}
.xd{left:129.275987px;}
.x6{left:131.615987px;}
.x7{left:134.135987px;}
.x73{left:138.990000px;}
.x40{left:156.990000px;}
.xc{left:162.029987px;}
.x36{left:164.910000px;}
.x5f{left:170.130000px;}
.x28{left:175.710000px;}
.x1f{left:177.705000px;}
.x70{left:179.310000px;}
.xf{left:182.549987px;}
.x59{left:184.185000px;}
.x75{left:188.850000px;}
.xe{left:189.929987px;}
.x9{left:192.989987px;}
.x52{left:194.430000px;}
.x5b{left:198.405000px;}
.x4f{left:202.529987px;}
.x5c{left:205.425000px;}
.x57{left:206.685000px;}
.x6a{left:212.610000px;}
.x46{left:226.875000px;}
.x30{left:235.125000px;}
.x74{left:237.855000px;}
.x45{left:245.955000px;}
.xb{left:266.249987px;}
.x2a{left:271.290000px;}
.x41{left:279.975000px;}
.x67{left:291.450000px;}
.x68{left:293.070000px;}
.x65{left:297.075000px;}
.x66{left:298.110000px;}
.x69{left:301.350000px;}
.x6b{left:316.515000px;}
.x3{left:322.094987px;}
.xa{left:339.014987px;}
.x5e{left:344.415000px;}
.x35{left:351.075000px;}
.x32{left:356.475000px;}
.x8{left:367.994987px;}
.x4a{left:382.035000px;}
.x50{left:401.475000px;}
.x5{left:418.934987px;}
.x53{left:425.595000px;}
.x72{left:432.255000px;}
.x12{left:448.815000px;}
.x77{left:450.075000px;}
.x2e{left:452.055000px;}
.x43{left:455.835000px;}
.x54{left:465.915000px;}
.x6c{left:474.765000px;}
.x60{left:496.365000px;}
.x4b{left:518.505000px;}
.x37{left:526.065000px;}
.x2c{left:537.585000px;}
.x55{left:546.405000px;}
.x7a{left:574.305000px;}
.x6d{left:602.025000px;}
.x20{left:617.505000px;}
.x15{left:629.385000px;}
.x39{left:634.785000px;}
.x61{left:649.545000px;}
.x4c{left:655.125000px;}
.x79{left:679.650000px;}
.x22{left:697.470000px;}
.x3e{left:719.069987px;}
.x3f{left:761.549987px;}
.x2{left:785.129987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lse{letter-spacing:-1.920000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.544000pt;}
.ls20{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.406933pt;}
.lsa{letter-spacing:-0.368533pt;}
.ls1f{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.271467pt;}
.ls10{letter-spacing:-0.233067pt;}
.ls1d{letter-spacing:-0.194667pt;}
.ls18{letter-spacing:-0.183467pt;}
.ls14{letter-spacing:-0.097067pt;}
.ls1c{letter-spacing:-0.046080pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.135467pt;}
.ls0{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.232960pt;}
.ls9{letter-spacing:0.233067pt;}
.ls1e{letter-spacing:0.235733pt;}
.ls17{letter-spacing:0.265600pt;}
.lsf{letter-spacing:0.271467pt;}
.ls1b{letter-spacing:0.297067pt;}
.ls1{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.448000pt;}
.lsd{letter-spacing:6.031360pt;}
.ls2{letter-spacing:9.728000pt;}
.lsb{letter-spacing:10.240000pt;}
.ls7{letter-spacing:23.951360pt;}
.lsc{letter-spacing:35.471360pt;}
.ls16{letter-spacing:78.779307pt;}
.ls12{letter-spacing:169.231360pt;}
.ls1a{letter-spacing:346.240000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws8{word-spacing:-14.991467pt;}
.wsc{word-spacing:-14.953067pt;}
.wsf{word-spacing:-14.855467pt;}
.ws5{word-spacing:-14.720000pt;}
.wse{word-spacing:-14.622933pt;}
.ws9{word-spacing:-14.486933pt;}
.wsa{word-spacing:-14.448533pt;}
.ws12{word-spacing:-14.377067pt;}
.ws6{word-spacing:-14.351467pt;}
.wsd{word-spacing:-14.176000pt;}
.wsb{word-spacing:-14.080000pt;}
.ws14{word-spacing:-13.885333pt;}
.ws1{word-spacing:-13.600000pt;}
.ws16{word-spacing:-13.545600pt;}
.ws13{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.096533pt;}
.ws15{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.800000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws11{word-spacing:-0.058880pt;}
.ws4{word-spacing:0.000000pt;}
._16{margin-left:-7.573333pt;}
._9{margin-left:-6.617173pt;}
._19{margin-left:-5.530880pt;}
._b{margin-left:-4.616747pt;}
._3{margin-left:-3.665280pt;}
._0{margin-left:-2.602880pt;}
._2{margin-left:-1.381120pt;}
._1{width:0.956160pt;}
._6{width:2.467413pt;}
._c{width:3.972480pt;}
._13{width:4.862720pt;}
._11{width:5.827413pt;}
._18{width:6.720213pt;}
._10{width:7.616000pt;}
._12{width:8.768000pt;}
._e{width:9.920000pt;}
._f{width:10.944000pt;}
._1e{width:12.093653pt;}
._a{width:13.312000pt;}
._17{width:15.720960pt;}
._7{width:17.386667pt;}
._8{width:18.777173pt;}
._d{width:20.096000pt;}
._1a{width:21.230720pt;}
._1c{width:22.237013pt;}
._1b{width:23.282560pt;}
._20{width:24.233600pt;}
._1d{width:26.056960pt;}
._14{width:27.114667pt;}
._15{width:28.053333pt;}
._1f{width:29.087573pt;}
._21{width:30.849280pt;}
._24{width:34.414080pt;}
._23{width:35.594240pt;}
._2d{width:38.860800pt;}
._2e{width:40.185600pt;}
._2c{width:41.987840pt;}
._2f{width:46.155520pt;}
._30{width:47.117440pt;}
._31{width:48.239360pt;}
._32{width:49.457920pt;}
._27{width:54.194133pt;}
._25{width:56.320000pt;}
._26{width:57.250560pt;}
._35{width:60.206080pt;}
._33{width:61.305600pt;}
._34{width:62.294187pt;}
._2b{width:81.637120pt;}
._36{width:85.806507pt;}
._2a{width:86.987520pt;}
._37{width:88.643413pt;}
._28{width:133.051307pt;}
._29{width:134.130773pt;}
._4{width:157.299627pt;}
._22{width:189.888000pt;}
._5{width:799.786667pt;}
.fs4{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs7{font-size:56.320000pt;}
.fs6{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y1de{bottom:-9.280000pt;}
.y0{bottom:0.000000pt;}
.y21e{bottom:0.160000pt;}
.y223{bottom:0.320000pt;}
.y1a1{bottom:2.400000pt;}
.y1d2{bottom:2.880000pt;}
.y90{bottom:3.200000pt;}
.y8e{bottom:3.360000pt;}
.y160{bottom:4.640000pt;}
.yb7{bottom:4.800000pt;}
.yb4{bottom:4.960000pt;}
.y98{bottom:5.280000pt;}
.y9f{bottom:5.440000pt;}
.ya4{bottom:5.600000pt;}
.ya1{bottom:5.760000pt;}
.y8c{bottom:5.920000pt;}
.y9a{bottom:6.080000pt;}
.y21d{bottom:6.266667pt;}
.y9d{bottom:6.560000pt;}
.y229{bottom:7.040000pt;}
.y1e4{bottom:7.200000pt;}
.y1e6{bottom:7.360000pt;}
.y1fb{bottom:7.680000pt;}
.y2a5{bottom:8.000000pt;}
.y22f{bottom:8.200000pt;}
.y231{bottom:9.440000pt;}
.y1d3{bottom:10.560000pt;}
.y17a{bottom:11.520000pt;}
.y17f{bottom:11.560000pt;}
.y17b{bottom:11.680000pt;}
.y228{bottom:11.840000pt;}
.y1e1{bottom:12.000000pt;}
.y196{bottom:13.760000pt;}
.y1e2{bottom:16.000000pt;}
.yab{bottom:16.640000pt;}
.y1d1{bottom:18.240000pt;}
.y1a7{bottom:18.720000pt;}
.y8b{bottom:19.360000pt;}
.y1a5{bottom:19.520000pt;}
.y1aa{bottom:20.160000pt;}
.y178{bottom:20.320000pt;}
.y163{bottom:20.800000pt;}
.y15f{bottom:21.440000pt;}
.y89{bottom:22.720000pt;}
.y5{bottom:23.040000pt;}
.y21c{bottom:23.066667pt;}
.y2a4{bottom:23.360000pt;}
.y209{bottom:24.840000pt;}
.y203{bottom:25.440000pt;}
.y22d{bottom:26.400000pt;}
.y232{bottom:27.040000pt;}
.y205{bottom:27.200000pt;}
.y220{bottom:28.480000pt;}
.y239{bottom:28.640000pt;}
.y1e0{bottom:28.800000pt;}
.y1fd{bottom:30.880000pt;}
.y201{bottom:31.520000pt;}
.y1db{bottom:31.680000pt;}
.y19e{bottom:34.240000pt;}
.y236{bottom:36.160000pt;}
.y1a4{bottom:36.320000pt;}
.y1ff{bottom:36.640000pt;}
.y222{bottom:36.960000pt;}
.y225{bottom:37.120000pt;}
.y1d9{bottom:37.760000pt;}
.y15e{bottom:38.240000pt;}
.y2a3{bottom:38.720000pt;}
.y1d5{bottom:39.200000pt;}
.y199{bottom:39.840000pt;}
.y219{bottom:40.026667pt;}
.y1dd{bottom:40.640000pt;}
.y208{bottom:41.800000pt;}
.y1a0{bottom:42.720000pt;}
.y1d7{bottom:45.480000pt;}
.y227{bottom:45.600000pt;}
.y4{bottom:46.080000pt;}
.y19a{bottom:48.160000pt;}
.y19d{bottom:51.226667pt;}
.y235{bottom:52.960000pt;}
.y221{bottom:53.760000pt;}
.y238{bottom:53.920000pt;}
.y23b{bottom:53.946667pt;}
.y2a2{bottom:54.080000pt;}
.y198{bottom:56.640000pt;}
.y21b{bottom:56.826667pt;}
.y19f{bottom:59.706667pt;}
.y3{bottom:61.440000pt;}
.y226{bottom:62.560000pt;}
.y19c{bottom:68.026667pt;}
.y2a1{bottom:69.280000pt;}
.y234{bottom:69.920000pt;}
.y21a{bottom:73.786667pt;}
.y2a0{bottom:84.640000pt;}
.y2{bottom:87.840000pt;}
.y29f{bottom:100.000000pt;}
.y216{bottom:104.640000pt;}
.y71{bottom:105.120000pt;}
.y1cd{bottom:107.520000pt;}
.y148{bottom:107.840000pt;}
.y3a{bottom:108.480000pt;}
.y1cc{bottom:110.720000pt;}
.y23c{bottom:111.040000pt;}
.y1dc{bottom:111.680000pt;}
.y293{bottom:111.840000pt;}
.y261{bottom:113.760000pt;}
.y1a2{bottom:114.400000pt;}
.yff{bottom:114.720000pt;}
.y29e{bottom:115.360000pt;}
.y139{bottom:115.680000pt;}
.y125{bottom:116.800000pt;}
.y7a{bottom:117.440000pt;}
.yd5{bottom:118.400000pt;}
.yaa{bottom:119.200000pt;}
.y215{bottom:121.440000pt;}
.y70{bottom:122.080000pt;}
.y165{bottom:122.280000pt;}
.y200{bottom:122.880000pt;}
.y147{bottom:124.800000pt;}
.y23a{bottom:125.280000pt;}
.y39{bottom:125.440000pt;}
.y1cb{bottom:127.520000pt;}
.y292{bottom:127.840000pt;}
.y19b{bottom:128.800000pt;}
.y260{bottom:129.920000pt;}
.y29d{bottom:130.720000pt;}
.y79{bottom:134.240000pt;}
.y214{bottom:135.040000pt;}
.ya9{bottom:136.000000pt;}
.yfe{bottom:136.320000pt;}
.y124{bottom:137.440000pt;}
.y6f{bottom:138.880000pt;}
.yd4{bottom:140.000000pt;}
.y146{bottom:141.600000pt;}
.y38{bottom:142.240000pt;}
.y291{bottom:144.000000pt;}
.y1ca{bottom:144.320000pt;}
.y25f{bottom:146.080000pt;}
.y78{bottom:151.200000pt;}
.ya8{bottom:152.960000pt;}
.y6e{bottom:155.680000pt;}
.yfd{bottom:157.120000pt;}
.y138{bottom:158.080000pt;}
.y145{bottom:158.560000pt;}
.y123{bottom:159.040000pt;}
.y37{bottom:159.200000pt;}
.y290{bottom:160.160000pt;}
.yd3{bottom:160.640000pt;}
.y1c9{bottom:161.280000pt;}
.y25e{bottom:162.080000pt;}
.ya7{bottom:167.200000pt;}
.y77{bottom:168.000000pt;}
.y6d{bottom:172.640000pt;}
.y144{bottom:175.360000pt;}
.y36{bottom:176.026667pt;}
.y28f{bottom:176.186667pt;}
.y29c{bottom:176.640000pt;}
.y1c8{bottom:178.106667pt;}
.y25d{bottom:178.266667pt;}
.y18b{bottom:178.586667pt;}
.yfc{bottom:178.746667pt;}
.y122{bottom:179.706667pt;}
.yd2{bottom:182.426667pt;}
.y76{bottom:184.826667pt;}
.y6c{bottom:189.466667pt;}
.ya6{bottom:189.626667pt;}
.y29b{bottom:192.040000pt;}
.y143{bottom:192.186667pt;}
.y28e{bottom:192.346667pt;}
.y35{bottom:192.826667pt;}
.y237{bottom:193.466667pt;}
.y25c{bottom:194.426667pt;}
.y1c7{bottom:195.066667pt;}
.y18a{bottom:195.386667pt;}
.y1fe{bottom:196.986667pt;}
.yfb{bottom:199.386667pt;}
.y137{bottom:200.346667pt;}
.y121{bottom:201.466667pt;}
.y75{bottom:201.786667pt;}
.yd1{bottom:203.066667pt;}
.y1da{bottom:203.226667pt;}
.y6b{bottom:206.426667pt;}
.y29a{bottom:207.400000pt;}
.y295{bottom:207.706667pt;}
.y28d{bottom:208.506667pt;}
.y142{bottom:209.146667pt;}
.y34{bottom:209.786667pt;}
.y25b{bottom:210.426667pt;}
.ya5{bottom:211.706667pt;}
.y1c6{bottom:211.866667pt;}
.y189{bottom:212.346667pt;}
.y74{bottom:218.586667pt;}
.yfa{bottom:221.146667pt;}
.y120{bottom:222.106667pt;}
.y6a{bottom:222.266667pt;}
.y299{bottom:222.760000pt;}
.y28c{bottom:224.506667pt;}
.yd0{bottom:224.666667pt;}
.y141{bottom:225.946667pt;}
.y33{bottom:226.586667pt;}
.y1c5{bottom:228.666667pt;}
.y188{bottom:229.146667pt;}
.ya3{bottom:234.586667pt;}
.y69{bottom:235.546667pt;}
.y298{bottom:238.120000pt;}
.y28b{bottom:240.666667pt;}
.yf9{bottom:241.786667pt;}
.y197{bottom:242.266667pt;}
.y25a{bottom:242.586667pt;}
.y136{bottom:242.746667pt;}
.y140{bottom:242.906667pt;}
.y32{bottom:243.546667pt;}
.y11f{bottom:243.706667pt;}
.ycf{bottom:245.306667pt;}
.y1c4{bottom:245.626667pt;}
.y187{bottom:246.106667pt;}
.y83{bottom:249.786667pt;}
.y68{bottom:252.346667pt;}
.y297{bottom:253.320000pt;}
.ya2{bottom:256.666667pt;}
.y13f{bottom:258.746667pt;}
.y31{bottom:260.346667pt;}
.y233{bottom:261.626667pt;}
.y1c3{bottom:262.426667pt;}
.y186{bottom:262.906667pt;}
.yf8{bottom:263.386667pt;}
.y11e{bottom:264.346667pt;}
.y166{bottom:264.826667pt;}
.y82{bottom:266.586667pt;}
.yce{bottom:267.066667pt;}
.y296{bottom:268.680000pt;}
.y67{bottom:269.146667pt;}
.y13e{bottom:272.026667pt;}
.y28a{bottom:272.826667pt;}
.y259{bottom:274.906667pt;}
.y1d8{bottom:276.666667pt;}
.y30{bottom:277.146667pt;}
.ya0{bottom:278.586667pt;}
.y164{bottom:279.066667pt;}
.y1c2{bottom:279.386667pt;}
.y185{bottom:279.866667pt;}
.y1fc{bottom:281.306667pt;}
.y81{bottom:283.546667pt;}
.yf7{bottom:284.026667pt;}
.y135{bottom:285.146667pt;}
.y66{bottom:286.106667pt;}
.ycd{bottom:287.706667pt;}
.y13d{bottom:288.826667pt;}
.y289{bottom:288.986667pt;}
.y258{bottom:290.906667pt;}
.y2f{bottom:294.106667pt;}
.y1c1{bottom:296.186667pt;}
.y184{bottom:296.666667pt;}
.y80{bottom:297.146667pt;}
.y9e{bottom:301.146667pt;}
.y65{bottom:302.906667pt;}
.y288{bottom:304.986667pt;}
.y13c{bottom:305.626667pt;}
.yf6{bottom:305.786667pt;}
.y11d{bottom:306.746667pt;}
.y257{bottom:307.066667pt;}
.ycc{bottom:309.306667pt;}
.y2e{bottom:310.906667pt;}
.y1c0{bottom:312.986667pt;}
.y183{bottom:313.466667pt;}
.y64{bottom:319.866667pt;}
.y287{bottom:321.146667pt;}
.y13b{bottom:322.586667pt;}
.y9c{bottom:322.906667pt;}
.y256{bottom:323.066667pt;}
.yf5{bottom:326.426667pt;}
.y134{bottom:327.386667pt;}
.y2d{bottom:327.866667pt;}
.y11c{bottom:328.346667pt;}
.y1bf{bottom:329.946667pt;}
.ycb{bottom:330.106667pt;}
.y182{bottom:330.426667pt;}
.y63{bottom:336.666667pt;}
.y286{bottom:337.146667pt;}
.y13a{bottom:338.426667pt;}
.y255{bottom:339.706667pt;}
.y2c{bottom:344.666667pt;}
.y22c{bottom:345.786667pt;}
.y1be{bottom:346.746667pt;}
.y9b{bottom:346.906667pt;}
.y181{bottom:347.226667pt;}
.yf4{bottom:348.026667pt;}
.y11b{bottom:349.146667pt;}
.y195{bottom:349.786667pt;}
.yca{bottom:351.706667pt;}
.y285{bottom:353.306667pt;}
.y62{bottom:353.626667pt;}
.y1fa{bottom:353.946667pt;}
.y254{bottom:358.106667pt;}
.y2b{bottom:361.626667pt;}
.y1d6{bottom:362.426667pt;}
.y230{bottom:363.386667pt;}
.y1bd{bottom:363.706667pt;}
.y180{bottom:364.186667pt;}
.yf3{bottom:368.826667pt;}
.y284{bottom:369.466667pt;}
.y133{bottom:369.786667pt;}
.y99{bottom:370.106667pt;}
.y61{bottom:370.426667pt;}
.y11a{bottom:370.746667pt;}
.yc9{bottom:372.346667pt;}
.y253{bottom:376.186667pt;}
.y2a{bottom:378.426667pt;}
.y1bc{bottom:380.506667pt;}
.y213{bottom:382.426667pt;}
.y1f9{bottom:383.546667pt;}
.y283{bottom:385.466667pt;}
.y22e{bottom:387.066667pt;}
.y60{bottom:387.226667pt;}
.yf2{bottom:390.466667pt;}
.y119{bottom:391.426667pt;}
.y194{bottom:391.746667pt;}
.y97{bottom:393.026667pt;}
.y252{bottom:393.346667pt;}
.yc8{bottom:394.146667pt;}
.y29{bottom:395.266667pt;}
.y1bb{bottom:397.506667pt;}
.y212{bottom:399.266667pt;}
.y1f8{bottom:400.546667pt;}
.y282{bottom:401.666667pt;}
.y5f{bottom:404.226667pt;}
.y193{bottom:408.546667pt;}
.yf1{bottom:411.106667pt;}
.y251{bottom:411.746667pt;}
.y132{bottom:412.066667pt;}
.y28{bottom:412.226667pt;}
.y22b{bottom:412.706667pt;}
.y211{bottom:412.866667pt;}
.y118{bottom:413.186667pt;}
.y1ba{bottom:414.306667pt;}
.y96{bottom:414.466667pt;}
.yc7{bottom:414.786667pt;}
.y15d{bottom:415.586667pt;}
.y1f7{bottom:417.346667pt;}
.y281{bottom:417.826667pt;}
.y5e{bottom:421.026667pt;}
.y192{bottom:425.346667pt;}
.y27{bottom:429.026667pt;}
.y22a{bottom:429.666667pt;}
.y250{bottom:429.986667pt;}
.y17e{bottom:430.146667pt;}
.y1b9{bottom:431.106667pt;}
.y95{bottom:432.066667pt;}
.yf0{bottom:432.866667pt;}
.y162{bottom:433.026667pt;}
.y117{bottom:433.826667pt;}
.y1f6{bottom:434.146667pt;}
.yc6{bottom:436.386667pt;}
.y5d{bottom:437.986667pt;}
.y191{bottom:438.946667pt;}
.y224{bottom:443.906667pt;}
.y26{bottom:445.986667pt;}
.y24f{bottom:447.106667pt;}
.y1b8{bottom:448.066667pt;}
.y94{bottom:449.506667pt;}
.y280{bottom:449.986667pt;}
.y161{bottom:450.626667pt;}
.y1f5{bottom:451.106667pt;}
.yef{bottom:453.506667pt;}
.y131{bottom:454.466667pt;}
.y5c{bottom:454.786667pt;}
.y116{bottom:455.426667pt;}
.y17d{bottom:456.066667pt;}
.yc5{bottom:457.026667pt;}
.y25{bottom:462.786667pt;}
.y1d4{bottom:463.426667pt;}
.y1b7{bottom:464.866667pt;}
.y24e{bottom:465.186667pt;}
.y27f{bottom:465.986667pt;}
.y93{bottom:467.106667pt;}
.y1f4{bottom:467.906667pt;}
.y15c{bottom:471.426667pt;}
.y5b{bottom:471.586667pt;}
.yee{bottom:475.106667pt;}
.y115{bottom:476.066667pt;}
.yc4{bottom:478.786667pt;}
.y24{bottom:479.586667pt;}
.y17c{bottom:481.826667pt;}
.y24d{bottom:482.146667pt;}
.y92{bottom:484.546667pt;}
.y1f3{bottom:484.866667pt;}
.y15b{bottom:488.226667pt;}
.y5a{bottom:488.546667pt;}
.y1cf{bottom:494.173333pt;}
.yed{bottom:495.746667pt;}
.y23{bottom:496.546667pt;}
.y130{bottom:496.866667pt;}
.y114{bottom:497.826667pt;}
.y27e{bottom:498.306667pt;}
.y1b6{bottom:498.626667pt;}
.y24c{bottom:499.266667pt;}
.yc3{bottom:499.426667pt;}
.y1f2{bottom:501.666667pt;}
.y91{bottom:502.146667pt;}
.y15a{bottom:505.186667pt;}
.y59{bottom:505.346667pt;}
.y177{bottom:507.746667pt;}
.y1ce{bottom:509.533333pt;}
.y22{bottom:513.346667pt;}
.y27d{bottom:514.306667pt;}
.y1b5{bottom:515.426667pt;}
.yec{bottom:517.506667pt;}
.y24b{bottom:517.666667pt;}
.y113{bottom:518.466667pt;}
.y8f{bottom:519.746667pt;}
.yc2{bottom:521.026667pt;}
.y159{bottom:521.986667pt;}
.y58{bottom:522.306667pt;}
.y294{bottom:528.706667pt;}
.y21f{bottom:529.346667pt;}
.y21{bottom:530.466667pt;}
.y1b4{bottom:532.386667pt;}
.y179{bottom:533.666667pt;}
.y1f1{bottom:535.426667pt;}
.y24a{bottom:535.746667pt;}
.y8d{bottom:537.186667pt;}
.yeb{bottom:538.146667pt;}
.y158{bottom:538.946667pt;}
.y57{bottom:539.106667pt;}
.y112{bottom:540.066667pt;}
.yc1{bottom:541.666667pt;}
.y27c{bottom:546.626667pt;}
.y20{bottom:547.266667pt;}
.y1b3{bottom:549.186667pt;}
.y1d0{bottom:552.066667pt;}
.y1f0{bottom:552.226667pt;}
.y249{bottom:552.866667pt;}
.y88{bottom:554.786667pt;}
.y157{bottom:555.746667pt;}
.y56{bottom:555.906667pt;}
.y1f{bottom:559.586667pt;}
.yea{bottom:559.746667pt;}
.y111{bottom:560.866667pt;}
.y27b{bottom:562.626667pt;}
.y176{bottom:562.786667pt;}
.yc0{bottom:563.426667pt;}
.y1b2{bottom:566.146667pt;}
.y1ef{bottom:569.186667pt;}
.y1e{bottom:570.626667pt;}
.y248{bottom:571.266667pt;}
.y156{bottom:572.546667pt;}
.y55{bottom:572.866667pt;}
.y8a{bottom:577.666667pt;}
.y27a{bottom:578.786667pt;}
.y175{bottom:579.586667pt;}
.ye9{bottom:580.386667pt;}
.y12f{bottom:581.506667pt;}
.y110{bottom:582.466667pt;}
.y1b1{bottom:582.946667pt;}
.ybf{bottom:584.066667pt;}
.y1ee{bottom:585.986667pt;}
.y1d{bottom:589.026667pt;}
.y247{bottom:589.346667pt;}
.y155{bottom:589.506667pt;}
.y54{bottom:589.666667pt;}
.y279{bottom:594.786667pt;}
.y174{bottom:596.546667pt;}
.y218{bottom:597.506667pt;}
.y1b0{bottom:599.773333pt;}
.ye8{bottom:602.173333pt;}
.y1ed{bottom:602.973333pt;}
.y10f{bottom:603.133333pt;}
.ybe{bottom:605.693333pt;}
.y1c{bottom:606.013333pt;}
.y154{bottom:606.333333pt;}
.y53{bottom:606.653333pt;}
.y278{bottom:610.973333pt;}
.y173{bottom:613.373333pt;}
.y7f{bottom:614.493333pt;}
.y87{bottom:614.653333pt;}
.y1ec{bottom:616.573333pt;}
.y1af{bottom:616.733333pt;}
.y1b{bottom:618.173333pt;}
.ye7{bottom:622.813333pt;}
.y246{bottom:623.133333pt;}
.y153{bottom:623.293333pt;}
.y52{bottom:623.453333pt;}
.y12e{bottom:623.773333pt;}
.y10e{bottom:624.893333pt;}
.y277{bottom:627.133333pt;}
.ybd{bottom:627.453333pt;}
.y172{bottom:630.173333pt;}
.y7e{bottom:631.453333pt;}
.y1ae{bottom:633.533333pt;}
.y1a{bottom:636.573333pt;}
.y152{bottom:640.093333pt;}
.y51{bottom:640.253333pt;}
.y276{bottom:643.133333pt;}
.ye6{bottom:644.413333pt;}
.y10d{bottom:645.533333pt;}
.y171{bottom:647.133333pt;}
.y7d{bottom:648.253333pt;}
.y86{bottom:648.413333pt;}
.ybc{bottom:649.053333pt;}
.y1ad{bottom:650.493333pt;}
.y190{bottom:654.333333pt;}
.y19{bottom:654.973333pt;}
.y151{bottom:656.893333pt;}
.y50{bottom:657.213333pt;}
.y275{bottom:659.293333pt;}
.y170{bottom:663.933333pt;}
.y1ac{bottom:664.093333pt;}
.y7c{bottom:665.213333pt;}
.y12d{bottom:666.173333pt;}
.y10c{bottom:667.133333pt;}
.ybb{bottom:670.813333pt;}
.y18f{bottom:671.133333pt;}
.y18{bottom:673.373333pt;}
.y150{bottom:673.853333pt;}
.y73{bottom:674.013333pt;}
.y4f{bottom:674.333333pt;}
.y274{bottom:675.293333pt;}
.y245{bottom:675.613333pt;}
.y7b{bottom:678.813333pt;}
.y16f{bottom:680.893333pt;}
.y85{bottom:682.013333pt;}
.ye5{bottom:686.813333pt;}
.y10b{bottom:687.773333pt;}
.y18e{bottom:688.093333pt;}
.y217{bottom:688.573333pt;}
.y210{bottom:690.173333pt;}
.y14f{bottom:690.653333pt;}
.y72{bottom:691.133333pt;}
.yba{bottom:691.453333pt;}
.y17{bottom:691.773333pt;}
.y4e{bottom:692.413333pt;}
.y244{bottom:693.693333pt;}
.y84{bottom:695.613333pt;}
.y16e{bottom:697.693333pt;}
.y20f{bottom:704.413333pt;}
.y18d{bottom:704.893333pt;}
.ye4{bottom:707.453333pt;}
.y14e{bottom:707.613333pt;}
.y12c{bottom:708.413333pt;}
.y4d{bottom:709.373333pt;}
.y10a{bottom:709.533333pt;}
.y16{bottom:710.173333pt;}
.y243{bottom:710.493333pt;}
.yb9{bottom:713.053333pt;}
.y16d{bottom:714.493333pt;}
.y18c{bottom:718.493333pt;}
.y20e{bottom:722.013333pt;}
.y273{bottom:723.613333pt;}
.y14d{bottom:724.413333pt;}
.y4c{bottom:726.173333pt;}
.y242{bottom:727.453333pt;}
.y15{bottom:728.573333pt;}
.ye3{bottom:729.213333pt;}
.y109{bottom:730.173333pt;}
.y16c{bottom:731.453333pt;}
.yb8{bottom:733.693333pt;}
.y20d{bottom:739.453333pt;}
.y272{bottom:739.773333pt;}
.y14c{bottom:741.373333pt;}
.y4b{bottom:742.973333pt;}
.y241{bottom:744.253333pt;}
.y14{bottom:746.973333pt;}
.y16b{bottom:748.253333pt;}
.ye2{bottom:749.853333pt;}
.y12b{bottom:750.813333pt;}
.y108{bottom:751.773333pt;}
.yb6{bottom:755.453333pt;}
.y271{bottom:755.933333pt;}
.y20c{bottom:757.053333pt;}
.y14b{bottom:758.173333pt;}
.y4a{bottom:759.933333pt;}
.y240{bottom:761.213333pt;}
.y16a{bottom:765.213333pt;}
.y13{bottom:765.373333pt;}
.ye1{bottom:771.453333pt;}
.y270{bottom:771.933333pt;}
.y107{bottom:772.413333pt;}
.y20b{bottom:774.493333pt;}
.y14a{bottom:774.973333pt;}
.yb5{bottom:776.093333pt;}
.y49{bottom:776.733333pt;}
.y23f{bottom:778.013333pt;}
.y169{bottom:782.013333pt;}
.y12{bottom:783.773333pt;}
.y26f{bottom:788.093333pt;}
.y149{bottom:788.733333pt;}
.ye0{bottom:792.093333pt;}
.y12a{bottom:793.213333pt;}
.y48{bottom:793.693333pt;}
.y106{bottom:794.173333pt;}
.y23e{bottom:794.813333pt;}
.yb3{bottom:797.693333pt;}
.y168{bottom:798.813333pt;}
.y11{bottom:802.173333pt;}
.y26e{bottom:804.093333pt;}
.y23d{bottom:808.413333pt;}
.y47{bottom:810.493333pt;}
.y167{bottom:812.453333pt;}
.ydf{bottom:813.893333pt;}
.y105{bottom:814.853333pt;}
.yb2{bottom:818.533333pt;}
.y20a{bottom:820.133333pt;}
.y26d{bottom:820.293333pt;}
.y10{bottom:820.613333pt;}
.y46{bottom:827.493333pt;}
.y1eb{bottom:827.813333pt;}
.yde{bottom:834.533333pt;}
.y129{bottom:835.493333pt;}
.y104{bottom:836.453333pt;}
.yf{bottom:837.253333pt;}
.yb1{bottom:840.133333pt;}
.y1ea{bottom:842.053333pt;}
.y45{bottom:844.293333pt;}
.ye{bottom:849.733333pt;}
.y207{bottom:851.333333pt;}
.y26c{bottom:852.453333pt;}
.ydd{bottom:856.133333pt;}
.y103{bottom:857.253333pt;}
.yd{bottom:860.773333pt;}
.y44{bottom:861.093333pt;}
.yb0{bottom:861.733333pt;}
.y1e9{bottom:863.653333pt;}
.y206{bottom:868.293333pt;}
.y26b{bottom:868.613333pt;}
.y1ab{bottom:875.973333pt;}
.ydc{bottom:876.933333pt;}
.y128{bottom:877.893333pt;}
.y43{bottom:878.053333pt;}
.y102{bottom:878.853333pt;}
.yc{bottom:879.173333pt;}
.yaf{bottom:883.493333pt;}
.y26a{bottom:884.613333pt;}
.y1e8{bottom:885.093333pt;}
.y1a9{bottom:890.213333pt;}
.y42{bottom:894.853333pt;}
.ydb{bottom:898.533333pt;}
.y204{bottom:899.333333pt;}
.y101{bottom:899.493333pt;}
.y269{bottom:900.773333pt;}
.yae{bottom:905.093333pt;}
.y1e7{bottom:906.693333pt;}
.yb{bottom:911.653333pt;}
.y41{bottom:911.813333pt;}
.y268{bottom:916.933333pt;}
.yda{bottom:920.133333pt;}
.y100{bottom:921.253333pt;}
.ya{bottom:923.973333pt;}
.y1a8{bottom:924.613333pt;}
.yad{bottom:926.853333pt;}
.y1e5{bottom:928.133333pt;}
.y40{bottom:928.613333pt;}
.y267{bottom:932.933333pt;}
.yd9{bottom:941.893333pt;}
.y1a3{bottom:942.213333pt;}
.y3f{bottom:945.413333pt;}
.y9{bottom:948.453333pt;}
.y266{bottom:949.093333pt;}
.y1df{bottom:949.733333pt;}
.y1a6{bottom:959.813333pt;}
.y8{bottom:960.773333pt;}
.y3e{bottom:962.373333pt;}
.y127{bottom:962.533333pt;}
.yd8{bottom:963.493333pt;}
.y202{bottom:964.773333pt;}
.y265{bottom:965.253333pt;}
.yac{bottom:970.213333pt;}
.y1e3{bottom:971.333333pt;}
.y3d{bottom:979.173333pt;}
.y264{bottom:981.253333pt;}
.yd7{bottom:984.133333pt;}
.y7{bottom:987.653333pt;}
.y3c{bottom:996.133333pt;}
.y263{bottom:997.413333pt;}
.y126{bottom:1004.933333pt;}
.yd6{bottom:1005.893333pt;}
.y6{bottom:1009.093333pt;}
.y3b{bottom:1012.933333pt;}
.y262{bottom:1013.413333pt;}
.y1{bottom:1062.880000pt;}
.h15{height:16.800000pt;}
.h14{height:16.960000pt;}
.h23{height:20.000000pt;}
.h22{height:20.032000pt;}
.h16{height:20.800000pt;}
.h21{height:20.960000pt;}
.h24{height:20.992000pt;}
.h1a{height:21.120000pt;}
.h25{height:21.152000pt;}
.h1c{height:21.280000pt;}
.h1d{height:21.440000pt;}
.h1f{height:21.792000pt;}
.h1b{height:21.920000pt;}
.h13{height:22.080000pt;}
.h1e{height:22.240000pt;}
.h17{height:22.272000pt;}
.h18{height:22.560000pt;}
.h9{height:22.578125pt;}
.h4b{height:23.040000pt;}
.h19{height:23.200000pt;}
.h2b{height:25.120000pt;}
.h2d{height:25.152000pt;}
.h2c{height:25.280000pt;}
.h3e{height:25.760000pt;}
.ha{height:25.918750pt;}
.h45{height:27.360000pt;}
.h46{height:27.392000pt;}
.h6{height:29.940625pt;}
.h10{height:30.254687pt;}
.h35{height:30.720000pt;}
.h32{height:32.320000pt;}
.h12{height:32.992000pt;}
.h33{height:33.760000pt;}
.h27{height:34.400000pt;}
.h3{height:37.090625pt;}
.h2{height:37.479688pt;}
.h2e{height:37.952000pt;}
.h37{height:38.672812pt;}
.h50{height:39.325000pt;}
.h4c{height:40.640000pt;}
.hc{height:41.112500pt;}
.hf{height:41.543750pt;}
.h3d{height:42.400000pt;}
.he{height:42.866250pt;}
.h20{height:43.680000pt;}
.h53{height:43.782500pt;}
.h7{height:44.687500pt;}
.h8{height:45.156250pt;}
.h51{height:46.420000pt;}
.hb{height:46.593750pt;}
.hd{height:48.530000pt;}
.h31{height:49.920000pt;}
.h2a{height:51.040000pt;}
.h5{height:51.374687pt;}
.h26{height:51.840000pt;}
.h4{height:52.832812pt;}
.h3c{height:52.834688pt;}
.h44{height:55.392000pt;}
.h11{height:55.872000pt;}
.h42{height:61.152000pt;}
.h4a{height:63.072000pt;}
.h43{height:64.800000pt;}
.h48{height:67.360000pt;}
.h4e{height:67.520000pt;}
.h4f{height:67.552000pt;}
.h3f{height:72.000000pt;}
.h3a{height:72.800000pt;}
.h41{height:73.312000pt;}
.h4d{height:83.520000pt;}
.h40{height:83.680000pt;}
.h49{height:84.800000pt;}
.h39{height:85.120000pt;}
.h36{height:88.000000pt;}
.h47{height:90.432000pt;}
.h3b{height:90.912000pt;}
.h38{height:100.352000pt;}
.h2f{height:106.880000pt;}
.h30{height:112.832000pt;}
.h29{height:135.866667pt;}
.h28{height:170.906667pt;}
.h52{height:281.146667pt;}
.h34{height:521.853333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w23{width:35.200000pt;}
.wd{width:55.840000pt;}
.w35{width:62.080000pt;}
.w3{width:65.280000pt;}
.w14{width:70.400000pt;}
.wb{width:70.432000pt;}
.w2c{width:70.560000pt;}
.w24{width:70.752000pt;}
.w8{width:74.720000pt;}
.w13{width:74.912000pt;}
.w12{width:75.392000pt;}
.wc{width:77.280000pt;}
.we{width:84.320000pt;}
.w2f{width:91.680000pt;}
.w30{width:91.712000pt;}
.w3d{width:92.992000pt;}
.w3b{width:93.120000pt;}
.w2d{width:94.272000pt;}
.w18{width:96.000000pt;}
.w26{width:104.000000pt;}
.w27{width:104.192000pt;}
.w1a{width:108.640000pt;}
.w3c{width:109.792000pt;}
.w33{width:112.480000pt;}
.w2b{width:119.872000pt;}
.w20{width:120.672000pt;}
.w1d{width:120.800000pt;}
.w1e{width:120.832000pt;}
.w21{width:121.152000pt;}
.w19{width:131.872000pt;}
.w29{width:134.426667pt;}
.w2a{width:135.520000pt;}
.w7{width:137.786667pt;}
.w32{width:140.026667pt;}
.w15{width:142.586667pt;}
.wa{width:148.346667pt;}
.w17{width:154.746667pt;}
.w1b{width:155.680000pt;}
.w6{width:159.866667pt;}
.w11{width:160.026667pt;}
.w34{width:162.106667pt;}
.w25{width:195.546667pt;}
.w3a{width:203.426667pt;}
.w10{width:216.346667pt;}
.w36{width:224.186667pt;}
.w38{width:231.546667pt;}
.w4{width:235.546667pt;}
.wf{width:236.066667pt;}
.w1c{width:249.186667pt;}
.w39{width:297.186667pt;}
.w5{width:298.306667pt;}
.w37{width:313.026667pt;}
.w22{width:345.826667pt;}
.w1f{width:363.906667pt;}
.w9{width:376.066667pt;}
.w16{width:384.066667pt;}
.w28{width:391.106667pt;}
.w31{width:415.906667pt;}
.w2e{width:432.066667pt;}
.w3e{width:609.213333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:6.880000pt;}
.x58{left:8.826667pt;}
.x29{left:10.720000pt;}
.x10{left:12.000000pt;}
.x31{left:13.160000pt;}
.x21{left:14.880000pt;}
.x1e{left:16.800000pt;}
.x2f{left:18.586667pt;}
.x38{left:19.520000pt;}
.x5a{left:22.106667pt;}
.x1b{left:25.760000pt;}
.x24{left:27.680000pt;}
.x4e{left:28.640000pt;}
.x17{left:30.080000pt;}
.x26{left:31.360000pt;}
.x64{left:33.760000pt;}
.x25{left:34.880000pt;}
.x3b{left:36.040000pt;}
.x23{left:37.274667pt;}
.x48{left:38.554667pt;}
.x3d{left:39.720000pt;}
.x4d{left:41.480000pt;}
.x16{left:42.440000pt;}
.x5d{left:43.840000pt;}
.x63{left:45.120000pt;}
.x3a{left:47.520000pt;}
.x62{left:48.800000pt;}
.x3c{left:51.200000pt;}
.x49{left:52.200000pt;}
.x11{left:53.920000pt;}
.x14{left:56.186667pt;}
.x6e{left:58.440000pt;}
.x47{left:60.314667pt;}
.x1d{left:61.480000pt;}
.x34{left:63.040000pt;}
.x1a{left:65.160000pt;}
.x2d{left:66.120000pt;}
.x56{left:67.840000pt;}
.x42{left:69.600000pt;}
.x1c{left:72.506667pt;}
.x2b{left:73.800000pt;}
.x19{left:76.186667pt;}
.x6f{left:78.600000pt;}
.x78{left:87.866667pt;}
.x13{left:89.946667pt;}
.x7b{left:92.032000pt;}
.x44{left:94.426667pt;}
.x1{left:96.031988pt;}
.x33{left:97.792000pt;}
.x27{left:99.712000pt;}
.x71{left:103.880000pt;}
.x51{left:105.786667pt;}
.x76{left:107.560000pt;}
.x4{left:110.911988pt;}
.xd{left:114.911988pt;}
.x6{left:116.991988pt;}
.x7{left:119.231988pt;}
.x73{left:123.546667pt;}
.x40{left:139.546667pt;}
.xc{left:144.026655pt;}
.x36{left:146.586667pt;}
.x5f{left:151.226667pt;}
.x28{left:156.186667pt;}
.x1f{left:157.960000pt;}
.x70{left:159.386667pt;}
.xf{left:162.266655pt;}
.x59{left:163.720000pt;}
.x75{left:167.866667pt;}
.xe{left:168.826655pt;}
.x9{left:171.546655pt;}
.x52{left:172.826667pt;}
.x5b{left:176.360000pt;}
.x4f{left:180.026655pt;}
.x5c{left:182.600000pt;}
.x57{left:183.720000pt;}
.x6a{left:188.986667pt;}
.x46{left:201.666667pt;}
.x30{left:209.000000pt;}
.x74{left:211.426667pt;}
.x45{left:218.626667pt;}
.xb{left:236.666655pt;}
.x2a{left:241.146667pt;}
.x41{left:248.866667pt;}
.x67{left:259.066667pt;}
.x68{left:260.506667pt;}
.x65{left:264.066667pt;}
.x66{left:264.986667pt;}
.x69{left:267.866667pt;}
.x6b{left:281.346667pt;}
.x3{left:286.306655pt;}
.xa{left:301.346655pt;}
.x5e{left:306.146667pt;}
.x35{left:312.066667pt;}
.x32{left:316.866667pt;}
.x8{left:327.106655pt;}
.x4a{left:339.586667pt;}
.x50{left:356.866667pt;}
.x5{left:372.386655pt;}
.x53{left:378.306667pt;}
.x72{left:384.226667pt;}
.x12{left:398.946667pt;}
.x77{left:400.066667pt;}
.x2e{left:401.826667pt;}
.x43{left:405.186667pt;}
.x54{left:414.146667pt;}
.x6c{left:422.013333pt;}
.x60{left:441.213333pt;}
.x4b{left:460.893333pt;}
.x37{left:467.613333pt;}
.x2c{left:477.853333pt;}
.x55{left:485.693333pt;}
.x7a{left:510.493333pt;}
.x6d{left:535.133333pt;}
.x20{left:548.893333pt;}
.x15{left:559.453333pt;}
.x39{left:564.253333pt;}
.x61{left:577.373333pt;}
.x4c{left:582.333333pt;}
.x79{left:604.133333pt;}
.x22{left:619.973333pt;}
.x3e{left:639.173322pt;}
.x3f{left:676.933322pt;}
.x2{left:697.893322pt;}
}




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