
    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_286561a4a78d4c5dbbee938a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_deec3d4607543820a2482b0b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1e743fd602463f50f8a5605a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_5dae4d13dcbe1b38d1b2ed77.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_204ef02f742915e054462c86.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.682617;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_95d810edc8a02fcbacedf1bc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.948242;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_78775c8c1ee0df537e1f0b63.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.962402;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_49d99379a883ea3ae8bdd2a6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6e3f85ef5732e048d0b6a5f1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172852;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);}
.v1{vertical-align:-74.880000px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.259800px;}
.lsf{letter-spacing:-0.109200px;}
.ls3{letter-spacing:-0.106800px;}
.ls13{letter-spacing:-0.100200px;}
.lsb{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.053280px;}
.ls7{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.206400px;}
.ls8{letter-spacing:0.259920px;}
.lsc{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.413400px;}
.ls10{letter-spacing:11.825280px;}
.lsd{letter-spacing:15.425280px;}
.ls14{letter-spacing:28.866720px;}
.ls12{letter-spacing:35.640000px;}
.ls4{letter-spacing:41.706720px;}
.ls6{letter-spacing:41.826720px;}
.ls15{letter-spacing:42.426720px;}
.ls9{letter-spacing:42.546720px;}
.ls11{letter-spacing:61.505280px;}
.lse{letter-spacing:142.865280px;}
.ls0{letter-spacing:199.362720px;}
.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;}
}
.ws7{word-spacing:-18.305520px;}
.ws5{word-spacing:-17.026680px;}
.ws9{word-spacing:-16.819680px;}
.ws0{word-spacing:-16.666560px;}
.ws2{word-spacing:-16.613280px;}
.ws6{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.513080px;}
.ws1{word-spacing:-16.506480px;}
.ws4{word-spacing:-16.353480px;}
.ws3{word-spacing:0.000000px;}
._1b{margin-left:-12.119520px;}
._b{margin-left:-3.281280px;}
._5{margin-left:-2.084160px;}
._0{margin-left:-1.029120px;}
._3{width:1.121280px;}
._11{width:2.429760px;}
._1a{width:3.642000px;}
._22{width:5.001120px;}
._6{width:6.027840px;}
._7{width:7.490400px;}
._12{width:9.135840px;}
._10{width:13.941120px;}
._1{width:14.970240px;}
._2{width:16.131840px;}
._4{width:17.257920px;}
._21{width:18.840480px;}
._27{width:21.660480px;}
._28{width:22.754400px;}
._13{width:24.239040px;}
._14{width:25.436160px;}
._c{width:26.827200px;}
._d{width:28.345920px;}
._15{width:31.520160px;}
._e{width:32.523840px;}
._f{width:34.276800px;}
._26{width:35.433120px;}
._1e{width:37.613760px;}
._20{width:39.495840px;}
._16{width:41.760480px;}
._1c{width:46.200480px;}
._23{width:47.520480px;}
._18{width:52.299120px;}
._17{width:55.267680px;}
._1d{width:61.320480px;}
._24{width:65.640480px;}
._1f{width:68.400480px;}
._9{width:91.525920px;}
._8{width:92.603520px;}
._25{width:145.613760px;}
._a{width:197.561280px;}
._19{width:199.566720px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yfc{bottom:3.234000px;}
.y1e{bottom:3.240000px;}
.y13b{bottom:3.285000px;}
.y118{bottom:5.760000px;}
.y127{bottom:5.940000px;}
.y2a1{bottom:10.980000px;}
.y1ec{bottom:13.680000px;}
.y169{bottom:16.020000px;}
.y1bb{bottom:16.740000px;}
.y32{bottom:17.460000px;}
.y2bd{bottom:17.634000px;}
.y139{bottom:17.640000px;}
.y1c9{bottom:18.360000px;}
.y227{bottom:18.540000px;}
.y22b{bottom:18.720000px;}
.y1a8{bottom:19.080000px;}
.ye4{bottom:20.160000px;}
.y86{bottom:20.334000px;}
.y1d{bottom:20.340000px;}
.y9b{bottom:20.370000px;}
.yf9{bottom:20.385000px;}
.yc5{bottom:20.514000px;}
.y20{bottom:20.520000px;}
.ybf{bottom:20.550000px;}
.y52{bottom:20.565000px;}
.y1a0{bottom:24.120000px;}
.y120{bottom:24.300000px;}
.y117{bottom:25.554000px;}
.y11e{bottom:25.560000px;}
.y173{bottom:25.590000px;}
.y1cd{bottom:25.605000px;}
.y126{bottom:25.740000px;}
.y17f{bottom:25.785000px;}
.y121{bottom:28.260000px;}
.y2a0{bottom:30.780000px;}
.y1e2{bottom:30.960000px;}
.y264{bottom:31.005000px;}
.y219{bottom:32.760000px;}
.y25e{bottom:33.300000px;}
.y1ba{bottom:34.020000px;}
.y226{bottom:35.820000px;}
.y22a{bottom:36.000000px;}
.y1a7{bottom:36.360000px;}
.ye3{bottom:37.260000px;}
.y70{bottom:37.614000px;}
.y1c{bottom:37.620000px;}
.y47{bottom:37.650000px;}
.y76{bottom:37.665000px;}
.yc4{bottom:37.794000px;}
.y2c{bottom:37.800000px;}
.y3e{bottom:37.830000px;}
.y51{bottom:37.845000px;}
.y2c9{bottom:40.320000px;}
.y21f{bottom:42.300000px;}
.y19f{bottom:43.920000px;}
.y11f{bottom:44.100000px;}
.y160{bottom:45.360000px;}
.y172{bottom:45.390000px;}
.y158{bottom:45.405000px;}
.y116{bottom:45.534000px;}
.y11d{bottom:45.540000px;}
.y12c{bottom:45.570000px;}
.y17e{bottom:45.585000px;}
.y1e1{bottom:48.240000px;}
.y263{bottom:48.285000px;}
.y218{bottom:50.040000px;}
.y29f{bottom:50.580000px;}
.y2a4{bottom:50.625000px;}
.y1b9{bottom:51.300000px;}
.y222{bottom:53.100000px;}
.y131{bottom:53.310000px;}
.y6f{bottom:54.894000px;}
.y1b{bottom:54.900000px;}
.y46{bottom:54.930000px;}
.y6c{bottom:54.945000px;}
.yd5{bottom:55.074000px;}
.y2b{bottom:55.080000px;}
.y3d{bottom:55.110000px;}
.y50{bottom:55.125000px;}
.y2{bottom:57.420000px;}
.y21e{bottom:59.580000px;}
.y2c8{bottom:60.120000px;}
.y1c5{bottom:65.154000px;}
.y15f{bottom:65.160000px;}
.y157{bottom:65.205000px;}
.y115{bottom:65.334000px;}
.y125{bottom:65.340000px;}
.y12b{bottom:65.370000px;}
.y17d{bottom:65.385000px;}
.y1e0{bottom:65.520000px;}
.y262{bottom:65.565000px;}
.y225{bottom:70.200000px;}
.y221{bottom:70.380000px;}
.y22d{bottom:70.410000px;}
.y2a3{bottom:70.425000px;}
.y130{bottom:70.590000px;}
.y44{bottom:72.174000px;}
.y2a{bottom:72.180000px;}
.y72{bottom:72.210000px;}
.y6b{bottom:72.225000px;}
.ya5{bottom:72.354000px;}
.y3a{bottom:72.360000px;}
.yce{bottom:72.390000px;}
.y4f{bottom:72.405000px;}
.y19a{bottom:74.700000px;}
.y140{bottom:74.880000px;}
.y21d{bottom:76.905000px;}
.y2c7{bottom:77.430000px;}
.y12e{bottom:82.470000px;}
.y1eb{bottom:82.620000px;}
.y1df{bottom:82.800000px;}
.y261{bottom:82.845000px;}
.y114{bottom:85.134000px;}
.y124{bottom:85.140000px;}
.y12a{bottom:85.170000px;}
.y156{bottom:85.185000px;}
.y123{bottom:85.320000px;}
.y12f{bottom:87.870000px;}
.y5f{bottom:89.454000px;}
.y29{bottom:89.460000px;}
.y7f{bottom:89.490000px;}
.y4e{bottom:89.505000px;}
.ya4{bottom:89.634000px;}
.y39{bottom:89.640000px;}
.y10d{bottom:89.670000px;}
.y101{bottom:89.685000px;}
.y28b{bottom:90.216000px;}
.y1d0{bottom:90.396000px;}
.y20c{bottom:90.576000px;}
.y209{bottom:90.756000px;}
.y119{bottom:90.936000px;}
.y43{bottom:91.296000px;}
.y13f{bottom:92.160000px;}
.y178{bottom:92.196000px;}
.y2b5{bottom:92.556000px;}
.ya3{bottom:92.736000px;}
.y266{bottom:93.096000px;}
.yc6{bottom:93.636000px;}
.y21c{bottom:94.005000px;}
.y26d{bottom:94.536000px;}
.y199{bottom:94.680000px;}
.y2c6{bottom:94.710000px;}
.ydd{bottom:95.076000px;}
.y193{bottom:95.796000px;}
.y168{bottom:96.156000px;}
.yd4{bottom:96.516000px;}
.y148{bottom:97.056000px;}
.yfd{bottom:97.236000px;}
.y2d2{bottom:98.136000px;}
.y1f3{bottom:98.856000px;}
.y1ea{bottom:99.900000px;}
.y1de{bottom:100.080000px;}
.y1e6{bottom:100.125000px;}
.y21{bottom:102.096000px;}
.y134{bottom:103.176000px;}
.y23c{bottom:103.536000px;}
.y12d{bottom:103.710000px;}
.y257{bottom:104.796000px;}
.y113{bottom:104.934000px;}
.y16c{bottom:104.970000px;}
.y155{bottom:104.985000px;}
.y14e{bottom:105.120000px;}
.y129{bottom:105.150000px;}
.y142{bottom:105.300000px;}
.y1f4{bottom:106.554000px;}
.y240{bottom:106.560000px;}
.y1b6{bottom:106.596000px;}
.y191{bottom:106.605000px;}
.y5e{bottom:106.734000px;}
.y28{bottom:106.740000px;}
.y7e{bottom:106.770000px;}
.y2f{bottom:106.785000px;}
.y214{bottom:107.136000px;}
.y99{bottom:107.856000px;}
.y13e{bottom:109.260000px;}
.yef{bottom:110.016000px;}
.y2c5{bottom:111.990000px;}
.ye7{bottom:113.436000px;}
.y198{bottom:114.480000px;}
.y247{bottom:114.516000px;}
.y2b4{bottom:115.596000px;}
.y1e9{bottom:117.180000px;}
.y1dd{bottom:117.210000px;}
.y1e5{bottom:117.405000px;}
.y293{bottom:117.576000px;}
.y15c{bottom:117.936000px;}
.y2dc{bottom:118.476000px;}
.y15a{bottom:123.345000px;}
.y1c0{bottom:123.510000px;}
.y181{bottom:123.525000px;}
.y85{bottom:123.834000px;}
.yb7{bottom:123.840000px;}
.yb2{bottom:123.870000px;}
.y82{bottom:123.885000px;}
.y5d{bottom:124.014000px;}
.y27{bottom:124.020000px;}
.y7d{bottom:124.050000px;}
.y2e{bottom:124.065000px;}
.y112{bottom:124.734000px;}
.y16b{bottom:124.770000px;}
.y154{bottom:124.785000px;}
.y14d{bottom:124.920000px;}
.y1be{bottom:124.950000px;}
.y17c{bottom:124.965000px;}
.y141{bottom:125.100000px;}
.y6e{bottom:125.856000px;}
.y13d{bottom:126.540000px;}
.y2a5{bottom:127.296000px;}
.y1da{bottom:127.656000px;}
.y24f{bottom:128.736000px;}
.y1a1{bottom:133.776000px;}
.y197{bottom:134.280000px;}
.y1e8{bottom:134.460000px;}
.y1dc{bottom:134.490000px;}
.y1e4{bottom:134.685000px;}
.y1fc{bottom:137.736000px;}
.y1cf{bottom:138.456000px;}
.y84{bottom:141.114000px;}
.y9e{bottom:141.120000px;}
.y7c{bottom:141.150000px;}
.yaf{bottom:141.165000px;}
.y5c{bottom:141.294000px;}
.y26{bottom:141.300000px;}
.ya8{bottom:141.330000px;}
.y4d{bottom:141.345000px;}
.y110{bottom:141.876000px;}
.y277{bottom:142.236000px;}
.y83{bottom:143.136000px;}
.y159{bottom:143.145000px;}
.y1bf{bottom:143.310000px;}
.y180{bottom:143.325000px;}
.y167{bottom:144.036000px;}
.yc3{bottom:144.576000px;}
.y153{bottom:144.585000px;}
.y111{bottom:144.714000px;}
.y14c{bottom:144.720000px;}
.y1bd{bottom:144.750000px;}
.y17b{bottom:144.765000px;}
.yfb{bottom:148.356000px;}
.y23b{bottom:151.590000px;}
.y1f{bottom:153.030000px;}
.y256{bottom:155.730000px;}
.y282{bottom:158.070000px;}
.y137{bottom:158.394000px;}
.y58{bottom:158.400000px;}
.y7b{bottom:158.430000px;}
.yab{bottom:158.445000px;}
.y5b{bottom:158.574000px;}
.y25{bottom:158.580000px;}
.yc8{bottom:158.610000px;}
.y4c{bottom:158.625000px;}
.y98{bottom:158.790000px;}
.ydc{bottom:163.290000px;}
.y14b{bottom:164.520000px;}
.y5a{bottom:175.674000px;}
.y24{bottom:175.680000px;}
.y62{bottom:175.710000px;}
.ycb{bottom:175.725000px;}
.ye9{bottom:175.854000px;}
.y67{bottom:175.860000px;}
.y10c{bottom:175.890000px;}
.y4b{bottom:175.905000px;}
.yd3{bottom:182.010000px;}
.y1ae{bottom:182.730000px;}
.y2bc{bottom:185.790000px;}
.y15b{bottom:186.150000px;}
.yac{bottom:189.030000px;}
.y1c4{bottom:191.910000px;}
.ye8{bottom:192.954000px;}
.y23{bottom:192.960000px;}
.y61{bottom:192.990000px;}
.y4a{bottom:193.005000px;}
.y100{bottom:193.185000px;}
.y42{bottom:194.070000px;}
.yfa{bottom:199.290000px;}
.y147{bottom:199.650000px;}
.y2b3{bottom:201.090000px;}
.y229{bottom:201.450000px;}
.y28a{bottom:202.170000px;}
.y1a{bottom:204.150000px;}
.y1ce{bottom:206.670000px;}
.y2b0{bottom:206.850000px;}
.y29c{bottom:210.060000px;}
.yb1{bottom:210.090000px;}
.y136{bottom:210.234000px;}
.y57{bottom:210.240000px;}
.y7a{bottom:210.270000px;}
.y49{bottom:210.285000px;}
.yaa{bottom:212.070000px;}
.y24e{bottom:214.230000px;}
.y289{bottom:225.210000px;}
.y215{bottom:227.334000px;}
.y29b{bottom:227.340000px;}
.y79{bottom:227.370000px;}
.y27e{bottom:227.385000px;}
.y135{bottom:227.514000px;}
.y211{bottom:227.520000px;}
.y1a5{bottom:227.550000px;}
.y66{bottom:227.565000px;}
.y6d{bottom:228.630000px;}
.y265{bottom:230.430000px;}
.y1ad{bottom:230.790000px;}
.y192{bottom:233.130000px;}
.y188{bottom:233.310000px;}
.y2db{bottom:238.530000px;}
.y255{bottom:241.230000px;}
.y281{bottom:243.570000px;}
.y2df{bottom:244.290000px;}
.y29a{bottom:244.620000px;}
.y78{bottom:244.650000px;}
.y27d{bottom:244.665000px;}
.y210{bottom:244.800000px;}
.y1a4{bottom:244.830000px;}
.y271{bottom:244.839000px;}
.y65{bottom:244.845000px;}
.y41{bottom:245.010000px;}
.y177{bottom:246.810000px;}
.ya2{bottom:247.350000px;}
.y19e{bottom:249.510000px;}
.y2d1{bottom:252.570000px;}
.y292{bottom:254.730000px;}
.y1fb{bottom:257.790000px;}
.y1b5{bottom:261.030000px;}
.y97{bottom:261.570000px;}
.y20f{bottom:261.930000px;}
.y270{bottom:261.939000px;}
.y27c{bottom:261.945000px;}
.y2da{bottom:262.110000px;}
.y64{bottom:262.125000px;}
.y1c3{bottom:267.870000px;}
.y1f2{bottom:270.570000px;}
.y2bb{bottom:271.290000px;}
.y2b2{bottom:277.050000px;}
.y20e{bottom:279.210000px;}
.y26f{bottom:279.219000px;}
.y27b{bottom:279.225000px;}
.y63{bottom:279.405000px;}
.yb5{bottom:280.290000px;}
.ydb{bottom:283.350000px;}
.y187{bottom:284.430000px;}
.yd2{bottom:284.790000px;}
.y19{bottom:285.330000px;}
.y254{bottom:287.850000px;}
.y176{bottom:294.690000px;}
.y238{bottom:296.490000px;}
.y26e{bottom:296.499000px;}
.y246{bottom:296.505000px;}
.y6a{bottom:296.850000px;}
.y2cb{bottom:297.210000px;}
.y59{bottom:297.570000px;}
.yc2{bottom:299.010000px;}
.y1d9{bottom:299.370000px;}
.y24d{bottom:299.730000px;}
.y228{bottom:302.430000px;}
.y18{bottom:302.610000px;}
.y291{bottom:302.790000px;}
.y2d0{bottom:303.510000px;}
.y152{bottom:306.210000px;}
.y1b4{bottom:312.150000px;}
.y299{bottom:313.605000px;}
.y237{bottom:313.770000px;}
.y245{bottom:313.785000px;}
.y208{bottom:314.310000px;}
.y81{bottom:314.850000px;}
.y166{bottom:315.750000px;}
.y2a2{bottom:316.290000px;}
.y10f{bottom:317.010000px;}
.y190{bottom:318.630000px;}
.yf8{bottom:319.350000px;}
.y146{bottom:319.710000px;}
.y17{bottom:319.890000px;}
.y288{bottom:320.970000px;}
.y1f1{bottom:321.510000px;}
.y19d{bottom:325.470000px;}
.y1cc{bottom:326.730000px;}
.y298{bottom:330.885000px;}
.y27a{bottom:330.915000px;}
.y236{bottom:331.050000px;}
.y244{bottom:331.065000px;}
.y260{bottom:331.230000px;}
.y1c2{bottom:336.090000px;}
.y16{bottom:337.035000px;}
.y23a{bottom:340.635000px;}
.y276{bottom:344.775000px;}
.yc1{bottom:347.115000px;}
.y2b1{bottom:347.835000px;}
.y235{bottom:348.150000px;}
.y297{bottom:348.165000px;}
.y279{bottom:348.195000px;}
.y243{bottom:348.345000px;}
.ya1{bottom:350.175000px;}
.y2a8{bottom:352.515000px;}
.yd1{bottom:353.055000px;}
.y15{bottom:354.315000px;}
.y2ba{bottom:356.835000px;}
.y133{bottom:361.155000px;}
.y2de{bottom:364.395000px;}
.y20b{bottom:365.115000px;}
.y234{bottom:365.430000px;}
.y242{bottom:365.625000px;}
.y56{bottom:365.835000px;}
.y1ac{bottom:367.995000px;}
.y2cf{bottom:371.775000px;}
.y1f0{bottom:372.495000px;}
.y253{bottom:373.395000px;}
.y14{bottom:374.655000px;}
.y207{bottom:381.315000px;}
.y40{bottom:382.395000px;}
.y233{bottom:382.710000px;}
.y165{bottom:384.195000px;}
.ye6{bottom:385.095000px;}
.y24c{bottom:385.275000px;}
.y145{bottom:387.975000px;}
.y290{bottom:388.335000px;}
.y239{bottom:388.515000px;}
.y19c{bottom:393.735000px;}
.y13{bottom:396.435000px;}
.y287{bottom:397.155000px;}
.y96{bottom:398.775000px;}
.y69{bottom:399.675000px;}
.yc9{bottom:400.395000px;}
.ya9{bottom:401.115000px;}
.y1d8{bottom:402.195000px;}
.y206{bottom:403.095000px;}
.y186{bottom:404.355000px;}
.y1c1{bottom:404.535000px;}
.y224{bottom:405.255000px;}
.y2af{bottom:412.995000px;}
.y175{bottom:414.795000px;}
.y29e{bottom:417.135000px;}
.y12{bottom:418.395000px;}
.yd0{bottom:421.275000px;}
.y26c{bottom:421.455000px;}
.yf7{bottom:421.995000px;}
.y1ef{bottom:423.615000px;}
.y205{bottom:425.055000px;}
.y1fa{bottom:429.555000px;}
.y24b{bottom:431.895000px;}
.y164{bottom:432.075000px;}
.yb4{bottom:434.775000px;}
.ya0{bottom:435.495000px;}
.yee{bottom:436.395000px;}
.y232{bottom:436.575000px;}
.yda{bottom:437.835000px;}
.y2a7{bottom:438.015000px;}
.y11{bottom:440.175000px;}
.y2b9{bottom:442.335000px;}
.y2e2{bottom:444.135000px;}
.y25f{bottom:444.495000px;}
.y204{bottom:446.835000px;}
.yc0{bottom:449.895000px;}
.y1d7{bottom:453.135000px;}
.y18f{bottom:455.835000px;}
.y144{bottom:456.195000px;}
.y109{bottom:456.555000px;}
.y252{bottom:458.895000px;}
.y2ae{bottom:461.055000px;}
.y2e1{bottom:461.235000px;}
.y10{bottom:461.955000px;}
.y174{bottom:465.735000px;}
.y68{bottom:467.895000px;}
.y203{bottom:468.615000px;}
.y2ca{bottom:468.975000px;}
.y80{bottom:469.335000px;}
.y1ee{bottom:471.495000px;}
.y286{bottom:473.115000px;}
.y28f{bottom:473.835000px;}
.y1f9{bottom:480.495000px;}
.y151{bottom:481.395000px;}
.y2a6{bottom:482.655000px;}
.yf{bottom:483.735000px;}
.y2e0{bottom:484.275000px;}
.y3f{bottom:484.995000px;}
.yb3{bottom:485.895000px;}
.y2ce{bottom:486.615000px;}
.yed{bottom:487.335000px;}
.y104{bottom:489.495000px;}
.yf6{bottom:490.395000px;}
.y2d9{bottom:496.515000px;}
.y1d6{bottom:501.195000px;}
.y1cb{bottom:501.915000px;}
.ye{bottom:505.695000px;}
.y223{bottom:506.055000px;}
.ycf{bottom:506.775000px;}
.y26b{bottom:506.955000px;}
.y202{bottom:509.115000px;}
.y132{bottom:515.595000px;}
.y275{bottom:516.495000px;}
.y29d{bottom:518.115000px;}
.y280{bottom:518.835000px;}
.y185{bottom:520.095000px;}
.ye5{bottom:522.255000px;}
.y143{bottom:524.415000px;}
.yd{bottom:527.475000px;}
.y2b8{bottom:527.835000px;}
.y201{bottom:529.455000px;}
.y19b{bottom:530.175000px;}
.y1f8{bottom:531.615000px;}
.y95{bottom:536.115000px;}
.y213{bottom:536.835000px;}
.y2c4{bottom:537.195000px;}
.yc7{bottom:537.555000px;}
.y1ab{bottom:539.895000px;}
.y10e{bottom:540.615000px;}
.y285{bottom:541.335000px;}
.y25d{bottom:547.275000px;}
.y1b3{bottom:547.815000px;}
.yc{bottom:549.255000px;}
.y200{bottom:551.415000px;}
.y26a{bottom:551.595000px;}
.y2cd{bottom:554.835000px;}
.yf5{bottom:558.615000px;}
.y28e{bottom:559.335000px;}
.y251{bottom:561.495000px;}
.y274{bottom:564.555000px;}
.y163{bottom:569.415000px;}
.y1ff{bottom:570.135000px;}
.y3c{bottom:570.495000px;}
.yb{bottom:571.035000px;}
.yb0{bottom:571.395000px;}
.y128{bottom:571.755000px;}
.y77{bottom:572.115000px;}
.y269{bottom:574.635000px;}
.y2b7{bottom:575.895000px;}
.y108{bottom:576.615000px;}
.y1ca{bottom:577.875000px;}
.y241{bottom:578.775000px;}
.y1f7{bottom:579.495000px;}
.y94{bottom:582.735000px;}
.y171{bottom:585.795000px;}
.y24a{bottom:586.335000px;}
.ybe{bottom:587.055000px;}
.y10b{bottom:588.495000px;}
.y1aa{bottom:590.835000px;}
.ycd{bottom:592.275000px;}
.ya{bottom:592.815000px;}
.y18e{bottom:592.995000px;}
.y184{bottom:596.055000px;}
.y93{bottom:600.015000px;}
.y55{bottom:606.525000px;}
.y9f{bottom:607.425000px;}
.y1ed{bottom:608.865000px;}
.y103{bottom:609.585000px;}
.y25c{bottom:611.025000px;}
.y9{bottom:614.805000px;}
.y92{bottom:617.325000px;}
.y296{bottom:620.925000px;}
.y20a{bottom:622.365000px;}
.y1b2{bottom:623.805000px;}
.yf4{bottom:626.865000px;}
.y23f{bottom:629.925000px;}
.y91{bottom:634.605000px;}
.y8{bottom:636.585000px;}
.y1d5{bottom:638.385000px;}
.y28d{bottom:644.865000px;}
.y196{bottom:650.265000px;}
.y90{bottom:651.885000px;}
.y3b{bottom:656.025000px;}
.y54{bottom:657.645000px;}
.y7{bottom:658.365000px;}
.yd9{bottom:661.425000px;}
.y107{bottom:662.145000px;}
.y183{bottom:664.305000px;}
.y2ad{bottom:667.365000px;}
.y249{bottom:667.545000px;}
.y8f{bottom:669.165000px;}
.y25b{bottom:675.105000px;}
.ya7{bottom:675.645000px;}
.y268{bottom:677.445000px;}
.y2c3{bottom:679.605000px;}
.y6{bottom:680.145000px;}
.y8e{bottom:686.265000px;}
.y248{bottom:690.585000px;}
.y1b1{bottom:692.025000px;}
.y28c{bottom:692.925000px;}
.ye2{bottom:694.005000px;}
.y1e7{bottom:694.365000px;}
.y220{bottom:695.085000px;}
.y25a{bottom:698.145000px;}
.y5{bottom:699.225000px;}
.y1bc{bottom:699.585000px;}
.y170{bottom:701.385000px;}
.y8d{bottom:703.545000px;}
.y150{bottom:704.805000px;}
.y122{bottom:707.325000px;}
.yd8{bottom:709.305000px;}
.yec{bottom:710.025000px;}
.y1a9{bottom:710.925000px;}
.ycc{bottom:712.365000px;}
.y13c{bottom:712.725000px;}
.y106{bottom:713.085000px;}
.y2ac{bottom:715.245000px;}
.y8c{bottom:720.825000px;}
.y38{bottom:724.245000px;}
.y212{bottom:725.145000px;}
.y53{bottom:725.865000px;}
.y18d{bottom:730.365000px;}
.y182{bottom:732.705000px;}
.y273{bottom:736.305000px;}
.y4{bottom:736.845000px;}
.ybd{bottom:737.385000px;}
.y8b{bottom:738.105000px;}
.ya6{bottom:743.865000px;}
.yf3{bottom:746.745000px;}
.y1fe{bottom:747.645000px;}
.y14f{bottom:752.865000px;}
.ybc{bottom:754.665000px;}
.y8a{bottom:755.385000px;}
.y162{bottom:758.445000px;}
.y27f{bottom:759.525000px;}
.y1b0{bottom:760.425000px;}
.y105{bottom:761.145000px;}
.ye1{bottom:761.865000px;}
.y102{bottom:764.025000px;}
.y23e{bottom:767.085000px;}
.ybb{bottom:771.765000px;}
.y2d{bottom:773.025000px;}
.y1d4{bottom:775.545000px;}
.y16f{bottom:777.525000px;}
.y89{bottom:778.245000px;}
.y2b6{bottom:781.305000px;}
.y272{bottom:784.365000px;}
.yba{bottom:789.045000px;}
.y21b{bottom:795.885000px;}
.y267{bottom:797.505000px;}
.y259{bottom:800.745000px;}
.y1c8{bottom:801.465000px;}
.y2c2{bottom:803.085000px;}
.yb9{bottom:806.325000px;}
.y161{bottom:809.385000px;}
.y278{bottom:810.645000px;}
.y10a{bottom:812.085000px;}
.y250{bottom:813.525000px;}
.y195{bottom:815.145000px;}
.y11c{bottom:823.065000px;}
.y2c1{bottom:824.865000px;}
.y1d3{bottom:826.665000px;}
.yb8{bottom:829.365000px;}
.y1a6{bottom:830.805000px;}
.yff{bottom:832.245000px;}
.y2d8{bottom:839.985000px;}
.y37{bottom:844.305000px;}
.y16e{bottom:845.745000px;}
.yae{bottom:846.645000px;}
.y75{bottom:847.365000px;}
.y231{bottom:849.705000px;}
.y18c{bottom:850.245000px;}
.y17a{bottom:852.585000px;}
.y1e3{bottom:859.245000px;}
.y48{bottom:863.025000px;}
.y1a3{bottom:863.745000px;}
.y2c0{bottom:865.365000px;}
.yca{bottom:866.805000px;}
.y1fd{bottom:867.525000px;}
.y13a{bottom:869.865000px;}
.y1b8{bottom:871.350000px;}
.y20d{bottom:879.630000px;}
.y1af{bottom:880.350000px;}
.y88{bottom:881.070000px;}
.ye0{bottom:881.790000px;}
.y2bf{bottom:885.750000px;}
.y14a{bottom:890.070000px;}
.y36{bottom:892.410000px;}
.y2cc{bottom:897.630000px;}
.y9d{bottom:898.350000px;}
.y11b{bottom:899.070000px;}
.yf2{bottom:901.410000px;}
.y2ab{bottom:904.290000px;}
.y2be{bottom:907.710000px;}
.y16d{bottom:914.010000px;}
.yeb{bottom:914.910000px;}
.y230{bottom:918.150000px;}
.y21a{bottom:920.490000px;}
.y258{bottom:920.850000px;}
.y1f6{bottom:922.290000px;}
.y2d7{bottom:922.650000px;}
.y22{bottom:927.150000px;}
.y15e{bottom:929.490000px;}
.yb6{bottom:932.190000px;}
.yd7{bottom:932.910000px;}
.y284{bottom:935.070000px;}
.y18b{bottom:935.790000px;}
.y2d6{bottom:942.810000px;}
.y35{bottom:943.350000px;}
.y1d2{bottom:946.590000px;}
.y87{bottom:949.290000px;}
.y74{bottom:950.190000px;}
.y2aa{bottom:952.350000px;}
.y1b7{bottom:953.070000px;}
.y2d5{bottom:961.530000px;}
.y22f{bottom:962.790000px;}
.y60{bottom:965.850000px;}
.y11a{bottom:967.290000px;}
.y1c7{bottom:970.350000px;}
.y1f5{bottom:973.410000px;}
.y2d4{bottom:978.810000px;}
.y283{bottom:983.130000px;}
.y2dd{bottom:983.850000px;}
.ydf{bottom:984.570000px;}
.y22e{bottom:985.650000px;}
.y23d{bottom:986.910000px;}
.y34{bottom:991.410000px;}
.y295{bottom:999.690000px;}
.y2a9{bottom:1000.410000px;}
.y9c{bottom:1001.130000px;}
.y2d3{bottom:1001.850000px;}
.y18a{bottom:1004.190000px;}
.y73{bottom:1018.410000px;}
.y1c6{bottom:1021.290000px;}
.y217{bottom:1023.270000px;}
.y1db{bottom:1024.350000px;}
.y179{bottom:1027.770000px;}
.y16a{bottom:1034.070000px;}
.yea{bottom:1034.790000px;}
.yad{bottom:1035.690000px;}
.y194{bottom:1038.570000px;}
.y33{bottom:1039.290000px;}
.y15d{bottom:1045.050000px;}
.y189{bottom:1052.070000px;}
.yde{bottom:1052.790000px;}
.yfe{bottom:1055.850000px;}
.y1d1{bottom:1062.330000px;}
.y294{bottom:1063.590000px;}
.y1a2{bottom:1069.350000px;}
.yf1{bottom:1073.130000px;}
.y149{bottom:1085.190000px;}
.y71{bottom:1086.630000px;}
.yd6{bottom:1087.350000px;}
.y22c{bottom:1088.430000px;}
.y31{bottom:1090.410000px;}
.y138{bottom:1093.290000px;}
.y45{bottom:1103.910000px;}
.y9a{bottom:1121.190000px;}
.y30{bottom:1138.320000px;}
.yf0{bottom:1141.380000px;}
.y3{bottom:1166.400000px;}
.y216{bottom:1167.840000px;}
.y1{bottom:1193.400000px;}
.h4e{height:30.060000px;}
.h9{height:31.500000px;}
.hb{height:31.536000px;}
.h42{height:32.400000px;}
.ha{height:34.380000px;}
.h20{height:34.416000px;}
.h6{height:34.560000px;}
.h45{height:34.596000px;}
.h34{height:39.600000px;}
.h30{height:39.780000px;}
.h50{height:47.340000px;}
.h4{height:48.418594px;}
.h29{height:51.300000px;}
.h15{height:51.660000px;}
.h17{height:51.696000px;}
.hd{height:51.840000px;}
.h38{height:51.876000px;}
.h3d{height:59.400000px;}
.h5a{height:59.436000px;}
.h37{height:59.580000px;}
.h2d{height:59.616000px;}
.h3{height:62.327813px;}
.h47{height:64.080000px;}
.h40{height:65.340000px;}
.h5d{height:65.884219px;}
.h5{height:68.940000px;}
.h12{height:68.976000px;}
.h2{height:69.086250px;}
.hf{height:69.120000px;}
.he{height:69.156000px;}
.h5b{height:75.093750px;}
.h41{height:79.200000px;}
.h55{height:79.380000px;}
.h4a{height:84.240000px;}
.h52{height:84.276000px;}
.h49{height:84.420000px;}
.h4b{height:84.456000px;}
.h10{height:86.220000px;}
.h1b{height:86.256000px;}
.h1f{height:86.400000px;}
.h4f{height:86.436000px;}
.h51{height:96.876000px;}
.h2e{height:99.180000px;}
.h3a{height:99.216000px;}
.h3f{height:103.320000px;}
.h33{height:103.356000px;}
.hc{height:103.500000px;}
.h28{height:103.536000px;}
.h48{height:108.036000px;}
.h2f{height:119.196000px;}
.h27{height:120.600000px;}
.h2b{height:120.636000px;}
.h14{height:120.780000px;}
.h11{height:120.816000px;}
.h5c{height:126.036000px;}
.h26{height:137.880000px;}
.h8{height:137.916000px;}
.h1e{height:138.060000px;}
.h25{height:138.096000px;}
.h39{height:138.816000px;}
.h32{height:140.580000px;}
.h3c{height:148.320000px;}
.h44{height:148.500000px;}
.h43{height:148.536000px;}
.h1d{height:155.160000px;}
.h2a{height:155.190000px;}
.h22{height:155.340000px;}
.h46{height:155.370000px;}
.h36{height:158.610000px;}
.h2c{height:158.760000px;}
.h3b{height:158.790000px;}
.h21{height:172.440000px;}
.h24{height:172.470000px;}
.h58{height:172.650000px;}
.h35{height:178.560000px;}
.h18{height:189.720000px;}
.h23{height:189.750000px;}
.h7{height:207.000000px;}
.h19{height:207.030000px;}
.h59{height:224.100000px;}
.h16{height:224.280000px;}
.h13{height:224.310000px;}
.h31{height:241.410000px;}
.h57{height:241.560000px;}
.h1c{height:258.690000px;}
.h3e{height:258.870000px;}
.h5e{height:275.970000px;}
.h1a{height:293.250000px;}
.h53{height:310.530000px;}
.h5f{height:344.910000px;}
.h60{height:345.090000px;}
.h56{height:362.190000px;}
.h54{height:362.235000px;}
.h4d{height:379.650000px;}
.h4c{height:396.750000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:44.640000px;}
.w28{width:48.096000px;}
.w16{width:51.336000px;}
.w2c{width:51.696000px;}
.w10{width:58.176000px;}
.w5d{width:59.220000px;}
.w62{width:60.480000px;}
.w30{width:62.316000px;}
.w53{width:64.980000px;}
.w1c{width:66.096000px;}
.w25{width:66.456000px;}
.w4e{width:71.676000px;}
.w3c{width:72.036000px;}
.w57{width:72.756000px;}
.w35{width:73.836000px;}
.w40{width:74.916000px;}
.w47{width:89.676000px;}
.w5c{width:108.900000px;}
.w5a{width:116.640000px;}
.w64{width:117.720000px;}
.w51{width:120.060000px;}
.w6{width:122.220000px;}
.w60{width:127.980000px;}
.w2f{width:129.060000px;}
.w3f{width:143.460000px;}
.w7{width:146.340000px;}
.w1f{width:149.760000px;}
.w2b{width:157.170000px;}
.w13{width:158.040000px;}
.w46{width:163.800000px;}
.w19{width:168.330000px;}
.w38{width:178.560000px;}
.w3d{width:199.110000px;}
.w18{width:200.010000px;}
.w1e{width:207.795000px;}
.w24{width:208.335000px;}
.w23{width:208.875000px;}
.w37{width:227.010000px;}
.w63{width:236.010000px;}
.w49{width:236.055000px;}
.w4c{width:236.955000px;}
.w29{width:241.590000px;}
.w48{width:252.750000px;}
.w4b{width:253.290000px;}
.w12{width:258.510000px;}
.w5{width:258.555000px;}
.w50{width:259.635000px;}
.w59{width:262.875000px;}
.w5e{width:266.250000px;}
.w5f{width:267.375000px;}
.w33{width:267.555000px;}
.w44{width:268.455000px;}
.w11{width:268.590000px;}
.w55{width:269.670000px;}
.w56{width:270.030000px;}
.w42{width:270.750000px;}
.w5b{width:270.795000px;}
.w43{width:271.290000px;}
.w2e{width:272.235000px;}
.wb{width:276.330000px;}
.w36{width:284.250000px;}
.w2a{width:291.090000px;}
.w58{width:292.170000px;}
.w4f{width:293.430000px;}
.w32{width:300.990000px;}
.w2d{width:306.930000px;}
.w1d{width:314.670000px;}
.w22{width:315.030000px;}
.w26{width:315.570000px;}
.w4{width:322.590000px;}
.w3e{width:327.675000px;}
.we{width:328.215000px;}
.w17{width:329.250000px;}
.w1a{width:369.795000px;}
.wf{width:418.035000px;}
.w20{width:523.905000px;}
.w14{width:528.555000px;}
.w8{width:530.025000px;}
.w45{width:581.550000px;}
.wc{width:582.585000px;}
.w3a{width:588.165000px;}
.w21{width:591.450000px;}
.w52{width:627.630000px;}
.w4a{width:655.485000px;}
.w54{width:669.165000px;}
.w41{width:670.245000px;}
.w9{width:677.445000px;}
.w39{width:692.745000px;}
.w31{width:700.485000px;}
.w3{width:706.245000px;}
.w61{width:725.325000px;}
.w27{width:742.290000px;}
.w1b{width:742.830000px;}
.w3b{width:746.790000px;}
.wd{width:747.690000px;}
.w4d{width:749.130000px;}
.w15{width:753.450000px;}
.w34{width:768.210000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x27{left:-19.440000px;}
.x26{left:-2.520000px;}
.x14{left:-1.080000px;}
.x0{left:0.000000px;}
.x24{left:1.080000px;}
.x2b{left:3.060000px;}
.x1d{left:4.320000px;}
.x4{left:6.840000px;}
.x2e{left:8.100000px;}
.x47{left:9.900000px;}
.x1e{left:12.060000px;}
.xf{left:13.680000px;}
.x46{left:15.660000px;}
.x2a{left:17.670000px;}
.x2f{left:18.750000px;}
.x2c{left:20.370000px;}
.x41{left:23.400000px;}
.x17{left:25.920000px;}
.x16{left:27.180000px;}
.x2d{left:28.650000px;}
.x15{left:30.780000px;}
.x7{left:33.870000px;}
.x33{left:35.145000px;}
.x48{left:36.930000px;}
.x28{left:39.450000px;}
.x18{left:40.680000px;}
.xa{left:43.065000px;}
.x39{left:47.370000px;}
.x4b{left:54.030000px;}
.x29{left:55.110000px;}
.x53{left:58.680000px;}
.x25{left:60.870000px;}
.x19{left:66.240000px;}
.x4a{left:71.640000px;}
.x45{left:73.440000px;}
.x3e{left:83.700000px;}
.x10{left:85.725000px;}
.x3a{left:86.940000px;}
.x4d{left:92.736000px;}
.x30{left:94.535987px;}
.x8{left:106.776000px;}
.x1{left:108.035987px;}
.x3{left:109.476000px;}
.x31{left:115.776000px;}
.x1f{left:119.196000px;}
.x1b{left:125.856000px;}
.x36{left:129.996000px;}
.xc{left:131.625000px;}
.x22{left:133.776000px;}
.x38{left:141.696000px;}
.x4e{left:153.390000px;}
.x13{left:155.730000px;}
.x50{left:156.810000px;}
.x42{left:158.970000px;}
.x3b{left:160.410000px;}
.x2{left:162.029987px;}
.xb{left:169.245000px;}
.x40{left:178.230000px;}
.x11{left:182.025000px;}
.x12{left:193.725000px;}
.xe{left:203.805000px;}
.x9{left:254.190000px;}
.xd{left:265.035000px;}
.x32{left:358.815000px;}
.x3c{left:360.975000px;}
.x1a{left:395.895000px;}
.x4f{left:421.275000px;}
.x34{left:427.755000px;}
.x37{left:432.435000px;}
.x5{left:433.515000px;}
.x20{left:449.895000px;}
.x43{left:453.855000px;}
.x51{left:486.465000px;}
.x21{left:651.345000px;}
.x1c{left:655.890000px;}
.x23{left:659.310000px;}
.x3f{left:669.930000px;}
.x3d{left:690.270000px;}
.x6{left:693.510000px;}
.x35{left:701.430000px;}
.x44{left:714.930000px;}
.x49{left:718.350000px;}
.x52{left:723.930000px;}
.x4c{left:726.090000px;}
@media print{
.v1{vertical-align:-66.560000pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.230933pt;}
.lsf{letter-spacing:-0.097067pt;}
.ls3{letter-spacing:-0.094933pt;}
.ls13{letter-spacing:-0.089067pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.047360pt;}
.ls7{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.183467pt;}
.ls8{letter-spacing:0.231040pt;}
.lsc{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.367467pt;}
.ls10{letter-spacing:10.511360pt;}
.lsd{letter-spacing:13.711360pt;}
.ls14{letter-spacing:25.659307pt;}
.ls12{letter-spacing:31.680000pt;}
.ls4{letter-spacing:37.072640pt;}
.ls6{letter-spacing:37.179307pt;}
.ls15{letter-spacing:37.712640pt;}
.ls9{letter-spacing:37.819307pt;}
.ls11{letter-spacing:54.671360pt;}
.lse{letter-spacing:126.991360pt;}
.ls0{letter-spacing:177.211307pt;}
.ws7{word-spacing:-16.271573pt;}
.ws5{word-spacing:-15.134827pt;}
.ws9{word-spacing:-14.950827pt;}
.ws0{word-spacing:-14.814720pt;}
.ws2{word-spacing:-14.767360pt;}
.ws6{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.678293pt;}
.ws1{word-spacing:-14.672427pt;}
.ws4{word-spacing:-14.536427pt;}
.ws3{word-spacing:0.000000pt;}
._1b{margin-left:-10.772907pt;}
._b{margin-left:-2.916693pt;}
._5{margin-left:-1.852587pt;}
._0{margin-left:-0.914773pt;}
._3{width:0.996693pt;}
._11{width:2.159787pt;}
._1a{width:3.237333pt;}
._22{width:4.445440pt;}
._6{width:5.358080pt;}
._7{width:6.658133pt;}
._12{width:8.120747pt;}
._10{width:12.392107pt;}
._1{width:13.306880pt;}
._2{width:14.339413pt;}
._4{width:15.340373pt;}
._21{width:16.747093pt;}
._27{width:19.253760pt;}
._28{width:20.226133pt;}
._13{width:21.545813pt;}
._14{width:22.609920pt;}
._c{width:23.846400pt;}
._d{width:25.196373pt;}
._15{width:28.017920pt;}
._e{width:28.910080pt;}
._f{width:30.468267pt;}
._26{width:31.496107pt;}
._1e{width:33.434453pt;}
._20{width:35.107413pt;}
._16{width:37.120427pt;}
._1c{width:41.067093pt;}
._23{width:42.240427pt;}
._18{width:46.488107pt;}
._17{width:49.126827pt;}
._1d{width:54.507093pt;}
._24{width:58.347093pt;}
._1f{width:60.800427pt;}
._9{width:81.356373pt;}
._8{width:82.314240pt;}
._25{width:129.434453pt;}
._a{width:175.610027pt;}
._19{width:177.392640pt;}
.fs2{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yfc{bottom:2.874667pt;}
.y1e{bottom:2.880000pt;}
.y13b{bottom:2.920000pt;}
.y118{bottom:5.120000pt;}
.y127{bottom:5.280000pt;}
.y2a1{bottom:9.760000pt;}
.y1ec{bottom:12.160000pt;}
.y169{bottom:14.240000pt;}
.y1bb{bottom:14.880000pt;}
.y32{bottom:15.520000pt;}
.y2bd{bottom:15.674667pt;}
.y139{bottom:15.680000pt;}
.y1c9{bottom:16.320000pt;}
.y227{bottom:16.480000pt;}
.y22b{bottom:16.640000pt;}
.y1a8{bottom:16.960000pt;}
.ye4{bottom:17.920000pt;}
.y86{bottom:18.074667pt;}
.y1d{bottom:18.080000pt;}
.y9b{bottom:18.106667pt;}
.yf9{bottom:18.120000pt;}
.yc5{bottom:18.234667pt;}
.y20{bottom:18.240000pt;}
.ybf{bottom:18.266667pt;}
.y52{bottom:18.280000pt;}
.y1a0{bottom:21.440000pt;}
.y120{bottom:21.600000pt;}
.y117{bottom:22.714667pt;}
.y11e{bottom:22.720000pt;}
.y173{bottom:22.746667pt;}
.y1cd{bottom:22.760000pt;}
.y126{bottom:22.880000pt;}
.y17f{bottom:22.920000pt;}
.y121{bottom:25.120000pt;}
.y2a0{bottom:27.360000pt;}
.y1e2{bottom:27.520000pt;}
.y264{bottom:27.560000pt;}
.y219{bottom:29.120000pt;}
.y25e{bottom:29.600000pt;}
.y1ba{bottom:30.240000pt;}
.y226{bottom:31.840000pt;}
.y22a{bottom:32.000000pt;}
.y1a7{bottom:32.320000pt;}
.ye3{bottom:33.120000pt;}
.y70{bottom:33.434667pt;}
.y1c{bottom:33.440000pt;}
.y47{bottom:33.466667pt;}
.y76{bottom:33.480000pt;}
.yc4{bottom:33.594667pt;}
.y2c{bottom:33.600000pt;}
.y3e{bottom:33.626667pt;}
.y51{bottom:33.640000pt;}
.y2c9{bottom:35.840000pt;}
.y21f{bottom:37.600000pt;}
.y19f{bottom:39.040000pt;}
.y11f{bottom:39.200000pt;}
.y160{bottom:40.320000pt;}
.y172{bottom:40.346667pt;}
.y158{bottom:40.360000pt;}
.y116{bottom:40.474667pt;}
.y11d{bottom:40.480000pt;}
.y12c{bottom:40.506667pt;}
.y17e{bottom:40.520000pt;}
.y1e1{bottom:42.880000pt;}
.y263{bottom:42.920000pt;}
.y218{bottom:44.480000pt;}
.y29f{bottom:44.960000pt;}
.y2a4{bottom:45.000000pt;}
.y1b9{bottom:45.600000pt;}
.y222{bottom:47.200000pt;}
.y131{bottom:47.386667pt;}
.y6f{bottom:48.794667pt;}
.y1b{bottom:48.800000pt;}
.y46{bottom:48.826667pt;}
.y6c{bottom:48.840000pt;}
.yd5{bottom:48.954667pt;}
.y2b{bottom:48.960000pt;}
.y3d{bottom:48.986667pt;}
.y50{bottom:49.000000pt;}
.y2{bottom:51.040000pt;}
.y21e{bottom:52.960000pt;}
.y2c8{bottom:53.440000pt;}
.y1c5{bottom:57.914667pt;}
.y15f{bottom:57.920000pt;}
.y157{bottom:57.960000pt;}
.y115{bottom:58.074667pt;}
.y125{bottom:58.080000pt;}
.y12b{bottom:58.106667pt;}
.y17d{bottom:58.120000pt;}
.y1e0{bottom:58.240000pt;}
.y262{bottom:58.280000pt;}
.y225{bottom:62.400000pt;}
.y221{bottom:62.560000pt;}
.y22d{bottom:62.586667pt;}
.y2a3{bottom:62.600000pt;}
.y130{bottom:62.746667pt;}
.y44{bottom:64.154667pt;}
.y2a{bottom:64.160000pt;}
.y72{bottom:64.186667pt;}
.y6b{bottom:64.200000pt;}
.ya5{bottom:64.314667pt;}
.y3a{bottom:64.320000pt;}
.yce{bottom:64.346667pt;}
.y4f{bottom:64.360000pt;}
.y19a{bottom:66.400000pt;}
.y140{bottom:66.560000pt;}
.y21d{bottom:68.360000pt;}
.y2c7{bottom:68.826667pt;}
.y12e{bottom:73.306667pt;}
.y1eb{bottom:73.440000pt;}
.y1df{bottom:73.600000pt;}
.y261{bottom:73.640000pt;}
.y114{bottom:75.674667pt;}
.y124{bottom:75.680000pt;}
.y12a{bottom:75.706667pt;}
.y156{bottom:75.720000pt;}
.y123{bottom:75.840000pt;}
.y12f{bottom:78.106667pt;}
.y5f{bottom:79.514667pt;}
.y29{bottom:79.520000pt;}
.y7f{bottom:79.546667pt;}
.y4e{bottom:79.560000pt;}
.ya4{bottom:79.674667pt;}
.y39{bottom:79.680000pt;}
.y10d{bottom:79.706667pt;}
.y101{bottom:79.720000pt;}
.y28b{bottom:80.192000pt;}
.y1d0{bottom:80.352000pt;}
.y20c{bottom:80.512000pt;}
.y209{bottom:80.672000pt;}
.y119{bottom:80.832000pt;}
.y43{bottom:81.152000pt;}
.y13f{bottom:81.920000pt;}
.y178{bottom:81.952000pt;}
.y2b5{bottom:82.272000pt;}
.ya3{bottom:82.432000pt;}
.y266{bottom:82.752000pt;}
.yc6{bottom:83.232000pt;}
.y21c{bottom:83.560000pt;}
.y26d{bottom:84.032000pt;}
.y199{bottom:84.160000pt;}
.y2c6{bottom:84.186667pt;}
.ydd{bottom:84.512000pt;}
.y193{bottom:85.152000pt;}
.y168{bottom:85.472000pt;}
.yd4{bottom:85.792000pt;}
.y148{bottom:86.272000pt;}
.yfd{bottom:86.432000pt;}
.y2d2{bottom:87.232000pt;}
.y1f3{bottom:87.872000pt;}
.y1ea{bottom:88.800000pt;}
.y1de{bottom:88.960000pt;}
.y1e6{bottom:89.000000pt;}
.y21{bottom:90.752000pt;}
.y134{bottom:91.712000pt;}
.y23c{bottom:92.032000pt;}
.y12d{bottom:92.186667pt;}
.y257{bottom:93.152000pt;}
.y113{bottom:93.274667pt;}
.y16c{bottom:93.306667pt;}
.y155{bottom:93.320000pt;}
.y14e{bottom:93.440000pt;}
.y129{bottom:93.466667pt;}
.y142{bottom:93.600000pt;}
.y1f4{bottom:94.714667pt;}
.y240{bottom:94.720000pt;}
.y1b6{bottom:94.752000pt;}
.y191{bottom:94.760000pt;}
.y5e{bottom:94.874667pt;}
.y28{bottom:94.880000pt;}
.y7e{bottom:94.906667pt;}
.y2f{bottom:94.920000pt;}
.y214{bottom:95.232000pt;}
.y99{bottom:95.872000pt;}
.y13e{bottom:97.120000pt;}
.yef{bottom:97.792000pt;}
.y2c5{bottom:99.546667pt;}
.ye7{bottom:100.832000pt;}
.y198{bottom:101.760000pt;}
.y247{bottom:101.792000pt;}
.y2b4{bottom:102.752000pt;}
.y1e9{bottom:104.160000pt;}
.y1dd{bottom:104.186667pt;}
.y1e5{bottom:104.360000pt;}
.y293{bottom:104.512000pt;}
.y15c{bottom:104.832000pt;}
.y2dc{bottom:105.312000pt;}
.y15a{bottom:109.640000pt;}
.y1c0{bottom:109.786667pt;}
.y181{bottom:109.800000pt;}
.y85{bottom:110.074667pt;}
.yb7{bottom:110.080000pt;}
.yb2{bottom:110.106667pt;}
.y82{bottom:110.120000pt;}
.y5d{bottom:110.234667pt;}
.y27{bottom:110.240000pt;}
.y7d{bottom:110.266667pt;}
.y2e{bottom:110.280000pt;}
.y112{bottom:110.874667pt;}
.y16b{bottom:110.906667pt;}
.y154{bottom:110.920000pt;}
.y14d{bottom:111.040000pt;}
.y1be{bottom:111.066667pt;}
.y17c{bottom:111.080000pt;}
.y141{bottom:111.200000pt;}
.y6e{bottom:111.872000pt;}
.y13d{bottom:112.480000pt;}
.y2a5{bottom:113.152000pt;}
.y1da{bottom:113.472000pt;}
.y24f{bottom:114.432000pt;}
.y1a1{bottom:118.912000pt;}
.y197{bottom:119.360000pt;}
.y1e8{bottom:119.520000pt;}
.y1dc{bottom:119.546667pt;}
.y1e4{bottom:119.720000pt;}
.y1fc{bottom:122.432000pt;}
.y1cf{bottom:123.072000pt;}
.y84{bottom:125.434667pt;}
.y9e{bottom:125.440000pt;}
.y7c{bottom:125.466667pt;}
.yaf{bottom:125.480000pt;}
.y5c{bottom:125.594667pt;}
.y26{bottom:125.600000pt;}
.ya8{bottom:125.626667pt;}
.y4d{bottom:125.640000pt;}
.y110{bottom:126.112000pt;}
.y277{bottom:126.432000pt;}
.y83{bottom:127.232000pt;}
.y159{bottom:127.240000pt;}
.y1bf{bottom:127.386667pt;}
.y180{bottom:127.400000pt;}
.y167{bottom:128.032000pt;}
.yc3{bottom:128.512000pt;}
.y153{bottom:128.520000pt;}
.y111{bottom:128.634667pt;}
.y14c{bottom:128.640000pt;}
.y1bd{bottom:128.666667pt;}
.y17b{bottom:128.680000pt;}
.yfb{bottom:131.872000pt;}
.y23b{bottom:134.746667pt;}
.y1f{bottom:136.026667pt;}
.y256{bottom:138.426667pt;}
.y282{bottom:140.506667pt;}
.y137{bottom:140.794667pt;}
.y58{bottom:140.800000pt;}
.y7b{bottom:140.826667pt;}
.yab{bottom:140.840000pt;}
.y5b{bottom:140.954667pt;}
.y25{bottom:140.960000pt;}
.yc8{bottom:140.986667pt;}
.y4c{bottom:141.000000pt;}
.y98{bottom:141.146667pt;}
.ydc{bottom:145.146667pt;}
.y14b{bottom:146.240000pt;}
.y5a{bottom:156.154667pt;}
.y24{bottom:156.160000pt;}
.y62{bottom:156.186667pt;}
.ycb{bottom:156.200000pt;}
.ye9{bottom:156.314667pt;}
.y67{bottom:156.320000pt;}
.y10c{bottom:156.346667pt;}
.y4b{bottom:156.360000pt;}
.yd3{bottom:161.786667pt;}
.y1ae{bottom:162.426667pt;}
.y2bc{bottom:165.146667pt;}
.y15b{bottom:165.466667pt;}
.yac{bottom:168.026667pt;}
.y1c4{bottom:170.586667pt;}
.ye8{bottom:171.514667pt;}
.y23{bottom:171.520000pt;}
.y61{bottom:171.546667pt;}
.y4a{bottom:171.560000pt;}
.y100{bottom:171.720000pt;}
.y42{bottom:172.506667pt;}
.yfa{bottom:177.146667pt;}
.y147{bottom:177.466667pt;}
.y2b3{bottom:178.746667pt;}
.y229{bottom:179.066667pt;}
.y28a{bottom:179.706667pt;}
.y1a{bottom:181.466667pt;}
.y1ce{bottom:183.706667pt;}
.y2b0{bottom:183.866667pt;}
.y29c{bottom:186.720000pt;}
.yb1{bottom:186.746667pt;}
.y136{bottom:186.874667pt;}
.y57{bottom:186.880000pt;}
.y7a{bottom:186.906667pt;}
.y49{bottom:186.920000pt;}
.yaa{bottom:188.506667pt;}
.y24e{bottom:190.426667pt;}
.y289{bottom:200.186667pt;}
.y215{bottom:202.074667pt;}
.y29b{bottom:202.080000pt;}
.y79{bottom:202.106667pt;}
.y27e{bottom:202.120000pt;}
.y135{bottom:202.234667pt;}
.y211{bottom:202.240000pt;}
.y1a5{bottom:202.266667pt;}
.y66{bottom:202.280000pt;}
.y6d{bottom:203.226667pt;}
.y265{bottom:204.826667pt;}
.y1ad{bottom:205.146667pt;}
.y192{bottom:207.226667pt;}
.y188{bottom:207.386667pt;}
.y2db{bottom:212.026667pt;}
.y255{bottom:214.426667pt;}
.y281{bottom:216.506667pt;}
.y2df{bottom:217.146667pt;}
.y29a{bottom:217.440000pt;}
.y78{bottom:217.466667pt;}
.y27d{bottom:217.480000pt;}
.y210{bottom:217.600000pt;}
.y1a4{bottom:217.626667pt;}
.y271{bottom:217.634667pt;}
.y65{bottom:217.640000pt;}
.y41{bottom:217.786667pt;}
.y177{bottom:219.386667pt;}
.ya2{bottom:219.866667pt;}
.y19e{bottom:221.786667pt;}
.y2d1{bottom:224.506667pt;}
.y292{bottom:226.426667pt;}
.y1fb{bottom:229.146667pt;}
.y1b5{bottom:232.026667pt;}
.y97{bottom:232.506667pt;}
.y20f{bottom:232.826667pt;}
.y270{bottom:232.834667pt;}
.y27c{bottom:232.840000pt;}
.y2da{bottom:232.986667pt;}
.y64{bottom:233.000000pt;}
.y1c3{bottom:238.106667pt;}
.y1f2{bottom:240.506667pt;}
.y2bb{bottom:241.146667pt;}
.y2b2{bottom:246.266667pt;}
.y20e{bottom:248.186667pt;}
.y26f{bottom:248.194667pt;}
.y27b{bottom:248.200000pt;}
.y63{bottom:248.360000pt;}
.yb5{bottom:249.146667pt;}
.ydb{bottom:251.866667pt;}
.y187{bottom:252.826667pt;}
.yd2{bottom:253.146667pt;}
.y19{bottom:253.626667pt;}
.y254{bottom:255.866667pt;}
.y176{bottom:261.946667pt;}
.y238{bottom:263.546667pt;}
.y26e{bottom:263.554667pt;}
.y246{bottom:263.560000pt;}
.y6a{bottom:263.866667pt;}
.y2cb{bottom:264.186667pt;}
.y59{bottom:264.506667pt;}
.yc2{bottom:265.786667pt;}
.y1d9{bottom:266.106667pt;}
.y24d{bottom:266.426667pt;}
.y228{bottom:268.826667pt;}
.y18{bottom:268.986667pt;}
.y291{bottom:269.146667pt;}
.y2d0{bottom:269.786667pt;}
.y152{bottom:272.186667pt;}
.y1b4{bottom:277.466667pt;}
.y299{bottom:278.760000pt;}
.y237{bottom:278.906667pt;}
.y245{bottom:278.920000pt;}
.y208{bottom:279.386667pt;}
.y81{bottom:279.866667pt;}
.y166{bottom:280.666667pt;}
.y2a2{bottom:281.146667pt;}
.y10f{bottom:281.786667pt;}
.y190{bottom:283.226667pt;}
.yf8{bottom:283.866667pt;}
.y146{bottom:284.186667pt;}
.y17{bottom:284.346667pt;}
.y288{bottom:285.306667pt;}
.y1f1{bottom:285.786667pt;}
.y19d{bottom:289.306667pt;}
.y1cc{bottom:290.426667pt;}
.y298{bottom:294.120000pt;}
.y27a{bottom:294.146667pt;}
.y236{bottom:294.266667pt;}
.y244{bottom:294.280000pt;}
.y260{bottom:294.426667pt;}
.y1c2{bottom:298.746667pt;}
.y16{bottom:299.586667pt;}
.y23a{bottom:302.786667pt;}
.y276{bottom:306.466667pt;}
.yc1{bottom:308.546667pt;}
.y2b1{bottom:309.186667pt;}
.y235{bottom:309.466667pt;}
.y297{bottom:309.480000pt;}
.y279{bottom:309.506667pt;}
.y243{bottom:309.640000pt;}
.ya1{bottom:311.266667pt;}
.y2a8{bottom:313.346667pt;}
.yd1{bottom:313.826667pt;}
.y15{bottom:314.946667pt;}
.y2ba{bottom:317.186667pt;}
.y133{bottom:321.026667pt;}
.y2de{bottom:323.906667pt;}
.y20b{bottom:324.546667pt;}
.y234{bottom:324.826667pt;}
.y242{bottom:325.000000pt;}
.y56{bottom:325.186667pt;}
.y1ac{bottom:327.106667pt;}
.y2cf{bottom:330.466667pt;}
.y1f0{bottom:331.106667pt;}
.y253{bottom:331.906667pt;}
.y14{bottom:333.026667pt;}
.y207{bottom:338.946667pt;}
.y40{bottom:339.906667pt;}
.y233{bottom:340.186667pt;}
.y165{bottom:341.506667pt;}
.ye6{bottom:342.306667pt;}
.y24c{bottom:342.466667pt;}
.y145{bottom:344.866667pt;}
.y290{bottom:345.186667pt;}
.y239{bottom:345.346667pt;}
.y19c{bottom:349.986667pt;}
.y13{bottom:352.386667pt;}
.y287{bottom:353.026667pt;}
.y96{bottom:354.466667pt;}
.y69{bottom:355.266667pt;}
.yc9{bottom:355.906667pt;}
.ya9{bottom:356.546667pt;}
.y1d8{bottom:357.506667pt;}
.y206{bottom:358.306667pt;}
.y186{bottom:359.426667pt;}
.y1c1{bottom:359.586667pt;}
.y224{bottom:360.226667pt;}
.y2af{bottom:367.106667pt;}
.y175{bottom:368.706667pt;}
.y29e{bottom:370.786667pt;}
.y12{bottom:371.906667pt;}
.yd0{bottom:374.466667pt;}
.y26c{bottom:374.626667pt;}
.yf7{bottom:375.106667pt;}
.y1ef{bottom:376.546667pt;}
.y205{bottom:377.826667pt;}
.y1fa{bottom:381.826667pt;}
.y24b{bottom:383.906667pt;}
.y164{bottom:384.066667pt;}
.yb4{bottom:386.466667pt;}
.ya0{bottom:387.106667pt;}
.yee{bottom:387.906667pt;}
.y232{bottom:388.066667pt;}
.yda{bottom:389.186667pt;}
.y2a7{bottom:389.346667pt;}
.y11{bottom:391.266667pt;}
.y2b9{bottom:393.186667pt;}
.y2e2{bottom:394.786667pt;}
.y25f{bottom:395.106667pt;}
.y204{bottom:397.186667pt;}
.yc0{bottom:399.906667pt;}
.y1d7{bottom:402.786667pt;}
.y18f{bottom:405.186667pt;}
.y144{bottom:405.506667pt;}
.y109{bottom:405.826667pt;}
.y252{bottom:407.906667pt;}
.y2ae{bottom:409.826667pt;}
.y2e1{bottom:409.986667pt;}
.y10{bottom:410.626667pt;}
.y174{bottom:413.986667pt;}
.y68{bottom:415.906667pt;}
.y203{bottom:416.546667pt;}
.y2ca{bottom:416.866667pt;}
.y80{bottom:417.186667pt;}
.y1ee{bottom:419.106667pt;}
.y286{bottom:420.546667pt;}
.y28f{bottom:421.186667pt;}
.y1f9{bottom:427.106667pt;}
.y151{bottom:427.906667pt;}
.y2a6{bottom:429.026667pt;}
.yf{bottom:429.986667pt;}
.y2e0{bottom:430.466667pt;}
.y3f{bottom:431.106667pt;}
.yb3{bottom:431.906667pt;}
.y2ce{bottom:432.546667pt;}
.yed{bottom:433.186667pt;}
.y104{bottom:435.106667pt;}
.yf6{bottom:435.906667pt;}
.y2d9{bottom:441.346667pt;}
.y1d6{bottom:445.506667pt;}
.y1cb{bottom:446.146667pt;}
.ye{bottom:449.506667pt;}
.y223{bottom:449.826667pt;}
.ycf{bottom:450.466667pt;}
.y26b{bottom:450.626667pt;}
.y202{bottom:452.546667pt;}
.y132{bottom:458.306667pt;}
.y275{bottom:459.106667pt;}
.y29d{bottom:460.546667pt;}
.y280{bottom:461.186667pt;}
.y185{bottom:462.306667pt;}
.ye5{bottom:464.226667pt;}
.y143{bottom:466.146667pt;}
.yd{bottom:468.866667pt;}
.y2b8{bottom:469.186667pt;}
.y201{bottom:470.626667pt;}
.y19b{bottom:471.266667pt;}
.y1f8{bottom:472.546667pt;}
.y95{bottom:476.546667pt;}
.y213{bottom:477.186667pt;}
.y2c4{bottom:477.506667pt;}
.yc7{bottom:477.826667pt;}
.y1ab{bottom:479.906667pt;}
.y10e{bottom:480.546667pt;}
.y285{bottom:481.186667pt;}
.y25d{bottom:486.466667pt;}
.y1b3{bottom:486.946667pt;}
.yc{bottom:488.226667pt;}
.y200{bottom:490.146667pt;}
.y26a{bottom:490.306667pt;}
.y2cd{bottom:493.186667pt;}
.yf5{bottom:496.546667pt;}
.y28e{bottom:497.186667pt;}
.y251{bottom:499.106667pt;}
.y274{bottom:501.826667pt;}
.y163{bottom:506.146667pt;}
.y1ff{bottom:506.786667pt;}
.y3c{bottom:507.106667pt;}
.yb{bottom:507.586667pt;}
.yb0{bottom:507.906667pt;}
.y128{bottom:508.226667pt;}
.y77{bottom:508.546667pt;}
.y269{bottom:510.786667pt;}
.y2b7{bottom:511.906667pt;}
.y108{bottom:512.546667pt;}
.y1ca{bottom:513.666667pt;}
.y241{bottom:514.466667pt;}
.y1f7{bottom:515.106667pt;}
.y94{bottom:517.986667pt;}
.y171{bottom:520.706667pt;}
.y24a{bottom:521.186667pt;}
.ybe{bottom:521.826667pt;}
.y10b{bottom:523.106667pt;}
.y1aa{bottom:525.186667pt;}
.ycd{bottom:526.466667pt;}
.ya{bottom:526.946667pt;}
.y18e{bottom:527.106667pt;}
.y184{bottom:529.826667pt;}
.y93{bottom:533.346667pt;}
.y55{bottom:539.133333pt;}
.y9f{bottom:539.933333pt;}
.y1ed{bottom:541.213333pt;}
.y103{bottom:541.853333pt;}
.y25c{bottom:543.133333pt;}
.y9{bottom:546.493333pt;}
.y92{bottom:548.733333pt;}
.y296{bottom:551.933333pt;}
.y20a{bottom:553.213333pt;}
.y1b2{bottom:554.493333pt;}
.yf4{bottom:557.213333pt;}
.y23f{bottom:559.933333pt;}
.y91{bottom:564.093333pt;}
.y8{bottom:565.853333pt;}
.y1d5{bottom:567.453333pt;}
.y28d{bottom:573.213333pt;}
.y196{bottom:578.013333pt;}
.y90{bottom:579.453333pt;}
.y3b{bottom:583.133333pt;}
.y54{bottom:584.573333pt;}
.y7{bottom:585.213333pt;}
.yd9{bottom:587.933333pt;}
.y107{bottom:588.573333pt;}
.y183{bottom:590.493333pt;}
.y2ad{bottom:593.213333pt;}
.y249{bottom:593.373333pt;}
.y8f{bottom:594.813333pt;}
.y25b{bottom:600.093333pt;}
.ya7{bottom:600.573333pt;}
.y268{bottom:602.173333pt;}
.y2c3{bottom:604.093333pt;}
.y6{bottom:604.573333pt;}
.y8e{bottom:610.013333pt;}
.y248{bottom:613.853333pt;}
.y1b1{bottom:615.133333pt;}
.y28c{bottom:615.933333pt;}
.ye2{bottom:616.893333pt;}
.y1e7{bottom:617.213333pt;}
.y220{bottom:617.853333pt;}
.y25a{bottom:620.573333pt;}
.y5{bottom:621.533333pt;}
.y1bc{bottom:621.853333pt;}
.y170{bottom:623.453333pt;}
.y8d{bottom:625.373333pt;}
.y150{bottom:626.493333pt;}
.y122{bottom:628.733333pt;}
.yd8{bottom:630.493333pt;}
.yec{bottom:631.133333pt;}
.y1a9{bottom:631.933333pt;}
.ycc{bottom:633.213333pt;}
.y13c{bottom:633.533333pt;}
.y106{bottom:633.853333pt;}
.y2ac{bottom:635.773333pt;}
.y8c{bottom:640.733333pt;}
.y38{bottom:643.773333pt;}
.y212{bottom:644.573333pt;}
.y53{bottom:645.213333pt;}
.y18d{bottom:649.213333pt;}
.y182{bottom:651.293333pt;}
.y273{bottom:654.493333pt;}
.y4{bottom:654.973333pt;}
.ybd{bottom:655.453333pt;}
.y8b{bottom:656.093333pt;}
.ya6{bottom:661.213333pt;}
.yf3{bottom:663.773333pt;}
.y1fe{bottom:664.573333pt;}
.y14f{bottom:669.213333pt;}
.ybc{bottom:670.813333pt;}
.y8a{bottom:671.453333pt;}
.y162{bottom:674.173333pt;}
.y27f{bottom:675.133333pt;}
.y1b0{bottom:675.933333pt;}
.y105{bottom:676.573333pt;}
.ye1{bottom:677.213333pt;}
.y102{bottom:679.133333pt;}
.y23e{bottom:681.853333pt;}
.ybb{bottom:686.013333pt;}
.y2d{bottom:687.133333pt;}
.y1d4{bottom:689.373333pt;}
.y16f{bottom:691.133333pt;}
.y89{bottom:691.773333pt;}
.y2b6{bottom:694.493333pt;}
.y272{bottom:697.213333pt;}
.yba{bottom:701.373333pt;}
.y21b{bottom:707.453333pt;}
.y267{bottom:708.893333pt;}
.y259{bottom:711.773333pt;}
.y1c8{bottom:712.413333pt;}
.y2c2{bottom:713.853333pt;}
.yb9{bottom:716.733333pt;}
.y161{bottom:719.453333pt;}
.y278{bottom:720.573333pt;}
.y10a{bottom:721.853333pt;}
.y250{bottom:723.133333pt;}
.y195{bottom:724.573333pt;}
.y11c{bottom:731.613333pt;}
.y2c1{bottom:733.213333pt;}
.y1d3{bottom:734.813333pt;}
.yb8{bottom:737.213333pt;}
.y1a6{bottom:738.493333pt;}
.yff{bottom:739.773333pt;}
.y2d8{bottom:746.653333pt;}
.y37{bottom:750.493333pt;}
.y16e{bottom:751.773333pt;}
.yae{bottom:752.573333pt;}
.y75{bottom:753.213333pt;}
.y231{bottom:755.293333pt;}
.y18c{bottom:755.773333pt;}
.y17a{bottom:757.853333pt;}
.y1e3{bottom:763.773333pt;}
.y48{bottom:767.133333pt;}
.y1a3{bottom:767.773333pt;}
.y2c0{bottom:769.213333pt;}
.yca{bottom:770.493333pt;}
.y1fd{bottom:771.133333pt;}
.y13a{bottom:773.213333pt;}
.y1b8{bottom:774.533333pt;}
.y20d{bottom:781.893333pt;}
.y1af{bottom:782.533333pt;}
.y88{bottom:783.173333pt;}
.ye0{bottom:783.813333pt;}
.y2bf{bottom:787.333333pt;}
.y14a{bottom:791.173333pt;}
.y36{bottom:793.253333pt;}
.y2cc{bottom:797.893333pt;}
.y9d{bottom:798.533333pt;}
.y11b{bottom:799.173333pt;}
.yf2{bottom:801.253333pt;}
.y2ab{bottom:803.813333pt;}
.y2be{bottom:806.853333pt;}
.y16d{bottom:812.453333pt;}
.yeb{bottom:813.253333pt;}
.y230{bottom:816.133333pt;}
.y21a{bottom:818.213333pt;}
.y258{bottom:818.533333pt;}
.y1f6{bottom:819.813333pt;}
.y2d7{bottom:820.133333pt;}
.y22{bottom:824.133333pt;}
.y15e{bottom:826.213333pt;}
.yb6{bottom:828.613333pt;}
.yd7{bottom:829.253333pt;}
.y284{bottom:831.173333pt;}
.y18b{bottom:831.813333pt;}
.y2d6{bottom:838.053333pt;}
.y35{bottom:838.533333pt;}
.y1d2{bottom:841.413333pt;}
.y87{bottom:843.813333pt;}
.y74{bottom:844.613333pt;}
.y2aa{bottom:846.533333pt;}
.y1b7{bottom:847.173333pt;}
.y2d5{bottom:854.693333pt;}
.y22f{bottom:855.813333pt;}
.y60{bottom:858.533333pt;}
.y11a{bottom:859.813333pt;}
.y1c7{bottom:862.533333pt;}
.y1f5{bottom:865.253333pt;}
.y2d4{bottom:870.053333pt;}
.y283{bottom:873.893333pt;}
.y2dd{bottom:874.533333pt;}
.ydf{bottom:875.173333pt;}
.y22e{bottom:876.133333pt;}
.y23d{bottom:877.253333pt;}
.y34{bottom:881.253333pt;}
.y295{bottom:888.613333pt;}
.y2a9{bottom:889.253333pt;}
.y9c{bottom:889.893333pt;}
.y2d3{bottom:890.533333pt;}
.y18a{bottom:892.613333pt;}
.y73{bottom:905.253333pt;}
.y1c6{bottom:907.813333pt;}
.y217{bottom:909.573333pt;}
.y1db{bottom:910.533333pt;}
.y179{bottom:913.573333pt;}
.y16a{bottom:919.173333pt;}
.yea{bottom:919.813333pt;}
.yad{bottom:920.613333pt;}
.y194{bottom:923.173333pt;}
.y33{bottom:923.813333pt;}
.y15d{bottom:928.933333pt;}
.y189{bottom:935.173333pt;}
.yde{bottom:935.813333pt;}
.yfe{bottom:938.533333pt;}
.y1d1{bottom:944.293333pt;}
.y294{bottom:945.413333pt;}
.y1a2{bottom:950.533333pt;}
.yf1{bottom:953.893333pt;}
.y149{bottom:964.613333pt;}
.y71{bottom:965.893333pt;}
.yd6{bottom:966.533333pt;}
.y22c{bottom:967.493333pt;}
.y31{bottom:969.253333pt;}
.y138{bottom:971.813333pt;}
.y45{bottom:981.253333pt;}
.y9a{bottom:996.613333pt;}
.y30{bottom:1011.840000pt;}
.yf0{bottom:1014.560000pt;}
.y3{bottom:1036.800000pt;}
.y216{bottom:1038.080000pt;}
.y1{bottom:1060.800000pt;}
.h4e{height:26.720000pt;}
.h9{height:28.000000pt;}
.hb{height:28.032000pt;}
.h42{height:28.800000pt;}
.ha{height:30.560000pt;}
.h20{height:30.592000pt;}
.h6{height:30.720000pt;}
.h45{height:30.752000pt;}
.h34{height:35.200000pt;}
.h30{height:35.360000pt;}
.h50{height:42.080000pt;}
.h4{height:43.038750pt;}
.h29{height:45.600000pt;}
.h15{height:45.920000pt;}
.h17{height:45.952000pt;}
.hd{height:46.080000pt;}
.h38{height:46.112000pt;}
.h3d{height:52.800000pt;}
.h5a{height:52.832000pt;}
.h37{height:52.960000pt;}
.h2d{height:52.992000pt;}
.h3{height:55.402500pt;}
.h47{height:56.960000pt;}
.h40{height:58.080000pt;}
.h5d{height:58.563750pt;}
.h5{height:61.280000pt;}
.h12{height:61.312000pt;}
.h2{height:61.410000pt;}
.hf{height:61.440000pt;}
.he{height:61.472000pt;}
.h5b{height:66.750000pt;}
.h41{height:70.400000pt;}
.h55{height:70.560000pt;}
.h4a{height:74.880000pt;}
.h52{height:74.912000pt;}
.h49{height:75.040000pt;}
.h4b{height:75.072000pt;}
.h10{height:76.640000pt;}
.h1b{height:76.672000pt;}
.h1f{height:76.800000pt;}
.h4f{height:76.832000pt;}
.h51{height:86.112000pt;}
.h2e{height:88.160000pt;}
.h3a{height:88.192000pt;}
.h3f{height:91.840000pt;}
.h33{height:91.872000pt;}
.hc{height:92.000000pt;}
.h28{height:92.032000pt;}
.h48{height:96.032000pt;}
.h2f{height:105.952000pt;}
.h27{height:107.200000pt;}
.h2b{height:107.232000pt;}
.h14{height:107.360000pt;}
.h11{height:107.392000pt;}
.h5c{height:112.032000pt;}
.h26{height:122.560000pt;}
.h8{height:122.592000pt;}
.h1e{height:122.720000pt;}
.h25{height:122.752000pt;}
.h39{height:123.392000pt;}
.h32{height:124.960000pt;}
.h3c{height:131.840000pt;}
.h44{height:132.000000pt;}
.h43{height:132.032000pt;}
.h1d{height:137.920000pt;}
.h2a{height:137.946667pt;}
.h22{height:138.080000pt;}
.h46{height:138.106667pt;}
.h36{height:140.986667pt;}
.h2c{height:141.120000pt;}
.h3b{height:141.146667pt;}
.h21{height:153.280000pt;}
.h24{height:153.306667pt;}
.h58{height:153.466667pt;}
.h35{height:158.720000pt;}
.h18{height:168.640000pt;}
.h23{height:168.666667pt;}
.h7{height:184.000000pt;}
.h19{height:184.026667pt;}
.h59{height:199.200000pt;}
.h16{height:199.360000pt;}
.h13{height:199.386667pt;}
.h31{height:214.586667pt;}
.h57{height:214.720000pt;}
.h1c{height:229.946667pt;}
.h3e{height:230.106667pt;}
.h5e{height:245.306667pt;}
.h1a{height:260.666667pt;}
.h53{height:276.026667pt;}
.h5f{height:306.586667pt;}
.h60{height:306.746667pt;}
.h56{height:321.946667pt;}
.h54{height:321.986667pt;}
.h4d{height:337.466667pt;}
.h4c{height:352.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:39.680000pt;}
.w28{width:42.752000pt;}
.w16{width:45.632000pt;}
.w2c{width:45.952000pt;}
.w10{width:51.712000pt;}
.w5d{width:52.640000pt;}
.w62{width:53.760000pt;}
.w30{width:55.392000pt;}
.w53{width:57.760000pt;}
.w1c{width:58.752000pt;}
.w25{width:59.072000pt;}
.w4e{width:63.712000pt;}
.w3c{width:64.032000pt;}
.w57{width:64.672000pt;}
.w35{width:65.632000pt;}
.w40{width:66.592000pt;}
.w47{width:79.712000pt;}
.w5c{width:96.800000pt;}
.w5a{width:103.680000pt;}
.w64{width:104.640000pt;}
.w51{width:106.720000pt;}
.w6{width:108.640000pt;}
.w60{width:113.760000pt;}
.w2f{width:114.720000pt;}
.w3f{width:127.520000pt;}
.w7{width:130.080000pt;}
.w1f{width:133.120000pt;}
.w2b{width:139.706667pt;}
.w13{width:140.480000pt;}
.w46{width:145.600000pt;}
.w19{width:149.626667pt;}
.w38{width:158.720000pt;}
.w3d{width:176.986667pt;}
.w18{width:177.786667pt;}
.w1e{width:184.706667pt;}
.w24{width:185.186667pt;}
.w23{width:185.666667pt;}
.w37{width:201.786667pt;}
.w63{width:209.786667pt;}
.w49{width:209.826667pt;}
.w4c{width:210.626667pt;}
.w29{width:214.746667pt;}
.w48{width:224.666667pt;}
.w4b{width:225.146667pt;}
.w12{width:229.786667pt;}
.w5{width:229.826667pt;}
.w50{width:230.786667pt;}
.w59{width:233.666667pt;}
.w5e{width:236.666667pt;}
.w5f{width:237.666667pt;}
.w33{width:237.826667pt;}
.w44{width:238.626667pt;}
.w11{width:238.746667pt;}
.w55{width:239.706667pt;}
.w56{width:240.026667pt;}
.w42{width:240.666667pt;}
.w5b{width:240.706667pt;}
.w43{width:241.146667pt;}
.w2e{width:241.986667pt;}
.wb{width:245.626667pt;}
.w36{width:252.666667pt;}
.w2a{width:258.746667pt;}
.w58{width:259.706667pt;}
.w4f{width:260.826667pt;}
.w32{width:267.546667pt;}
.w2d{width:272.826667pt;}
.w1d{width:279.706667pt;}
.w22{width:280.026667pt;}
.w26{width:280.506667pt;}
.w4{width:286.746667pt;}
.w3e{width:291.266667pt;}
.we{width:291.746667pt;}
.w17{width:292.666667pt;}
.w1a{width:328.706667pt;}
.wf{width:371.586667pt;}
.w20{width:465.693333pt;}
.w14{width:469.826667pt;}
.w8{width:471.133333pt;}
.w45{width:516.933333pt;}
.wc{width:517.853333pt;}
.w3a{width:522.813333pt;}
.w21{width:525.733333pt;}
.w52{width:557.893333pt;}
.w4a{width:582.653333pt;}
.w54{width:594.813333pt;}
.w41{width:595.773333pt;}
.w9{width:602.173333pt;}
.w39{width:615.773333pt;}
.w31{width:622.653333pt;}
.w3{width:627.773333pt;}
.w61{width:644.733333pt;}
.w27{width:659.813333pt;}
.w1b{width:660.293333pt;}
.w3b{width:663.813333pt;}
.wd{width:664.613333pt;}
.w4d{width:665.893333pt;}
.w15{width:669.733333pt;}
.w34{width:682.853333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x27{left:-17.280000pt;}
.x26{left:-2.240000pt;}
.x14{left:-0.960000pt;}
.x0{left:0.000000pt;}
.x24{left:0.960000pt;}
.x2b{left:2.720000pt;}
.x1d{left:3.840000pt;}
.x4{left:6.080000pt;}
.x2e{left:7.200000pt;}
.x47{left:8.800000pt;}
.x1e{left:10.720000pt;}
.xf{left:12.160000pt;}
.x46{left:13.920000pt;}
.x2a{left:15.706667pt;}
.x2f{left:16.666667pt;}
.x2c{left:18.106667pt;}
.x41{left:20.800000pt;}
.x17{left:23.040000pt;}
.x16{left:24.160000pt;}
.x2d{left:25.466667pt;}
.x15{left:27.360000pt;}
.x7{left:30.106667pt;}
.x33{left:31.240000pt;}
.x48{left:32.826667pt;}
.x28{left:35.066667pt;}
.x18{left:36.160000pt;}
.xa{left:38.280000pt;}
.x39{left:42.106667pt;}
.x4b{left:48.026667pt;}
.x29{left:48.986667pt;}
.x53{left:52.160000pt;}
.x25{left:54.106667pt;}
.x19{left:58.880000pt;}
.x4a{left:63.680000pt;}
.x45{left:65.280000pt;}
.x3e{left:74.400000pt;}
.x10{left:76.200000pt;}
.x3a{left:77.280000pt;}
.x4d{left:82.432000pt;}
.x30{left:84.031988pt;}
.x8{left:94.912000pt;}
.x1{left:96.031988pt;}
.x3{left:97.312000pt;}
.x31{left:102.912000pt;}
.x1f{left:105.952000pt;}
.x1b{left:111.872000pt;}
.x36{left:115.552000pt;}
.xc{left:117.000000pt;}
.x22{left:118.912000pt;}
.x38{left:125.952000pt;}
.x4e{left:136.346667pt;}
.x13{left:138.426667pt;}
.x50{left:139.386667pt;}
.x42{left:141.306667pt;}
.x3b{left:142.586667pt;}
.x2{left:144.026655pt;}
.xb{left:150.440000pt;}
.x40{left:158.426667pt;}
.x11{left:161.800000pt;}
.x12{left:172.200000pt;}
.xe{left:181.160000pt;}
.x9{left:225.946667pt;}
.xd{left:235.586667pt;}
.x32{left:318.946667pt;}
.x3c{left:320.866667pt;}
.x1a{left:351.906667pt;}
.x4f{left:374.466667pt;}
.x34{left:380.226667pt;}
.x37{left:384.386667pt;}
.x5{left:385.346667pt;}
.x20{left:399.906667pt;}
.x43{left:403.426667pt;}
.x51{left:432.413333pt;}
.x21{left:578.973333pt;}
.x1c{left:583.013333pt;}
.x23{left:586.053333pt;}
.x3f{left:595.493333pt;}
.x3d{left:613.573333pt;}
.x6{left:616.453333pt;}
.x35{left:623.493333pt;}
.x44{left:635.493333pt;}
.x49{left:638.533333pt;}
.x52{left:643.493333pt;}
.x4c{left:645.413333pt;}
}




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