
    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_c3bda6468b9dfdd1331e99d7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.136230;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_d744bd29ca8e889cf1713f4e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.091309;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_9f63a31dd19f9068ef509679.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3a3e8f946517f3f97f21676b.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_c7fcd8447e3a396206779f79.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_83d0b8a72999c61ed5378f0c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_f1b5da28740d355483c2dd9a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;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_ee6690a6a8e02bf43df9c27c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.119629;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_95dd8b04e438738abed12b00.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b38e0b069cf7cbdc5ab31a3d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.104492;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_80ce994da0590f862ee6fb9d.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_9e3d8348bb128ccbd9a2cec7.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_e3f6b3d2de0b0f22e39e419c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.166504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-83.520000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls10{letter-spacing:-1.152000px;}
.ls24{letter-spacing:-0.936000px;}
.ls28{letter-spacing:-0.828000px;}
.ls27{letter-spacing:-0.720000px;}
.ls17{letter-spacing:-0.576000px;}
.ls1d{letter-spacing:-0.432000px;}
.ls4{letter-spacing:-0.305400px;}
.ls14{letter-spacing:-0.223800px;}
.ls9{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.181200px;}
.ls2d{letter-spacing:-0.152400px;}
.ls26{letter-spacing:-0.144000px;}
.ls1f{letter-spacing:-0.131400px;}
.ls3{letter-spacing:-0.109200px;}
.ls1b{letter-spacing:-0.108000px;}
.ls1a{letter-spacing:-0.106800px;}
.ls1e{letter-spacing:-0.058320px;}
.ls1c{letter-spacing:-0.053280px;}
.ls8{letter-spacing:-0.037440px;}
.ls2c{letter-spacing:-0.028080px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.010560px;}
.ls21{letter-spacing:0.037440px;}
.lsd{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.144000px;}
.ls19{letter-spacing:0.152640px;}
.ls0{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.216000px;}
.lse{letter-spacing:0.262080px;}
.lsc{letter-spacing:0.269280px;}
.ls6{letter-spacing:0.288000px;}
.ls29{letter-spacing:0.305400px;}
.ls15{letter-spacing:0.311760px;}
.ls23{letter-spacing:0.341280px;}
.ls13{letter-spacing:0.989280px;}
.ls18{letter-spacing:3.024000px;}
.ls25{letter-spacing:11.789280px;}
.ls2b{letter-spacing:28.224000px;}
.ls12{letter-spacing:31.104000px;}
.ls11{letter-spacing:34.865280px;}
.ls2a{letter-spacing:54.869760px;}
.ls16{letter-spacing:58.266720px;}
.lsf{letter-spacing:67.265280px;}
.ls20{letter-spacing:184.333440px;}
.ls2{letter-spacing:192.360000px;}
.ls22{letter-spacing:194.376000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-84.240000px;}
.ws4{word-spacing:-23.381280px;}
.ws1c{word-spacing:-20.304000px;}
.ws1e{word-spacing:-20.232000px;}
.wsb{word-spacing:-20.160000px;}
.ws1{word-spacing:-20.016000px;}
.ws1a{word-spacing:-19.872000px;}
.ws1b{word-spacing:-19.800000px;}
.ws1d{word-spacing:-19.584000px;}
.ws20{word-spacing:-18.720120px;}
.ws14{word-spacing:-18.454752px;}
.wsc{word-spacing:-18.414720px;}
.ws2{word-spacing:-18.305520px;}
.ws3{word-spacing:-18.109320px;}
.ws8{word-spacing:-18.000000px;}
.ws17{word-spacing:-17.614080px;}
.ws1f{word-spacing:-17.586720px;}
.wse{word-spacing:-16.613280px;}
.ws12{word-spacing:-16.560000px;}
.ws11{word-spacing:-16.506480px;}
.wsd{word-spacing:-15.228000px;}
.ws16{word-spacing:-15.012000px;}
.ws10{word-spacing:-14.904000px;}
.wsf{word-spacing:-13.538304px;}
.ws13{word-spacing:-13.505760px;}
.ws6{word-spacing:-13.410720px;}
.ws7{word-spacing:-13.229520px;}
.ws9{word-spacing:-13.186920px;}
.wsa{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.ws15{word-spacing:54.132480px;}
.ws18{word-spacing:151.121280px;}
.ws19{word-spacing:151.374000px;}
._27{margin-left:-12.696000px;}
._d{margin-left:-6.408000px;}
._e{margin-left:-4.533120px;}
._a{margin-left:-3.528000px;}
._2{margin-left:-2.124000px;}
._1{margin-left:-1.008000px;}
._0{width:1.006560px;}
._f{width:2.652000px;}
._13{width:3.888000px;}
._c{width:5.042880px;}
._8{width:6.120000px;}
._7{width:7.200000px;}
._9{width:8.208000px;}
._15{width:9.220320px;}
._6{width:10.440000px;}
._4{width:11.448000px;}
._5{width:12.588000px;}
._b{width:14.040000px;}
._12{width:15.264000px;}
._11{width:17.064000px;}
._14{width:18.648000px;}
._35{width:19.824000px;}
._2f{width:21.530880px;}
._1a{width:22.605120px;}
._19{width:23.653440px;}
._3{width:25.272000px;}
._25{width:26.568000px;}
._30{width:27.648000px;}
._16{width:28.656000px;}
._17{width:29.700000px;}
._1f{width:31.608000px;}
._20{width:32.688000px;}
._24{width:34.092000px;}
._23{width:35.208000px;}
._26{width:36.289440px;}
._1b{width:38.232000px;}
._1e{width:40.296000px;}
._2b{width:42.048000px;}
._34{width:43.632000px;}
._29{width:44.760000px;}
._18{width:46.584000px;}
._10{width:48.744000px;}
._1d{width:55.226880px;}
._1c{width:56.664000px;}
._22{width:64.008000px;}
._32{width:89.375040px;}
._31{width:98.627040px;}
._28{width:107.424000px;}
._33{width:111.594720px;}
._2c{width:113.040000px;}
._38{width:166.328640px;}
._39{width:167.646720px;}
._21{width:172.344000px;}
._2d{width:180.720000px;}
._2e{width:181.896000px;}
._2a{width:192.360000px;}
._36{width:423.869760px;}
._37{width:425.028000px;}
.fc7{color:rgb(38,74,96);}
.fcb{color:rgb(149,79,114);}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fc1{color:rgb(154,0,64);}
.fca{color:rgb(34,34,34);}
.fc9{color:rgb(64,64,64);}
.fc8{color:rgb(255,255,255);}
.fc6{color:rgb(1,2,5);}
.fc2{color:rgb(191,191,191);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:2.880000px;}
.fs8{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs9{font-size:59.760000px;}
.fsc{font-size:59.904000px;}
.fse{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fsd{font-size:66.384000px;}
.fs7{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs5{font-size:120.240000px;}
.fs1{font-size:131.760000px;}
.fs2{font-size:144.000000px;}
.fs3{font-size:156.240000px;}
.fs4{font-size:167.760000px;}
.y1a2{bottom:-8.970000px;}
.y0{bottom:0.000000px;}
.y168{bottom:2.880000px;}
.y210{bottom:2.925000px;}
.y16c{bottom:3.060000px;}
.y18a{bottom:3.240000px;}
.y18d{bottom:3.270000px;}
.y190{bottom:3.315000px;}
.y4e{bottom:3.420000px;}
.y50{bottom:3.600000px;}
.y14b{bottom:3.780000px;}
.y1a7{bottom:3.960000px;}
.y19b{bottom:3.990000px;}
.y199{bottom:4.035000px;}
.y1fc{bottom:4.065000px;}
.y1fe{bottom:4.110000px;}
.y200{bottom:4.140000px;}
.y224{bottom:4.170000px;}
.y2db{bottom:5.040000px;}
.y320{bottom:5.220000px;}
.y323{bottom:5.400000px;}
.y32e{bottom:5.580000px;}
.y2ca{bottom:6.120000px;}
.y2cd{bottom:6.300000px;}
.y333{bottom:6.660000px;}
.y325{bottom:6.840000px;}
.y336{bottom:6.885000px;}
.y33a{bottom:7.200000px;}
.y2cc{bottom:7.560000px;}
.y21d{bottom:8.565000px;}
.y21b{bottom:8.610000px;}
.y220{bottom:8.715000px;}
.y2d2{bottom:8.820000px;}
.y1aa{bottom:9.900000px;}
.y1a1{bottom:9.930000px;}
.y1ac{bottom:10.080000px;}
.y310{bottom:10.620000px;}
.y311{bottom:10.800000px;}
.y1a4{bottom:11.010000px;}
.y20c{bottom:11.340000px;}
.y211{bottom:11.385000px;}
.y20e{bottom:11.520000px;}
.y165{bottom:11.880000px;}
.y30f{bottom:12.090000px;}
.y318{bottom:12.240000px;}
.y30c{bottom:12.780000px;}
.y30d{bottom:12.960000px;}
.y314{bottom:13.140000px;}
.y1b5{bottom:13.320000px;}
.y1ae{bottom:13.500000px;}
.y36{bottom:14.040000px;}
.y38{bottom:14.220000px;}
.y47{bottom:14.250000px;}
.y313{bottom:14.400000px;}
.y1a5{bottom:15.120000px;}
.y1f1{bottom:15.270000px;}
.y20a{bottom:15.300000px;}
.y35{bottom:15.480000px;}
.y39{bottom:15.660000px;}
.y48{bottom:15.690000px;}
.y237{bottom:18.354000px;}
.y20b{bottom:18.360000px;}
.y2d3{bottom:19.080000px;}
.y2d4{bottom:19.260000px;}
.y1b9{bottom:20.340000px;}
.y1af{bottom:20.520000px;}
.y2e3{bottom:22.314000px;}
.y2f2{bottom:22.320000px;}
.y2e4{bottom:22.494000px;}
.y2dd{bottom:22.500000px;}
.y2ed{bottom:22.545000px;}
.y2de{bottom:22.680000px;}
.y2ee{bottom:22.725000px;}
.y316{bottom:23.940000px;}
.y14e{bottom:24.480000px;}
.y157{bottom:24.510000px;}
.y328{bottom:24.660000px;}
.y149{bottom:25.380000px;}
.y32b{bottom:25.734000px;}
.y31b{bottom:25.740000px;}
.y335{bottom:25.785000px;}
.y32c{bottom:25.914000px;}
.y326{bottom:25.920000px;}
.y337{bottom:25.965000px;}
.y339{bottom:26.280000px;}
.y1a8{bottom:27.000000px;}
.y1d4{bottom:27.720000px;}
.y2d1{bottom:27.900000px;}
.y16a{bottom:28.440000px;}
.y2d0{bottom:29.340000px;}
.y1bd{bottom:30.600000px;}
.y1f2{bottom:33.330000px;}
.y218{bottom:33.840000px;}
.y1be{bottom:37.620000px;}
.y197{bottom:41.295000px;}
.y2e9{bottom:41.400000px;}
.y2ea{bottom:41.580000px;}
.y31a{bottom:42.840000px;}
.y14d{bottom:45.180000px;}
.y156{bottom:45.210000px;}
.y33b{bottom:45.360000px;}
.y1f3{bottom:57.600000px;}
.y1{bottom:58.320000px;}
.y151{bottom:65.925000px;}
.y196{bottom:66.885000px;}
.y19f{bottom:67.065000px;}
.y5c{bottom:77.400000px;}
.y1f4{bottom:81.825000px;}
.y195{bottom:92.490000px;}
.y19e{bottom:92.670000px;}
.y5b{bottom:92.880000px;}
.y1e4{bottom:100.770000px;}
.y1f5{bottom:106.095000px;}
.y33{bottom:111.960000px;}
.y238{bottom:115.020000px;}
.y188{bottom:117.360000px;}
.yf7{bottom:117.720000px;}
.y194{bottom:118.080000px;}
.y260{bottom:119.700000px;}
.y147{bottom:120.780000px;}
.y26a{bottom:121.680000px;}
.y1ef{bottom:122.580000px;}
.y1cc{bottom:124.380000px;}
.ya2{bottom:126.720000px;}
.y161{bottom:126.900000px;}
.y34a{bottom:127.476000px;}
.yb3{bottom:127.836000px;}
.y1e3{bottom:128.010000px;}
.y16{bottom:128.376000px;}
.y1f6{bottom:130.350000px;}
.y32a{bottom:130.536000px;}
.y132{bottom:131.076000px;}
.y348{bottom:131.976000px;}
.y219{bottom:133.056000px;}
.y2e2{bottom:135.036000px;}
.yc9{bottom:137.556000px;}
.y34b{bottom:137.736000px;}
.y27e{bottom:138.816000px;}
.y236{bottom:139.896000px;}
.y126{bottom:141.156000px;}
.y1cb{bottom:142.056000px;}
.y2a0{bottom:142.776000px;}
.y96{bottom:142.956000px;}
.y193{bottom:143.670000px;}
.ye0{bottom:144.936000px;}
.y24c{bottom:145.656000px;}
.y206{bottom:147.600000px;}
.y111{bottom:149.076000px;}
.y78{bottom:150.690000px;}
.y25f{bottom:150.870000px;}
.y217{bottom:151.590000px;}
.y146{bottom:151.950000px;}
.y269{bottom:152.670000px;}
.y187{bottom:152.850000px;}
.y19c{bottom:154.260000px;}
.y1f7{bottom:154.620000px;}
.y32{bottom:155.010000px;}
.y2fd{bottom:156.825000px;}
.ya1{bottom:157.890000px;}
.y1ee{bottom:158.250000px;}
.y204{bottom:158.400000px;}
.yb2{bottom:158.970000px;}
.y15{bottom:159.510000px;}
.yf6{bottom:160.770000px;}
.y131{bottom:162.030000px;}
.y349{bottom:165.090000px;}
.y1ca{bottom:166.710000px;}
.y160{bottom:169.950000px;}
.y1c3{bottom:170.850000px;}
.y235{bottom:171.750000px;}
.y329{bottom:172.470000px;}
.y2e1{bottom:173.730000px;}
.y95{bottom:173.910000px;}
.y347{bottom:174.990000px;}
.y19d{bottom:175.890000px;}
.y24b{bottom:176.610000px;}
.y1f8{bottom:178.890000px;}
.y29f{bottom:179.490000px;}
.y110{bottom:180.030000px;}
.y77{bottom:181.830000px;}
.y205{bottom:182.055000px;}
.y145{bottom:182.910000px;}
.y268{bottom:183.810000px;}
.y177{bottom:185.430000px;}
.yc8{bottom:185.790000px;}
.ydf{bottom:187.950000px;}
.y1de{bottom:188.130000px;}
.y2fc{bottom:188.145000px;}
.y1e1{bottom:188.280000px;}
.ya0{bottom:188.850000px;}
.yb1{bottom:189.930000px;}
.y2fa{bottom:192.090000px;}
.y14{bottom:193.170000px;}
.y2e0{bottom:193.350000px;}
.y327{bottom:193.890000px;}
.y234{bottom:196.410000px;}
.y31{bottom:198.030000px;}
.y198{bottom:199.620000px;}
.y27d{bottom:200.910000px;}
.y192{bottom:201.390000px;}
.y29e{bottom:201.450000px;}
.y1c2{bottom:201.990000px;}
.y1f9{bottom:203.115000px;}
.yf5{bottom:203.790000px;}
.y94{bottom:204.870000px;}
.y24a{bottom:207.750000px;}
.y10f{bottom:211.170000px;}
.y76{bottom:212.790000px;}
.y25e{bottom:212.970000px;}
.y15f{bottom:213.150000px;}
.y144{bottom:213.870000px;}
.y2bc{bottom:214.050000px;}
.y1c9{bottom:215.490000px;}
.y1a0{bottom:216.360000px;}
.y346{bottom:218.010000px;}
.y9f{bottom:219.990000px;}
.y201{bottom:221.040000px;}
.yb0{bottom:221.070000px;}
.y216{bottom:222.150000px;}
.y2f9{bottom:224.850000px;}
.y267{bottom:226.830000px;}
.yde{bottom:230.970000px;}
.y27c{bottom:231.870000px;}
.yc7{bottom:234.030000px;}
.y324{bottom:234.570000px;}
.yf4{bottom:234.930000px;}
.y93{bottom:236.010000px;}
.y29d{bottom:237.990000px;}
.y249{bottom:238.710000px;}
.y1c8{bottom:240.330000px;}
.y13{bottom:240.690000px;}
.y30{bottom:240.870000px;}
.y130{bottom:242.130000px;}
.y75{bottom:243.930000px;}
.y143{bottom:245.010000px;}
.y1e2{bottom:246.315000px;}
.y9e{bottom:250.950000px;}
.y2df{bottom:251.850000px;}
.y203{bottom:252.000000px;}
.y125{bottom:252.030000px;}
.y59{bottom:252.390000px;}
.y215{bottom:253.110000px;}
.y233{bottom:253.290000px;}
.y15e{bottom:256.170000px;}
.y2bb{bottom:257.070000px;}
.y2f8{bottom:257.610000px;}
.y266{bottom:257.790000px;}
.y10e{bottom:260.130000px;}
.y345{bottom:261.210000px;}
.y27b{bottom:263.010000px;}
.y1a3{bottom:264.240000px;}
.yf3{bottom:265.890000px;}
.y92{bottom:266.970000px;}
.y248{bottom:269.850000px;}
.y58{bottom:271.290000px;}
.y12f{bottom:273.270000px;}
.ydd{bottom:273.990000px;}
.y74{bottom:274.890000px;}
.y25d{bottom:275.070000px;}
.y142{bottom:275.970000px;}
.y322{bottom:276.510000px;}
.y214{bottom:277.230000px;}
.y29c{bottom:281.910000px;}
.y9d{bottom:282.090000px;}
.yc6{bottom:282.270000px;}
.y202{bottom:282.960000px;}
.y124{bottom:283.170000px;}
.y2f{bottom:283.890000px;}
.y232{bottom:284.250000px;}
.y265{bottom:288.930000px;}
.y57{bottom:290.190000px;}
.y2dc{bottom:290.550000px;}
.y10d{bottom:291.270000px;}
.y19a{bottom:292.860000px;}
.y12{bottom:293.430000px;}
.y1c7{bottom:297.210000px;}
.y321{bottom:297.930000px;}
.y91{bottom:298.110000px;}
.y15d{bottom:299.190000px;}
.y2ba{bottom:300.090000px;}
.y247{bottom:300.810000px;}
.y213{bottom:301.170000px;}
.y344{bottom:303.510000px;}
.y29b{bottom:303.690000px;}
.y27a{bottom:306.030000px;}
.y1c1{bottom:307.110000px;}
.yf2{bottom:308.910000px;}
.y56{bottom:309.270000px;}
.y9c{bottom:313.050000px;}
.y231{bottom:315.390000px;}
.ydc{bottom:317.010000px;}
.y25c{bottom:318.090000px;}
.y141{bottom:319.170000px;}
.y264{bottom:319.890000px;}
.y73{bottom:320.970000px;}
.y1e0{bottom:321.300000px;}
.y10c{bottom:322.230000px;}
.y2f7{bottom:322.590000px;}
.y2e{bottom:326.910000px;}
.y55{bottom:328.170000px;}
.y2da{bottom:329.250000px;}
.yc5{bottom:330.510000px;}
.y1df{bottom:331.380000px;}
.y246{bottom:331.950000px;}
.y123{bottom:332.130000px;}
.y31f{bottom:336.630000px;}
.y279{bottom:337.170000px;}
.y1c0{bottom:338.070000px;}
.yf1{bottom:340.050000px;}
.y29a{bottom:340.410000px;}
.y15c{bottom:342.210000px;}
.y2b9{bottom:343.110000px;}
.y90{bottom:344.190000px;}
.y343{bottom:345.630000px;}
.y11{bottom:346.170000px;}
.y54{bottom:347.250000px;}
.y140{bottom:350.130000px;}
.y2d9{bottom:350.310000px;}
.y263{bottom:351.030000px;}
.y72{bottom:351.930000px;}
.y10b{bottom:353.370000px;}
.y2f6{bottom:354.630000px;}
.y212{bottom:356.250000px;}
.y2d{bottom:358.050000px;}
.yaf{bottom:359.130000px;}
.ydb{bottom:360.030000px;}
.y25b{bottom:361.110000px;}
.y299{bottom:362.370000px;}
.y245{bottom:362.910000px;}
.y122{bottom:363.270000px;}
.y53{bottom:366.150000px;}
.y230{bottom:367.230000px;}
.y278{bottom:368.130000px;}
.y1bf{bottom:369.210000px;}
.yf0{bottom:371.010000px;}
.y12e{bottom:371.370000px;}
.y31e{bottom:373.530000px;}
.y8f{bottom:375.150000px;}
.yc4{bottom:378.750000px;}
.y2fb{bottom:379.650000px;}
.y20f{bottom:380.190000px;}
.y13f{bottom:381.315000px;}
.y186{bottom:381.675000px;}
.y262{bottom:382.035000px;}
.y71{bottom:383.115000px;}
.y10a{bottom:384.375000px;}
.y52{bottom:385.095000px;}
.y15b{bottom:385.275000px;}
.y2d8{bottom:385.635000px;}
.y2b8{bottom:386.175000px;}
.y22f{bottom:387.255000px;}
.y342{bottom:387.975000px;}
.yae{bottom:390.315000px;}
.y25a{bottom:392.115000px;}
.y244{bottom:394.095000px;}
.y121{bottom:394.275000px;}
.y1ed{bottom:394.815000px;}
.y298{bottom:398.955000px;}
.y10{bottom:399.135000px;}
.y277{bottom:399.315000px;}
.y2c{bottom:401.115000px;}
.y12d{bottom:402.375000px;}
.yda{bottom:403.275000px;}
.y51{bottom:404.175000px;}
.y31d{bottom:404.715000px;}
.y8e{bottom:406.335000px;}
.y13e{bottom:412.275000px;}
.y185{bottom:412.635000px;}
.y261{bottom:413.175000px;}
.yef{bottom:414.075000px;}
.y109{bottom:415.515000px;}
.y2d7{bottom:416.775000px;}
.y341{bottom:419.115000px;}
.y297{bottom:421.095000px;}
.y9b{bottom:421.275000px;}
.y4f{bottom:423.075000px;}
.y259{bottom:423.255000px;}
.y243{bottom:425.055000px;}
.y120{bottom:425.415000px;}
.yc3{bottom:427.035000px;}
.y15a{bottom:428.295000px;}
.y70{bottom:429.195000px;}
.y276{bottom:430.275000px;}
.y12c{bottom:433.515000px;}
.y176{bottom:436.935000px;}
.y8d{bottom:437.295000px;}
.y2d6{bottom:437.475000px;}
.y1ec{bottom:437.835000px;}
.y4d{bottom:442.155000px;}
.y13d{bottom:443.415000px;}
.y184{bottom:443.775000px;}
.y2b{bottom:444.135000px;}
.yee{bottom:445.215000px;}
.yd9{bottom:446.295000px;}
.y340{bottom:451.155000px;}
.yf{bottom:451.875000px;}
.y9a{bottom:452.415000px;}
.y258{bottom:454.215000px;}
.y11f{bottom:456.375000px;}
.y296{bottom:457.635000px;}
.y31c{bottom:457.815000px;}
.y20d{bottom:459.255000px;}
.y6f{bottom:460.155000px;}
.y275{bottom:461.415000px;}
.y108{bottom:464.475000px;}
.yad{bottom:467.355000px;}
.y175{bottom:468.075000px;}
.y8c{bottom:468.435000px;}
.y1eb{bottom:468.795000px;}
.y1c6{bottom:469.335000px;}
.y2d5{bottom:469.875000px;}
.y159{bottom:471.495000px;}
.y2b7{bottom:472.215000px;}
.y319{bottom:474.195000px;}
.y13c{bottom:474.375000px;}
.y183{bottom:474.735000px;}
.y2a{bottom:475.275000px;}
.yed{bottom:476.175000px;}
.y295{bottom:479.595000px;}
.y12b{bottom:482.475000px;}
.y33f{bottom:483.195000px;}
.y99{bottom:483.375000px;}
.y257{bottom:485.355000px;}
.y4c{bottom:487.155000px;}
.y11e{bottom:487.515000px;}
.y1c5{bottom:488.055000px;}
.yd8{bottom:489.315000px;}
.y6e{bottom:491.295000px;}
.y274{bottom:492.375000px;}
.yac{bottom:498.315000px;}
.y242{bottom:499.215000px;}
.y1bc{bottom:499.755000px;}
.y1ea{bottom:499.935000px;}
.y294{bottom:501.555000px;}
.ye{bottom:504.795000px;}
.y13b{bottom:505.515000px;}
.y182{bottom:505.695000px;}
.y29{bottom:506.235000px;}
.yec{bottom:507.315000px;}
.y174{bottom:511.095000px;}
.y107{bottom:513.435000px;}
.y8b{bottom:514.515000px;}
.y1c4{bottom:514.695000px;}
.y2b6{bottom:515.415000px;}
.y256{bottom:516.315000px;}
.y11d{bottom:518.475000px;}
.y2cf{bottom:519.915000px;}
.y6d{bottom:522.255000px;}
.yc2{bottom:523.515000px;}
.yab{bottom:529.455000px;}
.y241{bottom:530.175000px;}
.y4b{bottom:530.355000px;}
.y1e9{bottom:530.895000px;}
.y317{bottom:531.075000px;}
.yd7{bottom:532.335000px;}
.y13a{bottom:536.475000px;}
.y181{bottom:536.835000px;}
.y28{bottom:537.375000px;}
.y293{bottom:538.095000px;}
.y209{bottom:538.275000px;}
.y12a{bottom:544.575000px;}
.y8a{bottom:545.475000px;}
.y11c{bottom:549.435000px;}
.yeb{bottom:550.335000px;}
.y1bb{bottom:552.135000px;}
.y6c{bottom:553.395000px;}
.y173{bottom:554.115000px;}
.y273{bottom:554.475000px;}
.y315{bottom:557.355000px;}
.yd{bottom:557.535000px;}
.y2b5{bottom:558.435000px;}
.y255{bottom:559.515000px;}
.y292{bottom:560.055000px;}
.yaa{bottom:560.415000px;}
.y240{bottom:561.315000px;}
.y1dd{bottom:561.495000px;}
.y106{bottom:562.575000px;}
.y2ce{bottom:563.295000px;}
.yd6{bottom:563.475000px;}
.y180{bottom:567.795000px;}
.y27{bottom:568.335000px;}
.yc1{bottom:571.575000px;}
.y172{bottom:571.755000px;}
.y4a{bottom:573.375000px;}
.y1e8{bottom:573.915000px;}
.y89{bottom:576.435000px;}
.y11b{bottom:580.575000px;}
.yea{bottom:581.475000px;}
.y291{bottom:582.015000px;}
.y2cb{bottom:584.895000px;}
.y139{bottom:585.435000px;}
.y1ba{bottom:587.415000px;}
.y49{bottom:590.295000px;}
.y254{bottom:590.475000px;}
.ya9{bottom:591.555000px;}
.y23f{bottom:592.275000px;}
.y105{bottom:593.535000px;}
.yd5{bottom:594.435000px;}
.y312{bottom:595.155000px;}
.y272{bottom:597.495000px;}
.y171{bottom:598.755000px;}
.y6b{bottom:599.475000px;}
.y2b4{bottom:601.455000px;}
.y290{bottom:603.795000px;}
.y1dc{bottom:604.695000px;}
.y158{bottom:606.315000px;}
.y2c9{bottom:606.495000px;}
.y88{bottom:607.575000px;}
.yc{bottom:610.275000px;}
.y17f{bottom:610.995000px;}
.y26{bottom:611.355000px;}
.y208{bottom:611.715000px;}
.y1b8{bottom:612.255000px;}
.ye9{bottom:612.435000px;}
.y138{bottom:616.575000px;}
.y1e7{bottom:617.115000px;}
.yc0{bottom:619.815000px;}
.y46{bottom:621.255000px;}
.y253{bottom:621.435000px;}
.y1db{bottom:622.335000px;}
.ya8{bottom:622.515000px;}
.y1da{bottom:623.055000px;}
.y23e{bottom:623.415000px;}
.y30e{bottom:623.595000px;}
.y155{bottom:623.955000px;}
.y170{bottom:624.315000px;}
.y104{bottom:624.675000px;}
.y271{bottom:628.635000px;}
.y11a{bottom:629.535000px;}
.y6a{bottom:630.435000px;}
.yd4{bottom:637.485000px;}
.y87{bottom:638.565000px;}
.y28f{bottom:640.365000px;}
.y25{bottom:642.525000px;}
.y2b3{bottom:644.505000px;}
.y2c8{bottom:644.685000px;}
.y1b7{bottom:647.385000px;}
.y137{bottom:647.565000px;}
.y1d9{bottom:647.745000px;}
.y30b{bottom:649.725000px;}
.y16f{bottom:649.905000px;}
.y17e{bottom:651.705000px;}
.y45{bottom:652.425000px;}
.y252{bottom:652.605000px;}
.ya7{bottom:653.685000px;}
.y23d{bottom:654.405000px;}
.y2f5{bottom:655.305000px;}
.ye8{bottom:655.485000px;}
.y1e6{bottom:657.825000px;}
.y270{bottom:659.625000px;}
.y119{bottom:660.705000px;}
.y69{bottom:661.605000px;}
.y28e{bottom:662.325000px;}
.yb{bottom:664.485000px;}
.ybf{bottom:668.625000px;}
.y86{bottom:669.705000px;}
.y2f4{bottom:671.685000px;}
.y1b6{bottom:672.225000px;}
.y1d8{bottom:672.585000px;}
.y24{bottom:673.485000px;}
.y103{bottom:673.665000px;}
.y16e{bottom:675.285000px;}
.y2c7{bottom:677.265000px;}
.y136{bottom:678.705000px;}
.y44{bottom:683.385000px;}
.y251{bottom:683.565000px;}
.y28d{bottom:684.285000px;}
.ya6{bottom:684.645000px;}
.y23c{bottom:685.545000px;}
.ye7{bottom:686.625000px;}
.y154{bottom:686.985000px;}
.y2b2{bottom:687.525000px;}
.y17d{bottom:689.505000px;}
.y207{bottom:690.405000px;}
.y26f{bottom:690.765000px;}
.y118{bottom:691.665000px;}
.y68{bottom:692.565000px;}
.y1e5{bottom:693.825000px;}
.y1f0{bottom:694.080000px;}
.y30a{bottom:694.185000px;}
.y1d7{bottom:697.245000px;}
.y2c6{bottom:697.965000px;}
.yd3{bottom:699.585000px;}
.ybe{bottom:699.765000px;}
.y16d{bottom:700.845000px;}
.y23{bottom:704.625000px;}
.y102{bottom:704.805000px;}
.y28c{bottom:706.065000px;}
.y1b4{bottom:707.505000px;}
.y135{bottom:709.665000px;}
.y2f3{bottom:710.385000px;}
.ya{bottom:712.185000px;}
.y43{bottom:714.525000px;}
.y250{bottom:714.705000px;}
.y85{bottom:715.785000px;}
.y23b{bottom:716.505000px;}
.ye6{bottom:717.585000px;}
.y26e{bottom:721.725000px;}
.y1d6{bottom:722.085000px;}
.y117{bottom:722.805000px;}
.y2b1{bottom:725.505000px;}
.y169{bottom:726.405000px;}
.y222{bottom:726.660000px;}
.y17c{bottom:727.665000px;}
.y191{bottom:727.920000px;}
.ybd{bottom:730.725000px;}
.y22{bottom:735.585000px;}
.y101{bottom:735.765000px;}
.y67{bottom:738.645000px;}
.y189{bottom:739.080000px;}
.y1fd{bottom:739.440000px;}
.y134{bottom:740.805000px;}
.yd2{bottom:742.605000px;}
.y33e{bottom:743.865000px;}
.y42{bottom:745.485000px;}
.y24f{bottom:745.665000px;}
.y1ff{bottom:745.740000px;}
.y309{bottom:746.205000px;}
.y84{bottom:746.745000px;}
.y2b0{bottom:747.465000px;}
.y23a{bottom:747.645000px;}
.ye5{bottom:748.725000px;}
.y2f1{bottom:749.085000px;}
.y153{bottom:749.805000px;}
.y2c5{bottom:751.425000px;}
.y16b{bottom:751.785000px;}
.y22e{bottom:752.865000px;}
.y116{bottom:753.765000px;}
.y1fb{bottom:758.160000px;}
.y9{bottom:759.705000px;}
.ybc{bottom:761.865000px;}
.y28b{bottom:764.745000px;}
.y21a{bottom:766.800000px;}
.y2af{bottom:769.245000px;}
.y66{bottom:769.605000px;}
.y1d3{bottom:771.585000px;}
.y133{bottom:771.765000px;}
.yd1{bottom:773.745000px;}
.y167{bottom:775.905000px;}
.y33d{bottom:776.085000px;}
.y41{bottom:776.445000px;}
.y223{bottom:776.700000px;}
.y24e{bottom:776.805000px;}
.y83{bottom:777.885000px;}
.y21{bottom:778.605000px;}
.y308{bottom:778.965000px;}
.y22d{bottom:783.825000px;}
.y2c4{bottom:784.005000px;}
.y100{bottom:784.905000px;}
.y28a{bottom:786.525000px;}
.ye4{bottom:791.745000px;}
.y152{bottom:791.925000px;}
.ybb{bottom:792.825000px;}
.y1d5{bottom:796.245000px;}
.y21c{bottom:798.480000px;}
.y307{bottom:799.665000px;}
.y166{bottom:799.845000px;}
.y65{bottom:800.745000px;}
.y115{bottom:802.905000px;}
.y2c3{bottom:804.705000px;}
.y2ae{bottom:805.965000px;}
.y2f0{bottom:806.685000px;}
.y40{bottom:807.585000px;}
.y24d{bottom:807.765000px;}
.y33c{bottom:808.125000px;}
.y289{bottom:808.305000px;}
.y82{bottom:808.845000px;}
.y225{bottom:808.920000px;}
.y20{bottom:809.745000px;}
.y1fa{bottom:811.080000px;}
.y1b3{bottom:813.165000px;}
.y22c{bottom:814.965000px;}
.y129{bottom:815.865000px;}
.yd0{bottom:816.765000px;}
.y8{bottom:818.565000px;}
.y1d2{bottom:821.085000px;}
.ya5{bottom:823.965000px;}
.y338{bottom:824.505000px;}
.y2c2{bottom:825.405000px;}
.y164{bottom:826.125000px;}
.y18f{bottom:827.280000px;}
.y2ad{bottom:827.925000px;}
.y21e{bottom:830.160000px;}
.y64{bottom:831.705000px;}
.y306{bottom:832.245000px;}
.yff{bottom:833.865000px;}
.y150{bottom:834.045000px;}
.y3f{bottom:838.545000px;}
.yba{bottom:838.905000px;}
.y81{bottom:839.985000px;}
.y1f{bottom:840.705000px;}
.y226{bottom:840.960000px;}
.y288{bottom:845.025000px;}
.y2ef{bottom:845.385000px;}
.y22b{bottom:845.925000px;}
.y128{bottom:847.005000px;}
.y1d1{bottom:847.365000px;}
.ycf{bottom:847.725000px;}
.y1b2{bottom:848.445000px;}
.y18e{bottom:848.700000px;}
.y2ac{bottom:849.705000px;}
.y114{bottom:851.865000px;}
.y305{bottom:852.945000px;}
.ya4{bottom:854.925000px;}
.y2c1{bottom:858.165000px;}
.y21f{bottom:861.660000px;}
.yfe{bottom:865.005000px;}
.y287{bottom:866.985000px;}
.y3e{bottom:869.685000px;}
.yb9{bottom:869.865000px;}
.y98{bottom:870.945000px;}
.y18c{bottom:871.200000px;}
.y2ab{bottom:871.485000px;}
.y1e{bottom:871.845000px;}
.y227{bottom:873.000000px;}
.y1b1{bottom:873.105000px;}
.y304{bottom:873.645000px;}
.y1d0{bottom:874.365000px;}
.y7{bottom:874.725000px;}
.y26d{bottom:877.065000px;}
.y63{bottom:877.785000px;}
.yce{bottom:878.865000px;}
.y113{bottom:883.005000px;}
.y239{bottom:883.725000px;}
.y2ec{bottom:884.085000px;}
.y334{bottom:885.885000px;}
.y80{bottom:886.065000px;}
.y286{bottom:888.765000px;}
.y22a{bottom:888.945000px;}
.y221{bottom:893.340000px;}
.yfd{bottom:896.010000px;}
.y1b0{bottom:897.990000px;}
.y2c0{bottom:899.610000px;}
.y3d{bottom:900.690000px;}
.yb8{bottom:901.050000px;}
.y97{bottom:902.130000px;}
.ye3{bottom:902.850000px;}
.y228{bottom:906.120000px;}
.y303{bottom:906.450000px;}
.y18b{bottom:907.740000px;}
.y26c{bottom:908.070000px;}
.y2aa{bottom:908.250000px;}
.y62{bottom:908.970000px;}
.ycd{bottom:909.870000px;}
.y112{bottom:914.010000px;}
.y1d{bottom:914.910000px;}
.y7f{bottom:917.070000px;}
.y14f{bottom:917.610000px;}
.y229{bottom:920.130000px;}
.y2bf{bottom:920.310000px;}
.y1ad{bottom:922.650000px;}
.y2eb{bottom:922.830000px;}
.y285{bottom:925.530000px;}
.y127{bottom:927.150000px;}
.y332{bottom:928.050000px;}
.y2a9{bottom:930.210000px;}
.y6{bottom:930.570000px;}
.y3c{bottom:931.830000px;}
.yb7{bottom:932.010000px;}
.ye2{bottom:933.990000px;}
.y26b{bottom:939.030000px;}
.y61{bottom:939.930000px;}
.y163{bottom:941.010000px;}
.yfc{bottom:945.150000px;}
.y1c{bottom:945.870000px;}
.y284{bottom:947.490000px;}
.y302{bottom:947.850000px;}
.y7e{bottom:948.030000px;}
.y2a8{bottom:951.990000px;}
.ycc{bottom:953.070000px;}
.y1ab{bottom:957.930000px;}
.y1cf{bottom:958.110000px;}
.y2e8{bottom:961.530000px;}
.y3b{bottom:962.790000px;}
.yb6{bottom:963.150000px;}
.ye1{bottom:964.950000px;}
.y301{bottom:968.550000px;}
.y283{bottom:969.270000px;}
.y331{bottom:969.990000px;}
.y60{bottom:971.070000px;}
.y2be{bottom:973.770000px;}
.y2a7{bottom:973.950000px;}
.yfb{bottom:976.110000px;}
.y1b{bottom:977.010000px;}
.y7d{bottom:979.170000px;}
.y14c{bottom:980.430000px;}
.y17b{bottom:982.230000px;}
.y1a9{bottom:982.770000px;}
.y5{bottom:983.310000px;}
.y162{bottom:984.030000px;}
.y1ce{bottom:989.250000px;}
.y3a{bottom:993.930000px;}
.yb5{bottom:994.110000px;}
.y2bd{bottom:994.470000px;}
.y2a6{bottom:995.730000px;}
.ycb{bottom:996.090000px;}
.y300{bottom:1001.130000px;}
.y5f{bottom:1002.030000px;}
.y282{bottom:1005.990000px;}
.yfa{bottom:1007.250000px;}
.y1a6{bottom:1007.430000px;}
.y1a{bottom:1007.970000px;}
.y7c{bottom:1010.130000px;}
.y330{bottom:1010.670000px;}
.y17a{bottom:1013.190000px;}
.y2a5{bottom:1017.510000px;}
.y2e7{bottom:1019.130000px;}
.y2ff{bottom:1021.830000px;}
.y37{bottom:1024.890000px;}
.yb4{bottom:1025.250000px;}
.yca{bottom:1027.050000px;}
.y281{bottom:1027.950000px;}
.y1cd{bottom:1032.270000px;}
.y5e{bottom:1033.170000px;}
.y4{bottom:1035.510000px;}
.yf9{bottom:1038.210000px;}
.y19{bottom:1039.110000px;}
.ya3{bottom:1041.270000px;}
.y2fe{bottom:1042.530000px;}
.y148{bottom:1043.250000px;}
.y179{bottom:1044.330000px;}
.y280{bottom:1049.730000px;}
.y32f{bottom:1052.610000px;}
.y2a4{bottom:1054.230000px;}
.y34{bottom:1056.030000px;}
.y7b{bottom:1056.210000px;}
.y2e6{bottom:1057.830000px;}
.y5d{bottom:1064.130000px;}
.y14a{bottom:1064.850000px;}
.yf8{bottom:1069.350000px;}
.y18{bottom:1070.070000px;}
.y27f{bottom:1071.510000px;}
.y3{bottom:1072.950000px;}
.y178{bottom:1075.290000px;}
.y2a3{bottom:1076.190000px;}
.y7a{bottom:1087.350000px;}
.y32d{bottom:1094.550000px;}
.y2e5{bottom:1096.530000px;}
.y2a2{bottom:1097.970000px;}
.y17{bottom:1115.610000px;}
.y79{bottom:1118.310000px;}
.y2{bottom:1119.570000px;}
.y2a1{bottom:1119.750000px;}
.y5a{bottom:1193.220000px;}
.h3a{height:2.948906px;}
.h26{height:3.003750px;}
.h27{height:17.460000px;}
.h2b{height:18.360000px;}
.h29{height:18.540000px;}
.h12{height:18.900000px;}
.h14{height:18.936000px;}
.h13{height:19.080000px;}
.h4a{height:20.340000px;}
.h54{height:20.520000px;}
.h19{height:20.700000px;}
.h47{height:21.600000px;}
.h20{height:23.940000px;}
.h24{height:23.976000px;}
.h23{height:24.120000px;}
.h33{height:24.156000px;}
.h2e{height:25.560000px;}
.h1e{height:25.920000px;}
.h37{height:25.956000px;}
.h51{height:26.136000px;}
.h53{height:26.280000px;}
.h2f{height:26.640000px;}
.h50{height:28.260000px;}
.h52{height:28.440000px;}
.h43{height:28.800000px;}
.h45{height:28.980000px;}
.hc{height:30.960000px;}
.hf{height:30.996000px;}
.he{height:31.140000px;}
.h10{height:31.176000px;}
.h34{height:34.380000px;}
.h35{height:34.416000px;}
.h32{height:34.560000px;}
.h30{height:36.000000px;}
.h4c{height:37.800000px;}
.h4b{height:37.980000px;}
.h4e{height:38.016000px;}
.h56{height:39.960000px;}
.h55{height:41.220000px;}
.h57{height:41.256000px;}
.h1c{height:41.400000px;}
.h18{height:42.300000px;}
.h48{height:43.380000px;}
.h42{height:46.440000px;}
.h41{height:47.340000px;}
.h31{height:48.060000px;}
.h38{height:48.780000px;}
.h21{height:49.500000px;}
.h36{height:51.660000px;}
.h22{height:56.320312px;}
.h4d{height:56.880000px;}
.h2c{height:59.439023px;}
.h3f{height:59.582250px;}
.h58{height:60.660000px;}
.h3b{height:61.189805px;}
.h8{height:61.259062px;}
.h2a{height:61.337250px;}
.h1a{height:62.100000px;}
.h1d{height:62.136000px;}
.h1f{height:62.327813px;}
.h17{height:64.546875px;}
.h15{height:65.010937px;}
.h2{height:65.884219px;}
.h44{height:66.082500px;}
.h59{height:67.824844px;}
.h49{height:68.956875px;}
.hd{height:69.086250px;}
.h3d{height:69.236437px;}
.h11{height:70.664062px;}
.h16{height:74.072812px;}
.hb{height:74.953125px;}
.ha{height:75.093750px;}
.h1b{height:82.836000px;}
.h9{height:87.859687px;}
.h7{height:111.198516px;}
.h3{height:121.852266px;}
.h4{height:133.171875px;}
.h5{height:144.491484px;}
.h6{height:155.145234px;}
.h5a{height:196.950000px;}
.h2d{height:201.420000px;}
.h4f{height:205.050000px;}
.h40{height:210.420000px;}
.h28{height:228.060000px;}
.h46{height:229.320000px;}
.h39{height:249.690000px;}
.h25{height:252.030000px;}
.h3e{height:261.900000px;}
.h3c{height:273.240000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w58{width:3.060000px;}
.w57{width:17.280000px;}
.w5f{width:20.160000px;}
.w4e{width:30.276000px;}
.w21{width:42.480000px;}
.w50{width:45.360000px;}
.w3e{width:51.660000px;}
.w26{width:53.100000px;}
.wd{width:58.896000px;}
.w4{width:59.940000px;}
.wf{width:61.020000px;}
.w3d{width:62.280000px;}
.w3c{width:62.316000px;}
.w5e{width:63.540000px;}
.w24{width:63.720000px;}
.w23{width:63.756000px;}
.w25{width:63.936000px;}
.we{width:64.980000px;}
.w1e{width:65.340000px;}
.wa{width:67.860000px;}
.wc{width:69.660000px;}
.w1f{width:72.360000px;}
.w5{width:73.980000px;}
.w4f{width:76.500000px;}
.w2d{width:77.220000px;}
.w12{width:77.940000px;}
.w2f{width:78.480000px;}
.w14{width:79.200000px;}
.w3f{width:79.380000px;}
.wb{width:79.416000px;}
.w27{width:80.100000px;}
.w2e{width:80.676000px;}
.w5a{width:81.360000px;}
.w13{width:81.576000px;}
.w5c{width:95.760000px;}
.w8{width:96.516000px;}
.w4c{width:106.776000px;}
.w4b{width:107.100000px;}
.w5b{width:108.936000px;}
.w29{width:111.960000px;}
.w4d{width:126.180000px;}
.w7{width:133.560000px;}
.w59{width:137.016000px;}
.w5d{width:148.176000px;}
.w1b{width:150.660000px;}
.w4a{width:154.290000px;}
.w54{width:158.250000px;}
.w30{width:158.610000px;}
.w15{width:159.510000px;}
.w65{width:163.290000px;}
.w63{width:163.650000px;}
.w46{width:171.180000px;}
.w37{width:183.240000px;}
.w48{width:210.240000px;}
.w17{width:210.420000px;}
.w47{width:216.720000px;}
.w38{width:219.780000px;}
.w2a{width:237.495000px;}
.w2c{width:237.810000px;}
.w11{width:238.710000px;}
.w19{width:239.400000px;}
.w18{width:239.580000px;}
.w16{width:241.020000px;}
.w36{width:244.800000px;}
.w35{width:247.860000px;}
.w1c{width:261.000000px;}
.w31{width:263.520000px;}
.w3b{width:265.170000px;}
.w22{width:265.890000px;}
.w41{width:284.400000px;}
.w2b{width:286.410000px;}
.w32{width:287.280000px;}
.w40{width:295.020000px;}
.w51{width:340.050000px;}
.w44{width:359.820000px;}
.w42{width:362.520000px;}
.w39{width:396.000000px;}
.w1a{width:399.240000px;}
.w9{width:405.795000px;}
.w1d{width:426.420000px;}
.w43{width:438.480000px;}
.w53{width:477.435000px;}
.w52{width:477.795000px;}
.w45{width:480.240000px;}
.w64{width:492.375000px;}
.w62{width:492.735000px;}
.w60{width:497.775000px;}
.w34{width:498.420000px;}
.w33{width:508.320000px;}
.w61{width:517.935000px;}
.w6{width:563.865000px;}
.w3{width:588.705000px;}
.w3a{width:590.505000px;}
.w20{width:632.985000px;}
.w55{width:633.345000px;}
.w56{width:634.245000px;}
.w10{width:636.405000px;}
.w28{width:637.305000px;}
.w49{width:646.125000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2b{left:4.500000px;}
.x76{left:5.580000px;}
.x4f{left:6.840000px;}
.xe{left:8.100000px;}
.x21{left:9.720000px;}
.x25{left:11.340000px;}
.x74{left:12.780000px;}
.x4d{left:14.220000px;}
.x7a{left:18.075000px;}
.x50{left:19.440000px;}
.x48{left:21.240000px;}
.x77{left:23.580000px;}
.x51{left:25.380000px;}
.x56{left:26.634000px;}
.x1e{left:28.305000px;}
.x5f{left:32.400000px;}
.x12{left:33.480000px;}
.x55{left:34.914000px;}
.x6b{left:36.465000px;}
.x30{left:40.860000px;}
.x10{left:42.660000px;}
.x7b{left:44.130000px;}
.x57{left:48.825000px;}
.x5d{left:51.300000px;}
.x5e{left:58.680000px;}
.x2e{left:59.760000px;}
.x11{left:61.194000px;}
.x79{left:63.645000px;}
.x2f{left:67.140000px;}
.x6a{left:69.765000px;}
.x38{left:70.995000px;}
.x5a{left:73.434000px;}
.x28{left:77.574000px;}
.x49{left:78.840000px;}
.x3a{left:90.435000px;}
.x59{left:95.940000px;}
.x6c{left:97.305000px;}
.x2a{left:99.180000px;}
.x3c{left:102.960000px;}
.x43{left:111.960000px;}
.x63{left:113.070000px;}
.x16{left:121.895987px;}
.x64{left:126.645000px;}
.x2{left:127.655987px;}
.x89{left:129.276000px;}
.x7c{left:132.735000px;}
.x8{left:137.015987px;}
.x17{left:148.895987px;}
.x53{left:151.059000px;}
.x3f{left:152.430000px;}
.x18{left:154.649987px;}
.x7{left:156.989987px;}
.x1c{left:159.509987px;}
.x47{left:170.130000px;}
.xd{left:180.749987px;}
.x20{left:182.730000px;}
.x65{left:192.240000px;}
.x5b{left:198.945000px;}
.x13{left:201.630000px;}
.x78{left:206.280000px;}
.x19{left:207.749987px;}
.x1a{left:212.789987px;}
.x54{left:219.999000px;}
.x69{left:223.740000px;}
.x82{left:228.999000px;}
.x41{left:232.560000px;}
.x9{left:234.389987px;}
.x32{left:240.149987px;}
.xa{left:243.929987px;}
.x37{left:246.780000px;}
.x72{left:248.400000px;}
.x62{left:254.189987px;}
.x5c{left:259.245000px;}
.x1d{left:262.650000px;}
.x8c{left:265.395000px;}
.x81{left:280.260000px;}
.x39{left:282.960000px;}
.x36{left:293.114987px;}
.x70{left:294.300000px;}
.x7e{left:296.280000px;}
.x6d{left:297.900000px;}
.x44{left:307.260000px;}
.x40{left:309.210000px;}
.x80{left:311.760000px;}
.x60{left:318.129000px;}
.x3{left:325.334987px;}
.x29{left:327.135000px;}
.x34{left:328.574987px;}
.x42{left:329.940000px;}
.x45{left:336.780000px;}
.x8d{left:346.755000px;}
.x1f{left:360.075000px;}
.x3e{left:363.600000px;}
.x3d{left:373.680000px;}
.x3b{left:387.180000px;}
.x83{left:389.775000px;}
.x46{left:394.740000px;}
.x2c{left:405.075000px;}
.xc{left:409.754987px;}
.x6e{left:414.180000px;}
.x71{left:424.620000px;}
.x22{left:428.655000px;}
.x66{left:434.700000px;}
.x4a{left:436.035000px;}
.x1b{left:437.294987px;}
.x15{left:441.974987px;}
.x5{left:444.704987px;}
.x1{left:446.504987px;}
.x8e{left:455.685000px;}
.x7f{left:469.800000px;}
.x6f{left:477.360000px;}
.x58{left:479.265000px;}
.x2d{left:486.645000px;}
.x84{left:496.545000px;}
.x4b{left:499.785000px;}
.x23{left:508.965000px;}
.x7d{left:515.340000px;}
.x6{left:524.984987px;}
.x8f{left:551.445000px;}
.x4c{left:563.505000px;}
.x24{left:579.345000px;}
.x88{left:606.165000px;}
.x91{left:621.105000px;}
.x85{left:622.725000px;}
.x4{left:626.729987px;}
.x75{left:628.170000px;}
.x31{left:631.049987px;}
.x26{left:638.970000px;}
.x68{left:644.549987px;}
.x33{left:646.169987px;}
.x86{left:653.010000px;}
.x35{left:660.389987px;}
.x4e{left:680.550000px;}
.x73{left:686.669987px;}
.x90{left:699.630000px;}
.x61{left:700.709987px;}
.x27{left:704.850000px;}
.xf{left:716.370000px;}
.x67{left:722.309987px;}
.x87{left:729.510000px;}
.x52{left:738.329987px;}
.x92{left:756.509987px;}
.x8a{left:762.630000px;}
.xb{left:765.509987px;}
.x14{left:773.429987px;}
.x8b{left:780.270000px;}
.x93{left:820.799987px;}
@media print{
.v2{vertical-align:-74.240000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls10{letter-spacing:-1.024000pt;}
.ls24{letter-spacing:-0.832000pt;}
.ls28{letter-spacing:-0.736000pt;}
.ls27{letter-spacing:-0.640000pt;}
.ls17{letter-spacing:-0.512000pt;}
.ls1d{letter-spacing:-0.384000pt;}
.ls4{letter-spacing:-0.271467pt;}
.ls14{letter-spacing:-0.198933pt;}
.ls9{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.161067pt;}
.ls2d{letter-spacing:-0.135467pt;}
.ls26{letter-spacing:-0.128000pt;}
.ls1f{letter-spacing:-0.116800pt;}
.ls3{letter-spacing:-0.097067pt;}
.ls1b{letter-spacing:-0.096000pt;}
.ls1a{letter-spacing:-0.094933pt;}
.ls1e{letter-spacing:-0.051840pt;}
.ls1c{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:-0.033280pt;}
.ls2c{letter-spacing:-0.024960pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.009387pt;}
.ls21{letter-spacing:0.033280pt;}
.lsd{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.128000pt;}
.ls19{letter-spacing:0.135680pt;}
.ls0{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.232960pt;}
.lsc{letter-spacing:0.239360pt;}
.ls6{letter-spacing:0.256000pt;}
.ls29{letter-spacing:0.271467pt;}
.ls15{letter-spacing:0.277120pt;}
.ls23{letter-spacing:0.303360pt;}
.ls13{letter-spacing:0.879360pt;}
.ls18{letter-spacing:2.688000pt;}
.ls25{letter-spacing:10.479360pt;}
.ls2b{letter-spacing:25.088000pt;}
.ls12{letter-spacing:27.648000pt;}
.ls11{letter-spacing:30.991360pt;}
.ls2a{letter-spacing:48.773120pt;}
.ls16{letter-spacing:51.792640pt;}
.lsf{letter-spacing:59.791360pt;}
.ls20{letter-spacing:163.851947pt;}
.ls2{letter-spacing:170.986667pt;}
.ls22{letter-spacing:172.778667pt;}
.ws5{word-spacing:-74.880000pt;}
.ws4{word-spacing:-20.783360pt;}
.ws1c{word-spacing:-18.048000pt;}
.ws1e{word-spacing:-17.984000pt;}
.wsb{word-spacing:-17.920000pt;}
.ws1{word-spacing:-17.792000pt;}
.ws1a{word-spacing:-17.664000pt;}
.ws1b{word-spacing:-17.600000pt;}
.ws1d{word-spacing:-17.408000pt;}
.ws20{word-spacing:-16.640107pt;}
.ws14{word-spacing:-16.404224pt;}
.wsc{word-spacing:-16.368640pt;}
.ws2{word-spacing:-16.271573pt;}
.ws3{word-spacing:-16.097173pt;}
.ws8{word-spacing:-16.000000pt;}
.ws17{word-spacing:-15.656960pt;}
.ws1f{word-spacing:-15.632640pt;}
.wse{word-spacing:-14.767360pt;}
.ws12{word-spacing:-14.720000pt;}
.ws11{word-spacing:-14.672427pt;}
.wsd{word-spacing:-13.536000pt;}
.ws16{word-spacing:-13.344000pt;}
.ws10{word-spacing:-13.248000pt;}
.wsf{word-spacing:-12.034048pt;}
.ws13{word-spacing:-12.005120pt;}
.ws6{word-spacing:-11.920640pt;}
.ws7{word-spacing:-11.759573pt;}
.ws9{word-spacing:-11.721707pt;}
.wsa{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.ws15{word-spacing:48.117760pt;}
.ws18{word-spacing:134.330027pt;}
.ws19{word-spacing:134.554667pt;}
._27{margin-left:-11.285333pt;}
._d{margin-left:-5.696000pt;}
._e{margin-left:-4.029440pt;}
._a{margin-left:-3.136000pt;}
._2{margin-left:-1.888000pt;}
._1{margin-left:-0.896000pt;}
._0{width:0.894720pt;}
._f{width:2.357333pt;}
._13{width:3.456000pt;}
._c{width:4.482560pt;}
._8{width:5.440000pt;}
._7{width:6.400000pt;}
._9{width:7.296000pt;}
._15{width:8.195840pt;}
._6{width:9.280000pt;}
._4{width:10.176000pt;}
._5{width:11.189333pt;}
._b{width:12.480000pt;}
._12{width:13.568000pt;}
._11{width:15.168000pt;}
._14{width:16.576000pt;}
._35{width:17.621333pt;}
._2f{width:19.138560pt;}
._1a{width:20.093440pt;}
._19{width:21.025280pt;}
._3{width:22.464000pt;}
._25{width:23.616000pt;}
._30{width:24.576000pt;}
._16{width:25.472000pt;}
._17{width:26.400000pt;}
._1f{width:28.096000pt;}
._20{width:29.056000pt;}
._24{width:30.304000pt;}
._23{width:31.296000pt;}
._26{width:32.257280pt;}
._1b{width:33.984000pt;}
._1e{width:35.818667pt;}
._2b{width:37.376000pt;}
._34{width:38.784000pt;}
._29{width:39.786667pt;}
._18{width:41.408000pt;}
._10{width:43.328000pt;}
._1d{width:49.090560pt;}
._1c{width:50.368000pt;}
._22{width:56.896000pt;}
._32{width:79.444480pt;}
._31{width:87.668480pt;}
._28{width:95.488000pt;}
._33{width:99.195307pt;}
._2c{width:100.480000pt;}
._38{width:147.847680pt;}
._39{width:149.019307pt;}
._21{width:153.194667pt;}
._2d{width:160.640000pt;}
._2e{width:161.685333pt;}
._2a{width:170.986667pt;}
._36{width:376.773120pt;}
._37{width:377.802667pt;}
.fsb{font-size:2.560000pt;}
.fs8{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs9{font-size:53.120000pt;}
.fsc{font-size:53.248000pt;}
.fse{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fsd{font-size:59.008000pt;}
.fs7{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs5{font-size:106.880000pt;}
.fs1{font-size:117.120000pt;}
.fs2{font-size:128.000000pt;}
.fs3{font-size:138.880000pt;}
.fs4{font-size:149.120000pt;}
.y1a2{bottom:-7.973333pt;}
.y0{bottom:0.000000pt;}
.y168{bottom:2.560000pt;}
.y210{bottom:2.600000pt;}
.y16c{bottom:2.720000pt;}
.y18a{bottom:2.880000pt;}
.y18d{bottom:2.906667pt;}
.y190{bottom:2.946667pt;}
.y4e{bottom:3.040000pt;}
.y50{bottom:3.200000pt;}
.y14b{bottom:3.360000pt;}
.y1a7{bottom:3.520000pt;}
.y19b{bottom:3.546667pt;}
.y199{bottom:3.586667pt;}
.y1fc{bottom:3.613333pt;}
.y1fe{bottom:3.653333pt;}
.y200{bottom:3.680000pt;}
.y224{bottom:3.706667pt;}
.y2db{bottom:4.480000pt;}
.y320{bottom:4.640000pt;}
.y323{bottom:4.800000pt;}
.y32e{bottom:4.960000pt;}
.y2ca{bottom:5.440000pt;}
.y2cd{bottom:5.600000pt;}
.y333{bottom:5.920000pt;}
.y325{bottom:6.080000pt;}
.y336{bottom:6.120000pt;}
.y33a{bottom:6.400000pt;}
.y2cc{bottom:6.720000pt;}
.y21d{bottom:7.613333pt;}
.y21b{bottom:7.653333pt;}
.y220{bottom:7.746667pt;}
.y2d2{bottom:7.840000pt;}
.y1aa{bottom:8.800000pt;}
.y1a1{bottom:8.826667pt;}
.y1ac{bottom:8.960000pt;}
.y310{bottom:9.440000pt;}
.y311{bottom:9.600000pt;}
.y1a4{bottom:9.786667pt;}
.y20c{bottom:10.080000pt;}
.y211{bottom:10.120000pt;}
.y20e{bottom:10.240000pt;}
.y165{bottom:10.560000pt;}
.y30f{bottom:10.746667pt;}
.y318{bottom:10.880000pt;}
.y30c{bottom:11.360000pt;}
.y30d{bottom:11.520000pt;}
.y314{bottom:11.680000pt;}
.y1b5{bottom:11.840000pt;}
.y1ae{bottom:12.000000pt;}
.y36{bottom:12.480000pt;}
.y38{bottom:12.640000pt;}
.y47{bottom:12.666667pt;}
.y313{bottom:12.800000pt;}
.y1a5{bottom:13.440000pt;}
.y1f1{bottom:13.573333pt;}
.y20a{bottom:13.600000pt;}
.y35{bottom:13.760000pt;}
.y39{bottom:13.920000pt;}
.y48{bottom:13.946667pt;}
.y237{bottom:16.314667pt;}
.y20b{bottom:16.320000pt;}
.y2d3{bottom:16.960000pt;}
.y2d4{bottom:17.120000pt;}
.y1b9{bottom:18.080000pt;}
.y1af{bottom:18.240000pt;}
.y2e3{bottom:19.834667pt;}
.y2f2{bottom:19.840000pt;}
.y2e4{bottom:19.994667pt;}
.y2dd{bottom:20.000000pt;}
.y2ed{bottom:20.040000pt;}
.y2de{bottom:20.160000pt;}
.y2ee{bottom:20.200000pt;}
.y316{bottom:21.280000pt;}
.y14e{bottom:21.760000pt;}
.y157{bottom:21.786667pt;}
.y328{bottom:21.920000pt;}
.y149{bottom:22.560000pt;}
.y32b{bottom:22.874667pt;}
.y31b{bottom:22.880000pt;}
.y335{bottom:22.920000pt;}
.y32c{bottom:23.034667pt;}
.y326{bottom:23.040000pt;}
.y337{bottom:23.080000pt;}
.y339{bottom:23.360000pt;}
.y1a8{bottom:24.000000pt;}
.y1d4{bottom:24.640000pt;}
.y2d1{bottom:24.800000pt;}
.y16a{bottom:25.280000pt;}
.y2d0{bottom:26.080000pt;}
.y1bd{bottom:27.200000pt;}
.y1f2{bottom:29.626667pt;}
.y218{bottom:30.080000pt;}
.y1be{bottom:33.440000pt;}
.y197{bottom:36.706667pt;}
.y2e9{bottom:36.800000pt;}
.y2ea{bottom:36.960000pt;}
.y31a{bottom:38.080000pt;}
.y14d{bottom:40.160000pt;}
.y156{bottom:40.186667pt;}
.y33b{bottom:40.320000pt;}
.y1f3{bottom:51.200000pt;}
.y1{bottom:51.840000pt;}
.y151{bottom:58.600000pt;}
.y196{bottom:59.453333pt;}
.y19f{bottom:59.613333pt;}
.y5c{bottom:68.800000pt;}
.y1f4{bottom:72.733333pt;}
.y195{bottom:82.213333pt;}
.y19e{bottom:82.373333pt;}
.y5b{bottom:82.560000pt;}
.y1e4{bottom:89.573333pt;}
.y1f5{bottom:94.306667pt;}
.y33{bottom:99.520000pt;}
.y238{bottom:102.240000pt;}
.y188{bottom:104.320000pt;}
.yf7{bottom:104.640000pt;}
.y194{bottom:104.960000pt;}
.y260{bottom:106.400000pt;}
.y147{bottom:107.360000pt;}
.y26a{bottom:108.160000pt;}
.y1ef{bottom:108.960000pt;}
.y1cc{bottom:110.560000pt;}
.ya2{bottom:112.640000pt;}
.y161{bottom:112.800000pt;}
.y34a{bottom:113.312000pt;}
.yb3{bottom:113.632000pt;}
.y1e3{bottom:113.786667pt;}
.y16{bottom:114.112000pt;}
.y1f6{bottom:115.866667pt;}
.y32a{bottom:116.032000pt;}
.y132{bottom:116.512000pt;}
.y348{bottom:117.312000pt;}
.y219{bottom:118.272000pt;}
.y2e2{bottom:120.032000pt;}
.yc9{bottom:122.272000pt;}
.y34b{bottom:122.432000pt;}
.y27e{bottom:123.392000pt;}
.y236{bottom:124.352000pt;}
.y126{bottom:125.472000pt;}
.y1cb{bottom:126.272000pt;}
.y2a0{bottom:126.912000pt;}
.y96{bottom:127.072000pt;}
.y193{bottom:127.706667pt;}
.ye0{bottom:128.832000pt;}
.y24c{bottom:129.472000pt;}
.y206{bottom:131.200000pt;}
.y111{bottom:132.512000pt;}
.y78{bottom:133.946667pt;}
.y25f{bottom:134.106667pt;}
.y217{bottom:134.746667pt;}
.y146{bottom:135.066667pt;}
.y269{bottom:135.706667pt;}
.y187{bottom:135.866667pt;}
.y19c{bottom:137.120000pt;}
.y1f7{bottom:137.440000pt;}
.y32{bottom:137.786667pt;}
.y2fd{bottom:139.400000pt;}
.ya1{bottom:140.346667pt;}
.y1ee{bottom:140.666667pt;}
.y204{bottom:140.800000pt;}
.yb2{bottom:141.306667pt;}
.y15{bottom:141.786667pt;}
.yf6{bottom:142.906667pt;}
.y131{bottom:144.026667pt;}
.y349{bottom:146.746667pt;}
.y1ca{bottom:148.186667pt;}
.y160{bottom:151.066667pt;}
.y1c3{bottom:151.866667pt;}
.y235{bottom:152.666667pt;}
.y329{bottom:153.306667pt;}
.y2e1{bottom:154.426667pt;}
.y95{bottom:154.586667pt;}
.y347{bottom:155.546667pt;}
.y19d{bottom:156.346667pt;}
.y24b{bottom:156.986667pt;}
.y1f8{bottom:159.013333pt;}
.y29f{bottom:159.546667pt;}
.y110{bottom:160.026667pt;}
.y77{bottom:161.626667pt;}
.y205{bottom:161.826667pt;}
.y145{bottom:162.586667pt;}
.y268{bottom:163.386667pt;}
.y177{bottom:164.826667pt;}
.yc8{bottom:165.146667pt;}
.ydf{bottom:167.066667pt;}
.y1de{bottom:167.226667pt;}
.y2fc{bottom:167.240000pt;}
.y1e1{bottom:167.360000pt;}
.ya0{bottom:167.866667pt;}
.yb1{bottom:168.826667pt;}
.y2fa{bottom:170.746667pt;}
.y14{bottom:171.706667pt;}
.y2e0{bottom:171.866667pt;}
.y327{bottom:172.346667pt;}
.y234{bottom:174.586667pt;}
.y31{bottom:176.026667pt;}
.y198{bottom:177.440000pt;}
.y27d{bottom:178.586667pt;}
.y192{bottom:179.013333pt;}
.y29e{bottom:179.066667pt;}
.y1c2{bottom:179.546667pt;}
.y1f9{bottom:180.546667pt;}
.yf5{bottom:181.146667pt;}
.y94{bottom:182.106667pt;}
.y24a{bottom:184.666667pt;}
.y10f{bottom:187.706667pt;}
.y76{bottom:189.146667pt;}
.y25e{bottom:189.306667pt;}
.y15f{bottom:189.466667pt;}
.y144{bottom:190.106667pt;}
.y2bc{bottom:190.266667pt;}
.y1c9{bottom:191.546667pt;}
.y1a0{bottom:192.320000pt;}
.y346{bottom:193.786667pt;}
.y9f{bottom:195.546667pt;}
.y201{bottom:196.480000pt;}
.yb0{bottom:196.506667pt;}
.y216{bottom:197.466667pt;}
.y2f9{bottom:199.866667pt;}
.y267{bottom:201.626667pt;}
.yde{bottom:205.306667pt;}
.y27c{bottom:206.106667pt;}
.yc7{bottom:208.026667pt;}
.y324{bottom:208.506667pt;}
.yf4{bottom:208.826667pt;}
.y93{bottom:209.786667pt;}
.y29d{bottom:211.546667pt;}
.y249{bottom:212.186667pt;}
.y1c8{bottom:213.626667pt;}
.y13{bottom:213.946667pt;}
.y30{bottom:214.106667pt;}
.y130{bottom:215.226667pt;}
.y75{bottom:216.826667pt;}
.y143{bottom:217.786667pt;}
.y1e2{bottom:218.946667pt;}
.y9e{bottom:223.066667pt;}
.y2df{bottom:223.866667pt;}
.y203{bottom:224.000000pt;}
.y125{bottom:224.026667pt;}
.y59{bottom:224.346667pt;}
.y215{bottom:224.986667pt;}
.y233{bottom:225.146667pt;}
.y15e{bottom:227.706667pt;}
.y2bb{bottom:228.506667pt;}
.y2f8{bottom:228.986667pt;}
.y266{bottom:229.146667pt;}
.y10e{bottom:231.226667pt;}
.y345{bottom:232.186667pt;}
.y27b{bottom:233.786667pt;}
.y1a3{bottom:234.880000pt;}
.yf3{bottom:236.346667pt;}
.y92{bottom:237.306667pt;}
.y248{bottom:239.866667pt;}
.y58{bottom:241.146667pt;}
.y12f{bottom:242.906667pt;}
.ydd{bottom:243.546667pt;}
.y74{bottom:244.346667pt;}
.y25d{bottom:244.506667pt;}
.y142{bottom:245.306667pt;}
.y322{bottom:245.786667pt;}
.y214{bottom:246.426667pt;}
.y29c{bottom:250.586667pt;}
.y9d{bottom:250.746667pt;}
.yc6{bottom:250.906667pt;}
.y202{bottom:251.520000pt;}
.y124{bottom:251.706667pt;}
.y2f{bottom:252.346667pt;}
.y232{bottom:252.666667pt;}
.y265{bottom:256.826667pt;}
.y57{bottom:257.946667pt;}
.y2dc{bottom:258.266667pt;}
.y10d{bottom:258.906667pt;}
.y19a{bottom:260.320000pt;}
.y12{bottom:260.826667pt;}
.y1c7{bottom:264.186667pt;}
.y321{bottom:264.826667pt;}
.y91{bottom:264.986667pt;}
.y15d{bottom:265.946667pt;}
.y2ba{bottom:266.746667pt;}
.y247{bottom:267.386667pt;}
.y213{bottom:267.706667pt;}
.y344{bottom:269.786667pt;}
.y29b{bottom:269.946667pt;}
.y27a{bottom:272.026667pt;}
.y1c1{bottom:272.986667pt;}
.yf2{bottom:274.586667pt;}
.y56{bottom:274.906667pt;}
.y9c{bottom:278.266667pt;}
.y231{bottom:280.346667pt;}
.ydc{bottom:281.786667pt;}
.y25c{bottom:282.746667pt;}
.y141{bottom:283.706667pt;}
.y264{bottom:284.346667pt;}
.y73{bottom:285.306667pt;}
.y1e0{bottom:285.600000pt;}
.y10c{bottom:286.426667pt;}
.y2f7{bottom:286.746667pt;}
.y2e{bottom:290.586667pt;}
.y55{bottom:291.706667pt;}
.y2da{bottom:292.666667pt;}
.yc5{bottom:293.786667pt;}
.y1df{bottom:294.560000pt;}
.y246{bottom:295.066667pt;}
.y123{bottom:295.226667pt;}
.y31f{bottom:299.226667pt;}
.y279{bottom:299.706667pt;}
.y1c0{bottom:300.506667pt;}
.yf1{bottom:302.266667pt;}
.y29a{bottom:302.586667pt;}
.y15c{bottom:304.186667pt;}
.y2b9{bottom:304.986667pt;}
.y90{bottom:305.946667pt;}
.y343{bottom:307.226667pt;}
.y11{bottom:307.706667pt;}
.y54{bottom:308.666667pt;}
.y140{bottom:311.226667pt;}
.y2d9{bottom:311.386667pt;}
.y263{bottom:312.026667pt;}
.y72{bottom:312.826667pt;}
.y10b{bottom:314.106667pt;}
.y2f6{bottom:315.226667pt;}
.y212{bottom:316.666667pt;}
.y2d{bottom:318.266667pt;}
.yaf{bottom:319.226667pt;}
.ydb{bottom:320.026667pt;}
.y25b{bottom:320.986667pt;}
.y299{bottom:322.106667pt;}
.y245{bottom:322.586667pt;}
.y122{bottom:322.906667pt;}
.y53{bottom:325.466667pt;}
.y230{bottom:326.426667pt;}
.y278{bottom:327.226667pt;}
.y1bf{bottom:328.186667pt;}
.yf0{bottom:329.786667pt;}
.y12e{bottom:330.106667pt;}
.y31e{bottom:332.026667pt;}
.y8f{bottom:333.466667pt;}
.yc4{bottom:336.666667pt;}
.y2fb{bottom:337.466667pt;}
.y20f{bottom:337.946667pt;}
.y13f{bottom:338.946667pt;}
.y186{bottom:339.266667pt;}
.y262{bottom:339.586667pt;}
.y71{bottom:340.546667pt;}
.y10a{bottom:341.666667pt;}
.y52{bottom:342.306667pt;}
.y15b{bottom:342.466667pt;}
.y2d8{bottom:342.786667pt;}
.y2b8{bottom:343.266667pt;}
.y22f{bottom:344.226667pt;}
.y342{bottom:344.866667pt;}
.yae{bottom:346.946667pt;}
.y25a{bottom:348.546667pt;}
.y244{bottom:350.306667pt;}
.y121{bottom:350.466667pt;}
.y1ed{bottom:350.946667pt;}
.y298{bottom:354.626667pt;}
.y10{bottom:354.786667pt;}
.y277{bottom:354.946667pt;}
.y2c{bottom:356.546667pt;}
.y12d{bottom:357.666667pt;}
.yda{bottom:358.466667pt;}
.y51{bottom:359.266667pt;}
.y31d{bottom:359.746667pt;}
.y8e{bottom:361.186667pt;}
.y13e{bottom:366.466667pt;}
.y185{bottom:366.786667pt;}
.y261{bottom:367.266667pt;}
.yef{bottom:368.066667pt;}
.y109{bottom:369.346667pt;}
.y2d7{bottom:370.466667pt;}
.y341{bottom:372.546667pt;}
.y297{bottom:374.306667pt;}
.y9b{bottom:374.466667pt;}
.y4f{bottom:376.066667pt;}
.y259{bottom:376.226667pt;}
.y243{bottom:377.826667pt;}
.y120{bottom:378.146667pt;}
.yc3{bottom:379.586667pt;}
.y15a{bottom:380.706667pt;}
.y70{bottom:381.506667pt;}
.y276{bottom:382.466667pt;}
.y12c{bottom:385.346667pt;}
.y176{bottom:388.386667pt;}
.y8d{bottom:388.706667pt;}
.y2d6{bottom:388.866667pt;}
.y1ec{bottom:389.186667pt;}
.y4d{bottom:393.026667pt;}
.y13d{bottom:394.146667pt;}
.y184{bottom:394.466667pt;}
.y2b{bottom:394.786667pt;}
.yee{bottom:395.746667pt;}
.yd9{bottom:396.706667pt;}
.y340{bottom:401.026667pt;}
.yf{bottom:401.666667pt;}
.y9a{bottom:402.146667pt;}
.y258{bottom:403.746667pt;}
.y11f{bottom:405.666667pt;}
.y296{bottom:406.786667pt;}
.y31c{bottom:406.946667pt;}
.y20d{bottom:408.226667pt;}
.y6f{bottom:409.026667pt;}
.y275{bottom:410.146667pt;}
.y108{bottom:412.866667pt;}
.yad{bottom:415.426667pt;}
.y175{bottom:416.066667pt;}
.y8c{bottom:416.386667pt;}
.y1eb{bottom:416.706667pt;}
.y1c6{bottom:417.186667pt;}
.y2d5{bottom:417.666667pt;}
.y159{bottom:419.106667pt;}
.y2b7{bottom:419.746667pt;}
.y319{bottom:421.506667pt;}
.y13c{bottom:421.666667pt;}
.y183{bottom:421.986667pt;}
.y2a{bottom:422.466667pt;}
.yed{bottom:423.266667pt;}
.y295{bottom:426.306667pt;}
.y12b{bottom:428.866667pt;}
.y33f{bottom:429.506667pt;}
.y99{bottom:429.666667pt;}
.y257{bottom:431.426667pt;}
.y4c{bottom:433.026667pt;}
.y11e{bottom:433.346667pt;}
.y1c5{bottom:433.826667pt;}
.yd8{bottom:434.946667pt;}
.y6e{bottom:436.706667pt;}
.y274{bottom:437.666667pt;}
.yac{bottom:442.946667pt;}
.y242{bottom:443.746667pt;}
.y1bc{bottom:444.226667pt;}
.y1ea{bottom:444.386667pt;}
.y294{bottom:445.826667pt;}
.ye{bottom:448.706667pt;}
.y13b{bottom:449.346667pt;}
.y182{bottom:449.506667pt;}
.y29{bottom:449.986667pt;}
.yec{bottom:450.946667pt;}
.y174{bottom:454.306667pt;}
.y107{bottom:456.386667pt;}
.y8b{bottom:457.346667pt;}
.y1c4{bottom:457.506667pt;}
.y2b6{bottom:458.146667pt;}
.y256{bottom:458.946667pt;}
.y11d{bottom:460.866667pt;}
.y2cf{bottom:462.146667pt;}
.y6d{bottom:464.226667pt;}
.yc2{bottom:465.346667pt;}
.yab{bottom:470.626667pt;}
.y241{bottom:471.266667pt;}
.y4b{bottom:471.426667pt;}
.y1e9{bottom:471.906667pt;}
.y317{bottom:472.066667pt;}
.yd7{bottom:473.186667pt;}
.y13a{bottom:476.866667pt;}
.y181{bottom:477.186667pt;}
.y28{bottom:477.666667pt;}
.y293{bottom:478.306667pt;}
.y209{bottom:478.466667pt;}
.y12a{bottom:484.066667pt;}
.y8a{bottom:484.866667pt;}
.y11c{bottom:488.386667pt;}
.yeb{bottom:489.186667pt;}
.y1bb{bottom:490.786667pt;}
.y6c{bottom:491.906667pt;}
.y173{bottom:492.546667pt;}
.y273{bottom:492.866667pt;}
.y315{bottom:495.426667pt;}
.yd{bottom:495.586667pt;}
.y2b5{bottom:496.386667pt;}
.y255{bottom:497.346667pt;}
.y292{bottom:497.826667pt;}
.yaa{bottom:498.146667pt;}
.y240{bottom:498.946667pt;}
.y1dd{bottom:499.106667pt;}
.y106{bottom:500.066667pt;}
.y2ce{bottom:500.706667pt;}
.yd6{bottom:500.866667pt;}
.y180{bottom:504.706667pt;}
.y27{bottom:505.186667pt;}
.yc1{bottom:508.066667pt;}
.y172{bottom:508.226667pt;}
.y4a{bottom:509.666667pt;}
.y1e8{bottom:510.146667pt;}
.y89{bottom:512.386667pt;}
.y11b{bottom:516.066667pt;}
.yea{bottom:516.866667pt;}
.y291{bottom:517.346667pt;}
.y2cb{bottom:519.906667pt;}
.y139{bottom:520.386667pt;}
.y1ba{bottom:522.146667pt;}
.y49{bottom:524.706667pt;}
.y254{bottom:524.866667pt;}
.ya9{bottom:525.826667pt;}
.y23f{bottom:526.466667pt;}
.y105{bottom:527.586667pt;}
.yd5{bottom:528.386667pt;}
.y312{bottom:529.026667pt;}
.y272{bottom:531.106667pt;}
.y171{bottom:532.226667pt;}
.y6b{bottom:532.866667pt;}
.y2b4{bottom:534.626667pt;}
.y290{bottom:536.706667pt;}
.y1dc{bottom:537.506667pt;}
.y158{bottom:538.946667pt;}
.y2c9{bottom:539.106667pt;}
.y88{bottom:540.066667pt;}
.yc{bottom:542.466667pt;}
.y17f{bottom:543.106667pt;}
.y26{bottom:543.426667pt;}
.y208{bottom:543.746667pt;}
.y1b8{bottom:544.226667pt;}
.ye9{bottom:544.386667pt;}
.y138{bottom:548.066667pt;}
.y1e7{bottom:548.546667pt;}
.yc0{bottom:550.946667pt;}
.y46{bottom:552.226667pt;}
.y253{bottom:552.386667pt;}
.y1db{bottom:553.186667pt;}
.ya8{bottom:553.346667pt;}
.y1da{bottom:553.826667pt;}
.y23e{bottom:554.146667pt;}
.y30e{bottom:554.306667pt;}
.y155{bottom:554.626667pt;}
.y170{bottom:554.946667pt;}
.y104{bottom:555.266667pt;}
.y271{bottom:558.786667pt;}
.y11a{bottom:559.586667pt;}
.y6a{bottom:560.386667pt;}
.yd4{bottom:566.653333pt;}
.y87{bottom:567.613333pt;}
.y28f{bottom:569.213333pt;}
.y25{bottom:571.133333pt;}
.y2b3{bottom:572.893333pt;}
.y2c8{bottom:573.053333pt;}
.y1b7{bottom:575.453333pt;}
.y137{bottom:575.613333pt;}
.y1d9{bottom:575.773333pt;}
.y30b{bottom:577.533333pt;}
.y16f{bottom:577.693333pt;}
.y17e{bottom:579.293333pt;}
.y45{bottom:579.933333pt;}
.y252{bottom:580.093333pt;}
.ya7{bottom:581.053333pt;}
.y23d{bottom:581.693333pt;}
.y2f5{bottom:582.493333pt;}
.ye8{bottom:582.653333pt;}
.y1e6{bottom:584.733333pt;}
.y270{bottom:586.333333pt;}
.y119{bottom:587.293333pt;}
.y69{bottom:588.093333pt;}
.y28e{bottom:588.733333pt;}
.yb{bottom:590.653333pt;}
.ybf{bottom:594.333333pt;}
.y86{bottom:595.293333pt;}
.y2f4{bottom:597.053333pt;}
.y1b6{bottom:597.533333pt;}
.y1d8{bottom:597.853333pt;}
.y24{bottom:598.653333pt;}
.y103{bottom:598.813333pt;}
.y16e{bottom:600.253333pt;}
.y2c7{bottom:602.013333pt;}
.y136{bottom:603.293333pt;}
.y44{bottom:607.453333pt;}
.y251{bottom:607.613333pt;}
.y28d{bottom:608.253333pt;}
.ya6{bottom:608.573333pt;}
.y23c{bottom:609.373333pt;}
.ye7{bottom:610.333333pt;}
.y154{bottom:610.653333pt;}
.y2b2{bottom:611.133333pt;}
.y17d{bottom:612.893333pt;}
.y207{bottom:613.693333pt;}
.y26f{bottom:614.013333pt;}
.y118{bottom:614.813333pt;}
.y68{bottom:615.613333pt;}
.y1e5{bottom:616.733333pt;}
.y1f0{bottom:616.960000pt;}
.y30a{bottom:617.053333pt;}
.y1d7{bottom:619.773333pt;}
.y2c6{bottom:620.413333pt;}
.yd3{bottom:621.853333pt;}
.ybe{bottom:622.013333pt;}
.y16d{bottom:622.973333pt;}
.y23{bottom:626.333333pt;}
.y102{bottom:626.493333pt;}
.y28c{bottom:627.613333pt;}
.y1b4{bottom:628.893333pt;}
.y135{bottom:630.813333pt;}
.y2f3{bottom:631.453333pt;}
.ya{bottom:633.053333pt;}
.y43{bottom:635.133333pt;}
.y250{bottom:635.293333pt;}
.y85{bottom:636.253333pt;}
.y23b{bottom:636.893333pt;}
.ye6{bottom:637.853333pt;}
.y26e{bottom:641.533333pt;}
.y1d6{bottom:641.853333pt;}
.y117{bottom:642.493333pt;}
.y2b1{bottom:644.893333pt;}
.y169{bottom:645.693333pt;}
.y222{bottom:645.920000pt;}
.y17c{bottom:646.813333pt;}
.y191{bottom:647.040000pt;}
.ybd{bottom:649.533333pt;}
.y22{bottom:653.853333pt;}
.y101{bottom:654.013333pt;}
.y67{bottom:656.573333pt;}
.y189{bottom:656.960000pt;}
.y1fd{bottom:657.280000pt;}
.y134{bottom:658.493333pt;}
.yd2{bottom:660.093333pt;}
.y33e{bottom:661.213333pt;}
.y42{bottom:662.653333pt;}
.y24f{bottom:662.813333pt;}
.y1ff{bottom:662.880000pt;}
.y309{bottom:663.293333pt;}
.y84{bottom:663.773333pt;}
.y2b0{bottom:664.413333pt;}
.y23a{bottom:664.573333pt;}
.ye5{bottom:665.533333pt;}
.y2f1{bottom:665.853333pt;}
.y153{bottom:666.493333pt;}
.y2c5{bottom:667.933333pt;}
.y16b{bottom:668.253333pt;}
.y22e{bottom:669.213333pt;}
.y116{bottom:670.013333pt;}
.y1fb{bottom:673.920000pt;}
.y9{bottom:675.293333pt;}
.ybc{bottom:677.213333pt;}
.y28b{bottom:679.773333pt;}
.y21a{bottom:681.600000pt;}
.y2af{bottom:683.773333pt;}
.y66{bottom:684.093333pt;}
.y1d3{bottom:685.853333pt;}
.y133{bottom:686.013333pt;}
.yd1{bottom:687.773333pt;}
.y167{bottom:689.693333pt;}
.y33d{bottom:689.853333pt;}
.y41{bottom:690.173333pt;}
.y223{bottom:690.400000pt;}
.y24e{bottom:690.493333pt;}
.y83{bottom:691.453333pt;}
.y21{bottom:692.093333pt;}
.y308{bottom:692.413333pt;}
.y22d{bottom:696.733333pt;}
.y2c4{bottom:696.893333pt;}
.y100{bottom:697.693333pt;}
.y28a{bottom:699.133333pt;}
.ye4{bottom:703.773333pt;}
.y152{bottom:703.933333pt;}
.ybb{bottom:704.733333pt;}
.y1d5{bottom:707.773333pt;}
.y21c{bottom:709.760000pt;}
.y307{bottom:710.813333pt;}
.y166{bottom:710.973333pt;}
.y65{bottom:711.773333pt;}
.y115{bottom:713.693333pt;}
.y2c3{bottom:715.293333pt;}
.y2ae{bottom:716.413333pt;}
.y2f0{bottom:717.053333pt;}
.y40{bottom:717.853333pt;}
.y24d{bottom:718.013333pt;}
.y33c{bottom:718.333333pt;}
.y289{bottom:718.493333pt;}
.y82{bottom:718.973333pt;}
.y225{bottom:719.040000pt;}
.y20{bottom:719.773333pt;}
.y1fa{bottom:720.960000pt;}
.y1b3{bottom:722.813333pt;}
.y22c{bottom:724.413333pt;}
.y129{bottom:725.213333pt;}
.yd0{bottom:726.013333pt;}
.y8{bottom:727.613333pt;}
.y1d2{bottom:729.853333pt;}
.ya5{bottom:732.413333pt;}
.y338{bottom:732.893333pt;}
.y2c2{bottom:733.693333pt;}
.y164{bottom:734.333333pt;}
.y18f{bottom:735.360000pt;}
.y2ad{bottom:735.933333pt;}
.y21e{bottom:737.920000pt;}
.y64{bottom:739.293333pt;}
.y306{bottom:739.773333pt;}
.yff{bottom:741.213333pt;}
.y150{bottom:741.373333pt;}
.y3f{bottom:745.373333pt;}
.yba{bottom:745.693333pt;}
.y81{bottom:746.653333pt;}
.y1f{bottom:747.293333pt;}
.y226{bottom:747.520000pt;}
.y288{bottom:751.133333pt;}
.y2ef{bottom:751.453333pt;}
.y22b{bottom:751.933333pt;}
.y128{bottom:752.893333pt;}
.y1d1{bottom:753.213333pt;}
.ycf{bottom:753.533333pt;}
.y1b2{bottom:754.173333pt;}
.y18e{bottom:754.400000pt;}
.y2ac{bottom:755.293333pt;}
.y114{bottom:757.213333pt;}
.y305{bottom:758.173333pt;}
.ya4{bottom:759.933333pt;}
.y2c1{bottom:762.813333pt;}
.y21f{bottom:765.920000pt;}
.yfe{bottom:768.893333pt;}
.y287{bottom:770.653333pt;}
.y3e{bottom:773.053333pt;}
.yb9{bottom:773.213333pt;}
.y98{bottom:774.173333pt;}
.y18c{bottom:774.400000pt;}
.y2ab{bottom:774.653333pt;}
.y1e{bottom:774.973333pt;}
.y227{bottom:776.000000pt;}
.y1b1{bottom:776.093333pt;}
.y304{bottom:776.573333pt;}
.y1d0{bottom:777.213333pt;}
.y7{bottom:777.533333pt;}
.y26d{bottom:779.613333pt;}
.y63{bottom:780.253333pt;}
.yce{bottom:781.213333pt;}
.y113{bottom:784.893333pt;}
.y239{bottom:785.533333pt;}
.y2ec{bottom:785.853333pt;}
.y334{bottom:787.453333pt;}
.y80{bottom:787.613333pt;}
.y286{bottom:790.013333pt;}
.y22a{bottom:790.173333pt;}
.y221{bottom:794.080000pt;}
.yfd{bottom:796.453333pt;}
.y1b0{bottom:798.213333pt;}
.y2c0{bottom:799.653333pt;}
.y3d{bottom:800.613333pt;}
.yb8{bottom:800.933333pt;}
.y97{bottom:801.893333pt;}
.ye3{bottom:802.533333pt;}
.y228{bottom:805.440000pt;}
.y303{bottom:805.733333pt;}
.y18b{bottom:806.880000pt;}
.y26c{bottom:807.173333pt;}
.y2aa{bottom:807.333333pt;}
.y62{bottom:807.973333pt;}
.ycd{bottom:808.773333pt;}
.y112{bottom:812.453333pt;}
.y1d{bottom:813.253333pt;}
.y7f{bottom:815.173333pt;}
.y14f{bottom:815.653333pt;}
.y229{bottom:817.893333pt;}
.y2bf{bottom:818.053333pt;}
.y1ad{bottom:820.133333pt;}
.y2eb{bottom:820.293333pt;}
.y285{bottom:822.693333pt;}
.y127{bottom:824.133333pt;}
.y332{bottom:824.933333pt;}
.y2a9{bottom:826.853333pt;}
.y6{bottom:827.173333pt;}
.y3c{bottom:828.293333pt;}
.yb7{bottom:828.453333pt;}
.ye2{bottom:830.213333pt;}
.y26b{bottom:834.693333pt;}
.y61{bottom:835.493333pt;}
.y163{bottom:836.453333pt;}
.yfc{bottom:840.133333pt;}
.y1c{bottom:840.773333pt;}
.y284{bottom:842.213333pt;}
.y302{bottom:842.533333pt;}
.y7e{bottom:842.693333pt;}
.y2a8{bottom:846.213333pt;}
.ycc{bottom:847.173333pt;}
.y1ab{bottom:851.493333pt;}
.y1cf{bottom:851.653333pt;}
.y2e8{bottom:854.693333pt;}
.y3b{bottom:855.813333pt;}
.yb6{bottom:856.133333pt;}
.ye1{bottom:857.733333pt;}
.y301{bottom:860.933333pt;}
.y283{bottom:861.573333pt;}
.y331{bottom:862.213333pt;}
.y60{bottom:863.173333pt;}
.y2be{bottom:865.573333pt;}
.y2a7{bottom:865.733333pt;}
.yfb{bottom:867.653333pt;}
.y1b{bottom:868.453333pt;}
.y7d{bottom:870.373333pt;}
.y14c{bottom:871.493333pt;}
.y17b{bottom:873.093333pt;}
.y1a9{bottom:873.573333pt;}
.y5{bottom:874.053333pt;}
.y162{bottom:874.693333pt;}
.y1ce{bottom:879.333333pt;}
.y3a{bottom:883.493333pt;}
.yb5{bottom:883.653333pt;}
.y2bd{bottom:883.973333pt;}
.y2a6{bottom:885.093333pt;}
.ycb{bottom:885.413333pt;}
.y300{bottom:889.893333pt;}
.y5f{bottom:890.693333pt;}
.y282{bottom:894.213333pt;}
.yfa{bottom:895.333333pt;}
.y1a6{bottom:895.493333pt;}
.y1a{bottom:895.973333pt;}
.y7c{bottom:897.893333pt;}
.y330{bottom:898.373333pt;}
.y17a{bottom:900.613333pt;}
.y2a5{bottom:904.453333pt;}
.y2e7{bottom:905.893333pt;}
.y2ff{bottom:908.293333pt;}
.y37{bottom:911.013333pt;}
.yb4{bottom:911.333333pt;}
.yca{bottom:912.933333pt;}
.y281{bottom:913.733333pt;}
.y1cd{bottom:917.573333pt;}
.y5e{bottom:918.373333pt;}
.y4{bottom:920.453333pt;}
.yf9{bottom:922.853333pt;}
.y19{bottom:923.653333pt;}
.ya3{bottom:925.573333pt;}
.y2fe{bottom:926.693333pt;}
.y148{bottom:927.333333pt;}
.y179{bottom:928.293333pt;}
.y280{bottom:933.093333pt;}
.y32f{bottom:935.653333pt;}
.y2a4{bottom:937.093333pt;}
.y34{bottom:938.693333pt;}
.y7b{bottom:938.853333pt;}
.y2e6{bottom:940.293333pt;}
.y5d{bottom:945.893333pt;}
.y14a{bottom:946.533333pt;}
.yf8{bottom:950.533333pt;}
.y18{bottom:951.173333pt;}
.y27f{bottom:952.453333pt;}
.y3{bottom:953.733333pt;}
.y178{bottom:955.813333pt;}
.y2a3{bottom:956.613333pt;}
.y7a{bottom:966.533333pt;}
.y32d{bottom:972.933333pt;}
.y2e5{bottom:974.693333pt;}
.y2a2{bottom:975.973333pt;}
.y17{bottom:991.653333pt;}
.y79{bottom:994.053333pt;}
.y2{bottom:995.173333pt;}
.y2a1{bottom:995.333333pt;}
.y5a{bottom:1060.640000pt;}
.h3a{height:2.621250pt;}
.h26{height:2.670000pt;}
.h27{height:15.520000pt;}
.h2b{height:16.320000pt;}
.h29{height:16.480000pt;}
.h12{height:16.800000pt;}
.h14{height:16.832000pt;}
.h13{height:16.960000pt;}
.h4a{height:18.080000pt;}
.h54{height:18.240000pt;}
.h19{height:18.400000pt;}
.h47{height:19.200000pt;}
.h20{height:21.280000pt;}
.h24{height:21.312000pt;}
.h23{height:21.440000pt;}
.h33{height:21.472000pt;}
.h2e{height:22.720000pt;}
.h1e{height:23.040000pt;}
.h37{height:23.072000pt;}
.h51{height:23.232000pt;}
.h53{height:23.360000pt;}
.h2f{height:23.680000pt;}
.h50{height:25.120000pt;}
.h52{height:25.280000pt;}
.h43{height:25.600000pt;}
.h45{height:25.760000pt;}
.hc{height:27.520000pt;}
.hf{height:27.552000pt;}
.he{height:27.680000pt;}
.h10{height:27.712000pt;}
.h34{height:30.560000pt;}
.h35{height:30.592000pt;}
.h32{height:30.720000pt;}
.h30{height:32.000000pt;}
.h4c{height:33.600000pt;}
.h4b{height:33.760000pt;}
.h4e{height:33.792000pt;}
.h56{height:35.520000pt;}
.h55{height:36.640000pt;}
.h57{height:36.672000pt;}
.h1c{height:36.800000pt;}
.h18{height:37.600000pt;}
.h48{height:38.560000pt;}
.h42{height:41.280000pt;}
.h41{height:42.080000pt;}
.h31{height:42.720000pt;}
.h38{height:43.360000pt;}
.h21{height:44.000000pt;}
.h36{height:45.920000pt;}
.h22{height:50.062500pt;}
.h4d{height:50.560000pt;}
.h2c{height:52.834688pt;}
.h3f{height:52.962000pt;}
.h58{height:53.920000pt;}
.h3b{height:54.390938pt;}
.h8{height:54.452500pt;}
.h2a{height:54.522000pt;}
.h1a{height:55.200000pt;}
.h1d{height:55.232000pt;}
.h1f{height:55.402500pt;}
.h17{height:57.375000pt;}
.h15{height:57.787500pt;}
.h2{height:58.563750pt;}
.h44{height:58.740000pt;}
.h59{height:60.288750pt;}
.h49{height:61.295000pt;}
.hd{height:61.410000pt;}
.h3d{height:61.543500pt;}
.h11{height:62.812500pt;}
.h16{height:65.842500pt;}
.hb{height:66.625000pt;}
.ha{height:66.750000pt;}
.h1b{height:73.632000pt;}
.h9{height:78.097500pt;}
.h7{height:98.843125pt;}
.h3{height:108.313125pt;}
.h4{height:118.375000pt;}
.h5{height:128.436875pt;}
.h6{height:137.906875pt;}
.h5a{height:175.066667pt;}
.h2d{height:179.040000pt;}
.h4f{height:182.266667pt;}
.h40{height:187.040000pt;}
.h28{height:202.720000pt;}
.h46{height:203.840000pt;}
.h39{height:221.946667pt;}
.h25{height:224.026667pt;}
.h3e{height:232.800000pt;}
.h3c{height:242.880000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w58{width:2.720000pt;}
.w57{width:15.360000pt;}
.w5f{width:17.920000pt;}
.w4e{width:26.912000pt;}
.w21{width:37.760000pt;}
.w50{width:40.320000pt;}
.w3e{width:45.920000pt;}
.w26{width:47.200000pt;}
.wd{width:52.352000pt;}
.w4{width:53.280000pt;}
.wf{width:54.240000pt;}
.w3d{width:55.360000pt;}
.w3c{width:55.392000pt;}
.w5e{width:56.480000pt;}
.w24{width:56.640000pt;}
.w23{width:56.672000pt;}
.w25{width:56.832000pt;}
.we{width:57.760000pt;}
.w1e{width:58.080000pt;}
.wa{width:60.320000pt;}
.wc{width:61.920000pt;}
.w1f{width:64.320000pt;}
.w5{width:65.760000pt;}
.w4f{width:68.000000pt;}
.w2d{width:68.640000pt;}
.w12{width:69.280000pt;}
.w2f{width:69.760000pt;}
.w14{width:70.400000pt;}
.w3f{width:70.560000pt;}
.wb{width:70.592000pt;}
.w27{width:71.200000pt;}
.w2e{width:71.712000pt;}
.w5a{width:72.320000pt;}
.w13{width:72.512000pt;}
.w5c{width:85.120000pt;}
.w8{width:85.792000pt;}
.w4c{width:94.912000pt;}
.w4b{width:95.200000pt;}
.w5b{width:96.832000pt;}
.w29{width:99.520000pt;}
.w4d{width:112.160000pt;}
.w7{width:118.720000pt;}
.w59{width:121.792000pt;}
.w5d{width:131.712000pt;}
.w1b{width:133.920000pt;}
.w4a{width:137.146667pt;}
.w54{width:140.666667pt;}
.w30{width:140.986667pt;}
.w15{width:141.786667pt;}
.w65{width:145.146667pt;}
.w63{width:145.466667pt;}
.w46{width:152.160000pt;}
.w37{width:162.880000pt;}
.w48{width:186.880000pt;}
.w17{width:187.040000pt;}
.w47{width:192.640000pt;}
.w38{width:195.360000pt;}
.w2a{width:211.106667pt;}
.w2c{width:211.386667pt;}
.w11{width:212.186667pt;}
.w19{width:212.800000pt;}
.w18{width:212.960000pt;}
.w16{width:214.240000pt;}
.w36{width:217.600000pt;}
.w35{width:220.320000pt;}
.w1c{width:232.000000pt;}
.w31{width:234.240000pt;}
.w3b{width:235.706667pt;}
.w22{width:236.346667pt;}
.w41{width:252.800000pt;}
.w2b{width:254.586667pt;}
.w32{width:255.360000pt;}
.w40{width:262.240000pt;}
.w51{width:302.266667pt;}
.w44{width:319.840000pt;}
.w42{width:322.240000pt;}
.w39{width:352.000000pt;}
.w1a{width:354.880000pt;}
.w9{width:360.706667pt;}
.w1d{width:379.040000pt;}
.w43{width:389.760000pt;}
.w53{width:424.386667pt;}
.w52{width:424.706667pt;}
.w45{width:426.880000pt;}
.w64{width:437.666667pt;}
.w62{width:437.986667pt;}
.w60{width:442.466667pt;}
.w34{width:443.040000pt;}
.w33{width:451.840000pt;}
.w61{width:460.386667pt;}
.w6{width:501.213333pt;}
.w3{width:523.293333pt;}
.w3a{width:524.893333pt;}
.w20{width:562.653333pt;}
.w55{width:562.973333pt;}
.w56{width:563.773333pt;}
.w10{width:565.693333pt;}
.w28{width:566.493333pt;}
.w49{width:574.333333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:4.000000pt;}
.x76{left:4.960000pt;}
.x4f{left:6.080000pt;}
.xe{left:7.200000pt;}
.x21{left:8.640000pt;}
.x25{left:10.080000pt;}
.x74{left:11.360000pt;}
.x4d{left:12.640000pt;}
.x7a{left:16.066667pt;}
.x50{left:17.280000pt;}
.x48{left:18.880000pt;}
.x77{left:20.960000pt;}
.x51{left:22.560000pt;}
.x56{left:23.674667pt;}
.x1e{left:25.160000pt;}
.x5f{left:28.800000pt;}
.x12{left:29.760000pt;}
.x55{left:31.034667pt;}
.x6b{left:32.413333pt;}
.x30{left:36.320000pt;}
.x10{left:37.920000pt;}
.x7b{left:39.226667pt;}
.x57{left:43.400000pt;}
.x5d{left:45.600000pt;}
.x5e{left:52.160000pt;}
.x2e{left:53.120000pt;}
.x11{left:54.394667pt;}
.x79{left:56.573333pt;}
.x2f{left:59.680000pt;}
.x6a{left:62.013333pt;}
.x38{left:63.106667pt;}
.x5a{left:65.274667pt;}
.x28{left:68.954667pt;}
.x49{left:70.080000pt;}
.x3a{left:80.386667pt;}
.x59{left:85.280000pt;}
.x6c{left:86.493333pt;}
.x2a{left:88.160000pt;}
.x3c{left:91.520000pt;}
.x43{left:99.520000pt;}
.x63{left:100.506667pt;}
.x16{left:108.351988pt;}
.x64{left:112.573333pt;}
.x2{left:113.471988pt;}
.x89{left:114.912000pt;}
.x7c{left:117.986667pt;}
.x8{left:121.791988pt;}
.x17{left:132.351988pt;}
.x53{left:134.274667pt;}
.x3f{left:135.493333pt;}
.x18{left:137.466655pt;}
.x7{left:139.546655pt;}
.x1c{left:141.786655pt;}
.x47{left:151.226667pt;}
.xd{left:160.666655pt;}
.x20{left:162.426667pt;}
.x65{left:170.880000pt;}
.x5b{left:176.840000pt;}
.x13{left:179.226667pt;}
.x78{left:183.360000pt;}
.x19{left:184.666655pt;}
.x1a{left:189.146655pt;}
.x54{left:195.554667pt;}
.x69{left:198.880000pt;}
.x82{left:203.554667pt;}
.x41{left:206.720000pt;}
.x9{left:208.346655pt;}
.x32{left:213.466655pt;}
.xa{left:216.826655pt;}
.x37{left:219.360000pt;}
.x72{left:220.800000pt;}
.x62{left:225.946655pt;}
.x5c{left:230.440000pt;}
.x1d{left:233.466667pt;}
.x8c{left:235.906667pt;}
.x81{left:249.120000pt;}
.x39{left:251.520000pt;}
.x36{left:260.546655pt;}
.x70{left:261.600000pt;}
.x7e{left:263.360000pt;}
.x6d{left:264.800000pt;}
.x44{left:273.120000pt;}
.x40{left:274.853333pt;}
.x80{left:277.120000pt;}
.x60{left:282.781333pt;}
.x3{left:289.186655pt;}
.x29{left:290.786667pt;}
.x34{left:292.066655pt;}
.x42{left:293.280000pt;}
.x45{left:299.360000pt;}
.x8d{left:308.226667pt;}
.x1f{left:320.066667pt;}
.x3e{left:323.200000pt;}
.x3d{left:332.160000pt;}
.x3b{left:344.160000pt;}
.x83{left:346.466667pt;}
.x46{left:350.880000pt;}
.x2c{left:360.066667pt;}
.xc{left:364.226655pt;}
.x6e{left:368.160000pt;}
.x71{left:377.440000pt;}
.x22{left:381.026667pt;}
.x66{left:386.400000pt;}
.x4a{left:387.586667pt;}
.x1b{left:388.706655pt;}
.x15{left:392.866655pt;}
.x5{left:395.293322pt;}
.x1{left:396.893322pt;}
.x8e{left:405.053333pt;}
.x7f{left:417.600000pt;}
.x6f{left:424.320000pt;}
.x58{left:426.013333pt;}
.x2d{left:432.573333pt;}
.x84{left:441.373333pt;}
.x4b{left:444.253333pt;}
.x23{left:452.413333pt;}
.x7d{left:458.080000pt;}
.x6{left:466.653322pt;}
.x8f{left:490.173333pt;}
.x4c{left:500.893333pt;}
.x24{left:514.973333pt;}
.x88{left:538.813333pt;}
.x91{left:552.093333pt;}
.x85{left:553.533333pt;}
.x4{left:557.093322pt;}
.x75{left:558.373333pt;}
.x31{left:560.933322pt;}
.x26{left:567.973333pt;}
.x68{left:572.933322pt;}
.x33{left:574.373322pt;}
.x86{left:580.453333pt;}
.x35{left:587.013322pt;}
.x4e{left:604.933333pt;}
.x73{left:610.373322pt;}
.x90{left:621.893333pt;}
.x61{left:622.853322pt;}
.x27{left:626.533333pt;}
.xf{left:636.773333pt;}
.x67{left:642.053322pt;}
.x87{left:648.453333pt;}
.x52{left:656.293322pt;}
.x92{left:672.453322pt;}
.x8a{left:677.893333pt;}
.xb{left:680.453322pt;}
.x14{left:687.493322pt;}
.x8b{left:693.573333pt;}
.x93{left:729.599988pt;}
}




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