
    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_267397c2f524c06c41709e71.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2626a4650116948c5b0ccfb0.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_8d479e95b4c2584e50cd44cd.woff')format("woff");}.ff3{font-family:ff3;line-height:0.747559;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_14c3c41b4ef6b4c86b180570.woff')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_c0f4e36b10fa3d9e0e69ad48.woff')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7e727f3e021a651daea75967.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_859c72d942ed727e728fa5e8.woff')format("woff");}.ff9{font-family:ff9;line-height:0.740234;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_f7b639b4655ead54c84b2259.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffb{font-family:ffb;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;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls17{letter-spacing:-0.978000px;}
.ls8{letter-spacing:-0.457800px;}
.lsd{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.305400px;}
.ls12{letter-spacing:-0.259800px;}
.lsb{letter-spacing:-0.208200px;}
.ls6{letter-spacing:-0.206400px;}
.lsc{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.018720px;}
.ls9{letter-spacing:0.037440px;}
.ls14{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.106800px;}
.ls1a{letter-spacing:0.153600px;}
.ls10{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.235920px;}
.ls19{letter-spacing:0.259800px;}
.ls15{letter-spacing:0.259920px;}
.ls1b{letter-spacing:0.298800px;}
.ls18{letter-spacing:0.306600px;}
.ls2{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.511800px;}
.lsf{letter-spacing:7.866720px;}
.ls13{letter-spacing:11.466720px;}
.ls11{letter-spacing:15.066720px;}
.ls4{letter-spacing:18.180000px;}
.ls1{letter-spacing:31.626720px;}
.ls1d{letter-spacing:41.706720px;}
.ls1e{letter-spacing:41.850720px;}
.ls1c{letter-spacing:44.586720px;}
.lse{letter-spacing:113.364000px;}
.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:-16.560000px;}
.ws1{word-spacing:-16.254600px;}
.ws2{word-spacing:-16.102200px;}
.ws6{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.246600px;}
.wsf{word-spacing:-15.093600px;}
.ws9{word-spacing:-15.046800px;}
.wsc{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.ws0{word-spacing:-14.733600px;}
.wsb{word-spacing:-14.680200px;}
.ws8{word-spacing:-14.580000px;}
.ws4{word-spacing:-10.440000px;}
.wse{word-spacing:-9.720000px;}
.wsa{word-spacing:0.000000px;}
._1{margin-left:-2538.258480px;}
._5{margin-left:-1445.599800px;}
._3{margin-left:-1444.083600px;}
._4{margin-left:-938.720160px;}
._6{margin-left:-579.228480px;}
._18{margin-left:-15.312480px;}
._19{margin-left:-11.546640px;}
._4d{margin-left:-8.040000px;}
._4b{margin-left:-5.973360px;}
._4c{margin-left:-4.965360px;}
._1a{margin-left:-3.773280px;}
._13{margin-left:-2.683680px;}
._2{margin-left:-1.453680px;}
._0{width:1.244880px;}
._a{width:2.360880px;}
._b{width:3.444720px;}
._7{width:4.979520px;}
._8{width:6.736080px;}
._d{width:8.312160px;}
._c{width:9.501840px;}
._14{width:10.786320px;}
._12{width:12.191040px;}
._11{width:13.326480px;}
._f{width:16.643520px;}
._e{width:17.808480px;}
._15{width:19.007760px;}
._2b{width:20.736720px;}
._36{width:21.872160px;}
._48{width:22.897440px;}
._1f{width:24.332400px;}
._35{width:25.517520px;}
._31{width:27.320400px;}
._16{width:29.412000px;}
._17{width:30.437280px;}
._34{width:32.031360px;}
._27{width:33.585120px;}
._28{width:35.736480px;}
._49{width:36.886800px;}
._9{width:38.004960px;}
._40{width:41.055120px;}
._1e{width:43.814160px;}
._24{width:45.955440px;}
._23{width:47.150640px;}
._20{width:49.660560px;}
._1b{width:51.811920px;}
._32{width:53.903520px;}
._46{width:55.038960px;}
._3c{width:56.891520px;}
._4e{width:58.266000px;}
._30{width:62.867520px;}
._29{width:66.931200px;}
._44{width:69.202080px;}
._38{width:73.325520px;}
._1d{width:76.134240px;}
._1c{width:77.389200px;}
._33{width:80.556480px;}
._3a{width:83.126160px;}
._2f{width:84.142080px;}
._37{width:86.592240px;}
._3f{width:90.237600px;}
._43{width:92.090160px;}
._45{width:95.197680px;}
._3b{width:99.739440px;}
._47{width:105.834960px;}
._22{width:110.795040px;}
._10{width:113.364000px;}
._2e{width:115.107840px;}
._41{width:122.029920px;}
._42{width:125.735040px;}
._4a{width:127.587600px;}
._2d{width:134.041680px;}
._26{width:135.535680px;}
._2a{width:137.149200px;}
._3d{width:143.184960px;}
._39{width:145.814400px;}
._21{width:147.248640px;}
._25{width:169.539120px;}
._2c{width:194.040720px;}
._3e{width:260.244000px;}
.fc3{color:rgb(232,234,237);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y9e{bottom:5.760000px;}
.ya3{bottom:5.940000px;}
.y174{bottom:5.985000px;}
.y1d7{bottom:6.840000px;}
.y11b{bottom:7.020000px;}
.y102{bottom:7.200000px;}
.y1b9{bottom:7.230000px;}
.y163{bottom:7.380000px;}
.ye1{bottom:7.560000px;}
.yde{bottom:7.740000px;}
.y92{bottom:8.280000px;}
.y153{bottom:8.460000px;}
.yda{bottom:8.820000px;}
.yed{bottom:8.850000px;}
.y279{bottom:10.800000px;}
.y133{bottom:11.160000px;}
.y158{bottom:12.600000px;}
.y1ce{bottom:13.005000px;}
.y148{bottom:13.320000px;}
.y130{bottom:15.660000px;}
.y106{bottom:15.840000px;}
.y12f{bottom:17.280000px;}
.y104{bottom:17.460000px;}
.y1d3{bottom:18.000000px;}
.y151{bottom:18.360000px;}
.y126{bottom:22.140000px;}
.y1d9{bottom:22.500000px;}
.y1e4{bottom:23.220000px;}
.y120{bottom:25.560000px;}
.y144{bottom:25.590000px;}
.y184{bottom:25.605000px;}
.y105{bottom:25.740000px;}
.y10b{bottom:25.770000px;}
.y173{bottom:25.785000px;}
.y1d5{bottom:26.640000px;}
.y228{bottom:27.000000px;}
.y1db{bottom:27.180000px;}
.y100{bottom:27.360000px;}
.y125{bottom:27.900000px;}
.y152{bottom:28.260000px;}
.y1e0{bottom:28.440000px;}
.y140{bottom:30.240000px;}
.y278{bottom:30.600000px;}
.y156{bottom:32.400000px;}
.y1cc{bottom:32.805000px;}
.y1a8{bottom:33.120000px;}
.y275{bottom:34.770000px;}
.y122{bottom:35.460000px;}
.y10d{bottom:35.640000px;}
.y13e{bottom:36.000000px;}
.y18d{bottom:37.080000px;}
.y103{bottom:37.260000px;}
.y1d2{bottom:38.010000px;}
.y1de{bottom:38.340000px;}
.y1e2{bottom:43.020000px;}
.y146{bottom:45.360000px;}
.y15a{bottom:45.390000px;}
.y15f{bottom:45.405000px;}
.y10f{bottom:45.540000px;}
.y108{bottom:45.570000px;}
.y172{bottom:45.585000px;}
.y1d6{bottom:46.620000px;}
.y1dc{bottom:46.980000px;}
.y162{bottom:47.160000px;}
.y124{bottom:47.700000px;}
.y1df{bottom:48.285000px;}
.y1f0{bottom:48.420000px;}
.y277{bottom:50.430000px;}
.y157{bottom:52.200000px;}
.y1cd{bottom:52.605000px;}
.y11d{bottom:55.440000px;}
.y142{bottom:55.470000px;}
.y18c{bottom:56.880000px;}
.y6{bottom:60.120000px;}
.y1e3{bottom:62.820000px;}
.y1aa{bottom:65.160000px;}
.y18a{bottom:65.190000px;}
.y183{bottom:65.205000px;}
.y10e{bottom:65.340000px;}
.y10a{bottom:65.370000px;}
.y16e{bottom:65.385000px;}
.y276{bottom:70.230000px;}
.y1ac{bottom:75.285000px;}
.y11f{bottom:85.140000px;}
.y109{bottom:85.170000px;}
.y171{bottom:85.185000px;}
.yb8{bottom:87.120000px;}
.y1c7{bottom:87.840000px;}
.y33{bottom:88.920000px;}
.ye5{bottom:92.190000px;}
.y273{bottom:94.140000px;}
.ye3{bottom:94.860000px;}
.y1ba{bottom:95.040000px;}
.y6a{bottom:95.940000px;}
.y121{bottom:96.480000px;}
.y1a6{bottom:97.740000px;}
.y185{bottom:100.260000px;}
.y1e8{bottom:101.160000px;}
.ye7{bottom:102.090000px;}
.y16a{bottom:102.780000px;}
.y215{bottom:103.680000px;}
.y11e{bottom:104.940000px;}
.y143{bottom:104.970000px;}
.y182{bottom:104.985000px;}
.y128{bottom:105.120000px;}
.y170{bottom:105.165000px;}
.yb7{bottom:106.920000px;}
.y1c6{bottom:107.640000px;}
.yd8{bottom:108.765000px;}
.y32{bottom:108.900000px;}
.ye4{bottom:111.990000px;}
.y272{bottom:113.940000px;}
.y17b{bottom:114.885000px;}
.y265{bottom:115.380000px;}
.y69{bottom:115.740000px;}
.y1e7{bottom:115.920000px;}
.y214{bottom:117.720000px;}
.y274{bottom:118.800000px;}
.yee{bottom:121.500000px;}
.y169{bottom:122.580000px;}
.y1be{bottom:124.740000px;}
.y189{bottom:124.770000px;}
.y181{bottom:124.785000px;}
.y179{bottom:124.950000px;}
.y16f{bottom:124.965000px;}
.y23d{bottom:126.180000px;}
.yb6{bottom:126.900000px;}
.y1c5{bottom:127.440000px;}
.y31{bottom:128.700000px;}
.y271{bottom:133.740000px;}
.y186{bottom:134.670000px;}
.y264{bottom:135.180000px;}
.y68{bottom:135.540000px;}
.y213{bottom:137.700000px;}
.y141{bottom:138.600000px;}
.y1e6{bottom:139.140000px;}
.y168{bottom:142.380000px;}
.y1bd{bottom:144.540000px;}
.y188{bottom:144.570000px;}
.y180{bottom:144.585000px;}
.y178{bottom:144.750000px;}
.y23c{bottom:146.160000px;}
.yb5{bottom:146.700000px;}
.y1c4{bottom:147.420000px;}
.yec{bottom:148.140000px;}
.y30{bottom:148.500000px;}
.y270{bottom:153.570000px;}
.y263{bottom:155.010000px;}
.y67{bottom:155.370000px;}
.y212{bottom:158.970000px;}
.y167{bottom:162.390000px;}
.y1bc{bottom:164.340000px;}
.y187{bottom:164.370000px;}
.y17f{bottom:164.385000px;}
.y177{bottom:164.550000px;}
.y23b{bottom:165.990000px;}
.yb4{bottom:166.530000px;}
.y1c3{bottom:167.250000px;}
.y2f{bottom:168.330000px;}
.y26f{bottom:173.370000px;}
.yeb{bottom:174.810000px;}
.y90{bottom:175.350000px;}
.y11c{bottom:176.610000px;}
.y211{bottom:180.390000px;}
.y166{bottom:182.190000px;}
.y1bb{bottom:184.320000px;}
.y66{bottom:184.350000px;}
.y17e{bottom:184.365000px;}
.y23a{bottom:185.790000px;}
.yb3{bottom:186.330000px;}
.y1c2{bottom:187.050000px;}
.y2e{bottom:188.130000px;}
.y26e{bottom:193.350000px;}
.y262{bottom:194.790000px;}
.y8f{bottom:195.150000px;}
.y1e5{bottom:199.470000px;}
.yea{bottom:201.450000px;}
.y165{bottom:201.990000px;}
.y65{bottom:204.150000px;}
.y17d{bottom:204.165000px;}
.y239{bottom:205.590000px;}
.yb2{bottom:206.130000px;}
.y1c1{bottom:206.850000px;}
.y2d{bottom:208.110000px;}
.y26d{bottom:213.150000px;}
.y261{bottom:214.590000px;}
.y8e{bottom:214.950000px;}
.y164{bottom:216.750000px;}
.yb1{bottom:221.070000px;}
.y64{bottom:223.950000px;}
.y17c{bottom:223.965000px;}
.y238{bottom:225.390000px;}
.y210{bottom:225.750000px;}
.y1c0{bottom:226.650000px;}
.y2c{bottom:227.910000px;}
.ye9{bottom:228.090000px;}
.y26c{bottom:232.950000px;}
.y260{bottom:234.390000px;}
.y8d{bottom:234.750000px;}
.y161{bottom:239.970000px;}
.yb0{bottom:241.590000px;}
.y63{bottom:243.750000px;}
.y237{bottom:245.370000px;}
.y20f{bottom:245.550000px;}
.y2b{bottom:247.710000px;}
.y26b{bottom:252.750000px;}
.y25f{bottom:254.190000px;}
.y8c{bottom:254.550000px;}
.ye8{bottom:254.730000px;}
.y13d{bottom:258.330000px;}
.y1e1{bottom:259.770000px;}
.yaf{bottom:262.110000px;}
.y62{bottom:263.550000px;}
.y236{bottom:265.170000px;}
.y20e{bottom:265.530000px;}
.y1bf{bottom:265.890000px;}
.y2a{bottom:267.510000px;}
.y26a{bottom:272.550000px;}
.y25e{bottom:273.990000px;}
.y8b{bottom:274.530000px;}
.y1a4{bottom:277.050000px;}
.ye6{bottom:281.370000px;}
.yae{bottom:282.810000px;}
.y61{bottom:283.530000px;}
.y235{bottom:284.970000px;}
.y20d{bottom:285.330000px;}
.y29{bottom:287.310000px;}
.y269{bottom:292.530000px;}
.y25d{bottom:293.970000px;}
.y8a{bottom:294.330000px;}
.y119{bottom:296.310000px;}
.y13f{bottom:298.830000px;}
.y60{bottom:303.330000px;}
.y160{bottom:303.510000px;}
.y234{bottom:304.770000px;}
.y20c{bottom:305.130000px;}
.y28{bottom:307.290000px;}
.yd7{bottom:307.830000px;}
.yad{bottom:309.090000px;}
.y268{bottom:312.330000px;}
.y25c{bottom:313.770000px;}
.y89{bottom:314.130000px;}
.y1a5{bottom:317.370000px;}
.y5f{bottom:323.130000px;}
.y233{bottom:324.570000px;}
.y20b{bottom:324.930000px;}
.y27{bottom:327.090000px;}
.yac{bottom:329.070000px;}
.y267{bottom:332.130000px;}
.ye2{bottom:333.390000px;}
.y25b{bottom:333.570000px;}
.y88{bottom:333.930000px;}
.y11a{bottom:336.810000px;}
.y5e{bottom:342.930000px;}
.y232{bottom:344.550000px;}
.y20a{bottom:344.730000px;}
.y13c{bottom:345.090000px;}
.y1a3{bottom:346.530000px;}
.y26{bottom:346.890000px;}
.yab{bottom:348.870000px;}
.y266{bottom:351.930000px;}
.y25a{bottom:353.370000px;}
.y87{bottom:353.730000px;}
.y1dd{bottom:354.990000px;}
.ye0{bottom:357.870000px;}
.y15e{bottom:363.810000px;}
.y231{bottom:364.350000px;}
.y209{bottom:364.710000px;}
.y13b{bottom:364.890000px;}
.y118{bottom:365.790000px;}
.y1a2{bottom:366.330000px;}
.y25{bottom:366.690000px;}
.yaa{bottom:368.670000px;}
.y5d{bottom:371.730000px;}
.y259{bottom:373.170000px;}
.y86{bottom:373.710000px;}
.y17a{bottom:378.750000px;}
.ydf{bottom:382.170000px;}
.y230{bottom:384.150000px;}
.y208{bottom:384.510000px;}
.y13a{bottom:384.690000px;}
.y117{bottom:385.590000px;}
.y1a1{bottom:386.130000px;}
.y24{bottom:386.490000px;}
.ya9{bottom:388.470000px;}
.y5c{bottom:391.710000px;}
.y258{bottom:393.150000px;}
.y85{bottom:393.510000px;}
.y22f{bottom:403.995000px;}
.y207{bottom:404.355000px;}
.y139{bottom:404.535000px;}
.y116{bottom:405.615000px;}
.y1a0{bottom:405.975000px;}
.y23{bottom:406.515000px;}
.ya8{bottom:408.315000px;}
.y5b{bottom:411.555000px;}
.y257{bottom:412.995000px;}
.y84{bottom:413.355000px;}
.y22e{bottom:423.795000px;}
.y15d{bottom:423.975000px;}
.y206{bottom:424.155000px;}
.y138{bottom:424.335000px;}
.y115{bottom:425.415000px;}
.y19f{bottom:425.955000px;}
.y22{bottom:426.315000px;}
.ya7{bottom:428.295000px;}
.ydd{bottom:430.995000px;}
.y5a{bottom:431.355000px;}
.y256{bottom:432.795000px;}
.y83{bottom:433.155000px;}
.y1da{bottom:440.715000px;}
.y22d{bottom:443.775000px;}
.y205{bottom:443.955000px;}
.y137{bottom:444.315000px;}
.y114{bottom:445.215000px;}
.y19e{bottom:445.755000px;}
.y21{bottom:446.115000px;}
.ya6{bottom:448.095000px;}
.y59{bottom:451.155000px;}
.y255{bottom:452.595000px;}
.y82{bottom:452.955000px;}
.ydc{bottom:455.295000px;}
.y22c{bottom:463.575000px;}
.y204{bottom:463.935000px;}
.y136{bottom:464.115000px;}
.y15c{bottom:464.475000px;}
.y113{bottom:465.015000px;}
.y19d{bottom:465.555000px;}
.y20{bottom:465.915000px;}
.ya5{bottom:467.895000px;}
.y58{bottom:470.955000px;}
.y254{bottom:472.395000px;}
.y81{bottom:472.935000px;}
.y203{bottom:477.975000px;}
.ydb{bottom:480.855000px;}
.ya4{bottom:482.655000px;}
.y22b{bottom:483.375000px;}
.y135{bottom:483.915000px;}
.y112{bottom:484.815000px;}
.y19c{bottom:485.355000px;}
.y1f{bottom:485.715000px;}
.y57{bottom:490.935000px;}
.y253{bottom:492.375000px;}
.y80{bottom:492.735000px;}
.y201{bottom:499.215000px;}
.ya2{bottom:503.175000px;}
.y134{bottom:503.715000px;}
.y1d8{bottom:504.075000px;}
.y111{bottom:504.795000px;}
.y19b{bottom:505.155000px;}
.y1e{bottom:505.695000px;}
.yd9{bottom:507.495000px;}
.y56{bottom:510.735000px;}
.y252{bottom:512.175000px;}
.y7f{bottom:512.535000px;}
.y22a{bottom:517.215000px;}
.y132{bottom:518.475000px;}
.y110{bottom:519.555000px;}
.y19a{bottom:520.095000px;}
.y202{bottom:520.635000px;}
.ya1{bottom:523.875000px;}
.y1d{bottom:525.495000px;}
.y55{bottom:530.535000px;}
.y251{bottom:531.975000px;}
.y7e{bottom:532.335000px;}
.yd6{bottom:534.135000px;}
.y227{bottom:538.635000px;}
.y199{bottom:540.615000px;}
.y1ff{bottom:541.875000px;}
.y10c{bottom:543.855000px;}
.ya0{bottom:544.395000px;}
.y15b{bottom:544.575000px;}
.y131{bottom:549.615000px;}
.y54{bottom:550.335000px;}
.y250{bottom:551.775000px;}
.y7d{bottom:552.135000px;}
.y1d4{bottom:558.255000px;}
.y229{bottom:559.875000px;}
.yd5{bottom:560.415000px;}
.y200{bottom:561.675000px;}
.y9f{bottom:565.095000px;}
.y1c{bottom:567.435000px;}
.y53{bottom:570.135000px;}
.y24f{bottom:571.575000px;}
.y7c{bottom:572.115000px;}
.yd4{bottom:580.215000px;}
.y225{bottom:581.295000px;}
.y9d{bottom:585.615000px;}
.y52{bottom:590.115000px;}
.y24e{bottom:591.555000px;}
.y7b{bottom:591.915000px;}
.y1b{bottom:596.235000px;}
.yd3{bottom:600.195000px;}
.y226{bottom:601.095000px;}
.y1b7{bottom:604.695000px;}
.y159{bottom:604.875000px;}
.y1fe{bottom:607.215000px;}
.y51{bottom:609.915000px;}
.y24d{bottom:611.355000px;}
.y7a{bottom:611.715000px;}
.y9c{bottom:611.895000px;}
.y1a{bottom:616.035000px;}
.y176{bottom:617.475000px;}
.yd2{bottom:619.995000px;}
.y1d1{bottom:620.715000px;}
.y107{bottom:623.955000px;}
.y1fd{bottom:627.015000px;}
.y50{bottom:629.715000px;}
.y24c{bottom:631.155000px;}
.y79{bottom:631.515000px;}
.y9b{bottom:631.875000px;}
.y19{bottom:635.835000px;}
.yd1{bottom:639.795000px;}
.y198{bottom:640.515000px;}
.y224{bottom:640.695000px;}
.y1b8{bottom:645.015000px;}
.y1fc{bottom:646.815000px;}
.y4f{bottom:649.545000px;}
.y24b{bottom:650.985000px;}
.y78{bottom:651.345000px;}
.y9a{bottom:651.705000px;}
.y18{bottom:655.665000px;}
.yd0{bottom:659.625000px;}
.y155{bottom:665.025000px;}
.y223{bottom:666.465000px;}
.y1fb{bottom:666.825000px;}
.y4e{bottom:669.345000px;}
.y24a{bottom:670.785000px;}
.y99{bottom:671.505000px;}
.y1b6{bottom:674.205000px;}
.y17{bottom:675.645000px;}
.ycf{bottom:679.425000px;}
.y77{bottom:680.325000px;}
.y1d0{bottom:685.545000px;}
.y222{bottom:686.265000px;}
.y1fa{bottom:686.625000px;}
.y4d{bottom:689.325000px;}
.y249{bottom:690.765000px;}
.y98{bottom:691.305000px;}
.y1b5{bottom:694.005000px;}
.y16{bottom:695.445000px;}
.yce{bottom:699.405000px;}
.y76{bottom:700.125000px;}
.y221{bottom:706.065000px;}
.y1f9{bottom:706.425000px;}
.y4c{bottom:709.125000px;}
.y248{bottom:710.565000px;}
.y97{bottom:711.105000px;}
.y1b4{bottom:713.805000px;}
.y15{bottom:715.245000px;}
.ycd{bottom:719.205000px;}
.y75{bottom:719.925000px;}
.y1f8{bottom:720.465000px;}
.yff{bottom:723.885000px;}
.y220{bottom:725.865000px;}
.y4b{bottom:728.925000px;}
.y247{bottom:730.365000px;}
.y96{bottom:731.085000px;}
.y1b3{bottom:733.605000px;}
.ycc{bottom:733.965000px;}
.y14{bottom:735.045000px;}
.y154{bottom:738.645000px;}
.y74{bottom:739.725000px;}
.y1f7{bottom:740.265000px;}
.y197{bottom:740.445000px;}
.y21f{bottom:745.845000px;}
.y4a{bottom:748.725000px;}
.y12d{bottom:749.625000px;}
.y246{bottom:750.165000px;}
.y95{bottom:750.885000px;}
.y1b2{bottom:753.405000px;}
.ycb{bottom:754.485000px;}
.y13{bottom:754.845000px;}
.y73{bottom:759.525000px;}
.y1f6{bottom:760.065000px;}
.y101{bottom:764.385000px;}
.y94{bottom:765.645000px;}
.y49{bottom:768.525000px;}
.y245{bottom:769.965000px;}
.y1b1{bottom:773.385000px;}
.y12{bottom:774.825000px;}
.yca{bottom:775.185000px;}
.y72{bottom:779.505000px;}
.y1f5{bottom:780.045000px;}
.y21e{bottom:785.445000px;}
.y48{bottom:788.505000px;}
.y12e{bottom:789.945000px;}
.y93{bottom:791.205000px;}
.y1b0{bottom:793.185000px;}
.yfe{bottom:793.365000px;}
.y11{bottom:794.625000px;}
.yc9{bottom:795.705000px;}
.y175{bottom:796.785000px;}
.y71{bottom:799.305000px;}
.y1f4{bottom:801.285000px;}
.y21d{bottom:805.245000px;}
.y1cf{bottom:805.425000px;}
.y47{bottom:808.305000px;}
.y244{bottom:809.745000px;}
.y1af{bottom:812.985000px;}
.yfd{bottom:813.165000px;}
.y10{bottom:814.425000px;}
.yc8{bottom:816.225000px;}
.y91{bottom:816.585000px;}
.y150{bottom:818.745000px;}
.y70{bottom:819.105000px;}
.y1f3{bottom:822.705000px;}
.y21c{bottom:825.045000px;}
.y46{bottom:828.105000px;}
.y243{bottom:829.545000px;}
.y1ae{bottom:832.785000px;}
.yfc{bottom:833.145000px;}
.yf{bottom:834.225000px;}
.yc7{bottom:836.925000px;}
.y6f{bottom:838.905000px;}
.y195{bottom:840.345000px;}
.y1ef{bottom:843.945000px;}
.y21b{bottom:845.025000px;}
.y1ad{bottom:847.545000px;}
.y45{bottom:847.905000px;}
.y242{bottom:849.345000px;}
.yfb{bottom:852.945000px;}
.ye{bottom:854.025000px;}
.y6e{bottom:858.705000px;}
.y21a{bottom:859.065000px;}
.yc6{bottom:863.205000px;}
.y1f2{bottom:865.365000px;}
.y44{bottom:867.705000px;}
.y241{bottom:869.145000px;}
.y14f{bottom:870.405000px;}
.y1ab{bottom:872.025000px;}
.yfa{bottom:872.745000px;}
.yd{bottom:873.825000px;}
.y12c{bottom:878.505000px;}
.y6d{bottom:878.685000px;}
.y219{bottom:878.865000px;}
.y196{bottom:880.845000px;}
.yc5{bottom:883.185000px;}
.y1cb{bottom:885.525000px;}
.y1f1{bottom:886.605000px;}
.y43{bottom:887.685000px;}
.y240{bottom:889.125000px;}
.y14e{bottom:890.205000px;}
.yf9{bottom:892.545000px;}
.yc{bottom:895.965000px;}
.y16d{bottom:896.685000px;}
.y12b{bottom:898.350000px;}
.y6c{bottom:898.530000px;}
.y218{bottom:900.150000px;}
.yc4{bottom:903.030000px;}
.y42{bottom:907.530000px;}
.y1ed{bottom:908.070000px;}
.y23f{bottom:908.970000px;}
.y194{bottom:909.870000px;}
.y14d{bottom:910.050000px;}
.yf8{bottom:912.390000px;}
.y6b{bottom:918.330000px;}
.yb{bottom:921.210000px;}
.y217{bottom:921.570000px;}
.yc3{bottom:922.830000px;}
.y23e{bottom:925.530000px;}
.y41{bottom:927.330000px;}
.y1ee{bottom:929.310000px;}
.y14c{bottom:929.850000px;}
.yf7{bottom:932.370000px;}
.ya{bottom:936.330000px;}
.y12a{bottom:938.130000px;}
.yc2{bottom:942.630000px;}
.y40{bottom:947.130000px;}
.y14b{bottom:949.650000px;}
.y1ec{bottom:950.730000px;}
.yf6{bottom:952.170000px;}
.y129{bottom:952.890000px;}
.y9{bottom:957.570000px;}
.y1ca{bottom:960.090000px;}
.y216{bottom:961.170000px;}
.yc1{bottom:962.430000px;}
.y3f{bottom:966.930000px;}
.y193{bottom:969.450000px;}
.y14a{bottom:969.630000px;}
.yf5{bottom:971.970000px;}
.y127{bottom:977.190000px;}
.y8{bottom:980.970000px;}
.yc0{bottom:982.410000px;}
.y3e{bottom:986.910000px;}
.y192{bottom:989.250000px;}
.y149{bottom:989.430000px;}
.yf4{bottom:991.770000px;}
.ybf{bottom:1002.210000px;}
.y147{bottom:1004.190000px;}
.y3d{bottom:1006.710000px;}
.y191{bottom:1009.050000px;}
.yf3{bottom:1011.570000px;}
.y1eb{bottom:1011.750000px;}
.y7{bottom:1012.830000px;}
.ybe{bottom:1022.010000px;}
.y3c{bottom:1026.510000px;}
.y190{bottom:1029.030000px;}
.y1a9{bottom:1031.550000px;}
.y1c9{bottom:1033.710000px;}
.y16b{bottom:1036.410000px;}
.ybd{bottom:1036.770000px;}
.y1ea{bottom:1037.310000px;}
.y145{bottom:1039.830000px;}
.y3b{bottom:1046.310000px;}
.y18f{bottom:1048.830000px;}
.y5{bottom:1051.170000px;}
.yf2{bottom:1053.150000px;}
.y1e9{bottom:1057.110000px;}
.ybc{bottom:1057.470000px;}
.y18e{bottom:1063.590000px;}
.y3a{bottom:1066.110000px;}
.y16c{bottom:1076.730000px;}
.ybb{bottom:1077.990000px;}
.yf1{bottom:1079.610000px;}
.y4{bottom:1081.950000px;}
.y39{bottom:1086.090000px;}
.y18b{bottom:1087.890000px;}
.y1c8{bottom:1094.010000px;}
.y123{bottom:1097.070000px;}
.yba{bottom:1098.510000px;}
.y38{bottom:1105.890000px;}
.yf0{bottom:1106.250000px;}
.y1a7{bottom:1111.650000px;}
.y3{bottom:1112.730000px;}
.yb9{bottom:1119.210000px;}
.y37{bottom:1125.690000px;}
.yef{bottom:1132.890000px;}
.y2{bottom:1143.690000px;}
.y36{bottom:1145.490000px;}
.y35{bottom:1173.060000px;}
.y1{bottom:1177.560000px;}
.y34{bottom:1193.220000px;}
.h4a{height:2.010938px;}
.hf{height:19.800000px;}
.h46{height:19.836000px;}
.h10{height:19.980000px;}
.h47{height:20.016000px;}
.h1a{height:22.500000px;}
.h33{height:22.536000px;}
.h13{height:23.580000px;}
.h15{height:23.616000px;}
.h14{height:23.760000px;}
.he{height:24.660000px;}
.hd{height:24.840000px;}
.h17{height:25.740000px;}
.h12{height:25.920000px;}
.h18{height:25.956000px;}
.h7{height:27.147656px;}
.h25{height:30.420000px;}
.h28{height:34.920000px;}
.h23{height:39.600000px;}
.h1b{height:39.780000px;}
.h48{height:41.040000px;}
.h43{height:41.220000px;}
.h8{height:41.493516px;}
.h9{height:41.726953px;}
.h5{height:42.164648px;}
.ha{height:43.506914px;}
.h29{height:45.000000px;}
.h4{height:46.251562px;}
.h3{height:46.736719px;}
.h34{height:47.196000px;}
.h44{height:48.027656px;}
.hb{height:48.496641px;}
.h6{height:53.224453px;}
.h3d{height:53.280000px;}
.h41{height:59.400000px;}
.h2b{height:59.436000px;}
.h2c{height:59.580000px;}
.h42{height:59.616000px;}
.h3c{height:61.740000px;}
.h20{height:61.776000px;}
.h45{height:62.496000px;}
.h3e{height:62.640000px;}
.h22{height:62.820000px;}
.h37{height:62.856000px;}
.h19{height:63.000000px;}
.h32{height:63.036000px;}
.h3b{height:64.116000px;}
.h2{height:67.565039px;}
.hc{height:67.824844px;}
.h31{height:70.956000px;}
.h2a{height:72.900000px;}
.h3a{height:73.836000px;}
.h35{height:79.200000px;}
.h1d{height:79.380000px;}
.h1f{height:79.416000px;}
.h26{height:80.100000px;}
.h49{height:84.276000px;}
.h3f{height:84.816000px;}
.h40{height:94.500000px;}
.h24{height:99.180000px;}
.h1c{height:99.216000px;}
.h1e{height:118.980000px;}
.h27{height:119.016000px;}
.h21{height:119.160000px;}
.h39{height:138.816000px;}
.h2d{height:138.996000px;}
.h36{height:158.610000px;}
.h2e{height:178.590000px;}
.h38{height:198.360000px;}
.h16{height:212.250000px;}
.h11{height:225.570000px;}
.h2f{height:237.990000px;}
.h30{height:277.590000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w16{width:52.020000px;}
.w34{width:52.200000px;}
.w43{width:52.740000px;}
.w17{width:52.920000px;}
.w21{width:53.460000px;}
.w2d{width:54.396000px;}
.w1a{width:54.540000px;}
.w24{width:54.576000px;}
.w5c{width:54.900000px;}
.w2a{width:55.080000px;}
.w35{width:55.440000px;}
.w2f{width:56.160000px;}
.w5f{width:59.796000px;}
.w3c{width:62.460000px;}
.w4b{width:66.060000px;}
.w4d{width:66.240000px;}
.w36{width:66.276000px;}
.w44{width:66.456000px;}
.w2b{width:66.780000px;}
.w2c{width:66.816000px;}
.w31{width:66.996000px;}
.w30{width:67.500000px;}
.wc{width:69.480000px;}
.w27{width:69.516000px;}
.w12{width:69.696000px;}
.w6d{width:70.236000px;}
.w23{width:71.136000px;}
.w3a{width:71.280000px;}
.w19{width:71.316000px;}
.w37{width:72.000000px;}
.w1b{width:72.036000px;}
.w1c{width:72.180000px;}
.w3b{width:72.216000px;}
.w4e{width:72.396000px;}
.w22{width:74.736000px;}
.w58{width:75.456000px;}
.w60{width:75.960000px;}
.w59{width:76.140000px;}
.w4c{width:77.976000px;}
.w61{width:80.100000px;}
.w46{width:81.360000px;}
.w25{width:82.080000px;}
.w3d{width:82.836000px;}
.w18{width:83.376000px;}
.w4{width:84.996000px;}
.w48{width:85.320000px;}
.w3f{width:87.120000px;}
.w69{width:96.120000px;}
.w6a{width:96.516000px;}
.w29{width:97.956000px;}
.w20{width:98.136000px;}
.w5b{width:98.316000px;}
.w15{width:98.496000px;}
.w5a{width:99.000000px;}
.w5d{width:99.936000px;}
.w28{width:101.340000px;}
.w1e{width:101.700000px;}
.w33{width:102.276000px;}
.w11{width:102.456000px;}
.wf{width:103.860000px;}
.w41{width:104.760000px;}
.w5{width:106.380000px;}
.w54{width:108.036000px;}
.w57{width:108.720000px;}
.w62{width:108.756000px;}
.w63{width:109.476000px;}
.w52{width:110.196000px;}
.wb{width:112.176000px;}
.w32{width:113.220000px;}
.wd{width:116.316000px;}
.we{width:116.856000px;}
.w10{width:118.656000px;}
.w13{width:124.920000px;}
.w6c{width:125.316000px;}
.w6b{width:126.036000px;}
.w6e{width:126.540000px;}
.w68{width:138.456000px;}
.w7{width:148.896000px;}
.w55{width:154.830000px;}
.w3{width:161.820000px;}
.wa{width:180.570000px;}
.w53{width:182.190000px;}
.w4a{width:183.810000px;}
.w39{width:193.530000px;}
.w66{width:196.770000px;}
.w9{width:198.570000px;}
.w56{width:198.930000px;}
.w6f{width:210.810000px;}
.w6{width:212.610000px;}
.w8{width:215.130000px;}
.w67{width:252.795000px;}
.w4f{width:253.515000px;}
.w3e{width:263.235000px;}
.w51{width:290.235000px;}
.w42{width:324.435000px;}
.w14{width:324.615000px;}
.w1f{width:334.515000px;}
.w50{width:400.425000px;}
.w64{width:438.405000px;}
.w47{width:573.270000px;}
.w49{width:577.590000px;}
.w40{width:579.390000px;}
.w70{width:581.010000px;}
.w2e{width:589.650000px;}
.w45{width:597.030000px;}
.w26{width:604.050000px;}
.w38{width:609.810000px;}
.w1d{width:617.730000px;}
.w5e{width:618.405000px;}
.w65{width:785.160000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x27{left:-5.940000px;}
.x0{left:0.000000px;}
.x62{left:4.500000px;}
.x4{left:8.100000px;}
.x14{left:12.645000px;}
.x1{left:54.179987px;}
.x28{left:55.620000px;}
.x4f{left:62.460000px;}
.x73{left:69.479987px;}
.x46{left:71.280000px;}
.x53{left:74.340000px;}
.xd{left:76.680000px;}
.x70{left:80.999987px;}
.x2{left:86.075987px;}
.x74{left:96.515987px;}
.x75{left:108.035987px;}
.x15{left:123.696000px;}
.x29{left:125.136000px;}
.x50{left:132.156000px;}
.x65{left:137.376000px;}
.x47{left:140.976000px;}
.x54{left:143.856000px;}
.xa{left:149.436000px;}
.xe{left:188.850000px;}
.x7{left:191.370000px;}
.x1e{left:225.390000px;}
.x2a{left:226.470000px;}
.x48{left:228.090000px;}
.x36{left:237.630000px;}
.x61{left:246.450000px;}
.x16{left:248.610000px;}
.x6d{left:250.770000px;}
.xf{left:258.330000px;}
.x76{left:264.810000px;}
.x3{left:270.075000px;}
.x6b{left:287.175000px;}
.x66{left:292.215000px;}
.x72{left:295.094987px;}
.x23{left:296.535000px;}
.x2f{left:297.795000px;}
.x4b{left:299.415000px;}
.x5a{left:307.515000px;}
.x3a{left:308.955000px;}
.x3e{left:317.235000px;}
.x1b{left:319.935000px;}
.x24{left:351.075000px;}
.x30{left:352.335000px;}
.x4c{left:353.955000px;}
.x3b{left:363.495000px;}
.xb{left:364.575000px;}
.x10{left:374.655000px;}
.x5b{left:378.795000px;}
.x3f{left:388.515000px;}
.x6a{left:392.835000px;}
.x8{left:403.995000px;}
.x25{left:423.255000px;}
.x31{left:424.515000px;}
.x4d{left:425.955000px;}
.x64{left:428.655000px;}
.x5{left:431.895000px;}
.x3c{left:435.495000px;}
.x40{left:443.055000px;}
.x5c{left:444.855000px;}
.x1c{left:446.505000px;}
.x26{left:477.825000px;}
.x32{left:478.905000px;}
.x4e{left:480.525000px;}
.x3d{left:490.065000px;}
.x11{left:491.505000px;}
.x67{left:492.585000px;}
.x1d{left:501.045000px;}
.x6e{left:505.005000px;}
.x41{left:515.085000px;}
.x6{left:516.885000px;}
.x5d{left:522.825000px;}
.x63{left:536.685000px;}
.x55{left:549.645000px;}
.x2b{left:551.085000px;}
.x9{left:552.885000px;}
.x6c{left:556.305000px;}
.x1f{left:559.905000px;}
.x51{left:561.345000px;}
.xc{left:563.145000px;}
.x42{left:569.625000px;}
.x17{left:573.225000px;}
.x5e{left:589.065000px;}
.x12{left:595.365000px;}
.x68{left:602.745000px;}
.x43{left:641.850000px;}
.x33{left:645.270000px;}
.x56{left:647.610000px;}
.x2c{left:649.050000px;}
.x49{left:650.670000px;}
.x20{left:658.050000px;}
.x52{left:659.490000px;}
.x5f{left:661.290000px;}
.x37{left:664.530000px;}
.x18{left:671.730000px;}
.x69{left:679.650000px;}
.x44{left:693.870000px;}
.x57{left:699.630000px;}
.x34{left:701.430000px;}
.x4a{left:702.690000px;}
.x2d{left:704.130000px;}
.x21{left:711.510000px;}
.x13{left:714.030000px;}
.x38{left:716.730000px;}
.x71{left:718.889987px;}
.x19{left:723.750000px;}
.x6f{left:742.650000px;}
.x58{left:752.550000px;}
.x59{left:754.710000px;}
.x45{left:756.330000px;}
.x22{left:764.430000px;}
.x60{left:766.770000px;}
.x35{left:768.930000px;}
.x2e{left:770.910000px;}
.x39{left:772.170000px;}
.x1a{left:776.670000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls17{letter-spacing:-0.869333pt;}
.ls8{letter-spacing:-0.406933pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.271467pt;}
.ls12{letter-spacing:-0.230933pt;}
.lsb{letter-spacing:-0.185067pt;}
.ls6{letter-spacing:-0.183467pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.016640pt;}
.ls9{letter-spacing:0.033280pt;}
.ls14{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.094933pt;}
.ls1a{letter-spacing:0.136533pt;}
.ls10{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.209707pt;}
.ls19{letter-spacing:0.230933pt;}
.ls15{letter-spacing:0.231040pt;}
.ls1b{letter-spacing:0.265600pt;}
.ls18{letter-spacing:0.272533pt;}
.ls2{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.454933pt;}
.lsf{letter-spacing:6.992640pt;}
.ls13{letter-spacing:10.192640pt;}
.ls11{letter-spacing:13.392640pt;}
.ls4{letter-spacing:16.160000pt;}
.ls1{letter-spacing:28.112640pt;}
.ls1d{letter-spacing:37.072640pt;}
.ls1e{letter-spacing:37.200640pt;}
.ls1c{letter-spacing:39.632640pt;}
.lse{letter-spacing:100.768000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.448533pt;}
.ws2{word-spacing:-14.313067pt;}
.ws6{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.552533pt;}
.wsf{word-spacing:-13.416533pt;}
.ws9{word-spacing:-13.374933pt;}
.wsc{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.ws0{word-spacing:-13.096533pt;}
.wsb{word-spacing:-13.049067pt;}
.ws8{word-spacing:-12.960000pt;}
.ws4{word-spacing:-9.280000pt;}
.wse{word-spacing:-8.640000pt;}
.wsa{word-spacing:0.000000pt;}
._1{margin-left:-2256.229760pt;}
._5{margin-left:-1284.977600pt;}
._3{margin-left:-1283.629867pt;}
._4{margin-left:-834.417920pt;}
._6{margin-left:-514.869760pt;}
._18{margin-left:-13.611093pt;}
._19{margin-left:-10.263680pt;}
._4d{margin-left:-7.146667pt;}
._4b{margin-left:-5.309653pt;}
._4c{margin-left:-4.413653pt;}
._1a{margin-left:-3.354027pt;}
._13{margin-left:-2.385493pt;}
._2{margin-left:-1.292160pt;}
._0{width:1.106560pt;}
._a{width:2.098560pt;}
._b{width:3.061973pt;}
._7{width:4.426240pt;}
._8{width:5.987627pt;}
._d{width:7.388587pt;}
._c{width:8.446080pt;}
._14{width:9.587840pt;}
._12{width:10.836480pt;}
._11{width:11.845760pt;}
._f{width:14.794240pt;}
._e{width:15.829760pt;}
._15{width:16.895787pt;}
._2b{width:18.432640pt;}
._36{width:19.441920pt;}
._48{width:20.353280pt;}
._1f{width:21.628800pt;}
._35{width:22.682240pt;}
._31{width:24.284800pt;}
._16{width:26.144000pt;}
._17{width:27.055360pt;}
._34{width:28.472320pt;}
._27{width:29.853440pt;}
._28{width:31.765760pt;}
._49{width:32.788267pt;}
._9{width:33.782187pt;}
._40{width:36.493440pt;}
._1e{width:38.945920pt;}
._24{width:40.849280pt;}
._23{width:41.911680pt;}
._20{width:44.142720pt;}
._1b{width:46.055040pt;}
._32{width:47.914240pt;}
._46{width:48.923520pt;}
._3c{width:50.570240pt;}
._4e{width:51.792000pt;}
._30{width:55.882240pt;}
._29{width:59.494400pt;}
._44{width:61.512960pt;}
._38{width:65.178240pt;}
._1d{width:67.674880pt;}
._1c{width:68.790400pt;}
._33{width:71.605760pt;}
._3a{width:73.889920pt;}
._2f{width:74.792960pt;}
._37{width:76.970880pt;}
._3f{width:80.211200pt;}
._43{width:81.857920pt;}
._45{width:84.620160pt;}
._3b{width:88.657280pt;}
._47{width:94.075520pt;}
._22{width:98.484480pt;}
._10{width:100.768000pt;}
._2e{width:102.318080pt;}
._41{width:108.471040pt;}
._42{width:111.764480pt;}
._4a{width:113.411200pt;}
._2d{width:119.148160pt;}
._26{width:120.476160pt;}
._2a{width:121.910400pt;}
._3d{width:127.275520pt;}
._39{width:129.612800pt;}
._21{width:130.887680pt;}
._25{width:150.701440pt;}
._2c{width:172.480640pt;}
._3e{width:231.328000pt;}
.fs6{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y9e{bottom:5.120000pt;}
.ya3{bottom:5.280000pt;}
.y174{bottom:5.320000pt;}
.y1d7{bottom:6.080000pt;}
.y11b{bottom:6.240000pt;}
.y102{bottom:6.400000pt;}
.y1b9{bottom:6.426667pt;}
.y163{bottom:6.560000pt;}
.ye1{bottom:6.720000pt;}
.yde{bottom:6.880000pt;}
.y92{bottom:7.360000pt;}
.y153{bottom:7.520000pt;}
.yda{bottom:7.840000pt;}
.yed{bottom:7.866667pt;}
.y279{bottom:9.600000pt;}
.y133{bottom:9.920000pt;}
.y158{bottom:11.200000pt;}
.y1ce{bottom:11.560000pt;}
.y148{bottom:11.840000pt;}
.y130{bottom:13.920000pt;}
.y106{bottom:14.080000pt;}
.y12f{bottom:15.360000pt;}
.y104{bottom:15.520000pt;}
.y1d3{bottom:16.000000pt;}
.y151{bottom:16.320000pt;}
.y126{bottom:19.680000pt;}
.y1d9{bottom:20.000000pt;}
.y1e4{bottom:20.640000pt;}
.y120{bottom:22.720000pt;}
.y144{bottom:22.746667pt;}
.y184{bottom:22.760000pt;}
.y105{bottom:22.880000pt;}
.y10b{bottom:22.906667pt;}
.y173{bottom:22.920000pt;}
.y1d5{bottom:23.680000pt;}
.y228{bottom:24.000000pt;}
.y1db{bottom:24.160000pt;}
.y100{bottom:24.320000pt;}
.y125{bottom:24.800000pt;}
.y152{bottom:25.120000pt;}
.y1e0{bottom:25.280000pt;}
.y140{bottom:26.880000pt;}
.y278{bottom:27.200000pt;}
.y156{bottom:28.800000pt;}
.y1cc{bottom:29.160000pt;}
.y1a8{bottom:29.440000pt;}
.y275{bottom:30.906667pt;}
.y122{bottom:31.520000pt;}
.y10d{bottom:31.680000pt;}
.y13e{bottom:32.000000pt;}
.y18d{bottom:32.960000pt;}
.y103{bottom:33.120000pt;}
.y1d2{bottom:33.786667pt;}
.y1de{bottom:34.080000pt;}
.y1e2{bottom:38.240000pt;}
.y146{bottom:40.320000pt;}
.y15a{bottom:40.346667pt;}
.y15f{bottom:40.360000pt;}
.y10f{bottom:40.480000pt;}
.y108{bottom:40.506667pt;}
.y172{bottom:40.520000pt;}
.y1d6{bottom:41.440000pt;}
.y1dc{bottom:41.760000pt;}
.y162{bottom:41.920000pt;}
.y124{bottom:42.400000pt;}
.y1df{bottom:42.920000pt;}
.y1f0{bottom:43.040000pt;}
.y277{bottom:44.826667pt;}
.y157{bottom:46.400000pt;}
.y1cd{bottom:46.760000pt;}
.y11d{bottom:49.280000pt;}
.y142{bottom:49.306667pt;}
.y18c{bottom:50.560000pt;}
.y6{bottom:53.440000pt;}
.y1e3{bottom:55.840000pt;}
.y1aa{bottom:57.920000pt;}
.y18a{bottom:57.946667pt;}
.y183{bottom:57.960000pt;}
.y10e{bottom:58.080000pt;}
.y10a{bottom:58.106667pt;}
.y16e{bottom:58.120000pt;}
.y276{bottom:62.426667pt;}
.y1ac{bottom:66.920000pt;}
.y11f{bottom:75.680000pt;}
.y109{bottom:75.706667pt;}
.y171{bottom:75.720000pt;}
.yb8{bottom:77.440000pt;}
.y1c7{bottom:78.080000pt;}
.y33{bottom:79.040000pt;}
.ye5{bottom:81.946667pt;}
.y273{bottom:83.680000pt;}
.ye3{bottom:84.320000pt;}
.y1ba{bottom:84.480000pt;}
.y6a{bottom:85.280000pt;}
.y121{bottom:85.760000pt;}
.y1a6{bottom:86.880000pt;}
.y185{bottom:89.120000pt;}
.y1e8{bottom:89.920000pt;}
.ye7{bottom:90.746667pt;}
.y16a{bottom:91.360000pt;}
.y215{bottom:92.160000pt;}
.y11e{bottom:93.280000pt;}
.y143{bottom:93.306667pt;}
.y182{bottom:93.320000pt;}
.y128{bottom:93.440000pt;}
.y170{bottom:93.480000pt;}
.yb7{bottom:95.040000pt;}
.y1c6{bottom:95.680000pt;}
.yd8{bottom:96.680000pt;}
.y32{bottom:96.800000pt;}
.ye4{bottom:99.546667pt;}
.y272{bottom:101.280000pt;}
.y17b{bottom:102.120000pt;}
.y265{bottom:102.560000pt;}
.y69{bottom:102.880000pt;}
.y1e7{bottom:103.040000pt;}
.y214{bottom:104.640000pt;}
.y274{bottom:105.600000pt;}
.yee{bottom:108.000000pt;}
.y169{bottom:108.960000pt;}
.y1be{bottom:110.880000pt;}
.y189{bottom:110.906667pt;}
.y181{bottom:110.920000pt;}
.y179{bottom:111.066667pt;}
.y16f{bottom:111.080000pt;}
.y23d{bottom:112.160000pt;}
.yb6{bottom:112.800000pt;}
.y1c5{bottom:113.280000pt;}
.y31{bottom:114.400000pt;}
.y271{bottom:118.880000pt;}
.y186{bottom:119.706667pt;}
.y264{bottom:120.160000pt;}
.y68{bottom:120.480000pt;}
.y213{bottom:122.400000pt;}
.y141{bottom:123.200000pt;}
.y1e6{bottom:123.680000pt;}
.y168{bottom:126.560000pt;}
.y1bd{bottom:128.480000pt;}
.y188{bottom:128.506667pt;}
.y180{bottom:128.520000pt;}
.y178{bottom:128.666667pt;}
.y23c{bottom:129.920000pt;}
.yb5{bottom:130.400000pt;}
.y1c4{bottom:131.040000pt;}
.yec{bottom:131.680000pt;}
.y30{bottom:132.000000pt;}
.y270{bottom:136.506667pt;}
.y263{bottom:137.786667pt;}
.y67{bottom:138.106667pt;}
.y212{bottom:141.306667pt;}
.y167{bottom:144.346667pt;}
.y1bc{bottom:146.080000pt;}
.y187{bottom:146.106667pt;}
.y17f{bottom:146.120000pt;}
.y177{bottom:146.266667pt;}
.y23b{bottom:147.546667pt;}
.yb4{bottom:148.026667pt;}
.y1c3{bottom:148.666667pt;}
.y2f{bottom:149.626667pt;}
.y26f{bottom:154.106667pt;}
.yeb{bottom:155.386667pt;}
.y90{bottom:155.866667pt;}
.y11c{bottom:156.986667pt;}
.y211{bottom:160.346667pt;}
.y166{bottom:161.946667pt;}
.y1bb{bottom:163.840000pt;}
.y66{bottom:163.866667pt;}
.y17e{bottom:163.880000pt;}
.y23a{bottom:165.146667pt;}
.yb3{bottom:165.626667pt;}
.y1c2{bottom:166.266667pt;}
.y2e{bottom:167.226667pt;}
.y26e{bottom:171.866667pt;}
.y262{bottom:173.146667pt;}
.y8f{bottom:173.466667pt;}
.y1e5{bottom:177.306667pt;}
.yea{bottom:179.066667pt;}
.y165{bottom:179.546667pt;}
.y65{bottom:181.466667pt;}
.y17d{bottom:181.480000pt;}
.y239{bottom:182.746667pt;}
.yb2{bottom:183.226667pt;}
.y1c1{bottom:183.866667pt;}
.y2d{bottom:184.986667pt;}
.y26d{bottom:189.466667pt;}
.y261{bottom:190.746667pt;}
.y8e{bottom:191.066667pt;}
.y164{bottom:192.666667pt;}
.yb1{bottom:196.506667pt;}
.y64{bottom:199.066667pt;}
.y17c{bottom:199.080000pt;}
.y238{bottom:200.346667pt;}
.y210{bottom:200.666667pt;}
.y1c0{bottom:201.466667pt;}
.y2c{bottom:202.586667pt;}
.ye9{bottom:202.746667pt;}
.y26c{bottom:207.066667pt;}
.y260{bottom:208.346667pt;}
.y8d{bottom:208.666667pt;}
.y161{bottom:213.306667pt;}
.yb0{bottom:214.746667pt;}
.y63{bottom:216.666667pt;}
.y237{bottom:218.106667pt;}
.y20f{bottom:218.266667pt;}
.y2b{bottom:220.186667pt;}
.y26b{bottom:224.666667pt;}
.y25f{bottom:225.946667pt;}
.y8c{bottom:226.266667pt;}
.ye8{bottom:226.426667pt;}
.y13d{bottom:229.626667pt;}
.y1e1{bottom:230.906667pt;}
.yaf{bottom:232.986667pt;}
.y62{bottom:234.266667pt;}
.y236{bottom:235.706667pt;}
.y20e{bottom:236.026667pt;}
.y1bf{bottom:236.346667pt;}
.y2a{bottom:237.786667pt;}
.y26a{bottom:242.266667pt;}
.y25e{bottom:243.546667pt;}
.y8b{bottom:244.026667pt;}
.y1a4{bottom:246.266667pt;}
.ye6{bottom:250.106667pt;}
.yae{bottom:251.386667pt;}
.y61{bottom:252.026667pt;}
.y235{bottom:253.306667pt;}
.y20d{bottom:253.626667pt;}
.y29{bottom:255.386667pt;}
.y269{bottom:260.026667pt;}
.y25d{bottom:261.306667pt;}
.y8a{bottom:261.626667pt;}
.y119{bottom:263.386667pt;}
.y13f{bottom:265.626667pt;}
.y60{bottom:269.626667pt;}
.y160{bottom:269.786667pt;}
.y234{bottom:270.906667pt;}
.y20c{bottom:271.226667pt;}
.y28{bottom:273.146667pt;}
.yd7{bottom:273.626667pt;}
.yad{bottom:274.746667pt;}
.y268{bottom:277.626667pt;}
.y25c{bottom:278.906667pt;}
.y89{bottom:279.226667pt;}
.y1a5{bottom:282.106667pt;}
.y5f{bottom:287.226667pt;}
.y233{bottom:288.506667pt;}
.y20b{bottom:288.826667pt;}
.y27{bottom:290.746667pt;}
.yac{bottom:292.506667pt;}
.y267{bottom:295.226667pt;}
.ye2{bottom:296.346667pt;}
.y25b{bottom:296.506667pt;}
.y88{bottom:296.826667pt;}
.y11a{bottom:299.386667pt;}
.y5e{bottom:304.826667pt;}
.y232{bottom:306.266667pt;}
.y20a{bottom:306.426667pt;}
.y13c{bottom:306.746667pt;}
.y1a3{bottom:308.026667pt;}
.y26{bottom:308.346667pt;}
.yab{bottom:310.106667pt;}
.y266{bottom:312.826667pt;}
.y25a{bottom:314.106667pt;}
.y87{bottom:314.426667pt;}
.y1dd{bottom:315.546667pt;}
.ye0{bottom:318.106667pt;}
.y15e{bottom:323.386667pt;}
.y231{bottom:323.866667pt;}
.y209{bottom:324.186667pt;}
.y13b{bottom:324.346667pt;}
.y118{bottom:325.146667pt;}
.y1a2{bottom:325.626667pt;}
.y25{bottom:325.946667pt;}
.yaa{bottom:327.706667pt;}
.y5d{bottom:330.426667pt;}
.y259{bottom:331.706667pt;}
.y86{bottom:332.186667pt;}
.y17a{bottom:336.666667pt;}
.ydf{bottom:339.706667pt;}
.y230{bottom:341.466667pt;}
.y208{bottom:341.786667pt;}
.y13a{bottom:341.946667pt;}
.y117{bottom:342.746667pt;}
.y1a1{bottom:343.226667pt;}
.y24{bottom:343.546667pt;}
.ya9{bottom:345.306667pt;}
.y5c{bottom:348.186667pt;}
.y258{bottom:349.466667pt;}
.y85{bottom:349.786667pt;}
.y22f{bottom:359.106667pt;}
.y207{bottom:359.426667pt;}
.y139{bottom:359.586667pt;}
.y116{bottom:360.546667pt;}
.y1a0{bottom:360.866667pt;}
.y23{bottom:361.346667pt;}
.ya8{bottom:362.946667pt;}
.y5b{bottom:365.826667pt;}
.y257{bottom:367.106667pt;}
.y84{bottom:367.426667pt;}
.y22e{bottom:376.706667pt;}
.y15d{bottom:376.866667pt;}
.y206{bottom:377.026667pt;}
.y138{bottom:377.186667pt;}
.y115{bottom:378.146667pt;}
.y19f{bottom:378.626667pt;}
.y22{bottom:378.946667pt;}
.ya7{bottom:380.706667pt;}
.ydd{bottom:383.106667pt;}
.y5a{bottom:383.426667pt;}
.y256{bottom:384.706667pt;}
.y83{bottom:385.026667pt;}
.y1da{bottom:391.746667pt;}
.y22d{bottom:394.466667pt;}
.y205{bottom:394.626667pt;}
.y137{bottom:394.946667pt;}
.y114{bottom:395.746667pt;}
.y19e{bottom:396.226667pt;}
.y21{bottom:396.546667pt;}
.ya6{bottom:398.306667pt;}
.y59{bottom:401.026667pt;}
.y255{bottom:402.306667pt;}
.y82{bottom:402.626667pt;}
.ydc{bottom:404.706667pt;}
.y22c{bottom:412.066667pt;}
.y204{bottom:412.386667pt;}
.y136{bottom:412.546667pt;}
.y15c{bottom:412.866667pt;}
.y113{bottom:413.346667pt;}
.y19d{bottom:413.826667pt;}
.y20{bottom:414.146667pt;}
.ya5{bottom:415.906667pt;}
.y58{bottom:418.626667pt;}
.y254{bottom:419.906667pt;}
.y81{bottom:420.386667pt;}
.y203{bottom:424.866667pt;}
.ydb{bottom:427.426667pt;}
.ya4{bottom:429.026667pt;}
.y22b{bottom:429.666667pt;}
.y135{bottom:430.146667pt;}
.y112{bottom:430.946667pt;}
.y19c{bottom:431.426667pt;}
.y1f{bottom:431.746667pt;}
.y57{bottom:436.386667pt;}
.y253{bottom:437.666667pt;}
.y80{bottom:437.986667pt;}
.y201{bottom:443.746667pt;}
.ya2{bottom:447.266667pt;}
.y134{bottom:447.746667pt;}
.y1d8{bottom:448.066667pt;}
.y111{bottom:448.706667pt;}
.y19b{bottom:449.026667pt;}
.y1e{bottom:449.506667pt;}
.yd9{bottom:451.106667pt;}
.y56{bottom:453.986667pt;}
.y252{bottom:455.266667pt;}
.y7f{bottom:455.586667pt;}
.y22a{bottom:459.746667pt;}
.y132{bottom:460.866667pt;}
.y110{bottom:461.826667pt;}
.y19a{bottom:462.306667pt;}
.y202{bottom:462.786667pt;}
.ya1{bottom:465.666667pt;}
.y1d{bottom:467.106667pt;}
.y55{bottom:471.586667pt;}
.y251{bottom:472.866667pt;}
.y7e{bottom:473.186667pt;}
.yd6{bottom:474.786667pt;}
.y227{bottom:478.786667pt;}
.y199{bottom:480.546667pt;}
.y1ff{bottom:481.666667pt;}
.y10c{bottom:483.426667pt;}
.ya0{bottom:483.906667pt;}
.y15b{bottom:484.066667pt;}
.y131{bottom:488.546667pt;}
.y54{bottom:489.186667pt;}
.y250{bottom:490.466667pt;}
.y7d{bottom:490.786667pt;}
.y1d4{bottom:496.226667pt;}
.y229{bottom:497.666667pt;}
.yd5{bottom:498.146667pt;}
.y200{bottom:499.266667pt;}
.y9f{bottom:502.306667pt;}
.y1c{bottom:504.386667pt;}
.y53{bottom:506.786667pt;}
.y24f{bottom:508.066667pt;}
.y7c{bottom:508.546667pt;}
.yd4{bottom:515.746667pt;}
.y225{bottom:516.706667pt;}
.y9d{bottom:520.546667pt;}
.y52{bottom:524.546667pt;}
.y24e{bottom:525.826667pt;}
.y7b{bottom:526.146667pt;}
.y1b{bottom:529.986667pt;}
.yd3{bottom:533.506667pt;}
.y226{bottom:534.306667pt;}
.y1b7{bottom:537.506667pt;}
.y159{bottom:537.666667pt;}
.y1fe{bottom:539.746667pt;}
.y51{bottom:542.146667pt;}
.y24d{bottom:543.426667pt;}
.y7a{bottom:543.746667pt;}
.y9c{bottom:543.906667pt;}
.y1a{bottom:547.586667pt;}
.y176{bottom:548.866667pt;}
.yd2{bottom:551.106667pt;}
.y1d1{bottom:551.746667pt;}
.y107{bottom:554.626667pt;}
.y1fd{bottom:557.346667pt;}
.y50{bottom:559.746667pt;}
.y24c{bottom:561.026667pt;}
.y79{bottom:561.346667pt;}
.y9b{bottom:561.666667pt;}
.y19{bottom:565.186667pt;}
.yd1{bottom:568.706667pt;}
.y198{bottom:569.346667pt;}
.y224{bottom:569.506667pt;}
.y1b8{bottom:573.346667pt;}
.y1fc{bottom:574.946667pt;}
.y4f{bottom:577.373333pt;}
.y24b{bottom:578.653333pt;}
.y78{bottom:578.973333pt;}
.y9a{bottom:579.293333pt;}
.y18{bottom:582.813333pt;}
.yd0{bottom:586.333333pt;}
.y155{bottom:591.133333pt;}
.y223{bottom:592.413333pt;}
.y1fb{bottom:592.733333pt;}
.y4e{bottom:594.973333pt;}
.y24a{bottom:596.253333pt;}
.y99{bottom:596.893333pt;}
.y1b6{bottom:599.293333pt;}
.y17{bottom:600.573333pt;}
.ycf{bottom:603.933333pt;}
.y77{bottom:604.733333pt;}
.y1d0{bottom:609.373333pt;}
.y222{bottom:610.013333pt;}
.y1fa{bottom:610.333333pt;}
.y4d{bottom:612.733333pt;}
.y249{bottom:614.013333pt;}
.y98{bottom:614.493333pt;}
.y1b5{bottom:616.893333pt;}
.y16{bottom:618.173333pt;}
.yce{bottom:621.693333pt;}
.y76{bottom:622.333333pt;}
.y221{bottom:627.613333pt;}
.y1f9{bottom:627.933333pt;}
.y4c{bottom:630.333333pt;}
.y248{bottom:631.613333pt;}
.y97{bottom:632.093333pt;}
.y1b4{bottom:634.493333pt;}
.y15{bottom:635.773333pt;}
.ycd{bottom:639.293333pt;}
.y75{bottom:639.933333pt;}
.y1f8{bottom:640.413333pt;}
.yff{bottom:643.453333pt;}
.y220{bottom:645.213333pt;}
.y4b{bottom:647.933333pt;}
.y247{bottom:649.213333pt;}
.y96{bottom:649.853333pt;}
.y1b3{bottom:652.093333pt;}
.ycc{bottom:652.413333pt;}
.y14{bottom:653.373333pt;}
.y154{bottom:656.573333pt;}
.y74{bottom:657.533333pt;}
.y1f7{bottom:658.013333pt;}
.y197{bottom:658.173333pt;}
.y21f{bottom:662.973333pt;}
.y4a{bottom:665.533333pt;}
.y12d{bottom:666.333333pt;}
.y246{bottom:666.813333pt;}
.y95{bottom:667.453333pt;}
.y1b2{bottom:669.693333pt;}
.ycb{bottom:670.653333pt;}
.y13{bottom:670.973333pt;}
.y73{bottom:675.133333pt;}
.y1f6{bottom:675.613333pt;}
.y101{bottom:679.453333pt;}
.y94{bottom:680.573333pt;}
.y49{bottom:683.133333pt;}
.y245{bottom:684.413333pt;}
.y1b1{bottom:687.453333pt;}
.y12{bottom:688.733333pt;}
.yca{bottom:689.053333pt;}
.y72{bottom:692.893333pt;}
.y1f5{bottom:693.373333pt;}
.y21e{bottom:698.173333pt;}
.y48{bottom:700.893333pt;}
.y12e{bottom:702.173333pt;}
.y93{bottom:703.293333pt;}
.y1b0{bottom:705.053333pt;}
.yfe{bottom:705.213333pt;}
.y11{bottom:706.333333pt;}
.yc9{bottom:707.293333pt;}
.y175{bottom:708.253333pt;}
.y71{bottom:710.493333pt;}
.y1f4{bottom:712.253333pt;}
.y21d{bottom:715.773333pt;}
.y1cf{bottom:715.933333pt;}
.y47{bottom:718.493333pt;}
.y244{bottom:719.773333pt;}
.y1af{bottom:722.653333pt;}
.yfd{bottom:722.813333pt;}
.y10{bottom:723.933333pt;}
.yc8{bottom:725.533333pt;}
.y91{bottom:725.853333pt;}
.y150{bottom:727.773333pt;}
.y70{bottom:728.093333pt;}
.y1f3{bottom:731.293333pt;}
.y21c{bottom:733.373333pt;}
.y46{bottom:736.093333pt;}
.y243{bottom:737.373333pt;}
.y1ae{bottom:740.253333pt;}
.yfc{bottom:740.573333pt;}
.yf{bottom:741.533333pt;}
.yc7{bottom:743.933333pt;}
.y6f{bottom:745.693333pt;}
.y195{bottom:746.973333pt;}
.y1ef{bottom:750.173333pt;}
.y21b{bottom:751.133333pt;}
.y1ad{bottom:753.373333pt;}
.y45{bottom:753.693333pt;}
.y242{bottom:754.973333pt;}
.yfb{bottom:758.173333pt;}
.ye{bottom:759.133333pt;}
.y6e{bottom:763.293333pt;}
.y21a{bottom:763.613333pt;}
.yc6{bottom:767.293333pt;}
.y1f2{bottom:769.213333pt;}
.y44{bottom:771.293333pt;}
.y241{bottom:772.573333pt;}
.y14f{bottom:773.693333pt;}
.y1ab{bottom:775.133333pt;}
.yfa{bottom:775.773333pt;}
.yd{bottom:776.733333pt;}
.y12c{bottom:780.893333pt;}
.y6d{bottom:781.053333pt;}
.y219{bottom:781.213333pt;}
.y196{bottom:782.973333pt;}
.yc5{bottom:785.053333pt;}
.y1cb{bottom:787.133333pt;}
.y1f1{bottom:788.093333pt;}
.y43{bottom:789.053333pt;}
.y240{bottom:790.333333pt;}
.y14e{bottom:791.293333pt;}
.yf9{bottom:793.373333pt;}
.yc{bottom:796.413333pt;}
.y16d{bottom:797.053333pt;}
.y12b{bottom:798.533333pt;}
.y6c{bottom:798.693333pt;}
.y218{bottom:800.133333pt;}
.yc4{bottom:802.693333pt;}
.y42{bottom:806.693333pt;}
.y1ed{bottom:807.173333pt;}
.y23f{bottom:807.973333pt;}
.y194{bottom:808.773333pt;}
.y14d{bottom:808.933333pt;}
.yf8{bottom:811.013333pt;}
.y6b{bottom:816.293333pt;}
.yb{bottom:818.853333pt;}
.y217{bottom:819.173333pt;}
.yc3{bottom:820.293333pt;}
.y23e{bottom:822.693333pt;}
.y41{bottom:824.293333pt;}
.y1ee{bottom:826.053333pt;}
.y14c{bottom:826.533333pt;}
.yf7{bottom:828.773333pt;}
.ya{bottom:832.293333pt;}
.y12a{bottom:833.893333pt;}
.yc2{bottom:837.893333pt;}
.y40{bottom:841.893333pt;}
.y14b{bottom:844.133333pt;}
.y1ec{bottom:845.093333pt;}
.yf6{bottom:846.373333pt;}
.y129{bottom:847.013333pt;}
.y9{bottom:851.173333pt;}
.y1ca{bottom:853.413333pt;}
.y216{bottom:854.373333pt;}
.yc1{bottom:855.493333pt;}
.y3f{bottom:859.493333pt;}
.y193{bottom:861.733333pt;}
.y14a{bottom:861.893333pt;}
.yf5{bottom:863.973333pt;}
.y127{bottom:868.613333pt;}
.y8{bottom:871.973333pt;}
.yc0{bottom:873.253333pt;}
.y3e{bottom:877.253333pt;}
.y192{bottom:879.333333pt;}
.y149{bottom:879.493333pt;}
.yf4{bottom:881.573333pt;}
.ybf{bottom:890.853333pt;}
.y147{bottom:892.613333pt;}
.y3d{bottom:894.853333pt;}
.y191{bottom:896.933333pt;}
.yf3{bottom:899.173333pt;}
.y1eb{bottom:899.333333pt;}
.y7{bottom:900.293333pt;}
.ybe{bottom:908.453333pt;}
.y3c{bottom:912.453333pt;}
.y190{bottom:914.693333pt;}
.y1a9{bottom:916.933333pt;}
.y1c9{bottom:918.853333pt;}
.y16b{bottom:921.253333pt;}
.ybd{bottom:921.573333pt;}
.y1ea{bottom:922.053333pt;}
.y145{bottom:924.293333pt;}
.y3b{bottom:930.053333pt;}
.y18f{bottom:932.293333pt;}
.y5{bottom:934.373333pt;}
.yf2{bottom:936.133333pt;}
.y1e9{bottom:939.653333pt;}
.ybc{bottom:939.973333pt;}
.y18e{bottom:945.413333pt;}
.y3a{bottom:947.653333pt;}
.y16c{bottom:957.093333pt;}
.ybb{bottom:958.213333pt;}
.yf1{bottom:959.653333pt;}
.y4{bottom:961.733333pt;}
.y39{bottom:965.413333pt;}
.y18b{bottom:967.013333pt;}
.y1c8{bottom:972.453333pt;}
.y123{bottom:975.173333pt;}
.yba{bottom:976.453333pt;}
.y38{bottom:983.013333pt;}
.yf0{bottom:983.333333pt;}
.y1a7{bottom:988.133333pt;}
.y3{bottom:989.093333pt;}
.yb9{bottom:994.853333pt;}
.y37{bottom:1000.613333pt;}
.yef{bottom:1007.013333pt;}
.y2{bottom:1016.613333pt;}
.y36{bottom:1018.213333pt;}
.y35{bottom:1042.720000pt;}
.y1{bottom:1046.720000pt;}
.y34{bottom:1060.640000pt;}
.h4a{height:1.787500pt;}
.hf{height:17.600000pt;}
.h46{height:17.632000pt;}
.h10{height:17.760000pt;}
.h47{height:17.792000pt;}
.h1a{height:20.000000pt;}
.h33{height:20.032000pt;}
.h13{height:20.960000pt;}
.h15{height:20.992000pt;}
.h14{height:21.120000pt;}
.he{height:21.920000pt;}
.hd{height:22.080000pt;}
.h17{height:22.880000pt;}
.h12{height:23.040000pt;}
.h18{height:23.072000pt;}
.h7{height:24.131250pt;}
.h25{height:27.040000pt;}
.h28{height:31.040000pt;}
.h23{height:35.200000pt;}
.h1b{height:35.360000pt;}
.h48{height:36.480000pt;}
.h43{height:36.640000pt;}
.h8{height:36.883125pt;}
.h9{height:37.090625pt;}
.h5{height:37.479688pt;}
.ha{height:38.672812pt;}
.h29{height:40.000000pt;}
.h4{height:41.112500pt;}
.h3{height:41.543750pt;}
.h34{height:41.952000pt;}
.h44{height:42.691250pt;}
.hb{height:43.108125pt;}
.h6{height:47.310625pt;}
.h3d{height:47.360000pt;}
.h41{height:52.800000pt;}
.h2b{height:52.832000pt;}
.h2c{height:52.960000pt;}
.h42{height:52.992000pt;}
.h3c{height:54.880000pt;}
.h20{height:54.912000pt;}
.h45{height:55.552000pt;}
.h3e{height:55.680000pt;}
.h22{height:55.840000pt;}
.h37{height:55.872000pt;}
.h19{height:56.000000pt;}
.h32{height:56.032000pt;}
.h3b{height:56.992000pt;}
.h2{height:60.057813pt;}
.hc{height:60.288750pt;}
.h31{height:63.072000pt;}
.h2a{height:64.800000pt;}
.h3a{height:65.632000pt;}
.h35{height:70.400000pt;}
.h1d{height:70.560000pt;}
.h1f{height:70.592000pt;}
.h26{height:71.200000pt;}
.h49{height:74.912000pt;}
.h3f{height:75.392000pt;}
.h40{height:84.000000pt;}
.h24{height:88.160000pt;}
.h1c{height:88.192000pt;}
.h1e{height:105.760000pt;}
.h27{height:105.792000pt;}
.h21{height:105.920000pt;}
.h39{height:123.392000pt;}
.h2d{height:123.552000pt;}
.h36{height:140.986667pt;}
.h2e{height:158.746667pt;}
.h38{height:176.320000pt;}
.h16{height:188.666667pt;}
.h11{height:200.506667pt;}
.h2f{height:211.546667pt;}
.h30{height:246.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w16{width:46.240000pt;}
.w34{width:46.400000pt;}
.w43{width:46.880000pt;}
.w17{width:47.040000pt;}
.w21{width:47.520000pt;}
.w2d{width:48.352000pt;}
.w1a{width:48.480000pt;}
.w24{width:48.512000pt;}
.w5c{width:48.800000pt;}
.w2a{width:48.960000pt;}
.w35{width:49.280000pt;}
.w2f{width:49.920000pt;}
.w5f{width:53.152000pt;}
.w3c{width:55.520000pt;}
.w4b{width:58.720000pt;}
.w4d{width:58.880000pt;}
.w36{width:58.912000pt;}
.w44{width:59.072000pt;}
.w2b{width:59.360000pt;}
.w2c{width:59.392000pt;}
.w31{width:59.552000pt;}
.w30{width:60.000000pt;}
.wc{width:61.760000pt;}
.w27{width:61.792000pt;}
.w12{width:61.952000pt;}
.w6d{width:62.432000pt;}
.w23{width:63.232000pt;}
.w3a{width:63.360000pt;}
.w19{width:63.392000pt;}
.w37{width:64.000000pt;}
.w1b{width:64.032000pt;}
.w1c{width:64.160000pt;}
.w3b{width:64.192000pt;}
.w4e{width:64.352000pt;}
.w22{width:66.432000pt;}
.w58{width:67.072000pt;}
.w60{width:67.520000pt;}
.w59{width:67.680000pt;}
.w4c{width:69.312000pt;}
.w61{width:71.200000pt;}
.w46{width:72.320000pt;}
.w25{width:72.960000pt;}
.w3d{width:73.632000pt;}
.w18{width:74.112000pt;}
.w4{width:75.552000pt;}
.w48{width:75.840000pt;}
.w3f{width:77.440000pt;}
.w69{width:85.440000pt;}
.w6a{width:85.792000pt;}
.w29{width:87.072000pt;}
.w20{width:87.232000pt;}
.w5b{width:87.392000pt;}
.w15{width:87.552000pt;}
.w5a{width:88.000000pt;}
.w5d{width:88.832000pt;}
.w28{width:90.080000pt;}
.w1e{width:90.400000pt;}
.w33{width:90.912000pt;}
.w11{width:91.072000pt;}
.wf{width:92.320000pt;}
.w41{width:93.120000pt;}
.w5{width:94.560000pt;}
.w54{width:96.032000pt;}
.w57{width:96.640000pt;}
.w62{width:96.672000pt;}
.w63{width:97.312000pt;}
.w52{width:97.952000pt;}
.wb{width:99.712000pt;}
.w32{width:100.640000pt;}
.wd{width:103.392000pt;}
.we{width:103.872000pt;}
.w10{width:105.472000pt;}
.w13{width:111.040000pt;}
.w6c{width:111.392000pt;}
.w6b{width:112.032000pt;}
.w6e{width:112.480000pt;}
.w68{width:123.072000pt;}
.w7{width:132.352000pt;}
.w55{width:137.626667pt;}
.w3{width:143.840000pt;}
.wa{width:160.506667pt;}
.w53{width:161.946667pt;}
.w4a{width:163.386667pt;}
.w39{width:172.026667pt;}
.w66{width:174.906667pt;}
.w9{width:176.506667pt;}
.w56{width:176.826667pt;}
.w6f{width:187.386667pt;}
.w6{width:188.986667pt;}
.w8{width:191.226667pt;}
.w67{width:224.706667pt;}
.w4f{width:225.346667pt;}
.w3e{width:233.986667pt;}
.w51{width:257.986667pt;}
.w42{width:288.386667pt;}
.w14{width:288.546667pt;}
.w1f{width:297.346667pt;}
.w50{width:355.933333pt;}
.w64{width:389.693333pt;}
.w47{width:509.573333pt;}
.w49{width:513.413333pt;}
.w40{width:515.013333pt;}
.w70{width:516.453333pt;}
.w2e{width:524.133333pt;}
.w45{width:530.693333pt;}
.w26{width:536.933333pt;}
.w38{width:542.053333pt;}
.w1d{width:549.093333pt;}
.w5e{width:549.693333pt;}
.w65{width:697.920000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x27{left:-5.280000pt;}
.x0{left:0.000000pt;}
.x62{left:4.000000pt;}
.x4{left:7.200000pt;}
.x14{left:11.240000pt;}
.x1{left:48.159988pt;}
.x28{left:49.440000pt;}
.x4f{left:55.520000pt;}
.x73{left:61.759988pt;}
.x46{left:63.360000pt;}
.x53{left:66.080000pt;}
.xd{left:68.160000pt;}
.x70{left:71.999988pt;}
.x2{left:76.511988pt;}
.x74{left:85.791988pt;}
.x75{left:96.031988pt;}
.x15{left:109.952000pt;}
.x29{left:111.232000pt;}
.x50{left:117.472000pt;}
.x65{left:122.112000pt;}
.x47{left:125.312000pt;}
.x54{left:127.872000pt;}
.xa{left:132.832000pt;}
.xe{left:167.866667pt;}
.x7{left:170.106667pt;}
.x1e{left:200.346667pt;}
.x2a{left:201.306667pt;}
.x48{left:202.746667pt;}
.x36{left:211.226667pt;}
.x61{left:219.066667pt;}
.x16{left:220.986667pt;}
.x6d{left:222.906667pt;}
.xf{left:229.626667pt;}
.x76{left:235.386667pt;}
.x3{left:240.066667pt;}
.x6b{left:255.266667pt;}
.x66{left:259.746667pt;}
.x72{left:262.306655pt;}
.x23{left:263.586667pt;}
.x2f{left:264.706667pt;}
.x4b{left:266.146667pt;}
.x5a{left:273.346667pt;}
.x3a{left:274.626667pt;}
.x3e{left:281.986667pt;}
.x1b{left:284.386667pt;}
.x24{left:312.066667pt;}
.x30{left:313.186667pt;}
.x4c{left:314.626667pt;}
.x3b{left:323.106667pt;}
.xb{left:324.066667pt;}
.x10{left:333.026667pt;}
.x5b{left:336.706667pt;}
.x3f{left:345.346667pt;}
.x6a{left:349.186667pt;}
.x8{left:359.106667pt;}
.x25{left:376.226667pt;}
.x31{left:377.346667pt;}
.x4d{left:378.626667pt;}
.x64{left:381.026667pt;}
.x5{left:383.906667pt;}
.x3c{left:387.106667pt;}
.x40{left:393.826667pt;}
.x5c{left:395.426667pt;}
.x1c{left:396.893333pt;}
.x26{left:424.733333pt;}
.x32{left:425.693333pt;}
.x4e{left:427.133333pt;}
.x3d{left:435.613333pt;}
.x11{left:436.893333pt;}
.x67{left:437.853333pt;}
.x1d{left:445.373333pt;}
.x6e{left:448.893333pt;}
.x41{left:457.853333pt;}
.x6{left:459.453333pt;}
.x5d{left:464.733333pt;}
.x63{left:477.053333pt;}
.x55{left:488.573333pt;}
.x2b{left:489.853333pt;}
.x9{left:491.453333pt;}
.x6c{left:494.493333pt;}
.x1f{left:497.693333pt;}
.x51{left:498.973333pt;}
.xc{left:500.573333pt;}
.x42{left:506.333333pt;}
.x17{left:509.533333pt;}
.x5e{left:523.613333pt;}
.x12{left:529.213333pt;}
.x68{left:535.773333pt;}
.x43{left:570.533333pt;}
.x33{left:573.573333pt;}
.x56{left:575.653333pt;}
.x2c{left:576.933333pt;}
.x49{left:578.373333pt;}
.x20{left:584.933333pt;}
.x52{left:586.213333pt;}
.x5f{left:587.813333pt;}
.x37{left:590.693333pt;}
.x18{left:597.093333pt;}
.x69{left:604.133333pt;}
.x44{left:616.773333pt;}
.x57{left:621.893333pt;}
.x34{left:623.493333pt;}
.x4a{left:624.613333pt;}
.x2d{left:625.893333pt;}
.x21{left:632.453333pt;}
.x13{left:634.693333pt;}
.x38{left:637.093333pt;}
.x71{left:639.013322pt;}
.x19{left:643.333333pt;}
.x6f{left:660.133333pt;}
.x58{left:668.933333pt;}
.x59{left:670.853333pt;}
.x45{left:672.293333pt;}
.x22{left:679.493333pt;}
.x60{left:681.573333pt;}
.x35{left:683.493333pt;}
.x2e{left:685.253333pt;}
.x39{left:686.373333pt;}
.x1a{left:690.373333pt;}
}




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