
    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_33849232c2b1be61e78261b7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fd348e84a09ac8cf98bb3562.woff')format("woff");}.ff2{font-family:ff2;line-height:1.053223;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_db3f497443d7f74e34a45128.woff')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7f088cfc227c3157f96e3dbe.woff')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5f47deb207993537f9262cb6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970215;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5f2d09a0c585ffac71973771.woff')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_589cb0d08d021a4143619553.woff')format("woff");}.ff8{font-family:ff8;line-height:0.958008;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_4b6ac0564653cac51236f223.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_49f0902fbbbad7680c9f759c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.923340;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_9448073607c41d7d8896afc2.woff')format("woff");}.ffb{font-family:ffb;line-height:0.934082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_bfd6fbc37557f1d730c897ae.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_2325ba566399794a95fe42e4.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffe{font-family:ffe;line-height:0.910156;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:fff;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_36eb4736f0131a8018209269.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_24c69db5d436b675a71c9c2e.woff')format("woff");}.ff11{font-family:ff11;line-height:0.882812;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);}
.v3{vertical-align:-69.840000px;}
.v5{vertical-align:-20.880000px;}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.v4{vertical-align:23.736000px;}
.ls1c{letter-spacing:-4.266000px;}
.ls8{letter-spacing:-1.860000px;}
.ls17{letter-spacing:-1.800000px;}
.ls23{letter-spacing:-1.080000px;}
.lsb{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.ls22{letter-spacing:-0.324000px;}
.ls1b{letter-spacing:-0.106800px;}
.ls13{letter-spacing:-0.058320px;}
.lse{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.018000px;}
.ls19{letter-spacing:-0.001440px;}
.ls6{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.036000px;}
.ls11{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.060480px;}
.ls9{letter-spacing:0.066000px;}
.ls1a{letter-spacing:0.075000px;}
.ls1{letter-spacing:0.132600px;}
.ls16{letter-spacing:0.174240px;}
.lsf{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.206400px;}
.ls1d{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls18{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.627840px;}
.ls21{letter-spacing:1.080000px;}
.ls1e{letter-spacing:12.600000px;}
.ls20{letter-spacing:20.907360px;}
.ls10{letter-spacing:46.026720px;}
.ls1f{letter-spacing:49.707360px;}
.lsd{letter-spacing:64.026720px;}
.ls15{letter-spacing:201.204000px;}
.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;}
}
.wsc{word-spacing:-59.760000px;}
.ws19{word-spacing:-29.880000px;}
.ws16{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws18{word-spacing:-16.488000px;}
.ws17{word-spacing:-16.272000px;}
.ws5{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.199800px;}
.wsd{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.ws15{word-spacing:-14.833200px;}
.ws6{word-spacing:-14.580000px;}
.ws1a{word-spacing:-14.220000px;}
.ws1c{word-spacing:-13.860000px;}
.ws14{word-spacing:-13.580760px;}
.wsf{word-spacing:-13.538304px;}
.wse{word-spacing:-13.505760px;}
.ws13{word-spacing:-13.504320px;}
.ws12{word-spacing:-13.447440px;}
.ws11{word-spacing:-13.140000px;}
.ws0{word-spacing:-12.186000px;}
.ws9{word-spacing:-9.732960px;}
.wsa{word-spacing:-9.720000px;}
.ws3{word-spacing:-8.786880px;}
.ws1b{word-spacing:-8.676000px;}
.ws4{word-spacing:-8.136000px;}
.ws8{word-spacing:0.000000px;}
._22{margin-left:-7.603200px;}
._1e{margin-left:-5.873040px;}
._0{margin-left:-4.840560px;}
._4{margin-left:-3.054960px;}
._1{margin-left:-1.494000px;}
._2{width:1.116240px;}
._c{width:2.370240px;}
._3{width:3.420000px;}
._13{width:5.376720px;}
._12{width:6.991920px;}
._5{width:8.256720px;}
._6{width:9.979920px;}
._8{width:11.151600px;}
._16{width:12.423360px;}
._17{width:13.584720px;}
._15{width:16.054080px;}
._1d{width:17.311200px;}
._14{width:19.142400px;}
._f{width:20.258640px;}
._7{width:22.111200px;}
._1c{width:23.186880px;}
._18{width:24.484560px;}
._d{width:25.656240px;}
._e{width:26.753280px;}
._10{width:28.046640px;}
._11{width:29.421600px;}
._19{width:31.213920px;}
._1a{width:32.370720px;}
._b{width:40.259040px;}
._a{width:42.926880px;}
._1b{width:46.314000px;}
._9{width:50.198400px;}
._1f{width:74.230080px;}
._21{width:106.093200px;}
._20{width:317.928000px;}
.fc7{color:transparent;}
.fc4{color:rgb(227,108,10);}
.fc3{color:rgb(50,62,79);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(31,56,100);}
.fc6{color:rgb(34,34,34);}
.fc5{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fs7{font-size:12.240000px;}
.fs9{font-size:27.360000px;}
.fsa{font-size:36.000000px;}
.fs8{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fsb{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fsc{font-size:59.904000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fsd{font-size:108.000000px;}
.y121{bottom:-49.674000px;}
.y22c{bottom:-32.580000px;}
.y176{bottom:-25.560000px;}
.y1b0{bottom:-24.840000px;}
.y1ca{bottom:-24.114000px;}
.y204{bottom:-20.340000px;}
.y149{bottom:-18.180000px;}
.y120{bottom:-13.314000px;}
.y0{bottom:0.000000px;}
.y112{bottom:0.720000px;}
.y170{bottom:0.900000px;}
.y205{bottom:1.080000px;}
.y1fd{bottom:1.440000px;}
.y11c{bottom:1.620000px;}
.y1be{bottom:2.160000px;}
.y14f{bottom:2.205000px;}
.y1aa{bottom:2.340000px;}
.y14b{bottom:2.520000px;}
.y178{bottom:2.700000px;}
.y14d{bottom:2.880000px;}
.y72{bottom:3.240000px;}
.yfa{bottom:3.420000px;}
.y19{bottom:3.600000px;}
.y75{bottom:3.780000px;}
.y18e{bottom:3.960000px;}
.y11a{bottom:4.140000px;}
.yd{bottom:4.320000px;}
.yf1{bottom:4.500000px;}
.yed{bottom:4.680000px;}
.y1a1{bottom:4.725000px;}
.y1a5{bottom:4.860000px;}
.y191{bottom:5.040000px;}
.y150{bottom:5.220000px;}
.yc0{bottom:5.580000px;}
.yfd{bottom:5.760000px;}
.y74{bottom:5.940000px;}
.y1e0{bottom:6.120000px;}
.y116{bottom:6.300000px;}
.y1c3{bottom:6.480000px;}
.y11f{bottom:6.660000px;}
.y175{bottom:6.840000px;}
.y1dc{bottom:7.200000px;}
.y1af{bottom:7.560000px;}
.y1c9{bottom:7.740000px;}
.ybe{bottom:8.100000px;}
.y1da{bottom:8.640000px;}
.y1d7{bottom:10.260000px;}
.y118{bottom:10.440000px;}
.yc7{bottom:10.800000px;}
.yc5{bottom:10.980000px;}
.y203{bottom:11.880000px;}
.y1d3{bottom:12.420000px;}
.ydb{bottom:13.680000px;}
.y1de{bottom:13.725000px;}
.y5{bottom:13.860000px;}
.y148{bottom:14.220000px;}
.y158{bottom:14.400000px;}
.y1b{bottom:14.580000px;}
.y1f9{bottom:16.020000px;}
.y3{bottom:18.180000px;}
.yc3{bottom:20.340000px;}
.y71{bottom:20.520000px;}
.y18d{bottom:21.060000px;}
.y22b{bottom:22.545000px;}
.y115{bottom:23.580000px;}
.y1c2{bottom:23.805000px;}
.y18{bottom:23.940000px;}
.y174{bottom:24.120000px;}
.y1ae{bottom:24.840000px;}
.y1c8{bottom:25.020000px;}
.y145{bottom:28.260000px;}
.y211{bottom:28.980000px;}
.y202{bottom:29.160000px;}
.yb{bottom:30.240000px;}
.y48{bottom:31.500000px;}
.yda{bottom:31.965000px;}
.y1{bottom:36.360000px;}
.y4{bottom:36.756000px;}
.y70{bottom:37.800000px;}
.y2{bottom:38.016000px;}
.y17{bottom:40.320000px;}
.y114{bottom:40.860000px;}
.y11e{bottom:41.040000px;}
.y1c1{bottom:41.085000px;}
.y173{bottom:41.400000px;}
.y1ad{bottom:42.120000px;}
.y1c7{bottom:42.300000px;}
.y22a{bottom:42.525000px;}
.y144{bottom:45.360000px;}
.y47{bottom:46.080000px;}
.ya{bottom:46.440000px;}
.y20f{bottom:46.980000px;}
.y147{bottom:48.600000px;}
.y18b{bottom:49.680000px;}
.yd1{bottom:51.480000px;}
.y16{bottom:51.840000px;}
.y6f{bottom:55.080000px;}
.yea{bottom:58.110000px;}
.y15{bottom:59.220000px;}
.y1ac{bottom:59.265000px;}
.y1c6{bottom:59.580000px;}
.y46{bottom:60.840000px;}
.y201{bottom:63.720000px;}
.y20e{bottom:64.260000px;}
.y14{bottom:67.500000px;}
.y6e{bottom:72.180000px;}
.y9{bottom:73.470000px;}
.ye0{bottom:74.490000px;}
.y45{bottom:75.420000px;}
.ye9{bottom:76.425000px;}
.y1c5{bottom:76.860000px;}
.yd2{bottom:79.200000px;}
.y13{bottom:79.380000px;}
.y200{bottom:81.000000px;}
.y12{bottom:84.960000px;}
.y169{bottom:85.290000px;}
.y6d{bottom:89.460000px;}
.y44{bottom:90.180000px;}
.y8{bottom:93.090000px;}
.y1ff{bottom:98.280000px;}
.y11{bottom:100.980000px;}
.y141{bottom:101.196000px;}
.ye8{bottom:102.210000px;}
.y43{bottom:104.760000px;}
.ye1{bottom:105.990000px;}
.y16e{bottom:106.095000px;}
.y6c{bottom:106.740000px;}
.yd3{bottom:106.890000px;}
.y7{bottom:111.270000px;}
.ycf{bottom:111.456000px;}
.y42{bottom:119.340000px;}
.ye7{bottom:120.495000px;}
.y6b{bottom:124.020000px;}
.yb3{bottom:126.576000px;}
.y10{bottom:126.720000px;}
.y228{bottom:127.296000px;}
.yce{bottom:128.736000px;}
.y1fb{bottom:130.536000px;}
.y294{bottom:131.436000px;}
.y259{bottom:131.796000px;}
.y140{bottom:132.336000px;}
.y16d{bottom:133.230000px;}
.y73{bottom:133.236000px;}
.y41{bottom:134.100000px;}
.yd4{bottom:134.610000px;}
.y6a{bottom:141.300000px;}
.ydd{bottom:142.710000px;}
.y1bd{bottom:142.956000px;}
.yb2{bottom:143.856000px;}
.y227{bottom:145.656000px;}
.ye6{bottom:146.265000px;}
.yf{bottom:148.140000px;}
.y40{bottom:148.680000px;}
.ycd{bottom:148.716000px;}
.y258{bottom:149.076000px;}
.y1c{bottom:150.510000px;}
.y11d{bottom:150.870000px;}
.y110{bottom:154.470000px;}
.y69{bottom:158.580000px;}
.y16c{bottom:160.380000px;}
.y167{bottom:160.410000px;}
.ydf{bottom:161.100000px;}
.yb1{bottom:161.130000px;}
.y1c4{bottom:161.310000px;}
.yd5{bottom:162.285000px;}
.y3f{bottom:163.260000px;}
.y13f{bottom:163.290000px;}
.y1fa{bottom:163.650000px;}
.y226{bottom:164.010000px;}
.ye5{bottom:164.595000px;}
.y293{bottom:165.090000px;}
.y257{bottom:166.350000px;}
.ycc{bottom:168.690000px;}
.y68{bottom:175.680000px;}
.y1bc{bottom:176.070000px;}
.y166{bottom:177.690000px;}
.y3e{bottom:178.020000px;}
.yb0{bottom:178.410000px;}
.y1f8{bottom:178.590000px;}
.y292{bottom:181.470000px;}
.ycb{bottom:185.970000px;}
.yde{bottom:186.120000px;}
.y16a{bottom:189.930000px;}
.yd6{bottom:190.005000px;}
.y10f{bottom:191.910000px;}
.y3d{bottom:192.645000px;}
.y146{bottom:192.810000px;}
.y67{bottom:193.005000px;}
.y13e{bottom:194.430000px;}
.y165{bottom:194.970000px;}
.yaf{bottom:195.870000px;}
.ye2{bottom:196.200000px;}
.y291{bottom:197.850000px;}
.y225{bottom:202.350000px;}
.y256{bottom:204.510000px;}
.y3c{bottom:207.405000px;}
.ye4{bottom:208.650000px;}
.y1f7{bottom:209.190000px;}
.y1bb{bottom:209.370000px;}
.y66{bottom:210.285000px;}
.yae{bottom:212.070000px;}
.y290{bottom:214.230000px;}
.yd7{bottom:217.725000px;}
.y224{bottom:219.630000px;}
.y255{bottom:221.790000px;}
.y3b{bottom:221.985000px;}
.y172{bottom:222.510000px;}
.y1a8{bottom:225.030000px;}
.y13d{bottom:225.390000px;}
.y11b{bottom:226.110000px;}
.y1f6{bottom:227.190000px;}
.y65{bottom:227.565000px;}
.y10e{bottom:229.350000px;}
.yad{bottom:230.430000px;}
.y28f{bottom:230.610000px;}
.y3a{bottom:236.565000px;}
.y223{bottom:236.730000px;}
.ye3{bottom:238.470000px;}
.y254{bottom:239.070000px;}
.y1a7{bottom:239.970000px;}
.y1ba{bottom:242.490000px;}
.y64{bottom:244.845000px;}
.y16b{bottom:245.085000px;}
.y1f5{bottom:245.190000px;}
.y164{bottom:245.370000px;}
.yd8{bottom:245.415000px;}
.y28e{bottom:246.990000px;}
.yac{bottom:248.790000px;}
.y39{bottom:251.325000px;}
.y13c{bottom:256.530000px;}
.y1a6{bottom:258.150000px;}
.y63{bottom:262.125000px;}
.y163{bottom:262.650000px;}
.y1f4{bottom:263.190000px;}
.y28d{bottom:263.370000px;}
.yab{bottom:265.890000px;}
.y38{bottom:265.905000px;}
.y10d{bottom:266.790000px;}
.yd9{bottom:273.135000px;}
.y222{bottom:275.070000px;}
.y1a4{bottom:276.150000px;}
.y253{bottom:277.230000px;}
.y14c{bottom:277.410000px;}
.y1cc{bottom:278.490000px;}
.y62{bottom:279.225000px;}
.y28c{bottom:279.750000px;}
.y37{bottom:280.485000px;}
.yaa{bottom:283.170000px;}
.y13b{bottom:287.490000px;}
.y1f3{bottom:288.210000px;}
.y221{bottom:292.350000px;}
.y252{bottom:294.510000px;}
.y36{bottom:295.245000px;}
.y1a3{bottom:295.770000px;}
.y28b{bottom:296.130000px;}
.y61{bottom:296.505000px;}
.y177{bottom:299.010000px;}
.ya9{bottom:301.530000px;}
.ydc{bottom:301.935000px;}
.y10c{bottom:304.230000px;}
.y179{bottom:305.130000px;}
.y1f2{bottom:309.450000px;}
.y220{bottom:309.630000px;}
.y35{bottom:309.825000px;}
.y251{bottom:311.790000px;}
.y28a{bottom:312.510000px;}
.y1a2{bottom:313.770000px;}
.y60{bottom:313.785000px;}
.y13a{bottom:318.630000px;}
.ya8{bottom:318.810000px;}
.y34{bottom:324.585000px;}
.y1f1{bottom:327.450000px;}
.y289{bottom:328.890000px;}
.y250{bottom:329.070000px;}
.y5f{bottom:331.065000px;}
.y1a0{bottom:331.950000px;}
.ya7{bottom:336.090000px;}
.y33{bottom:339.165000px;}
.y139{bottom:339.375000px;}
.y10b{bottom:341.715000px;}
.y288{bottom:345.315000px;}
.y24f{bottom:346.215000px;}
.y1f0{bottom:347.475000px;}
.y21f{bottom:347.835000px;}
.y5e{bottom:348.345000px;}
.y19f{bottom:351.435000px;}
.ya6{bottom:353.415000px;}
.y32{bottom:353.745000px;}
.y138{bottom:360.075000px;}
.y287{bottom:361.875000px;}
.y24e{bottom:364.215000px;}
.y1ef{bottom:364.755000px;}
.y21e{bottom:365.115000px;}
.y5d{bottom:365.625000px;}
.y31{bottom:368.505000px;}
.ya5{bottom:370.515000px;}
.y19e{bottom:370.695000px;}
.y286{bottom:378.255000px;}
.y10a{bottom:379.155000px;}
.y137{bottom:380.775000px;}
.y24d{bottom:381.855000px;}
.y1ee{bottom:382.035000px;}
.y21d{bottom:382.395000px;}
.y5c{bottom:382.725000px;}
.y30{bottom:383.085000px;}
.ya4{bottom:387.795000px;}
.y19d{bottom:391.215000px;}
.y285{bottom:394.635000px;}
.y2f{bottom:397.845000px;}
.y24c{bottom:399.135000px;}
.y1ed{bottom:399.315000px;}
.y21c{bottom:399.675000px;}
.y5b{bottom:400.005000px;}
.y136{bottom:401.475000px;}
.ya3{bottom:405.075000px;}
.y119{bottom:409.215000px;}
.y284{bottom:411.015000px;}
.y2e{bottom:412.425000px;}
.y19c{bottom:413.895000px;}
.y24b{bottom:416.415000px;}
.y109{bottom:416.595000px;}
.y21b{bottom:416.775000px;}
.y5a{bottom:417.285000px;}
.y135{bottom:422.175000px;}
.ya2{bottom:422.355000px;}
.y2d{bottom:427.005000px;}
.y283{bottom:427.395000px;}
.y19b{bottom:431.175000px;}
.y1ec{bottom:432.255000px;}
.y24a{bottom:433.695000px;}
.y21a{bottom:434.055000px;}
.y59{bottom:434.565000px;}
.ya1{bottom:439.635000px;}
.y2c{bottom:441.585000px;}
.y134{bottom:442.875000px;}
.y282{bottom:443.775000px;}
.y19a{bottom:448.455000px;}
.y249{bottom:450.795000px;}
.y219{bottom:451.335000px;}
.y58{bottom:451.845000px;}
.y108{bottom:454.035000px;}
.ya0{bottom:456.915000px;}
.y2b{bottom:458.895000px;}
.y281{bottom:460.155000px;}
.y133{bottom:463.575000px;}
.y1eb{bottom:465.375000px;}
.y199{bottom:465.735000px;}
.yca{bottom:466.095000px;}
.y248{bottom:468.075000px;}
.y57{bottom:468.975000px;}
.y113{bottom:469.515000px;}
.y218{bottom:469.875000px;}
.y9f{bottom:474.015000px;}
.y2a{bottom:476.175000px;}
.y280{bottom:476.535000px;}
.y198{bottom:482.835000px;}
.y132{bottom:484.275000px;}
.yc9{bottom:484.995000px;}
.y56{bottom:486.255000px;}
.y247{bottom:486.795000px;}
.y9e{bottom:491.295000px;}
.y107{bottom:491.475000px;}
.y27f{bottom:492.915000px;}
.y29{bottom:493.995000px;}
.y1ea{bottom:498.675000px;}
.y197{bottom:500.115000px;}
.yc8{bottom:502.275000px;}
.y55{bottom:503.535000px;}
.y131{bottom:504.975000px;}
.y246{bottom:505.515000px;}
.y1cd{bottom:508.395000px;}
.y9d{bottom:508.575000px;}
.y217{bottom:508.755000px;}
.y27e{bottom:509.295000px;}
.y14a{bottom:509.475000px;}
.y28{bottom:511.275000px;}
.y54{bottom:520.815000px;}
.y245{bottom:524.235000px;}
.y27d{bottom:525.675000px;}
.y9c{bottom:525.855000px;}
.y196{bottom:528.555000px;}
.y27{bottom:528.735000px;}
.y106{bottom:528.915000px;}
.y1e9{bottom:531.795000px;}
.y216{bottom:533.775000px;}
.y130{bottom:535.935000px;}
.y171{bottom:536.655000px;}
.yc6{bottom:537.915000px;}
.y53{bottom:538.095000px;}
.y244{bottom:541.515000px;}
.y16f{bottom:542.055000px;}
.y9b{bottom:543.135000px;}
.y117{bottom:544.395000px;}
.y195{bottom:546.015000px;}
.y26{bottom:546.195000px;}
.y215{bottom:551.775000px;}
.y12f{bottom:553.395000px;}
.y52{bottom:555.375000px;}
.y27c{bottom:558.435000px;}
.y243{bottom:558.795000px;}
.y9a{bottom:560.235000px;}
.y25{bottom:563.475000px;}
.y1e8{bottom:565.095000px;}
.y105{bottom:566.535000px;}
.y1fe{bottom:567.435000px;}
.y206{bottom:569.235000px;}
.y214{bottom:569.775000px;}
.y194{bottom:571.575000px;}
.y1cb{bottom:572.115000px;}
.y51{bottom:572.475000px;}
.y12e{bottom:573.915000px;}
.y27b{bottom:574.815000px;}
.y242{bottom:576.075000px;}
.y99{bottom:577.515000px;}
.y24{bottom:580.935000px;}
.yc4{bottom:581.475000px;}
.y1b9{bottom:583.275000px;}
.y213{bottom:587.775000px;}
.y193{bottom:589.575000px;}
.y50{bottom:589.755000px;}
.y162{bottom:590.475000px;}
.y27a{bottom:591.195000px;}
.y12d{bottom:593.355000px;}
.y98{bottom:594.795000px;}
.y1e7{bottom:598.215000px;}
.y23{bottom:598.395000px;}
.y104{bottom:604.005000px;}
.y4f{bottom:607.035000px;}
.yc2{bottom:607.245000px;}
.y192{bottom:607.605000px;}
.y161{bottom:607.785000px;}
.y212{bottom:610.665000px;}
.y97{bottom:612.105000px;}
.y12c{bottom:612.645000px;}
.y22{bottom:615.675000px;}
.y1b8{bottom:616.605000px;}
.y279{bottom:623.985000px;}
.y4e{bottom:624.315000px;}
.y160{bottom:624.885000px;}
.y190{bottom:625.605000px;}
.y20d{bottom:628.665000px;}
.y96{bottom:629.385000px;}
.y1e6{bottom:631.545000px;}
.y12b{bottom:632.085000px;}
.y21{bottom:633.135000px;}
.y278{bottom:640.365000px;}
.y103{bottom:641.445000px;}
.y4d{bottom:641.595000px;}
.y15f{bottom:642.165000px;}
.yc1{bottom:642.345000px;}
.y18f{bottom:645.405000px;}
.y95{bottom:646.665000px;}
.y241{bottom:648.825000px;}
.y1b7{bottom:649.725000px;}
.y20{bottom:650.595000px;}
.y12a{bottom:651.345000px;}
.y277{bottom:656.745000px;}
.y4c{bottom:658.875000px;}
.y15e{bottom:659.445000px;}
.ybf{bottom:660.345000px;}
.y18a{bottom:663.405000px;}
.y94{bottom:663.765000px;}
.y210{bottom:663.945000px;}
.y1e5{bottom:664.665000px;}
.y240{bottom:666.105000px;}
.y1f{bottom:668.055000px;}
.y276{bottom:673.125000px;}
.y15d{bottom:673.485000px;}
.y168{bottom:673.560000px;}
.y129{bottom:674.025000px;}
.y4b{bottom:675.975000px;}
.y102{bottom:678.885000px;}
.ybd{bottom:680.685000px;}
.y93{bottom:681.045000px;}
.y1b6{bottom:683.025000px;}
.y275{bottom:689.505000px;}
.y4a{bottom:693.255000px;}
.y1e{bottom:695.415000px;}
.y1e4{bottom:697.965000px;}
.y92{bottom:698.325000px;}
.y18c{bottom:699.225000px;}
.y128{bottom:703.185000px;}
.ybc{bottom:703.545000px;}
.y23f{bottom:704.265000px;}
.y274{bottom:705.885000px;}
.y49{bottom:710.535000px;}
.y20c{bottom:710.925000px;}
.y1d{bottom:713.235000px;}
.y91{bottom:715.605000px;}
.y1b5{bottom:716.145000px;}
.y101{bottom:716.325000px;}
.y127{bottom:720.465000px;}
.y23e{bottom:721.545000px;}
.y273{bottom:722.265000px;}
.ybb{bottom:724.785000px;}
.y20b{bottom:728.205000px;}
.y189{bottom:731.085000px;}
.y90{bottom:732.885000px;}
.y126{bottom:737.745000px;}
.y272{bottom:738.645000px;}
.yba{bottom:744.765000px;}
.y188{bottom:748.365000px;}
.y1b4{bottom:749.445000px;}
.y8f{bottom:750.165000px;}
.y100{bottom:753.765000px;}
.y271{bottom:755.025000px;}
.y111{bottom:755.925000px;}
.y23d{bottom:760.965000px;}
.y1e3{bottom:764.385000px;}
.yb9{bottom:764.745000px;}
.y187{bottom:765.465000px;}
.y20a{bottom:766.365000px;}
.y8e{bottom:767.265000px;}
.y125{bottom:770.685000px;}
.y270{bottom:771.405000px;}
.yff{bottom:774.825000px;}
.y23c{bottom:779.325000px;}
.y1b3{bottom:782.565000px;}
.y186{bottom:782.745000px;}
.y209{bottom:783.645000px;}
.y1ce{bottom:784.185000px;}
.y8d{bottom:784.545000px;}
.yb8{bottom:784.725000px;}
.y143{bottom:785.085000px;}
.y26f{bottom:787.785000px;}
.y1fc{bottom:792.645000px;}
.yfe{bottom:793.185000px;}
.y1e2{bottom:797.505000px;}
.y208{bottom:800.925000px;}
.y8c{bottom:801.825000px;}
.y124{bottom:803.985000px;}
.y26e{bottom:804.165000px;}
.yb7{bottom:804.705000px;}
.yfc{bottom:808.125000px;}
.y185{bottom:815.865000px;}
.y23b{bottom:817.485000px;}
.y8b{bottom:819.105000px;}
.y26d{bottom:820.545000px;}
.y1ab{bottom:823.065000px;}
.yb6{bottom:824.685000px;}
.yfb{bottom:828.645000px;}
.y1e1{bottom:830.805000px;}
.y23a{bottom:834.765000px;}
.y8a{bottom:836.385000px;}
.y26c{bottom:836.925000px;}
.y123{bottom:837.105000px;}
.y207{bottom:839.985000px;}
.yb5{bottom:844.665000px;}
.y1df{bottom:845.745000px;}
.yf9{bottom:846.645000px;}
.y1c0{bottom:847.365000px;}
.y184{bottom:848.985000px;}
.y89{bottom:853.485000px;}
.yb4{bottom:861.945000px;}
.yd0{bottom:862.200000px;}
.y229{bottom:862.305000px;}
.yf8{bottom:864.825000px;}
.y1dd{bottom:866.625000px;}
.y26b{bottom:869.865000px;}
.y14e{bottom:870.225000px;}
.y88{bottom:870.810000px;}
.y239{bottom:873.150000px;}
.y1a{bottom:875.130000px;}
.y183{bottom:882.330000px;}
.yf7{bottom:882.870000px;}
.y26a{bottom:886.290000px;}
.y87{bottom:888.090000px;}
.y238{bottom:890.430000px;}
.y1db{bottom:895.110000px;}
.yf6{bottom:902.310000px;}
.y269{bottom:902.670000px;}
.ye{bottom:904.110000px;}
.y86{bottom:905.370000px;}
.y1b1{bottom:914.010000px;}
.y182{bottom:915.450000px;}
.y1d9{bottom:917.070000px;}
.y1b2{bottom:918.690000px;}
.y268{bottom:919.050000px;}
.yf5{bottom:921.750000px;}
.y85{bottom:922.650000px;}
.y1bf{bottom:926.610000px;}
.y237{bottom:928.590000px;}
.y267{bottom:935.430000px;}
.y84{bottom:939.930000px;}
.y1d8{bottom:940.470000px;}
.yf4{bottom:941.190000px;}
.y22f{bottom:944.610000px;}
.y236{bottom:945.870000px;}
.y181{bottom:948.750000px;}
.y22e{bottom:950.010000px;}
.y15c{bottom:951.810000px;}
.y83{bottom:957.030000px;}
.y1d6{bottom:958.470000px;}
.yf3{bottom:960.630000px;}
.y235{bottom:963.150000px;}
.y266{bottom:968.190000px;}
.y15b{bottom:969.090000px;}
.y82{bottom:974.310000px;}
.yf2{bottom:980.070000px;}
.y180{bottom:981.870000px;}
.y1d5{bottom:983.490000px;}
.y265{bottom:984.570000px;}
.y15a{bottom:986.370000px;}
.y81{bottom:991.590000px;}
.yf0{bottom:999.510000px;}
.y264{bottom:1000.950000px;}
.y234{bottom:1001.310000px;}
.y1d4{bottom:1001.490000px;}
.y159{bottom:1004.370000px;}
.y80{bottom:1008.870000px;}
.y17f{bottom:1015.170000px;}
.y263{bottom:1017.330000px;}
.y233{bottom:1018.590000px;}
.yef{bottom:1018.770000px;}
.y1d2{bottom:1019.490000px;}
.y157{bottom:1021.830000px;}
.y7f{bottom:1026.150000px;}
.y262{bottom:1033.710000px;}
.yee{bottom:1038.210000px;}
.y7e{bottom:1043.430000px;}
.y1d1{bottom:1046.670000px;}
.y17e{bottom:1048.290000px;}
.y261{bottom:1050.090000px;}
.y156{bottom:1050.990000px;}
.yc{bottom:1053.690000px;}
.y232{bottom:1056.750000px;}
.yec{bottom:1057.650000px;}
.y7d{bottom:1060.530000px;}
.y260{bottom:1066.470000px;}
.y1d0{bottom:1067.370000px;}
.y155{bottom:1068.990000px;}
.y6{bottom:1073.850000px;}
.y231{bottom:1074.030000px;}
.y7c{bottom:1077.810000px;}
.y17d{bottom:1081.590000px;}
.y25f{bottom:1082.850000px;}
.yeb{bottom:1083.030000px;}
.y154{bottom:1086.990000px;}
.y1cf{bottom:1091.310000px;}
.y25e{bottom:1099.230000px;}
.y7b{bottom:1100.310000px;}
.y153{bottom:1104.990000px;}
.y142{bottom:1110.930000px;}
.y7a{bottom:1112.370000px;}
.y17c{bottom:1114.710000px;}
.y25d{bottom:1115.610000px;}
.y152{bottom:1126.230000px;}
.y79{bottom:1129.650000px;}
.y25c{bottom:1131.990000px;}
.y1a9{bottom:1134.330000px;}
.y230{bottom:1142.640000px;}
.y151{bottom:1144.080000px;}
.y78{bottom:1146.960000px;}
.y17b{bottom:1148.040000px;}
.y25b{bottom:1148.400000px;}
.y22d{bottom:1154.700000px;}
.y77{bottom:1164.060000px;}
.y25a{bottom:1164.780000px;}
.y122{bottom:1178.280000px;}
.y17a{bottom:1181.160000px;}
.y76{bottom:1181.340000px;}
.hd{height:4.241250px;}
.h10{height:9.180000px;}
.h12{height:12.532852px;}
.h35{height:14.940000px;}
.h45{height:15.120000px;}
.h5d{height:15.300000px;}
.h39{height:15.840000px;}
.h4f{height:16.380000px;}
.h42{height:16.416000px;}
.h4d{height:16.596000px;}
.h65{height:16.740000px;}
.h47{height:16.920000px;}
.h41{height:17.100000px;}
.h1f{height:17.280000px;}
.h33{height:17.316000px;}
.h34{height:17.460000px;}
.h3d{height:17.820000px;}
.h3a{height:18.000000px;}
.h50{height:18.180000px;}
.h38{height:18.360000px;}
.h32{height:18.540000px;}
.h3c{height:18.576000px;}
.h31{height:18.720000px;}
.h4c{height:18.900000px;}
.h4b{height:19.080000px;}
.h40{height:19.260000px;}
.h66{height:19.440000px;}
.h26{height:19.620000px;}
.hb{height:19.800000px;}
.h53{height:19.980000px;}
.h59{height:20.160000px;}
.h57{height:21.240000px;}
.h62{height:21.780000px;}
.h25{height:22.140000px;}
.h61{height:22.176000px;}
.h56{height:22.680000px;}
.h67{height:23.040000px;}
.h55{height:24.120000px;}
.h5a{height:24.300000px;}
.h37{height:24.660000px;}
.h29{height:24.840000px;}
.h28{height:24.876000px;}
.h54{height:26.460000px;}
.h21{height:27.147656px;}
.h58{height:27.756000px;}
.h49{height:27.900000px;}
.h11{height:28.014609px;}
.h43{height:28.260000px;}
.h15{height:28.980000px;}
.h5b{height:29.880000px;}
.h13{height:32.103633px;}
.hf{height:34.036523px;}
.h27{height:34.380000px;}
.h60{height:34.560000px;}
.h4a{height:35.100000px;}
.h8{height:36.180000px;}
.h1c{height:36.462656px;}
.h6a{height:39.716016px;}
.h6c{height:40.243711px;}
.h69{height:41.410195px;}
.h1e{height:41.726953px;}
.h1d{height:42.164648px;}
.h1b{height:42.186445px;}
.h1a{height:42.281367px;}
.h5f{height:43.020000px;}
.h22{height:43.506914px;}
.ha{height:44.820000px;}
.h6b{height:46.016719px;}
.h14{height:47.223633px;}
.h18{height:47.980898px;}
.h20{height:48.027656px;}
.h68{height:48.321563px;}
.h19{height:49.742227px;}
.h23{height:50.273438px;}
.h24{height:50.800781px;}
.h2{height:52.416000px;}
.h63{height:52.845375px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h36{height:54.900000px;}
.h3b{height:55.080000px;}
.h51{height:55.116000px;}
.h46{height:55.260000px;}
.h64{height:56.556000px;}
.h3e{height:59.400000px;}
.h2c{height:59.439023px;}
.h2e{height:59.582250px;}
.h3{height:61.189805px;}
.h3f{height:62.640000px;}
.he{height:63.180000px;}
.h48{height:63.720000px;}
.h2a{height:65.884219px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h4e{height:73.296000px;}
.h16{height:73.722656px;}
.h5e{height:78.300000px;}
.h2d{height:86.255508px;}
.h52{height:90.720000px;}
.h30{height:110.583984px;}
.h5c{height:112.320000px;}
.h7{height:121.536000px;}
.hc{height:149.580000px;}
.h44{height:275.040000px;}
.h2f{height:275.580000px;}
.h2b{height:333.180000px;}
.h17{height:724.605000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w63{width:37.260000px;}
.w23{width:37.440000px;}
.w47{width:38.880000px;}
.w18{width:39.240000px;}
.w36{width:39.420000px;}
.w4c{width:39.456000px;}
.w35{width:40.140000px;}
.w2a{width:40.500000px;}
.w29{width:40.680000px;}
.w1c{width:41.796000px;}
.w2d{width:41.940000px;}
.w17{width:42.120000px;}
.w54{width:42.300000px;}
.w56{width:43.020000px;}
.w26{width:43.056000px;}
.w5e{width:43.200000px;}
.w48{width:44.280000px;}
.w37{width:44.640000px;}
.w55{width:47.016000px;}
.w2e{width:55.296000px;}
.w3a{width:59.616000px;}
.w45{width:62.316000px;}
.w58{width:62.496000px;}
.w5c{width:62.676000px;}
.w41{width:62.856000px;}
.w1f{width:63.756000px;}
.w13{width:63.936000px;}
.w1a{width:70.020000px;}
.w2b{width:71.316000px;}
.w64{width:73.476000px;}
.w57{width:73.836000px;}
.w3{width:74.880000px;}
.w1b{width:76.680000px;}
.w62{width:76.860000px;}
.wd{width:77.436000px;}
.w5f{width:77.616000px;}
.w4a{width:78.660000px;}
.w2c{width:78.840000px;}
.w4e{width:79.200000px;}
.w1e{width:79.560000px;}
.w1d{width:79.920000px;}
.w61{width:80.640000px;}
.w4b{width:80.820000px;}
.w53{width:81.036000px;}
.w27{width:81.360000px;}
.w39{width:81.396000px;}
.w4d{width:81.540000px;}
.w28{width:81.576000px;}
.w52{width:82.800000px;}
.w51{width:82.980000px;}
.w6c{width:89.280000px;}
.w6b{width:91.080000px;}
.w66{width:111.456000px;}
.w3b{width:115.920000px;}
.w40{width:134.100000px;}
.w16{width:138.060000px;}
.w3e{width:139.716000px;}
.w5{width:143.136000px;}
.w44{width:145.080000px;}
.w68{width:145.620000px;}
.w15{width:150.510000px;}
.w22{width:151.020000px;}
.w3f{width:153.930000px;}
.w5a{width:158.610000px;}
.w5b{width:159.300000px;}
.w43{width:162.030000px;}
.w69{width:170.310000px;}
.w32{width:179.130000px;}
.w31{width:181.110000px;}
.w30{width:181.290000px;}
.w33{width:183.270000px;}
.w10{width:184.710000px;}
.w9{width:196.410000px;}
.w21{width:198.210000px;}
.we{width:228.810000px;}
.w65{width:242.850000px;}
.wf{width:253.290000px;}
.w3d{width:274.530000px;}
.w3c{width:294.375000px;}
.w67{width:316.650000px;}
.w2f{width:326.730000px;}
.w20{width:331.275000px;}
.w5d{width:363.855000px;}
.w59{width:364.035000px;}
.w42{width:374.475000px;}
.w46{width:375.015000px;}
.w14{width:391.755000px;}
.wa{width:538.305000px;}
.wb{width:553.245000px;}
.wc{width:554.325000px;}
.w12{width:574.740000px;}
.w34{width:578.160000px;}
.w11{width:586.980000px;}
.w6{width:594.105000px;}
.w25{width:600.945000px;}
.w49{width:631.005000px;}
.w4f{width:635.865000px;}
.w19{width:638.745000px;}
.w60{width:640.365000px;}
.w50{width:648.105000px;}
.w6a{width:660.345000px;}
.w24{width:666.465000px;}
.w2{width:673.530000px;}
.w38{width:679.065000px;}
.w8{width:734.730000px;}
.w7{width:737.250000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x38{left:7.560000px;}
.x2{left:8.640000px;}
.x20{left:9.930000px;}
.x3a{left:14.580000px;}
.x6f{left:15.876000px;}
.x1f{left:17.535000px;}
.x18{left:18.540000px;}
.x3d{left:21.600000px;}
.x57{left:26.100000px;}
.x16{left:30.816000px;}
.x2e{left:34.776000px;}
.x1c{left:38.376000px;}
.x1b{left:42.696000px;}
.x3e{left:43.734000px;}
.x21{left:55.470000px;}
.x22{left:58.425000px;}
.xf{left:68.976000px;}
.xd{left:70.956000px;}
.x1{left:72.360000px;}
.x10{left:76.536000px;}
.x4{left:80.999987px;}
.x5{left:98.130000px;}
.x56{left:106.056000px;}
.x13{left:108.035987px;}
.x23{left:110.490000px;}
.x53{left:119.556000px;}
.x76{left:122.436000px;}
.x68{left:125.496000px;}
.x3c{left:126.576000px;}
.x49{left:129.276000px;}
.x31{left:131.436000px;}
.x50{left:132.840000px;}
.x14{left:135.035987px;}
.x61{left:136.836000px;}
.x2b{left:137.916000px;}
.x2f{left:140.076000px;}
.x44{left:141.336000px;}
.x29{left:144.615000px;}
.xe{left:145.650000px;}
.x3f{left:146.916000px;}
.x17{left:151.410000px;}
.x4e{left:157.320000px;}
.x1e{left:159.480000px;}
.x48{left:161.130000px;}
.x51{left:181.410000px;}
.x58{left:182.739000px;}
.x11{left:187.770000px;}
.x27{left:196.125000px;}
.x28{left:212.970000px;}
.x6{left:216.030000px;}
.x25{left:220.530000px;}
.x5b{left:235.470000px;}
.x6c{left:239.430000px;}
.x4f{left:242.025000px;}
.x5d{left:250.230000px;}
.x45{left:262.830000px;}
.x12{left:269.310000px;}
.x9{left:287.175000px;}
.x65{left:315.579000px;}
.x36{left:319.359000px;}
.x75{left:333.795000px;}
.x67{left:338.475000px;}
.x59{left:339.519000px;}
.x69{left:341.895000px;}
.x54{left:343.875000px;}
.x7{left:346.935000px;}
.x34{left:351.615000px;}
.x41{left:353.595000px;}
.x6a{left:356.115000px;}
.x43{left:364.035000px;}
.x8{left:366.195000px;}
.xc{left:367.275000px;}
.x72{left:368.355000px;}
.x32{left:370.335000px;}
.x2a{left:376.590000px;}
.x19{left:380.955000px;}
.x5f{left:390.675000px;}
.x24{left:414.750000px;}
.x52{left:428.505000px;}
.xb{left:431.175000px;}
.xa{left:454.440000px;}
.x4a{left:456.735000px;}
.x33{left:460.695000px;}
.x5a{left:462.315000px;}
.x40{left:466.095000px;}
.x30{left:468.285000px;}
.x37{left:469.905000px;}
.x64{left:471.525000px;}
.x70{left:476.025000px;}
.x46{left:481.605000px;}
.x6d{left:501.225000px;}
.x26{left:502.455000px;}
.x62{left:512.025000px;}
.x2c{left:530.565000px;}
.x5e{left:545.325000px;}
.x6b{left:569.985000px;}
.x55{left:580.785000px;}
.x3b{left:586.725000px;}
.x1a{left:635.145000px;}
.x4c{left:636.585000px;}
.x4b{left:638.745000px;}
.x74{left:649.545000px;}
.x42{left:653.685000px;}
.x6e{left:660.570000px;}
.x39{left:668.850000px;}
.x66{left:671.370000px;}
.x63{left:674.790000px;}
.x35{left:678.750000px;}
.x2d{left:681.810000px;}
.x60{left:685.770000px;}
.x71{left:688.110000px;}
.x5c{left:692.430000px;}
.x47{left:702.510000px;}
.x1d{left:735.629987px;}
.x4d{left:737.969987px;}
.x3{left:745.890000px;}
.x15{left:749.129987px;}
.x73{left:784.049987px;}
@media print{
.v3{vertical-align:-62.080000pt;}
.v5{vertical-align:-18.560000pt;}
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.v4{vertical-align:21.098667pt;}
.ls1c{letter-spacing:-3.792000pt;}
.ls8{letter-spacing:-1.653333pt;}
.ls17{letter-spacing:-1.600000pt;}
.ls23{letter-spacing:-0.960000pt;}
.lsb{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls22{letter-spacing:-0.288000pt;}
.ls1b{letter-spacing:-0.094933pt;}
.ls13{letter-spacing:-0.051840pt;}
.lse{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls19{letter-spacing:-0.001280pt;}
.ls6{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.032000pt;}
.ls11{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.053760pt;}
.ls9{letter-spacing:0.058667pt;}
.ls1a{letter-spacing:0.066667pt;}
.ls1{letter-spacing:0.117867pt;}
.ls16{letter-spacing:0.154880pt;}
.lsf{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.183467pt;}
.ls1d{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls18{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.558080pt;}
.ls21{letter-spacing:0.960000pt;}
.ls1e{letter-spacing:11.200000pt;}
.ls20{letter-spacing:18.584320pt;}
.ls10{letter-spacing:40.912640pt;}
.ls1f{letter-spacing:44.184320pt;}
.lsd{letter-spacing:56.912640pt;}
.ls15{letter-spacing:178.848000pt;}
.wsc{word-spacing:-53.120000pt;}
.ws19{word-spacing:-26.560000pt;}
.ws16{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws18{word-spacing:-14.656000pt;}
.ws17{word-spacing:-14.464000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.510933pt;}
.wsd{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.ws15{word-spacing:-13.185067pt;}
.ws6{word-spacing:-12.960000pt;}
.ws1a{word-spacing:-12.640000pt;}
.ws1c{word-spacing:-12.320000pt;}
.ws14{word-spacing:-12.071787pt;}
.wsf{word-spacing:-12.034048pt;}
.wse{word-spacing:-12.005120pt;}
.ws13{word-spacing:-12.003840pt;}
.ws12{word-spacing:-11.953280pt;}
.ws11{word-spacing:-11.680000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws9{word-spacing:-8.651520pt;}
.wsa{word-spacing:-8.640000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws1b{word-spacing:-7.712000pt;}
.ws4{word-spacing:-7.232000pt;}
.ws8{word-spacing:0.000000pt;}
._22{margin-left:-6.758400pt;}
._1e{margin-left:-5.220480pt;}
._0{margin-left:-4.302720pt;}
._4{margin-left:-2.715520pt;}
._1{margin-left:-1.328000pt;}
._2{width:0.992213pt;}
._c{width:2.106880pt;}
._3{width:3.040000pt;}
._13{width:4.779307pt;}
._12{width:6.215040pt;}
._5{width:7.339307pt;}
._6{width:8.871040pt;}
._8{width:9.912533pt;}
._16{width:11.042987pt;}
._17{width:12.075307pt;}
._15{width:14.270293pt;}
._1d{width:15.387733pt;}
._14{width:17.015467pt;}
._f{width:18.007680pt;}
._7{width:19.654400pt;}
._1c{width:20.610560pt;}
._18{width:21.764053pt;}
._d{width:22.805547pt;}
._e{width:23.780693pt;}
._10{width:24.930347pt;}
._11{width:26.152533pt;}
._19{width:27.745707pt;}
._1a{width:28.773973pt;}
._b{width:35.785813pt;}
._a{width:38.157227pt;}
._1b{width:41.168000pt;}
._9{width:44.620800pt;}
._1f{width:65.982293pt;}
._21{width:94.305067pt;}
._20{width:282.602667pt;}
.fs5{font-size:5.120000pt;}
.fs7{font-size:10.880000pt;}
.fs9{font-size:24.320000pt;}
.fsa{font-size:32.000000pt;}
.fs8{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fsb{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fsc{font-size:53.248000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fsd{font-size:96.000000pt;}
.y121{bottom:-44.154667pt;}
.y22c{bottom:-28.960000pt;}
.y176{bottom:-22.720000pt;}
.y1b0{bottom:-22.080000pt;}
.y1ca{bottom:-21.434667pt;}
.y204{bottom:-18.080000pt;}
.y149{bottom:-16.160000pt;}
.y120{bottom:-11.834667pt;}
.y0{bottom:0.000000pt;}
.y112{bottom:0.640000pt;}
.y170{bottom:0.800000pt;}
.y205{bottom:0.960000pt;}
.y1fd{bottom:1.280000pt;}
.y11c{bottom:1.440000pt;}
.y1be{bottom:1.920000pt;}
.y14f{bottom:1.960000pt;}
.y1aa{bottom:2.080000pt;}
.y14b{bottom:2.240000pt;}
.y178{bottom:2.400000pt;}
.y14d{bottom:2.560000pt;}
.y72{bottom:2.880000pt;}
.yfa{bottom:3.040000pt;}
.y19{bottom:3.200000pt;}
.y75{bottom:3.360000pt;}
.y18e{bottom:3.520000pt;}
.y11a{bottom:3.680000pt;}
.yd{bottom:3.840000pt;}
.yf1{bottom:4.000000pt;}
.yed{bottom:4.160000pt;}
.y1a1{bottom:4.200000pt;}
.y1a5{bottom:4.320000pt;}
.y191{bottom:4.480000pt;}
.y150{bottom:4.640000pt;}
.yc0{bottom:4.960000pt;}
.yfd{bottom:5.120000pt;}
.y74{bottom:5.280000pt;}
.y1e0{bottom:5.440000pt;}
.y116{bottom:5.600000pt;}
.y1c3{bottom:5.760000pt;}
.y11f{bottom:5.920000pt;}
.y175{bottom:6.080000pt;}
.y1dc{bottom:6.400000pt;}
.y1af{bottom:6.720000pt;}
.y1c9{bottom:6.880000pt;}
.ybe{bottom:7.200000pt;}
.y1da{bottom:7.680000pt;}
.y1d7{bottom:9.120000pt;}
.y118{bottom:9.280000pt;}
.yc7{bottom:9.600000pt;}
.yc5{bottom:9.760000pt;}
.y203{bottom:10.560000pt;}
.y1d3{bottom:11.040000pt;}
.ydb{bottom:12.160000pt;}
.y1de{bottom:12.200000pt;}
.y5{bottom:12.320000pt;}
.y148{bottom:12.640000pt;}
.y158{bottom:12.800000pt;}
.y1b{bottom:12.960000pt;}
.y1f9{bottom:14.240000pt;}
.y3{bottom:16.160000pt;}
.yc3{bottom:18.080000pt;}
.y71{bottom:18.240000pt;}
.y18d{bottom:18.720000pt;}
.y22b{bottom:20.040000pt;}
.y115{bottom:20.960000pt;}
.y1c2{bottom:21.160000pt;}
.y18{bottom:21.280000pt;}
.y174{bottom:21.440000pt;}
.y1ae{bottom:22.080000pt;}
.y1c8{bottom:22.240000pt;}
.y145{bottom:25.120000pt;}
.y211{bottom:25.760000pt;}
.y202{bottom:25.920000pt;}
.yb{bottom:26.880000pt;}
.y48{bottom:28.000000pt;}
.yda{bottom:28.413333pt;}
.y1{bottom:32.320000pt;}
.y4{bottom:32.672000pt;}
.y70{bottom:33.600000pt;}
.y2{bottom:33.792000pt;}
.y17{bottom:35.840000pt;}
.y114{bottom:36.320000pt;}
.y11e{bottom:36.480000pt;}
.y1c1{bottom:36.520000pt;}
.y173{bottom:36.800000pt;}
.y1ad{bottom:37.440000pt;}
.y1c7{bottom:37.600000pt;}
.y22a{bottom:37.800000pt;}
.y144{bottom:40.320000pt;}
.y47{bottom:40.960000pt;}
.ya{bottom:41.280000pt;}
.y20f{bottom:41.760000pt;}
.y147{bottom:43.200000pt;}
.y18b{bottom:44.160000pt;}
.yd1{bottom:45.760000pt;}
.y16{bottom:46.080000pt;}
.y6f{bottom:48.960000pt;}
.yea{bottom:51.653333pt;}
.y15{bottom:52.640000pt;}
.y1ac{bottom:52.680000pt;}
.y1c6{bottom:52.960000pt;}
.y46{bottom:54.080000pt;}
.y201{bottom:56.640000pt;}
.y20e{bottom:57.120000pt;}
.y14{bottom:60.000000pt;}
.y6e{bottom:64.160000pt;}
.y9{bottom:65.306667pt;}
.ye0{bottom:66.213333pt;}
.y45{bottom:67.040000pt;}
.ye9{bottom:67.933333pt;}
.y1c5{bottom:68.320000pt;}
.yd2{bottom:70.400000pt;}
.y13{bottom:70.560000pt;}
.y200{bottom:72.000000pt;}
.y12{bottom:75.520000pt;}
.y169{bottom:75.813333pt;}
.y6d{bottom:79.520000pt;}
.y44{bottom:80.160000pt;}
.y8{bottom:82.746667pt;}
.y1ff{bottom:87.360000pt;}
.y11{bottom:89.760000pt;}
.y141{bottom:89.952000pt;}
.ye8{bottom:90.853333pt;}
.y43{bottom:93.120000pt;}
.ye1{bottom:94.213333pt;}
.y16e{bottom:94.306667pt;}
.y6c{bottom:94.880000pt;}
.yd3{bottom:95.013333pt;}
.y7{bottom:98.906667pt;}
.ycf{bottom:99.072000pt;}
.y42{bottom:106.080000pt;}
.ye7{bottom:107.106667pt;}
.y6b{bottom:110.240000pt;}
.yb3{bottom:112.512000pt;}
.y10{bottom:112.640000pt;}
.y228{bottom:113.152000pt;}
.yce{bottom:114.432000pt;}
.y1fb{bottom:116.032000pt;}
.y294{bottom:116.832000pt;}
.y259{bottom:117.152000pt;}
.y140{bottom:117.632000pt;}
.y16d{bottom:118.426667pt;}
.y73{bottom:118.432000pt;}
.y41{bottom:119.200000pt;}
.yd4{bottom:119.653333pt;}
.y6a{bottom:125.600000pt;}
.ydd{bottom:126.853333pt;}
.y1bd{bottom:127.072000pt;}
.yb2{bottom:127.872000pt;}
.y227{bottom:129.472000pt;}
.ye6{bottom:130.013333pt;}
.yf{bottom:131.680000pt;}
.y40{bottom:132.160000pt;}
.ycd{bottom:132.192000pt;}
.y258{bottom:132.512000pt;}
.y1c{bottom:133.786667pt;}
.y11d{bottom:134.106667pt;}
.y110{bottom:137.306667pt;}
.y69{bottom:140.960000pt;}
.y16c{bottom:142.560000pt;}
.y167{bottom:142.586667pt;}
.ydf{bottom:143.200000pt;}
.yb1{bottom:143.226667pt;}
.y1c4{bottom:143.386667pt;}
.yd5{bottom:144.253333pt;}
.y3f{bottom:145.120000pt;}
.y13f{bottom:145.146667pt;}
.y1fa{bottom:145.466667pt;}
.y226{bottom:145.786667pt;}
.ye5{bottom:146.306667pt;}
.y293{bottom:146.746667pt;}
.y257{bottom:147.866667pt;}
.ycc{bottom:149.946667pt;}
.y68{bottom:156.160000pt;}
.y1bc{bottom:156.506667pt;}
.y166{bottom:157.946667pt;}
.y3e{bottom:158.240000pt;}
.yb0{bottom:158.586667pt;}
.y1f8{bottom:158.746667pt;}
.y292{bottom:161.306667pt;}
.ycb{bottom:165.306667pt;}
.yde{bottom:165.440000pt;}
.y16a{bottom:168.826667pt;}
.yd6{bottom:168.893333pt;}
.y10f{bottom:170.586667pt;}
.y3d{bottom:171.240000pt;}
.y146{bottom:171.386667pt;}
.y67{bottom:171.560000pt;}
.y13e{bottom:172.826667pt;}
.y165{bottom:173.306667pt;}
.yaf{bottom:174.106667pt;}
.ye2{bottom:174.400000pt;}
.y291{bottom:175.866667pt;}
.y225{bottom:179.866667pt;}
.y256{bottom:181.786667pt;}
.y3c{bottom:184.360000pt;}
.ye4{bottom:185.466667pt;}
.y1f7{bottom:185.946667pt;}
.y1bb{bottom:186.106667pt;}
.y66{bottom:186.920000pt;}
.yae{bottom:188.506667pt;}
.y290{bottom:190.426667pt;}
.yd7{bottom:193.533333pt;}
.y224{bottom:195.226667pt;}
.y255{bottom:197.146667pt;}
.y3b{bottom:197.320000pt;}
.y172{bottom:197.786667pt;}
.y1a8{bottom:200.026667pt;}
.y13d{bottom:200.346667pt;}
.y11b{bottom:200.986667pt;}
.y1f6{bottom:201.946667pt;}
.y65{bottom:202.280000pt;}
.y10e{bottom:203.866667pt;}
.yad{bottom:204.826667pt;}
.y28f{bottom:204.986667pt;}
.y3a{bottom:210.280000pt;}
.y223{bottom:210.426667pt;}
.ye3{bottom:211.973333pt;}
.y254{bottom:212.506667pt;}
.y1a7{bottom:213.306667pt;}
.y1ba{bottom:215.546667pt;}
.y64{bottom:217.640000pt;}
.y16b{bottom:217.853333pt;}
.y1f5{bottom:217.946667pt;}
.y164{bottom:218.106667pt;}
.yd8{bottom:218.146667pt;}
.y28e{bottom:219.546667pt;}
.yac{bottom:221.146667pt;}
.y39{bottom:223.400000pt;}
.y13c{bottom:228.026667pt;}
.y1a6{bottom:229.466667pt;}
.y63{bottom:233.000000pt;}
.y163{bottom:233.466667pt;}
.y1f4{bottom:233.946667pt;}
.y28d{bottom:234.106667pt;}
.yab{bottom:236.346667pt;}
.y38{bottom:236.360000pt;}
.y10d{bottom:237.146667pt;}
.yd9{bottom:242.786667pt;}
.y222{bottom:244.506667pt;}
.y1a4{bottom:245.466667pt;}
.y253{bottom:246.426667pt;}
.y14c{bottom:246.586667pt;}
.y1cc{bottom:247.546667pt;}
.y62{bottom:248.200000pt;}
.y28c{bottom:248.666667pt;}
.y37{bottom:249.320000pt;}
.yaa{bottom:251.706667pt;}
.y13b{bottom:255.546667pt;}
.y1f3{bottom:256.186667pt;}
.y221{bottom:259.866667pt;}
.y252{bottom:261.786667pt;}
.y36{bottom:262.440000pt;}
.y1a3{bottom:262.906667pt;}
.y28b{bottom:263.226667pt;}
.y61{bottom:263.560000pt;}
.y177{bottom:265.786667pt;}
.ya9{bottom:268.026667pt;}
.ydc{bottom:268.386667pt;}
.y10c{bottom:270.426667pt;}
.y179{bottom:271.226667pt;}
.y1f2{bottom:275.066667pt;}
.y220{bottom:275.226667pt;}
.y35{bottom:275.400000pt;}
.y251{bottom:277.146667pt;}
.y28a{bottom:277.786667pt;}
.y1a2{bottom:278.906667pt;}
.y60{bottom:278.920000pt;}
.y13a{bottom:283.226667pt;}
.ya8{bottom:283.386667pt;}
.y34{bottom:288.520000pt;}
.y1f1{bottom:291.066667pt;}
.y289{bottom:292.346667pt;}
.y250{bottom:292.506667pt;}
.y5f{bottom:294.280000pt;}
.y1a0{bottom:295.066667pt;}
.ya7{bottom:298.746667pt;}
.y33{bottom:301.480000pt;}
.y139{bottom:301.666667pt;}
.y10b{bottom:303.746667pt;}
.y288{bottom:306.946667pt;}
.y24f{bottom:307.746667pt;}
.y1f0{bottom:308.866667pt;}
.y21f{bottom:309.186667pt;}
.y5e{bottom:309.640000pt;}
.y19f{bottom:312.386667pt;}
.ya6{bottom:314.146667pt;}
.y32{bottom:314.440000pt;}
.y138{bottom:320.066667pt;}
.y287{bottom:321.666667pt;}
.y24e{bottom:323.746667pt;}
.y1ef{bottom:324.226667pt;}
.y21e{bottom:324.546667pt;}
.y5d{bottom:325.000000pt;}
.y31{bottom:327.560000pt;}
.ya5{bottom:329.346667pt;}
.y19e{bottom:329.506667pt;}
.y286{bottom:336.226667pt;}
.y10a{bottom:337.026667pt;}
.y137{bottom:338.466667pt;}
.y24d{bottom:339.426667pt;}
.y1ee{bottom:339.586667pt;}
.y21d{bottom:339.906667pt;}
.y5c{bottom:340.200000pt;}
.y30{bottom:340.520000pt;}
.ya4{bottom:344.706667pt;}
.y19d{bottom:347.746667pt;}
.y285{bottom:350.786667pt;}
.y2f{bottom:353.640000pt;}
.y24c{bottom:354.786667pt;}
.y1ed{bottom:354.946667pt;}
.y21c{bottom:355.266667pt;}
.y5b{bottom:355.560000pt;}
.y136{bottom:356.866667pt;}
.ya3{bottom:360.066667pt;}
.y119{bottom:363.746667pt;}
.y284{bottom:365.346667pt;}
.y2e{bottom:366.600000pt;}
.y19c{bottom:367.906667pt;}
.y24b{bottom:370.146667pt;}
.y109{bottom:370.306667pt;}
.y21b{bottom:370.466667pt;}
.y5a{bottom:370.920000pt;}
.y135{bottom:375.266667pt;}
.ya2{bottom:375.426667pt;}
.y2d{bottom:379.560000pt;}
.y283{bottom:379.906667pt;}
.y19b{bottom:383.266667pt;}
.y1ec{bottom:384.226667pt;}
.y24a{bottom:385.506667pt;}
.y21a{bottom:385.826667pt;}
.y59{bottom:386.280000pt;}
.ya1{bottom:390.786667pt;}
.y2c{bottom:392.520000pt;}
.y134{bottom:393.666667pt;}
.y282{bottom:394.466667pt;}
.y19a{bottom:398.626667pt;}
.y249{bottom:400.706667pt;}
.y219{bottom:401.186667pt;}
.y58{bottom:401.640000pt;}
.y108{bottom:403.586667pt;}
.ya0{bottom:406.146667pt;}
.y2b{bottom:407.906667pt;}
.y281{bottom:409.026667pt;}
.y133{bottom:412.066667pt;}
.y1eb{bottom:413.666667pt;}
.y199{bottom:413.986667pt;}
.yca{bottom:414.306667pt;}
.y248{bottom:416.066667pt;}
.y57{bottom:416.866667pt;}
.y113{bottom:417.346667pt;}
.y218{bottom:417.666667pt;}
.y9f{bottom:421.346667pt;}
.y2a{bottom:423.266667pt;}
.y280{bottom:423.586667pt;}
.y198{bottom:429.186667pt;}
.y132{bottom:430.466667pt;}
.yc9{bottom:431.106667pt;}
.y56{bottom:432.226667pt;}
.y247{bottom:432.706667pt;}
.y9e{bottom:436.706667pt;}
.y107{bottom:436.866667pt;}
.y27f{bottom:438.146667pt;}
.y29{bottom:439.106667pt;}
.y1ea{bottom:443.266667pt;}
.y197{bottom:444.546667pt;}
.yc8{bottom:446.466667pt;}
.y55{bottom:447.586667pt;}
.y131{bottom:448.866667pt;}
.y246{bottom:449.346667pt;}
.y1cd{bottom:451.906667pt;}
.y9d{bottom:452.066667pt;}
.y217{bottom:452.226667pt;}
.y27e{bottom:452.706667pt;}
.y14a{bottom:452.866667pt;}
.y28{bottom:454.466667pt;}
.y54{bottom:462.946667pt;}
.y245{bottom:465.986667pt;}
.y27d{bottom:467.266667pt;}
.y9c{bottom:467.426667pt;}
.y196{bottom:469.826667pt;}
.y27{bottom:469.986667pt;}
.y106{bottom:470.146667pt;}
.y1e9{bottom:472.706667pt;}
.y216{bottom:474.466667pt;}
.y130{bottom:476.386667pt;}
.y171{bottom:477.026667pt;}
.yc6{bottom:478.146667pt;}
.y53{bottom:478.306667pt;}
.y244{bottom:481.346667pt;}
.y16f{bottom:481.826667pt;}
.y9b{bottom:482.786667pt;}
.y117{bottom:483.906667pt;}
.y195{bottom:485.346667pt;}
.y26{bottom:485.506667pt;}
.y215{bottom:490.466667pt;}
.y12f{bottom:491.906667pt;}
.y52{bottom:493.666667pt;}
.y27c{bottom:496.386667pt;}
.y243{bottom:496.706667pt;}
.y9a{bottom:497.986667pt;}
.y25{bottom:500.866667pt;}
.y1e8{bottom:502.306667pt;}
.y105{bottom:503.586667pt;}
.y1fe{bottom:504.386667pt;}
.y206{bottom:505.986667pt;}
.y214{bottom:506.466667pt;}
.y194{bottom:508.066667pt;}
.y1cb{bottom:508.546667pt;}
.y51{bottom:508.866667pt;}
.y12e{bottom:510.146667pt;}
.y27b{bottom:510.946667pt;}
.y242{bottom:512.066667pt;}
.y99{bottom:513.346667pt;}
.y24{bottom:516.386667pt;}
.yc4{bottom:516.866667pt;}
.y1b9{bottom:518.466667pt;}
.y213{bottom:522.466667pt;}
.y193{bottom:524.066667pt;}
.y50{bottom:524.226667pt;}
.y162{bottom:524.866667pt;}
.y27a{bottom:525.506667pt;}
.y12d{bottom:527.426667pt;}
.y98{bottom:528.706667pt;}
.y1e7{bottom:531.746667pt;}
.y23{bottom:531.906667pt;}
.y104{bottom:536.893333pt;}
.y4f{bottom:539.586667pt;}
.yc2{bottom:539.773333pt;}
.y192{bottom:540.093333pt;}
.y161{bottom:540.253333pt;}
.y212{bottom:542.813333pt;}
.y97{bottom:544.093333pt;}
.y12c{bottom:544.573333pt;}
.y22{bottom:547.266667pt;}
.y1b8{bottom:548.093333pt;}
.y279{bottom:554.653333pt;}
.y4e{bottom:554.946667pt;}
.y160{bottom:555.453333pt;}
.y190{bottom:556.093333pt;}
.y20d{bottom:558.813333pt;}
.y96{bottom:559.453333pt;}
.y1e6{bottom:561.373333pt;}
.y12b{bottom:561.853333pt;}
.y21{bottom:562.786667pt;}
.y278{bottom:569.213333pt;}
.y103{bottom:570.173333pt;}
.y4d{bottom:570.306667pt;}
.y15f{bottom:570.813333pt;}
.yc1{bottom:570.973333pt;}
.y18f{bottom:573.693333pt;}
.y95{bottom:574.813333pt;}
.y241{bottom:576.733333pt;}
.y1b7{bottom:577.533333pt;}
.y20{bottom:578.306667pt;}
.y12a{bottom:578.973333pt;}
.y277{bottom:583.773333pt;}
.y4c{bottom:585.666667pt;}
.y15e{bottom:586.173333pt;}
.ybf{bottom:586.973333pt;}
.y18a{bottom:589.693333pt;}
.y94{bottom:590.013333pt;}
.y210{bottom:590.173333pt;}
.y1e5{bottom:590.813333pt;}
.y240{bottom:592.093333pt;}
.y1f{bottom:593.826667pt;}
.y276{bottom:598.333333pt;}
.y15d{bottom:598.653333pt;}
.y168{bottom:598.720000pt;}
.y129{bottom:599.133333pt;}
.y4b{bottom:600.866667pt;}
.y102{bottom:603.453333pt;}
.ybd{bottom:605.053333pt;}
.y93{bottom:605.373333pt;}
.y1b6{bottom:607.133333pt;}
.y275{bottom:612.893333pt;}
.y4a{bottom:616.226667pt;}
.y1e{bottom:618.146667pt;}
.y1e4{bottom:620.413333pt;}
.y92{bottom:620.733333pt;}
.y18c{bottom:621.533333pt;}
.y128{bottom:625.053333pt;}
.ybc{bottom:625.373333pt;}
.y23f{bottom:626.013333pt;}
.y274{bottom:627.453333pt;}
.y49{bottom:631.586667pt;}
.y20c{bottom:631.933333pt;}
.y1d{bottom:633.986667pt;}
.y91{bottom:636.093333pt;}
.y1b5{bottom:636.573333pt;}
.y101{bottom:636.733333pt;}
.y127{bottom:640.413333pt;}
.y23e{bottom:641.373333pt;}
.y273{bottom:642.013333pt;}
.ybb{bottom:644.253333pt;}
.y20b{bottom:647.293333pt;}
.y189{bottom:649.853333pt;}
.y90{bottom:651.453333pt;}
.y126{bottom:655.773333pt;}
.y272{bottom:656.573333pt;}
.yba{bottom:662.013333pt;}
.y188{bottom:665.213333pt;}
.y1b4{bottom:666.173333pt;}
.y8f{bottom:666.813333pt;}
.y100{bottom:670.013333pt;}
.y271{bottom:671.133333pt;}
.y111{bottom:671.933333pt;}
.y23d{bottom:676.413333pt;}
.y1e3{bottom:679.453333pt;}
.yb9{bottom:679.773333pt;}
.y187{bottom:680.413333pt;}
.y20a{bottom:681.213333pt;}
.y8e{bottom:682.013333pt;}
.y125{bottom:685.053333pt;}
.y270{bottom:685.693333pt;}
.yff{bottom:688.733333pt;}
.y23c{bottom:692.733333pt;}
.y1b3{bottom:695.613333pt;}
.y186{bottom:695.773333pt;}
.y209{bottom:696.573333pt;}
.y1ce{bottom:697.053333pt;}
.y8d{bottom:697.373333pt;}
.yb8{bottom:697.533333pt;}
.y143{bottom:697.853333pt;}
.y26f{bottom:700.253333pt;}
.y1fc{bottom:704.573333pt;}
.yfe{bottom:705.053333pt;}
.y1e2{bottom:708.893333pt;}
.y208{bottom:711.933333pt;}
.y8c{bottom:712.733333pt;}
.y124{bottom:714.653333pt;}
.y26e{bottom:714.813333pt;}
.yb7{bottom:715.293333pt;}
.yfc{bottom:718.333333pt;}
.y185{bottom:725.213333pt;}
.y23b{bottom:726.653333pt;}
.y8b{bottom:728.093333pt;}
.y26d{bottom:729.373333pt;}
.y1ab{bottom:731.613333pt;}
.yb6{bottom:733.053333pt;}
.yfb{bottom:736.573333pt;}
.y1e1{bottom:738.493333pt;}
.y23a{bottom:742.013333pt;}
.y8a{bottom:743.453333pt;}
.y26c{bottom:743.933333pt;}
.y123{bottom:744.093333pt;}
.y207{bottom:746.653333pt;}
.yb5{bottom:750.813333pt;}
.y1df{bottom:751.773333pt;}
.yf9{bottom:752.573333pt;}
.y1c0{bottom:753.213333pt;}
.y184{bottom:754.653333pt;}
.y89{bottom:758.653333pt;}
.yb4{bottom:766.173333pt;}
.yd0{bottom:766.400000pt;}
.y229{bottom:766.493333pt;}
.yf8{bottom:768.733333pt;}
.y1dd{bottom:770.333333pt;}
.y26b{bottom:773.213333pt;}
.y14e{bottom:773.533333pt;}
.y88{bottom:774.053333pt;}
.y239{bottom:776.133333pt;}
.y1a{bottom:777.893333pt;}
.y183{bottom:784.293333pt;}
.yf7{bottom:784.773333pt;}
.y26a{bottom:787.813333pt;}
.y87{bottom:789.413333pt;}
.y238{bottom:791.493333pt;}
.y1db{bottom:795.653333pt;}
.yf6{bottom:802.053333pt;}
.y269{bottom:802.373333pt;}
.ye{bottom:803.653333pt;}
.y86{bottom:804.773333pt;}
.y1b1{bottom:812.453333pt;}
.y182{bottom:813.733333pt;}
.y1d9{bottom:815.173333pt;}
.y1b2{bottom:816.613333pt;}
.y268{bottom:816.933333pt;}
.yf5{bottom:819.333333pt;}
.y85{bottom:820.133333pt;}
.y1bf{bottom:823.653333pt;}
.y237{bottom:825.413333pt;}
.y267{bottom:831.493333pt;}
.y84{bottom:835.493333pt;}
.y1d8{bottom:835.973333pt;}
.yf4{bottom:836.613333pt;}
.y22f{bottom:839.653333pt;}
.y236{bottom:840.773333pt;}
.y181{bottom:843.333333pt;}
.y22e{bottom:844.453333pt;}
.y15c{bottom:846.053333pt;}
.y83{bottom:850.693333pt;}
.y1d6{bottom:851.973333pt;}
.yf3{bottom:853.893333pt;}
.y235{bottom:856.133333pt;}
.y266{bottom:860.613333pt;}
.y15b{bottom:861.413333pt;}
.y82{bottom:866.053333pt;}
.yf2{bottom:871.173333pt;}
.y180{bottom:872.773333pt;}
.y1d5{bottom:874.213333pt;}
.y265{bottom:875.173333pt;}
.y15a{bottom:876.773333pt;}
.y81{bottom:881.413333pt;}
.yf0{bottom:888.453333pt;}
.y264{bottom:889.733333pt;}
.y234{bottom:890.053333pt;}
.y1d4{bottom:890.213333pt;}
.y159{bottom:892.773333pt;}
.y80{bottom:896.773333pt;}
.y17f{bottom:902.373333pt;}
.y263{bottom:904.293333pt;}
.y233{bottom:905.413333pt;}
.yef{bottom:905.573333pt;}
.y1d2{bottom:906.213333pt;}
.y157{bottom:908.293333pt;}
.y7f{bottom:912.133333pt;}
.y262{bottom:918.853333pt;}
.yee{bottom:922.853333pt;}
.y7e{bottom:927.493333pt;}
.y1d1{bottom:930.373333pt;}
.y17e{bottom:931.813333pt;}
.y261{bottom:933.413333pt;}
.y156{bottom:934.213333pt;}
.yc{bottom:936.613333pt;}
.y232{bottom:939.333333pt;}
.yec{bottom:940.133333pt;}
.y7d{bottom:942.693333pt;}
.y260{bottom:947.973333pt;}
.y1d0{bottom:948.773333pt;}
.y155{bottom:950.213333pt;}
.y6{bottom:954.533333pt;}
.y231{bottom:954.693333pt;}
.y7c{bottom:958.053333pt;}
.y17d{bottom:961.413333pt;}
.y25f{bottom:962.533333pt;}
.yeb{bottom:962.693333pt;}
.y154{bottom:966.213333pt;}
.y1cf{bottom:970.053333pt;}
.y25e{bottom:977.093333pt;}
.y7b{bottom:978.053333pt;}
.y153{bottom:982.213333pt;}
.y142{bottom:987.493333pt;}
.y7a{bottom:988.773333pt;}
.y17c{bottom:990.853333pt;}
.y25d{bottom:991.653333pt;}
.y152{bottom:1001.093333pt;}
.y79{bottom:1004.133333pt;}
.y25c{bottom:1006.213333pt;}
.y1a9{bottom:1008.293333pt;}
.y230{bottom:1015.680000pt;}
.y151{bottom:1016.960000pt;}
.y78{bottom:1019.520000pt;}
.y17b{bottom:1020.480000pt;}
.y25b{bottom:1020.800000pt;}
.y22d{bottom:1026.400000pt;}
.y77{bottom:1034.720000pt;}
.y25a{bottom:1035.360000pt;}
.y122{bottom:1047.360000pt;}
.y17a{bottom:1049.920000pt;}
.y76{bottom:1050.080000pt;}
.hd{height:3.770000pt;}
.h10{height:8.160000pt;}
.h12{height:11.140312pt;}
.h35{height:13.280000pt;}
.h45{height:13.440000pt;}
.h5d{height:13.600000pt;}
.h39{height:14.080000pt;}
.h4f{height:14.560000pt;}
.h42{height:14.592000pt;}
.h4d{height:14.752000pt;}
.h65{height:14.880000pt;}
.h47{height:15.040000pt;}
.h41{height:15.200000pt;}
.h1f{height:15.360000pt;}
.h33{height:15.392000pt;}
.h34{height:15.520000pt;}
.h3d{height:15.840000pt;}
.h3a{height:16.000000pt;}
.h50{height:16.160000pt;}
.h38{height:16.320000pt;}
.h32{height:16.480000pt;}
.h3c{height:16.512000pt;}
.h31{height:16.640000pt;}
.h4c{height:16.800000pt;}
.h4b{height:16.960000pt;}
.h40{height:17.120000pt;}
.h66{height:17.280000pt;}
.h26{height:17.440000pt;}
.hb{height:17.600000pt;}
.h53{height:17.760000pt;}
.h59{height:17.920000pt;}
.h57{height:18.880000pt;}
.h62{height:19.360000pt;}
.h25{height:19.680000pt;}
.h61{height:19.712000pt;}
.h56{height:20.160000pt;}
.h67{height:20.480000pt;}
.h55{height:21.440000pt;}
.h5a{height:21.600000pt;}
.h37{height:21.920000pt;}
.h29{height:22.080000pt;}
.h28{height:22.112000pt;}
.h54{height:23.520000pt;}
.h21{height:24.131250pt;}
.h58{height:24.672000pt;}
.h49{height:24.800000pt;}
.h11{height:24.901875pt;}
.h43{height:25.120000pt;}
.h15{height:25.760000pt;}
.h5b{height:26.560000pt;}
.h13{height:28.536563pt;}
.hf{height:30.254687pt;}
.h27{height:30.560000pt;}
.h60{height:30.720000pt;}
.h4a{height:31.200000pt;}
.h8{height:32.160000pt;}
.h1c{height:32.411250pt;}
.h6a{height:35.303125pt;}
.h6c{height:35.772188pt;}
.h69{height:36.809062pt;}
.h1e{height:37.090625pt;}
.h1d{height:37.479688pt;}
.h1b{height:37.499062pt;}
.h1a{height:37.583438pt;}
.h5f{height:38.240000pt;}
.h22{height:38.672812pt;}
.ha{height:39.840000pt;}
.h6b{height:40.903750pt;}
.h14{height:41.976562pt;}
.h18{height:42.649687pt;}
.h20{height:42.691250pt;}
.h68{height:42.952500pt;}
.h19{height:44.215312pt;}
.h23{height:44.687500pt;}
.h24{height:45.156250pt;}
.h2{height:46.592000pt;}
.h63{height:46.973667pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h36{height:48.800000pt;}
.h3b{height:48.960000pt;}
.h51{height:48.992000pt;}
.h46{height:49.120000pt;}
.h64{height:50.272000pt;}
.h3e{height:52.800000pt;}
.h2c{height:52.834688pt;}
.h2e{height:52.962000pt;}
.h3{height:54.390938pt;}
.h3f{height:55.680000pt;}
.he{height:56.160000pt;}
.h48{height:56.640000pt;}
.h2a{height:58.563750pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h4e{height:65.152000pt;}
.h16{height:65.531250pt;}
.h5e{height:69.600000pt;}
.h2d{height:76.671562pt;}
.h52{height:80.640000pt;}
.h30{height:98.296875pt;}
.h5c{height:99.840000pt;}
.h7{height:108.032000pt;}
.hc{height:132.960000pt;}
.h44{height:244.480000pt;}
.h2f{height:244.960000pt;}
.h2b{height:296.160000pt;}
.h17{height:644.093333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w63{width:33.120000pt;}
.w23{width:33.280000pt;}
.w47{width:34.560000pt;}
.w18{width:34.880000pt;}
.w36{width:35.040000pt;}
.w4c{width:35.072000pt;}
.w35{width:35.680000pt;}
.w2a{width:36.000000pt;}
.w29{width:36.160000pt;}
.w1c{width:37.152000pt;}
.w2d{width:37.280000pt;}
.w17{width:37.440000pt;}
.w54{width:37.600000pt;}
.w56{width:38.240000pt;}
.w26{width:38.272000pt;}
.w5e{width:38.400000pt;}
.w48{width:39.360000pt;}
.w37{width:39.680000pt;}
.w55{width:41.792000pt;}
.w2e{width:49.152000pt;}
.w3a{width:52.992000pt;}
.w45{width:55.392000pt;}
.w58{width:55.552000pt;}
.w5c{width:55.712000pt;}
.w41{width:55.872000pt;}
.w1f{width:56.672000pt;}
.w13{width:56.832000pt;}
.w1a{width:62.240000pt;}
.w2b{width:63.392000pt;}
.w64{width:65.312000pt;}
.w57{width:65.632000pt;}
.w3{width:66.560000pt;}
.w1b{width:68.160000pt;}
.w62{width:68.320000pt;}
.wd{width:68.832000pt;}
.w5f{width:68.992000pt;}
.w4a{width:69.920000pt;}
.w2c{width:70.080000pt;}
.w4e{width:70.400000pt;}
.w1e{width:70.720000pt;}
.w1d{width:71.040000pt;}
.w61{width:71.680000pt;}
.w4b{width:71.840000pt;}
.w53{width:72.032000pt;}
.w27{width:72.320000pt;}
.w39{width:72.352000pt;}
.w4d{width:72.480000pt;}
.w28{width:72.512000pt;}
.w52{width:73.600000pt;}
.w51{width:73.760000pt;}
.w6c{width:79.360000pt;}
.w6b{width:80.960000pt;}
.w66{width:99.072000pt;}
.w3b{width:103.040000pt;}
.w40{width:119.200000pt;}
.w16{width:122.720000pt;}
.w3e{width:124.192000pt;}
.w5{width:127.232000pt;}
.w44{width:128.960000pt;}
.w68{width:129.440000pt;}
.w15{width:133.786667pt;}
.w22{width:134.240000pt;}
.w3f{width:136.826667pt;}
.w5a{width:140.986667pt;}
.w5b{width:141.600000pt;}
.w43{width:144.026667pt;}
.w69{width:151.386667pt;}
.w32{width:159.226667pt;}
.w31{width:160.986667pt;}
.w30{width:161.146667pt;}
.w33{width:162.906667pt;}
.w10{width:164.186667pt;}
.w9{width:174.586667pt;}
.w21{width:176.186667pt;}
.we{width:203.386667pt;}
.w65{width:215.866667pt;}
.wf{width:225.146667pt;}
.w3d{width:244.026667pt;}
.w3c{width:261.666667pt;}
.w67{width:281.466667pt;}
.w2f{width:290.426667pt;}
.w20{width:294.466667pt;}
.w5d{width:323.426667pt;}
.w59{width:323.586667pt;}
.w42{width:332.866667pt;}
.w46{width:333.346667pt;}
.w14{width:348.226667pt;}
.wa{width:478.493333pt;}
.wb{width:491.773333pt;}
.wc{width:492.733333pt;}
.w12{width:510.880000pt;}
.w34{width:513.920000pt;}
.w11{width:521.760000pt;}
.w6{width:528.093333pt;}
.w25{width:534.173333pt;}
.w49{width:560.893333pt;}
.w4f{width:565.213333pt;}
.w19{width:567.773333pt;}
.w60{width:569.213333pt;}
.w50{width:576.093333pt;}
.w6a{width:586.973333pt;}
.w24{width:592.413333pt;}
.w2{width:598.693333pt;}
.w38{width:603.613333pt;}
.w8{width:653.093333pt;}
.w7{width:655.333333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x38{left:6.720000pt;}
.x2{left:7.680000pt;}
.x20{left:8.826667pt;}
.x3a{left:12.960000pt;}
.x6f{left:14.112000pt;}
.x1f{left:15.586667pt;}
.x18{left:16.480000pt;}
.x3d{left:19.200000pt;}
.x57{left:23.200000pt;}
.x16{left:27.392000pt;}
.x2e{left:30.912000pt;}
.x1c{left:34.112000pt;}
.x1b{left:37.952000pt;}
.x3e{left:38.874667pt;}
.x21{left:49.306667pt;}
.x22{left:51.933333pt;}
.xf{left:61.312000pt;}
.xd{left:63.072000pt;}
.x1{left:64.320000pt;}
.x10{left:68.032000pt;}
.x4{left:71.999988pt;}
.x5{left:87.226667pt;}
.x56{left:94.272000pt;}
.x13{left:96.031988pt;}
.x23{left:98.213333pt;}
.x53{left:106.272000pt;}
.x76{left:108.832000pt;}
.x68{left:111.552000pt;}
.x3c{left:112.512000pt;}
.x49{left:114.912000pt;}
.x31{left:116.832000pt;}
.x50{left:118.080000pt;}
.x14{left:120.031988pt;}
.x61{left:121.632000pt;}
.x2b{left:122.592000pt;}
.x2f{left:124.512000pt;}
.x44{left:125.632000pt;}
.x29{left:128.546667pt;}
.xe{left:129.466667pt;}
.x3f{left:130.592000pt;}
.x17{left:134.586667pt;}
.x4e{left:139.840000pt;}
.x1e{left:141.760000pt;}
.x48{left:143.226667pt;}
.x51{left:161.253333pt;}
.x58{left:162.434667pt;}
.x11{left:166.906667pt;}
.x27{left:174.333333pt;}
.x28{left:189.306667pt;}
.x6{left:192.026667pt;}
.x25{left:196.026667pt;}
.x5b{left:209.306667pt;}
.x6c{left:212.826667pt;}
.x4f{left:215.133333pt;}
.x5d{left:222.426667pt;}
.x45{left:233.626667pt;}
.x12{left:239.386667pt;}
.x9{left:255.266667pt;}
.x65{left:280.514667pt;}
.x36{left:283.874667pt;}
.x75{left:296.706667pt;}
.x67{left:300.866667pt;}
.x59{left:301.794667pt;}
.x69{left:303.906667pt;}
.x54{left:305.666667pt;}
.x7{left:308.386667pt;}
.x34{left:312.546667pt;}
.x41{left:314.306667pt;}
.x6a{left:316.546667pt;}
.x43{left:323.586667pt;}
.x8{left:325.506667pt;}
.xc{left:326.466667pt;}
.x72{left:327.426667pt;}
.x32{left:329.186667pt;}
.x2a{left:334.746667pt;}
.x19{left:338.626667pt;}
.x5f{left:347.266667pt;}
.x24{left:368.666667pt;}
.x52{left:380.893333pt;}
.xb{left:383.266667pt;}
.xa{left:403.946667pt;}
.x4a{left:405.986667pt;}
.x33{left:409.506667pt;}
.x5a{left:410.946667pt;}
.x40{left:414.306667pt;}
.x30{left:416.253333pt;}
.x37{left:417.693333pt;}
.x64{left:419.133333pt;}
.x70{left:423.133333pt;}
.x46{left:428.093333pt;}
.x6d{left:445.533333pt;}
.x26{left:446.626667pt;}
.x62{left:455.133333pt;}
.x2c{left:471.613333pt;}
.x5e{left:484.733333pt;}
.x6b{left:506.653333pt;}
.x55{left:516.253333pt;}
.x3b{left:521.533333pt;}
.x1a{left:564.573333pt;}
.x4c{left:565.853333pt;}
.x4b{left:567.773333pt;}
.x74{left:577.373333pt;}
.x42{left:581.053333pt;}
.x6e{left:587.173333pt;}
.x39{left:594.533333pt;}
.x66{left:596.773333pt;}
.x63{left:599.813333pt;}
.x35{left:603.333333pt;}
.x2d{left:606.053333pt;}
.x60{left:609.573333pt;}
.x71{left:611.653333pt;}
.x5c{left:615.493333pt;}
.x47{left:624.453333pt;}
.x1d{left:653.893322pt;}
.x4d{left:655.973322pt;}
.x3{left:663.013333pt;}
.x15{left:665.893322pt;}
.x73{left:696.933322pt;}
}




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