
    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_8fd632cce3ef5ddc67e91205.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_27a4abd1b032087ed30dab67.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_a8594c9904b1645df7c66fe9.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_86ea6371e83211feede74f3a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.115234;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_d925570bc9d6400ade4606fd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.862793;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_23051813035b88a3b248da65.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.861816;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_f21e045c0b6f3207d2848b57.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.770020;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);}
.v1{vertical-align:-23.760001px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:13.559189px;}
.ls3{letter-spacing:27.118378px;}
.ls1{letter-spacing:64.511718px;}
.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;}
}
.ws0{word-spacing:-29.841798px;}
.ws15{word-spacing:-27.128906px;}
.ws4{word-spacing:-18.990234px;}
.ws62{word-spacing:-16.669921px;}
.ws14{word-spacing:-16.277344px;}
.ws3f{word-spacing:-14.920899px;}
.ws2{word-spacing:-5.436356px;}
.ws4f{word-spacing:-0.084000px;}
.ws61{word-spacing:-0.035794px;}
.ws10{word-spacing:-0.035263px;}
.ws5b{word-spacing:-0.000036px;}
.wsc{word-spacing:-0.000034px;}
.ws29{word-spacing:-0.000023px;}
.ws1{word-spacing:-0.000019px;}
.ws73{word-spacing:-0.000016px;}
.ws52{word-spacing:-0.000014px;}
.ws2e{word-spacing:-0.000012px;}
.ws72{word-spacing:-0.000004px;}
.ws42{word-spacing:-0.000003px;}
.ws21{word-spacing:-0.000001px;}
.ws3{word-spacing:0.000000px;}
.ws1d{word-spacing:0.000011px;}
.ws13{word-spacing:0.000021px;}
.wsf{word-spacing:0.000022px;}
.ws57{word-spacing:0.000033px;}
.ws19{word-spacing:2.747426px;}
.ws56{word-spacing:4.499963px;}
.ws64{word-spacing:4.499965px;}
.ws8{word-spacing:4.499975px;}
.ws1e{word-spacing:4.499977px;}
.ws38{word-spacing:4.499987px;}
.ws2c{word-spacing:4.499989px;}
.ws6a{word-spacing:4.499996px;}
.ws47{word-spacing:4.499997px;}
.ws36{word-spacing:4.499998px;}
.ws9{word-spacing:4.500000px;}
.ws63{word-spacing:4.500002px;}
.ws30{word-spacing:4.500009px;}
.ws3d{word-spacing:4.500011px;}
.ws41{word-spacing:4.500022px;}
.ws54{word-spacing:4.500031px;}
.ws18{word-spacing:4.886718px;}
.ws40{word-spacing:5.603577px;}
.ws37{word-spacing:5.603680px;}
.ws4c{word-spacing:8.999876px;}
.ws1f{word-spacing:8.999966px;}
.ws34{word-spacing:8.999978px;}
.ws39{word-spacing:8.999986px;}
.ws5a{word-spacing:8.999987px;}
.ws2a{word-spacing:8.999988px;}
.ws23{word-spacing:8.999997px;}
.ws6{word-spacing:8.999999px;}
.ws53{word-spacing:9.000001px;}
.ws49{word-spacing:9.000002px;}
.ws44{word-spacing:9.000009px;}
.ws43{word-spacing:9.000010px;}
.ws22{word-spacing:9.000011px;}
.ws4d{word-spacing:9.000022px;}
.ws11{word-spacing:13.468211px;}
.ws3b{word-spacing:13.499966px;}
.wse{word-spacing:13.499977px;}
.ws2b{word-spacing:13.499987px;}
.ws25{word-spacing:13.499988px;}
.ws2f{word-spacing:13.499996px;}
.ws6d{word-spacing:13.499997px;}
.ws55{word-spacing:13.499998px;}
.wsb{word-spacing:13.500000px;}
.ws66{word-spacing:13.500002px;}
.ws5{word-spacing:13.500011px;}
.ws5e{word-spacing:13.500022px;}
.ws68{word-spacing:13.500023px;}
.ws50{word-spacing:17.999966px;}
.ws32{word-spacing:17.999977px;}
.ws71{word-spacing:17.999985px;}
.ws28{word-spacing:17.999986px;}
.ws33{word-spacing:17.999987px;}
.ws5d{word-spacing:17.999989px;}
.ws48{word-spacing:17.999997px;}
.wsd{word-spacing:18.000000px;}
.ws1b{word-spacing:18.000011px;}
.ws69{word-spacing:18.000022px;}
.ws4e{word-spacing:20.983017px;}
.ws46{word-spacing:22.499966px;}
.ws2d{word-spacing:22.499977px;}
.ws3e{word-spacing:22.499986px;}
.ws27{word-spacing:22.499989px;}
.ws65{word-spacing:22.499997px;}
.ws12{word-spacing:22.500000px;}
.ws45{word-spacing:22.500011px;}
.ws67{word-spacing:22.500022px;}
.ws3c{word-spacing:22.500034px;}
.ws51{word-spacing:26.381023px;}
.ws1c{word-spacing:26.999977px;}
.ws3a{word-spacing:26.999986px;}
.ws60{word-spacing:26.999988px;}
.ws31{word-spacing:26.999998px;}
.ws20{word-spacing:27.000000px;}
.ws7{word-spacing:27.000031px;}
.ws5f{word-spacing:30.881058px;}
.ws4b{word-spacing:30.881081px;}
.ws6c{word-spacing:31.499966px;}
.ws26{word-spacing:31.499977px;}
.ws6b{word-spacing:31.499988px;}
.ws5c{word-spacing:31.500010px;}
.ws58{word-spacing:35.999966px;}
.wsa{word-spacing:35.999999px;}
.ws70{word-spacing:36.000010px;}
.ws16{word-spacing:37.054687px;}
.ws6f{word-spacing:40.499977px;}
.ws6e{word-spacing:40.499997px;}
.ws4a{word-spacing:40.500000px;}
.ws17{word-spacing:42.990554px;}
.ws59{word-spacing:44.999999px;}
.ws1a{word-spacing:53.894530px;}
.ws24{word-spacing:53.999989px;}
.ws35{word-spacing:2404.047436px;}
._4b{margin-left:-9.175781px;}
._35{margin-left:-8.062407px;}
._10{margin-left:-6.612951px;}
._2{margin-left:-5.537109px;}
._25{margin-left:-4.475479px;}
._0{margin-left:-2.923625px;}
._1{margin-left:-1.632978px;}
._f{width:1.255420px;}
._4d{width:2.930696px;}
._1f{width:14.552937px;}
._7{width:15.679697px;}
._6{width:16.813326px;}
._c{width:19.300250px;}
._3{width:20.332550px;}
._b{width:21.561459px;}
._4a{width:23.407087px;}
._5{width:25.277345px;}
._a{width:28.974383px;}
._9{width:30.287420px;}
._d{width:32.548299px;}
._8{width:34.468916px;}
._20{width:37.404190px;}
._e{width:38.687666px;}
._49{width:39.767376px;}
._48{width:40.885231px;}
._46{width:42.484538px;}
._42{width:43.519864px;}
._4{width:47.074220px;}
._3e{width:48.320478px;}
._3f{width:50.476644px;}
._45{width:51.658400px;}
._12{width:53.332031px;}
._47{width:56.777343px;}
._4c{width:61.433757px;}
._41{width:65.439414px;}
._40{width:66.533582px;}
._43{width:68.103320px;}
._44{width:85.980474px;}
._32{width:89.053357px;}
._36{width:117.878897px;}
._37{width:150.630817px;}
._23{width:173.163054px;}
._1a{width:273.626723px;}
._30{width:299.238368px;}
._38{width:402.369434px;}
._3c{width:428.797202px;}
._3a{width:440.439576px;}
._39{width:453.834109px;}
._1b{width:471.359182px;}
._3d{width:489.241430px;}
._3b{width:524.855390px;}
._22{width:544.590347px;}
._13{width:889.727220px;}
._34{width:987.943646px;}
._33{width:999.705201px;}
._18{width:1039.247322px;}
._24{width:1077.020481px;}
._17{width:1154.428493px;}
._16{width:1204.867029px;}
._15{width:1278.558922px;}
._26{width:1318.786650px;}
._1c{width:1324.417452px;}
._21{width:1332.332195px;}
._2a{width:1340.066702px;}
._28{width:1348.153630px;}
._27{width:1360.089621px;}
._2c{width:1374.772773px;}
._2d{width:1376.370099px;}
._2b{width:1393.737285px;}
._14{width:1407.953287px;}
._1d{width:1421.635546px;}
._29{width:1430.758403px;}
._1e{width:1496.168100px;}
._2f{width:1528.560674px;}
._31{width:1555.874999px;}
._19{width:1591.069956px;}
._2e{width:1884.550780px;}
._11{width:1897.609539px;}
.fc1{color:rgb(17,85,204);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs8{font-size:43.200002px;}
.fsa{font-size:59.999999px;}
.fsb{font-size:63.000000px;}
.fs6{font-size:66.000002px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:83.999997px;}
.fs1{font-size:96.000003px;}
.fs3{font-size:108.000000px;}
.fs7{font-size:119.999997px;}
.fs0{font-size:132.000003px;}
.fs2{font-size:156.000006px;}
.y0{bottom:0.000000px;}
.y1be{bottom:9.225000px;}
.y235{bottom:29.475000px;}
.y17e{bottom:88.108245px;}
.y64{bottom:88.109700px;}
.y2d{bottom:88.110075px;}
.y2b8{bottom:88.111170px;}
.y12f{bottom:110.114655px;}
.ybf{bottom:110.115375px;}
.y1f7{bottom:111.119415px;}
.y24b{bottom:114.494415px;}
.y11a{bottom:116.054655px;}
.y257{bottom:116.744415px;}
.y17d{bottom:123.494415px;}
.y189{bottom:124.619415px;}
.ybe{bottom:128.115375px;}
.y1e6{bottom:129.119415px;}
.y2b7{bottom:132.491490px;}
.y12e{bottom:134.054655px;}
.yd7{bottom:134.055375px;}
.y157{bottom:134.744415px;}
.y231{bottom:135.149415px;}
.y24a{bottom:135.869415px;}
.y28f{bottom:136.994415px;}
.ya8{bottom:136.995150px;}
.y256{bottom:138.119415px;}
.y82{bottom:139.245150px;}
.y21b{bottom:142.619415px;}
.y2c{bottom:142.619775px;}
.y9{bottom:143.609971px;}
.y17c{bottom:144.869415px;}
.y188{bottom:145.994415px;}
.y122{bottom:146.489415px;}
.y1bc{bottom:147.119415px;}
.y119{bottom:149.369415px;}
.y1e5{bottom:150.494415px;}
.y27f{bottom:151.619415px;}
.y130{bottom:152.054655px;}
.ybd{bottom:152.055375px;}
.y2b6{bottom:153.866490px;}
.yf6{bottom:153.869415px;}
.y2ca{bottom:156.116490px;}
.y156{bottom:156.119415px;}
.y249{bottom:157.244415px;}
.y28e{bottom:158.369415px;}
.ya7{bottom:158.370150px;}
.y230{bottom:163.274415px;}
.y2b{bottom:163.994775px;}
.y81{bottom:163.995150px;}
.y17b{bottom:166.244415px;}
.y187{bottom:167.369415px;}
.y1bb{bottom:168.494415px;}
.y1a7{bottom:169.619415px;}
.y27e{bottom:170.024415px;}
.y1e4{bottom:171.869415px;}
.y118{bottom:174.119415px;}
.y2b5{bottom:175.241490px;}
.y1f6{bottom:175.244415px;}
.y2c9{bottom:177.491490px;}
.y155{bottom:177.494415px;}
.yf5{bottom:178.619415px;}
.y255{bottom:180.869415px;}
.yc3{bottom:182.115375px;}
.y12d{bottom:183.119415px;}
.y2e6{bottom:185.366490px;}
.y21a{bottom:185.369415px;}
.y2a{bottom:185.369775px;}
.y17a{bottom:187.619415px;}
.y186{bottom:188.744415px;}
.y80{bottom:188.745150px;}
.y1ba{bottom:189.869415px;}
.y1a6{bottom:190.994415px;}
.y22f{bottom:191.399415px;}
.y1e3{bottom:193.244415px;}
.y2b4{bottom:196.616490px;}
.y1f5{bottom:196.619415px;}
.y2c8{bottom:198.866490px;}
.y117{bottom:198.869415px;}
.yd6{bottom:198.870150px;}
.yc2{bottom:200.115375px;}
.y248{bottom:200.489415px;}
.ya6{bottom:201.120150px;}
.y28d{bottom:201.614415px;}
.yf4{bottom:203.369415px;}
.y12b{bottom:204.494415px;}
.y2e5{bottom:206.741490px;}
.y219{bottom:206.744415px;}
.y29{bottom:206.744775px;}
.y179{bottom:208.994415px;}
.y185{bottom:210.119415px;}
.y1b9{bottom:211.244415px;}
.y12c{bottom:211.623120px;}
.y1a5{bottom:212.369415px;}
.y2b3{bottom:217.991490px;}
.y1f4{bottom:217.994415px;}
.yc1{bottom:218.115375px;}
.y27d{bottom:218.399415px;}
.y22e{bottom:219.524415px;}
.y2c7{bottom:220.241490px;}
.y154{bottom:220.244415px;}
.yd5{bottom:220.245150px;}
.ya5{bottom:222.495150px;}
.y121{bottom:223.619415px;}
.yf3{bottom:228.119415px;}
.y28{bottom:228.119970px;}
.y178{bottom:230.369415px;}
.y184{bottom:231.494415px;}
.y1b8{bottom:232.619415px;}
.y1a4{bottom:233.744415px;}
.y1e2{bottom:235.994415px;}
.y2b2{bottom:239.366490px;}
.y1f3{bottom:239.369415px;}
.y7f{bottom:239.865150px;}
.y2c6{bottom:241.616490px;}
.y153{bottom:241.619415px;}
.yd4{bottom:241.620150px;}
.yc0{bottom:242.055375px;}
.ya4{bottom:243.870150px;}
.y27c{bottom:246.524415px;}
.y12a{bottom:247.244415px;}
.y22d{bottom:247.649415px;}
.y116{bottom:248.369415px;}
.y2e4{bottom:249.491490px;}
.y218{bottom:249.494415px;}
.y27{bottom:249.494970px;}
.y177{bottom:251.744415px;}
.yf2{bottom:252.869415px;}
.y1a3{bottom:255.119415px;}
.y2b1{bottom:260.741490px;}
.y1f2{bottom:260.744415px;}
.y2c5{bottom:262.991490px;}
.y152{bottom:262.994415px;}
.yd3{bottom:262.995150px;}
.y247{bottom:267.494415px;}
.y129{bottom:268.619415px;}
.y217{bottom:270.869415px;}
.y8{bottom:271.229969px;}
.y115{bottom:273.119415px;}
.y1a0{bottom:274.244415px;}
.y27b{bottom:274.649415px;}
.y1e1{bottom:275.774415px;}
.y1b7{bottom:275.864415px;}
.y2b0{bottom:282.116490px;}
.y1f1{bottom:282.119415px;}
.y2c4{bottom:284.366490px;}
.y151{bottom:284.369415px;}
.yd2{bottom:284.370150px;}
.y7e{bottom:285.495150px;}
.ya3{bottom:286.620150px;}
.y246{bottom:288.869415px;}
.y128{bottom:289.994415px;}
.y216{bottom:292.244415px;}
.y26{bottom:292.244970px;}
.y176{bottom:294.494415px;}
.y114{bottom:297.869415px;}
.y1a2{bottom:299.984416px;}
.yf1{bottom:302.369415px;}
.y27a{bottom:302.774415px;}
.y2af{bottom:303.491490px;}
.y1f0{bottom:303.494415px;}
.y1e0{bottom:303.899415px;}
.y183{bottom:305.609416px;}
.yd1{bottom:305.745150px;}
.y7d{bottom:306.870150px;}
.ya2{bottom:307.995150px;}
.ybc{bottom:309.120150px;}
.y245{bottom:310.244415px;}
.y127{bottom:311.369415px;}
.y2e3{bottom:313.616490px;}
.y215{bottom:313.619415px;}
.y25{bottom:313.619970px;}
.y51{bottom:314.745150px;}
.y175{bottom:315.869415px;}
.y19f{bottom:316.994415px;}
.y1b6{bottom:321.494415px;}
.y113{bottom:322.619415px;}
.y2ae{bottom:324.866490px;}
.y1ef{bottom:324.869415px;}
.y2c3{bottom:327.116490px;}
.yf0{bottom:327.119415px;}
.y7c{bottom:328.245150px;}
.ya1{bottom:329.370150px;}
.ybb{bottom:330.495150px;}
.y279{bottom:330.899415px;}
.y244{bottom:331.619415px;}
.y1df{bottom:332.024415px;}
.y126{bottom:332.744415px;}
.y182{bottom:334.859416px;}
.y2e2{bottom:334.991490px;}
.y214{bottom:334.994415px;}
.y24{bottom:334.994970px;}
.y174{bottom:337.244415px;}
.y19e{bottom:338.369415px;}
.y1b5{bottom:342.869415px;}
.y2ad{bottom:346.241490px;}
.y1ee{bottom:346.244415px;}
.y112{bottom:347.369415px;}
.y2c2{bottom:348.491490px;}
.y150{bottom:348.494415px;}
.yd0{bottom:348.495150px;}
.y7b{bottom:349.620150px;}
.ya0{bottom:350.745150px;}
.y7{bottom:351.104969px;}
.yef{bottom:351.869415px;}
.yba{bottom:351.870150px;}
.y243{bottom:352.994415px;}
.y26d{bottom:354.119415px;}
.y213{bottom:356.369415px;}
.y23{bottom:356.369970px;}
.y22c{bottom:357.494415px;}
.y50{bottom:357.495150px;}
.y173{bottom:358.619415px;}
.y278{bottom:359.024415px;}
.y19d{bottom:359.744415px;}
.y1de{bottom:360.149415px;}
.y1b4{bottom:364.244415px;}
.y1d5{bottom:365.369415px;}
.y2ac{bottom:367.616490px;}
.y1ed{bottom:367.619415px;}
.y2c1{bottom:369.866490px;}
.y14f{bottom:369.869415px;}
.ycf{bottom:369.870150px;}
.y7a{bottom:370.995150px;}
.y120{bottom:372.119415px;}
.y9f{bottom:372.120150px;}
.yb9{bottom:373.245150px;}
.y242{bottom:374.369415px;}
.y125{bottom:375.494415px;}
.yee{bottom:376.619415px;}
.y2e1{bottom:377.741490px;}
.y212{bottom:377.744415px;}
.y22{bottom:378.059970px;}
.y172{bottom:379.994415px;}
.y19c{bottom:381.119415px;}
.y1dd{bottom:388.274415px;}
.y2ab{bottom:388.991490px;}
.y1ec{bottom:388.994415px;}
.y2c0{bottom:391.241490px;}
.y14e{bottom:391.244415px;}
.yce{bottom:391.245150px;}
.y79{bottom:392.370150px;}
.y9e{bottom:393.495150px;}
.yb8{bottom:394.620150px;}
.y111{bottom:396.869415px;}
.y2e0{bottom:399.116490px;}
.y211{bottom:399.119415px;}
.y22b{bottom:400.244415px;}
.y4f{bottom:400.245150px;}
.y171{bottom:401.369415px;}
.y19b{bottom:402.494415px;}
.y1b3{bottom:406.994415px;}
.y1eb{bottom:410.369415px;}
.y2bf{bottom:412.616490px;}
.y14d{bottom:412.619415px;}
.ycd{bottom:412.620150px;}
.y9d{bottom:414.870150px;}
.y1dc{bottom:416.399415px;}
.y241{bottom:417.119415px;}
.yed{bottom:418.244415px;}
.y124{bottom:418.739415px;}
.y21{bottom:419.369970px;}
.y110{bottom:421.619415px;}
.y4e{bottom:421.620150px;}
.y170{bottom:422.744415px;}
.y19a{bottom:423.869415px;}
.y1b2{bottom:428.369415px;}
.y1d4{bottom:429.494415px;}
.y2e8{bottom:433.991490px;}
.y14c{bottom:433.994415px;}
.ycc{bottom:433.995150px;}
.y78{bottom:435.120150px;}
.y26c{bottom:439.619415px;}
.y20{bottom:440.744970px;}
.yb7{bottom:441.240150px;}
.y2aa{bottom:441.731491px;}
.y2df{bottom:441.866490px;}
.y210{bottom:441.869415px;}
.y22a{bottom:442.994415px;}
.y4d{bottom:442.995150px;}
.y16f{bottom:444.119415px;}
.y1db{bottom:444.524415px;}
.y199{bottom:445.244415px;}
.y10f{bottom:446.369415px;}
.y1b1{bottom:449.744415px;}
.y1d3{bottom:450.869415px;}
.y1ea{bottom:453.614415px;}
.y2be{bottom:455.366490px;}
.y14b{bottom:455.369415px;}
.ycb{bottom:455.370150px;}
.y6{bottom:455.459971px;}
.y77{bottom:456.495150px;}
.y9c{bottom:457.620150px;}
.y26b{bottom:460.994415px;}
.yec{bottom:461.490150px;}
.y2de{bottom:463.241490px;}
.y20f{bottom:463.244415px;}
.y229{bottom:464.369415px;}
.y4c{bottom:464.370150px;}
.y16e{bottom:465.494415px;}
.y198{bottom:466.619415px;}
.y11f{bottom:471.119415px;}
.y1d2{bottom:472.244415px;}
.y2bd{bottom:476.741490px;}
.y14a{bottom:476.744415px;}
.yca{bottom:476.745150px;}
.y76{bottom:477.870150px;}
.y28c{bottom:479.399415px;}
.y26a{bottom:482.369415px;}
.y20e{bottom:484.619415px;}
.y4b{bottom:485.744775px;}
.y16d{bottom:486.869415px;}
.y197{bottom:487.994415px;}
.y1b0{bottom:492.494415px;}
.y1d1{bottom:493.619415px;}
.y10e{bottom:495.869415px;}
.y1f{bottom:496.364970px;}
.y2a9{bottom:498.116490px;}
.y149{bottom:498.119415px;}
.yc9{bottom:498.120150px;}
.y75{bottom:499.245150px;}
.y9b{bottom:500.865150px;}
.y5{bottom:502.710016px;}
.y269{bottom:503.744415px;}
.y2dd{bottom:505.991490px;}
.y20d{bottom:505.994415px;}
.y228{bottom:507.119415px;}
.y4a{bottom:507.119775px;}
.y28b{bottom:507.524415px;}
.y16c{bottom:508.244415px;}
.yb6{bottom:508.245150px;}
.y196{bottom:509.369415px;}
.yeb{bottom:510.990150px;}
.y1d0{bottom:514.994415px;}
.y2a8{bottom:519.491490px;}
.y181{bottom:519.494415px;}
.yc8{bottom:519.495150px;}
.y10d{bottom:520.619415px;}
.y74{bottom:520.620150px;}
.y1a1{bottom:526.623120px;}
.y20c{bottom:527.369415px;}
.y227{bottom:528.494415px;}
.y49{bottom:528.494775px;}
.yb5{bottom:529.620150px;}
.y28a{bottom:535.649415px;}
.y2a7{bottom:540.866490px;}
.y148{bottom:540.869415px;}
.yc7{bottom:540.870150px;}
.y277{bottom:541.364415px;}
.y1e9{bottom:541.994415px;}
.y10c{bottom:545.369415px;}
.y268{bottom:546.494415px;}
.y9a{bottom:548.610151px;}
.y2dc{bottom:548.741490px;}
.y20b{bottom:548.744415px;}
.y226{bottom:549.869415px;}
.y48{bottom:549.869775px;}
.y4{bottom:549.960016px;}
.y16b{bottom:550.994415px;}
.yb4{bottom:550.995150px;}
.y195{bottom:552.119415px;}
.y1af{bottom:556.619415px;}
.y1cf{bottom:557.744415px;}
.y2a6{bottom:562.241490px;}
.y147{bottom:562.244415px;}
.yc6{bottom:562.245150px;}
.y1e8{bottom:563.369415px;}
.y289{bottom:563.774415px;}
.y73{bottom:563.865150px;}
.y1e{bottom:564.494970px;}
.yea{bottom:564.495150px;}
.y267{bottom:564.899415px;}
.y2db{bottom:570.116490px;}
.y11e{bottom:570.119415px;}
.y225{bottom:571.244415px;}
.y47{bottom:571.244775px;}
.y16a{bottom:572.369415px;}
.yb3{bottom:572.370150px;}
.y194{bottom:573.494415px;}
.y1ce{bottom:579.119415px;}
.y2a5{bottom:583.616490px;}
.y146{bottom:583.619415px;}
.ye9{bottom:585.870150px;}
.y1d{bottom:589.244970px;}
.y20a{bottom:591.494415px;}
.y288{bottom:591.899415px;}
.y224{bottom:592.619415px;}
.y46{bottom:592.619775px;}
.y266{bottom:593.024415px;}
.y169{bottom:593.744415px;}
.y10b{bottom:594.869415px;}
.y1cd{bottom:600.494415px;}
.y2e7{bottom:604.991490px;}
.y145{bottom:604.994415px;}
.yc5{bottom:604.995150px;}
.y1e7{bottom:606.119415px;}
.y276{bottom:608.369415px;}
.y72{bottom:611.610151px;}
.y2da{bottom:612.866490px;}
.y209{bottom:612.869415px;}
.y45{bottom:613.994775px;}
.y168{bottom:615.119415px;}
.yb2{bottom:615.120150px;}
.y193{bottom:616.244415px;}
.y63{bottom:617.370150px;}
.y10a{bottom:619.619415px;}
.y287{bottom:620.024415px;}
.y265{bottom:621.149415px;}
.y1cc{bottom:621.869415px;}
.y2a4{bottom:626.366490px;}
.y144{bottom:626.369415px;}
.y99{bottom:626.370150px;}
.ye8{bottom:628.620150px;}
.y275{bottom:629.744415px;}
.y2d9{bottom:634.241490px;}
.y223{bottom:635.864415px;}
.y167{bottom:636.494415px;}
.yb0{bottom:636.495150px;}
.y192{bottom:637.619415px;}
.y62{bottom:638.745150px;}
.y1cb{bottom:643.244415px;}
.yb1{bottom:643.623120px;}
.y11d{bottom:644.369415px;}
.y2a3{bottom:647.741490px;}
.y143{bottom:647.744415px;}
.y98{bottom:647.745150px;}
.y286{bottom:648.149415px;}
.y264{bottom:649.274415px;}
.ye7{bottom:649.995150px;}
.y274{bottom:651.119415px;}
.y208{bottom:655.619415px;}
.y44{bottom:656.744775px;}
.y166{bottom:657.869415px;}
.yaf{bottom:657.870150px;}
.y191{bottom:658.994415px;}
.y1c{bottom:660.119970px;}
.y61{bottom:660.120150px;}
.y1ca{bottom:664.619415px;}
.y2a2{bottom:669.116490px;}
.y109{bottom:669.119415px;}
.y97{bottom:669.120150px;}
.y3{bottom:669.585015px;}
.ye6{bottom:671.370150px;}
.y273{bottom:672.494415px;}
.y207{bottom:674.024415px;}
.y285{bottom:676.274415px;}
.y2d8{bottom:676.991490px;}
.y263{bottom:677.399415px;}
.y43{bottom:678.119775px;}
.y165{bottom:679.244415px;}
.yae{bottom:679.245150px;}
.y190{bottom:680.369415px;}
.y1b{bottom:681.494970px;}
.y60{bottom:681.495150px;}
.y1c9{bottom:685.994415px;}
.y2bc{bottom:690.491490px;}
.y142{bottom:690.494415px;}
.y96{bottom:690.495150px;}
.ye5{bottom:692.745150px;}
.y108{bottom:693.869415px;}
.y1da{bottom:694.364415px;}
.y2d7{bottom:698.366490px;}
.y254{bottom:700.619415px;}
.yad{bottom:700.620150px;}
.y18f{bottom:701.744415px;}
.y222{bottom:702.869415px;}
.y1a{bottom:702.869970px;}
.y5f{bottom:702.870150px;}
.y262{bottom:705.524415px;}
.y206{bottom:707.774415px;}
.y2a1{bottom:711.866490px;}
.y141{bottom:711.869415px;}
.y95{bottom:711.870150px;}
.ye4{bottom:714.120150px;}
.y272{bottom:715.244415px;}
.y107{bottom:718.619415px;}
.y42{bottom:720.869775px;}
.y164{bottom:721.994415px;}
.yac{bottom:721.995150px;}
.y18e{bottom:723.119415px;}
.y221{bottom:724.244415px;}
.y19{bottom:724.244970px;}
.y5e{bottom:724.245150px;}
.y1c8{bottom:728.744415px;}
.y284{bottom:729.869415px;}
.y2a0{bottom:733.241490px;}
.y180{bottom:733.244415px;}
.y94{bottom:733.245150px;}
.y261{bottom:733.649415px;}
.y240{bottom:734.369415px;}
.y205{bottom:735.899415px;}
.y271{bottom:736.619415px;}
.y2{bottom:737.970015px;}
.y2d6{bottom:741.116490px;}
.y106{bottom:743.369415px;}
.y18d{bottom:744.494415px;}
.y220{bottom:745.619415px;}
.y5d{bottom:745.620150px;}
.y29f{bottom:754.616490px;}
.y140{bottom:754.619415px;}
.y93{bottom:754.620150px;}
.ye3{bottom:756.870150px;}
.y270{bottom:757.994415px;}
.y1d9{bottom:761.369415px;}
.y253{bottom:761.774415px;}
.y2d5{bottom:762.491490px;}
.y41{bottom:763.934775px;}
.y204{bottom:764.024415px;}
.y163{bottom:764.744415px;}
.yab{bottom:765.240150px;}
.y18c{bottom:765.869415px;}
.y21f{bottom:766.994415px;}
.y18{bottom:766.994970px;}
.y5c{bottom:766.995150px;}
.y11c{bottom:768.119415px;}
.y1c7{bottom:768.524415px;}
.y283{bottom:772.619415px;}
.y29e{bottom:775.991490px;}
.y13f{bottom:775.994415px;}
.y92{bottom:775.995150px;}
.y23f{bottom:777.119415px;}
.ye2{bottom:778.245150px;}
.y26f{bottom:779.369415px;}
.y1d8{bottom:782.744415px;}
.yc4{bottom:783.123120px;}
.y1{bottom:783.420015px;}
.y40{bottom:784.184775px;}
.y21e{bottom:788.369415px;}
.y17{bottom:788.369970px;}
.y71{bottom:788.370150px;}
.y203{bottom:792.149415px;}
.y105{bottom:792.869415px;}
.y282{bottom:793.994415px;}
.y1c6{bottom:796.649415px;}
.y29d{bottom:797.366490px;}
.y13e{bottom:797.369415px;}
.y91{bottom:797.370150px;}
.y23e{bottom:798.494415px;}
.ye1{bottom:799.620150px;}
.y1d7{bottom:804.119415px;}
.y3f{bottom:804.119775px;}
.y2d4{bottom:805.151490px;}
.y162{bottom:807.494415px;}
.y21d{bottom:809.744415px;}
.y16{bottom:809.744970px;}
.y70{bottom:809.745150px;}
.y252{bottom:810.149415px;}
.y18b{bottom:810.734416px;}
.y260{bottom:815.369415px;}
.y104{bottom:817.619415px;}
.y29c{bottom:818.741490px;}
.y13d{bottom:818.744415px;}
.y90{bottom:818.745150px;}
.y23d{bottom:819.869415px;}
.y202{bottom:820.274415px;}
.ye0{bottom:820.995150px;}
.y26e{bottom:822.119415px;}
.y2d3{bottom:824.366490px;}
.y1c5{bottom:824.774415px;}
.y3e{bottom:825.494775px;}
.y5b{bottom:827.475150px;}
.y161{bottom:828.869415px;}
.y15{bottom:831.119970px;}
.y6f{bottom:831.120150px;}
.y281{bottom:836.744415px;}
.y251{bottom:838.274415px;}
.y18a{bottom:839.984416px;}
.y29b{bottom:840.116490px;}
.y13c{bottom:840.119415px;}
.y8f{bottom:840.120150px;}
.y23c{bottom:841.244415px;}
.y103{bottom:842.369415px;}
.ydf{bottom:842.370150px;}
.y1d6{bottom:846.869415px;}
.y3d{bottom:846.869775px;}
.y201{bottom:848.399415px;}
.y160{bottom:850.244415px;}
.y14{bottom:852.494970px;}
.y6e{bottom:852.495150px;}
.y1c4{bottom:852.899415px;}
.y25f{bottom:858.119415px;}
.y29a{bottom:861.491490px;}
.y13b{bottom:861.494415px;}
.y8e{bottom:861.495150px;}
.y23b{bottom:862.619415px;}
.y250{bottom:866.399415px;}
.y2d2{bottom:867.116490px;}
.y102{bottom:867.119415px;}
.y3c{bottom:868.244775px;}
.y15f{bottom:871.619415px;}
.y21c{bottom:873.869415px;}
.y13{bottom:873.869970px;}
.y6d{bottom:873.870150px;}
.y200{bottom:876.524415px;}
.y25e{bottom:879.494415px;}
.y1c3{bottom:881.024415px;}
.y2bb{bottom:882.866490px;}
.y13a{bottom:882.869415px;}
.y8d{bottom:882.870150px;}
.y23a{bottom:883.994415px;}
.yde{bottom:885.120150px;}
.y2d1{bottom:888.491490px;}
.y3b{bottom:889.619775px;}
.y101{bottom:891.869415px;}
.y15e{bottom:892.994415px;}
.y24f{bottom:894.524415px;}
.y5a{bottom:896.370150px;}
.y25d{bottom:900.869415px;}
.y299{bottom:904.241490px;}
.y139{bottom:904.244415px;}
.yaa{bottom:904.245150px;}
.y1ff{bottom:904.649415px;}
.ydd{bottom:906.495150px;}
.y1c2{bottom:909.149415px;}
.y3a{bottom:910.994775px;}
.y15d{bottom:914.369415px;}
.y100{bottom:916.619415px;}
.y12{bottom:916.619970px;}
.y6c{bottom:916.620150px;}
.y59{bottom:917.745150px;}
.y25c{bottom:922.244415px;}
.y24e{bottom:922.649415px;}
.y298{bottom:925.616490px;}
.y138{bottom:925.619415px;}
.y8c{bottom:925.620150px;}
.y239{bottom:926.744415px;}
.ydc{bottom:927.870150px;}
.y2d0{bottom:931.241490px;}
.y39{bottom:932.369775px;}
.y1fe{bottom:932.774415px;}
.y15c{bottom:935.744415px;}
.y1c1{bottom:937.274415px;}
.y11{bottom:937.994970px;}
.y6b{bottom:937.995150px;}
.y58{bottom:939.120150px;}
.y1ae{bottom:940.244415px;}
.yff{bottom:941.369415px;}
.y25b{bottom:943.619415px;}
.y280{bottom:944.114415px;}
.y297{bottom:946.991490px;}
.y137{bottom:946.994415px;}
.y8b{bottom:946.995150px;}
.y238{bottom:948.119415px;}
.ydb{bottom:949.245150px;}
.y24d{bottom:950.774415px;}
.y2cf{bottom:952.616490px;}
.y38{bottom:953.744775px;}
.y15b{bottom:957.119415px;}
.y10{bottom:959.369970px;}
.y6a{bottom:959.370150px;}
.y57{bottom:960.495150px;}
.y1fd{bottom:960.899415px;}
.y25a{bottom:964.994415px;}
.y1c0{bottom:965.399415px;}
.yfe{bottom:966.119415px;}
.y2ba{bottom:968.366490px;}
.y136{bottom:968.369415px;}
.y8a{bottom:968.370150px;}
.y237{bottom:969.494415px;}
.y15a{bottom:978.494415px;}
.y24c{bottom:978.899415px;}
.yf{bottom:980.744970px;}
.y69{bottom:980.745150px;}
.y56{bottom:981.870150px;}
.y1ad{bottom:982.994415px;}
.y259{bottom:986.369415px;}
.y32{bottom:988.619775px;}
.y1fc{bottom:989.024414px;}
.y296{bottom:989.741490px;}
.y135{bottom:989.744415px;}
.y89{bottom:989.745150px;}
.yfd{bottom:990.869415px;}
.yda{bottom:991.995150px;}
.y1bf{bottom:993.524414px;}
.y2ce{bottom:995.366484px;}
.y37{bottom:996.494781px;}
.ye{bottom:1002.119964px;}
.y68{bottom:1002.120147px;}
.y55{bottom:1003.245147px;}
.y1ac{bottom:1004.369414px;}
.y295{bottom:1011.116484px;}
.y17f{bottom:1011.119414px;}
.y88{bottom:1011.120147px;}
.yd9{bottom:1013.370147px;}
.y11b{bottom:1015.619414px;}
.y1fb{bottom:1017.149414px;}
.y36{bottom:1017.869781px;}
.y1bd{bottom:1021.649414px;}
.y159{bottom:1021.739413px;}
.yd{bottom:1023.494964px;}
.y67{bottom:1023.495147px;}
.y54{bottom:1024.620147px;}
.y1ab{bottom:1025.744414px;}
.y258{bottom:1029.614413px;}
.y294{bottom:1032.491484px;}
.y134{bottom:1032.494414px;}
.y87{bottom:1032.495147px;}
.y236{bottom:1033.619414px;}
.y31{bottom:1034.744781px;}
.y2cd{bottom:1038.116484px;}
.y35{bottom:1039.244781px;}
.yfc{bottom:1040.369414px;}
.y66{bottom:1044.870147px;}
.y1fa{bottom:1045.274414px;}
.y1aa{bottom:1047.119414px;}
.y234{bottom:1052.024414px;}
.y293{bottom:1053.866484px;}
.y133{bottom:1053.869414px;}
.y86{bottom:1053.870147px;}
.yd8{bottom:1064.490147px;}
.yfb{bottom:1065.119414px;}
.yc{bottom:1066.244964px;}
.y53{bottom:1067.370147px;}
.y1f9{bottom:1073.399414px;}
.y292{bottom:1075.241484px;}
.y132{bottom:1075.244414px;}
.y85{bottom:1075.245147px;}
.y2cc{bottom:1080.866484px;}
.y34{bottom:1081.994781px;}
.yb{bottom:1087.619964px;}
.yfa{bottom:1089.869414px;}
.y1a9{bottom:1090.364413px;}
.y2b9{bottom:1096.616484px;}
.y158{bottom:1096.619414px;}
.y30{bottom:1096.619781px;}
.y65{bottom:1097.610148px;}
.y233{bottom:1100.399414px;}
.y1f8{bottom:1101.524414px;}
.yf9{bottom:1114.619414px;}
.y84{bottom:1114.620147px;}
.y1a8{bottom:1115.114413px;}
.y291{bottom:1117.991484px;}
.y131{bottom:1117.994414px;}
.y2f{bottom:1117.994781px;}
.ya9{bottom:1117.995147px;}
.y123{bottom:1121.748117px;}
.y33{bottom:1127.849781px;}
.y52{bottom:1127.850147px;}
.y232{bottom:1128.524414px;}
.y2cb{bottom:1133.606485px;}
.ya{bottom:1136.489964px;}
.y290{bottom:1139.366484px;}
.yf7{bottom:1139.369414px;}
.y2e{bottom:1139.369781px;}
.y83{bottom:1139.370147px;}
.yf8{bottom:1146.498117px;}
.h10{height:25.839844px;}
.h14{height:27.000000px;}
.h12{height:29.573439px;}
.hf{height:31.007814px;}
.h11{height:43.066405px;}
.h17{height:45.615233px;}
.h18{height:47.250000px;}
.h9{height:47.373048px;}
.h7{height:51.679688px;}
.h16{height:53.789061px;}
.h15{height:54.287108px;}
.h1a{height:56.478516px;}
.h8{height:59.378906px;}
.hd{height:64.546875px;}
.he{height:65.144531px;}
.h5{height:68.906252px;}
.h6{height:69.275388px;}
.h2{height:79.171877px;}
.h4{height:89.068359px;}
.hb{height:98.964841px;}
.hc{height:105.974850px;}
.ha{height:105.975225px;}
.h13{height:105.975585px;}
.h19{height:105.978510px;}
.h1{height:108.861331px;}
.h3{height:111.972661px;}
.h0{height:1263.000000px;}
.w2{width:111.375000px;}
.w3{width:111.375046px;}
.w4{width:192.375000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x1c{left:2.250000px;}
.x27{left:25.528382px;}
.x1d{left:29.697899px;}
.x1e{left:33.867416px;}
.x21{left:35.950347px;}
.x1a{left:43.879386px;}
.x18{left:48.041583px;}
.x9{left:127.575005px;}
.x1f{left:130.024080px;}
.xd{left:136.003716px;}
.x5{left:143.736382px;}
.xc{left:154.575005px;}
.x13{left:162.256633px;}
.x2a{left:165.558260px;}
.x16{left:170.568026px;}
.x4{left:175.461705px;}
.x1{left:180.061398px;}
.xb{left:181.575005px;}
.x14{left:189.038240px;}
.x20{left:201.909823px;}
.x29{left:205.429842px;}
.x24{left:206.818514px;}
.x22{left:208.339021px;}
.x2c{left:210.452792px;}
.x2b{left:213.001620px;}
.x26{left:217.211580px;}
.x1b{left:237.824982px;}
.x6{left:259.368705px;}
.x25{left:275.149080px;}
.x23{left:276.669588px;}
.x28{left:285.542146px;}
.x7{left:318.384680px;}
.x8{left:327.407742px;}
.x15{left:348.085118px;}
.x3{left:364.616071px;}
.xe{left:378.115995px;}
.x2{left:384.784519px;}
.x12{left:428.459745px;}
.x17{left:431.324985px;}
.x11{left:457.911900px;}
.x19{left:543.824985px;}
.x10{left:732.095535px;}
.xf{left:748.624718px;}
.xa{left:756.981533px;}
@media print{
.v1{vertical-align:-21.120001pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:12.052612pt;}
.ls3{letter-spacing:24.105225pt;}
.ls1{letter-spacing:57.343750pt;}
.ws0{word-spacing:-26.526042pt;}
.ws15{word-spacing:-24.114583pt;}
.ws4{word-spacing:-16.880208pt;}
.ws62{word-spacing:-14.817708pt;}
.ws14{word-spacing:-14.468750pt;}
.ws3f{word-spacing:-13.263021pt;}
.ws2{word-spacing:-4.832316pt;}
.ws4f{word-spacing:-0.074667pt;}
.ws61{word-spacing:-0.031817pt;}
.ws10{word-spacing:-0.031345pt;}
.ws5b{word-spacing:-0.000032pt;}
.wsc{word-spacing:-0.000030pt;}
.ws29{word-spacing:-0.000020pt;}
.ws1{word-spacing:-0.000017pt;}
.ws73{word-spacing:-0.000015pt;}
.ws52{word-spacing:-0.000012pt;}
.ws2e{word-spacing:-0.000011pt;}
.ws72{word-spacing:-0.000003pt;}
.ws42{word-spacing:-0.000002pt;}
.ws21{word-spacing:0.000000pt;}
.ws3{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.000010pt;}
.ws13{word-spacing:0.000018pt;}
.wsf{word-spacing:0.000020pt;}
.ws57{word-spacing:0.000030pt;}
.ws19{word-spacing:2.442157pt;}
.ws56{word-spacing:3.999967pt;}
.ws64{word-spacing:3.999969pt;}
.ws8{word-spacing:3.999978pt;}
.ws1e{word-spacing:3.999980pt;}
.ws38{word-spacing:3.999988pt;}
.ws2c{word-spacing:3.999990pt;}
.ws6a{word-spacing:3.999996pt;}
.ws47{word-spacing:3.999997pt;}
.ws36{word-spacing:3.999999pt;}
.ws9{word-spacing:4.000000pt;}
.ws63{word-spacing:4.000002pt;}
.ws30{word-spacing:4.000008pt;}
.ws3d{word-spacing:4.000010pt;}
.ws41{word-spacing:4.000020pt;}
.ws54{word-spacing:4.000028pt;}
.ws18{word-spacing:4.343749pt;}
.ws40{word-spacing:4.980958pt;}
.ws37{word-spacing:4.981049pt;}
.ws4c{word-spacing:7.999890pt;}
.ws1f{word-spacing:7.999970pt;}
.ws34{word-spacing:7.999980pt;}
.ws39{word-spacing:7.999988pt;}
.ws5a{word-spacing:7.999989pt;}
.ws2a{word-spacing:7.999990pt;}
.ws23{word-spacing:7.999998pt;}
.ws6{word-spacing:8.000000pt;}
.ws53{word-spacing:8.000000pt;}
.ws49{word-spacing:8.000002pt;}
.ws44{word-spacing:8.000008pt;}
.ws43{word-spacing:8.000009pt;}
.ws22{word-spacing:8.000010pt;}
.ws4d{word-spacing:8.000020pt;}
.ws11{word-spacing:11.971743pt;}
.ws3b{word-spacing:11.999970pt;}
.wse{word-spacing:11.999980pt;}
.ws2b{word-spacing:11.999988pt;}
.ws25{word-spacing:11.999990pt;}
.ws2f{word-spacing:11.999996pt;}
.ws6d{word-spacing:11.999997pt;}
.ws55{word-spacing:11.999999pt;}
.wsb{word-spacing:12.000000pt;}
.ws66{word-spacing:12.000002pt;}
.ws5{word-spacing:12.000010pt;}
.ws5e{word-spacing:12.000019pt;}
.ws68{word-spacing:12.000020pt;}
.ws50{word-spacing:15.999970pt;}
.ws32{word-spacing:15.999980pt;}
.ws71{word-spacing:15.999987pt;}
.ws28{word-spacing:15.999988pt;}
.ws33{word-spacing:15.999989pt;}
.ws5d{word-spacing:15.999990pt;}
.ws48{word-spacing:15.999998pt;}
.wsd{word-spacing:16.000000pt;}
.ws1b{word-spacing:16.000010pt;}
.ws69{word-spacing:16.000020pt;}
.ws4e{word-spacing:18.651571pt;}
.ws46{word-spacing:19.999970pt;}
.ws2d{word-spacing:19.999980pt;}
.ws3e{word-spacing:19.999987pt;}
.ws27{word-spacing:19.999990pt;}
.ws65{word-spacing:19.999998pt;}
.ws12{word-spacing:20.000000pt;}
.ws45{word-spacing:20.000010pt;}
.ws67{word-spacing:20.000020pt;}
.ws3c{word-spacing:20.000030pt;}
.ws51{word-spacing:23.449798pt;}
.ws1c{word-spacing:23.999980pt;}
.ws3a{word-spacing:23.999988pt;}
.ws60{word-spacing:23.999990pt;}
.ws31{word-spacing:23.999998pt;}
.ws20{word-spacing:24.000000pt;}
.ws7{word-spacing:24.000028pt;}
.ws5f{word-spacing:27.449829pt;}
.ws4b{word-spacing:27.449850pt;}
.ws6c{word-spacing:27.999970pt;}
.ws26{word-spacing:27.999980pt;}
.ws6b{word-spacing:27.999990pt;}
.ws5c{word-spacing:28.000009pt;}
.ws58{word-spacing:31.999970pt;}
.wsa{word-spacing:32.000000pt;}
.ws70{word-spacing:32.000009pt;}
.ws16{word-spacing:32.937500pt;}
.ws6f{word-spacing:35.999979pt;}
.ws6e{word-spacing:35.999998pt;}
.ws4a{word-spacing:36.000000pt;}
.ws17{word-spacing:38.213826pt;}
.ws59{word-spacing:40.000000pt;}
.ws1a{word-spacing:47.906249pt;}
.ws24{word-spacing:47.999990pt;}
.ws35{word-spacing:2136.931054pt;}
._4b{margin-left:-8.156249pt;}
._35{margin-left:-7.166584pt;}
._10{margin-left:-5.878179pt;}
._2{margin-left:-4.921875pt;}
._25{margin-left:-3.978203pt;}
._0{margin-left:-2.598778pt;}
._1{margin-left:-1.451536pt;}
._f{width:1.115929pt;}
._4d{width:2.605063pt;}
._1f{width:12.935944pt;}
._7{width:13.937508pt;}
._6{width:14.945179pt;}
._c{width:17.155778pt;}
._3{width:18.073378pt;}
._b{width:19.165742pt;}
._4a{width:20.806300pt;}
._5{width:22.468752pt;}
._a{width:25.755007pt;}
._9{width:26.922151pt;}
._d{width:28.931821pt;}
._8{width:30.639036pt;}
._20{width:33.248169pt;}
._e{width:34.389036pt;}
._49{width:35.348779pt;}
._48{width:36.342427pt;}
._46{width:37.764034pt;}
._42{width:38.684324pt;}
._4{width:41.843751pt;}
._3e{width:42.951536pt;}
._3f{width:44.868128pt;}
._45{width:45.918578pt;}
._12{width:47.406250pt;}
._47{width:50.468749pt;}
._4c{width:54.607784pt;}
._41{width:58.168368pt;}
._40{width:59.140962pt;}
._43{width:60.536284pt;}
._44{width:76.427088pt;}
._32{width:79.158539pt;}
._36{width:104.781242pt;}
._37{width:133.894060pt;}
._23{width:153.922715pt;}
._1a{width:243.223754pt;}
._30{width:265.989660pt;}
._38{width:357.661719pt;}
._3c{width:381.153069pt;}
._3a{width:391.501845pt;}
._39{width:403.408097pt;}
._1b{width:418.985940pt;}
._3d{width:434.881271pt;}
._3b{width:466.538125pt;}
._22{width:484.080308pt;}
._13{width:790.868640pt;}
._34{width:878.172130pt;}
._33{width:888.626845pt;}
._18{width:923.775397pt;}
._24{width:957.351538pt;}
._17{width:1026.158661pt;}
._16{width:1070.992915pt;}
._15{width:1136.496819pt;}
._26{width:1172.254800pt;}
._1c{width:1177.259957pt;}
._21{width:1184.295285pt;}
._2a{width:1191.170402pt;}
._28{width:1198.358782pt;}
._27{width:1208.968552pt;}
._2c{width:1222.020242pt;}
._2d{width:1223.440088pt;}
._2b{width:1238.877586pt;}
._14{width:1251.514033pt;}
._1d{width:1263.676041pt;}
._29{width:1271.785247pt;}
._1e{width:1329.927200pt;}
._2f{width:1358.720599pt;}
._31{width:1382.999999pt;}
._19{width:1414.284405pt;}
._2e{width:1675.156249pt;}
._11{width:1686.764035pt;}
.fs9{font-size:32.000000pt;}
.fs8{font-size:38.400002pt;}
.fsa{font-size:53.333332pt;}
.fsb{font-size:56.000000pt;}
.fs6{font-size:58.666668pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:74.666664pt;}
.fs1{font-size:85.333336pt;}
.fs3{font-size:96.000000pt;}
.fs7{font-size:106.666664pt;}
.fs0{font-size:117.333336pt;}
.fs2{font-size:138.666672pt;}
.y0{bottom:0.000000pt;}
.y1be{bottom:8.200000pt;}
.y235{bottom:26.200000pt;}
.y17e{bottom:78.318440pt;}
.y64{bottom:78.319733pt;}
.y2d{bottom:78.320067pt;}
.y2b8{bottom:78.321040pt;}
.y12f{bottom:97.879693pt;}
.ybf{bottom:97.880333pt;}
.y1f7{bottom:98.772814pt;}
.y24b{bottom:101.772814pt;}
.y11a{bottom:103.159693pt;}
.y257{bottom:103.772814pt;}
.y17d{bottom:109.772814pt;}
.y189{bottom:110.772814pt;}
.ybe{bottom:113.880333pt;}
.y1e6{bottom:114.772814pt;}
.y2b7{bottom:117.770214pt;}
.y12e{bottom:119.159693pt;}
.yd7{bottom:119.160333pt;}
.y157{bottom:119.772814pt;}
.y231{bottom:120.132813pt;}
.y24a{bottom:120.772814pt;}
.y28f{bottom:121.772814pt;}
.ya8{bottom:121.773467pt;}
.y256{bottom:122.772814pt;}
.y82{bottom:123.773467pt;}
.y21b{bottom:126.772814pt;}
.y2c{bottom:126.773134pt;}
.y9{bottom:127.653307pt;}
.y17c{bottom:128.772814pt;}
.y188{bottom:129.772814pt;}
.y122{bottom:130.212813pt;}
.y1bc{bottom:130.772814pt;}
.y119{bottom:132.772814pt;}
.y1e5{bottom:133.772814pt;}
.y27f{bottom:134.772814pt;}
.y130{bottom:135.159693pt;}
.ybd{bottom:135.160333pt;}
.y2b6{bottom:136.770214pt;}
.yf6{bottom:136.772814pt;}
.y2ca{bottom:138.770214pt;}
.y156{bottom:138.772814pt;}
.y249{bottom:139.772814pt;}
.y28e{bottom:140.772814pt;}
.ya7{bottom:140.773467pt;}
.y230{bottom:145.132813pt;}
.y2b{bottom:145.773134pt;}
.y81{bottom:145.773467pt;}
.y17b{bottom:147.772814pt;}
.y187{bottom:148.772814pt;}
.y1bb{bottom:149.772814pt;}
.y1a7{bottom:150.772814pt;}
.y27e{bottom:151.132813pt;}
.y1e4{bottom:152.772814pt;}
.y118{bottom:154.772814pt;}
.y2b5{bottom:155.770214pt;}
.y1f6{bottom:155.772814pt;}
.y2c9{bottom:157.770214pt;}
.y155{bottom:157.772814pt;}
.yf5{bottom:158.772814pt;}
.y255{bottom:160.772814pt;}
.yc3{bottom:161.880333pt;}
.y12d{bottom:162.772814pt;}
.y2e6{bottom:164.770214pt;}
.y21a{bottom:164.772814pt;}
.y2a{bottom:164.773134pt;}
.y17a{bottom:166.772814pt;}
.y186{bottom:167.772814pt;}
.y80{bottom:167.773467pt;}
.y1ba{bottom:168.772814pt;}
.y1a6{bottom:169.772814pt;}
.y22f{bottom:170.132813pt;}
.y1e3{bottom:171.772814pt;}
.y2b4{bottom:174.770214pt;}
.y1f5{bottom:174.772814pt;}
.y2c8{bottom:176.770214pt;}
.y117{bottom:176.772814pt;}
.yd6{bottom:176.773467pt;}
.yc2{bottom:177.880333pt;}
.y248{bottom:178.212813pt;}
.ya6{bottom:178.773467pt;}
.y28d{bottom:179.212813pt;}
.yf4{bottom:180.772814pt;}
.y12b{bottom:181.772814pt;}
.y2e5{bottom:183.770214pt;}
.y219{bottom:183.772814pt;}
.y29{bottom:183.773134pt;}
.y179{bottom:185.772814pt;}
.y185{bottom:186.772814pt;}
.y1b9{bottom:187.772814pt;}
.y12c{bottom:188.109440pt;}
.y1a5{bottom:188.772814pt;}
.y2b3{bottom:193.770214pt;}
.y1f4{bottom:193.772814pt;}
.yc1{bottom:193.880333pt;}
.y27d{bottom:194.132813pt;}
.y22e{bottom:195.132813pt;}
.y2c7{bottom:195.770214pt;}
.y154{bottom:195.772814pt;}
.yd5{bottom:195.773467pt;}
.ya5{bottom:197.773467pt;}
.y121{bottom:198.772814pt;}
.yf3{bottom:202.772814pt;}
.y28{bottom:202.773307pt;}
.y178{bottom:204.772814pt;}
.y184{bottom:205.772814pt;}
.y1b8{bottom:206.772814pt;}
.y1a4{bottom:207.772814pt;}
.y1e2{bottom:209.772814pt;}
.y2b2{bottom:212.770214pt;}
.y1f3{bottom:212.772814pt;}
.y7f{bottom:213.213467pt;}
.y2c6{bottom:214.770214pt;}
.y153{bottom:214.772814pt;}
.yd4{bottom:214.773467pt;}
.yc0{bottom:215.160333pt;}
.ya4{bottom:216.773467pt;}
.y27c{bottom:219.132813pt;}
.y12a{bottom:219.772814pt;}
.y22d{bottom:220.132813pt;}
.y116{bottom:220.772814pt;}
.y2e4{bottom:221.770214pt;}
.y218{bottom:221.772814pt;}
.y27{bottom:221.773307pt;}
.y177{bottom:223.772814pt;}
.yf2{bottom:224.772814pt;}
.y1a3{bottom:226.772814pt;}
.y2b1{bottom:231.770214pt;}
.y1f2{bottom:231.772814pt;}
.y2c5{bottom:233.770214pt;}
.y152{bottom:233.772814pt;}
.yd3{bottom:233.773467pt;}
.y247{bottom:237.772814pt;}
.y129{bottom:238.772814pt;}
.y217{bottom:240.772814pt;}
.y8{bottom:241.093306pt;}
.y115{bottom:242.772814pt;}
.y1a0{bottom:243.772814pt;}
.y27b{bottom:244.132813pt;}
.y1e1{bottom:245.132813pt;}
.y1b7{bottom:245.212813pt;}
.y2b0{bottom:250.770214pt;}
.y1f1{bottom:250.772814pt;}
.y2c4{bottom:252.770214pt;}
.y151{bottom:252.772814pt;}
.yd2{bottom:252.773467pt;}
.y7e{bottom:253.773467pt;}
.ya3{bottom:254.773467pt;}
.y246{bottom:256.772814pt;}
.y128{bottom:257.772814pt;}
.y216{bottom:259.772814pt;}
.y26{bottom:259.773307pt;}
.y176{bottom:261.772814pt;}
.y114{bottom:264.772814pt;}
.y1a2{bottom:266.652814pt;}
.yf1{bottom:268.772814pt;}
.y27a{bottom:269.132813pt;}
.y2af{bottom:269.770214pt;}
.y1f0{bottom:269.772814pt;}
.y1e0{bottom:270.132813pt;}
.y183{bottom:271.652814pt;}
.yd1{bottom:271.773467pt;}
.y7d{bottom:272.773467pt;}
.ya2{bottom:273.773467pt;}
.ybc{bottom:274.773467pt;}
.y245{bottom:275.772814pt;}
.y127{bottom:276.772814pt;}
.y2e3{bottom:278.770214pt;}
.y215{bottom:278.772814pt;}
.y25{bottom:278.773307pt;}
.y51{bottom:279.773467pt;}
.y175{bottom:280.772814pt;}
.y19f{bottom:281.772814pt;}
.y1b6{bottom:285.772814pt;}
.y113{bottom:286.772814pt;}
.y2ae{bottom:288.770214pt;}
.y1ef{bottom:288.772814pt;}
.y2c3{bottom:290.770214pt;}
.yf0{bottom:290.772814pt;}
.y7c{bottom:291.773467pt;}
.ya1{bottom:292.773467pt;}
.ybb{bottom:293.773467pt;}
.y279{bottom:294.132813pt;}
.y244{bottom:294.772814pt;}
.y1df{bottom:295.132813pt;}
.y126{bottom:295.772814pt;}
.y182{bottom:297.652814pt;}
.y2e2{bottom:297.770214pt;}
.y214{bottom:297.772814pt;}
.y24{bottom:297.773307pt;}
.y174{bottom:299.772814pt;}
.y19e{bottom:300.772814pt;}
.y1b5{bottom:304.772814pt;}
.y2ad{bottom:307.770214pt;}
.y1ee{bottom:307.772814pt;}
.y112{bottom:308.772814pt;}
.y2c2{bottom:309.770214pt;}
.y150{bottom:309.772814pt;}
.yd0{bottom:309.773467pt;}
.y7b{bottom:310.773467pt;}
.ya0{bottom:311.773467pt;}
.y7{bottom:312.093306pt;}
.yef{bottom:312.772814pt;}
.yba{bottom:312.773467pt;}
.y243{bottom:313.772814pt;}
.y26d{bottom:314.772814pt;}
.y213{bottom:316.772814pt;}
.y23{bottom:316.773307pt;}
.y22c{bottom:317.772814pt;}
.y50{bottom:317.773467pt;}
.y173{bottom:318.772814pt;}
.y278{bottom:319.132813pt;}
.y19d{bottom:319.772814pt;}
.y1de{bottom:320.132813pt;}
.y1b4{bottom:323.772814pt;}
.y1d5{bottom:324.772814pt;}
.y2ac{bottom:326.770214pt;}
.y1ed{bottom:326.772814pt;}
.y2c1{bottom:328.770214pt;}
.y14f{bottom:328.772814pt;}
.ycf{bottom:328.773467pt;}
.y7a{bottom:329.773467pt;}
.y120{bottom:330.772814pt;}
.y9f{bottom:330.773467pt;}
.yb9{bottom:331.773467pt;}
.y242{bottom:332.772814pt;}
.y125{bottom:333.772814pt;}
.yee{bottom:334.772814pt;}
.y2e1{bottom:335.770214pt;}
.y212{bottom:335.772814pt;}
.y22{bottom:336.053307pt;}
.y172{bottom:337.772814pt;}
.y19c{bottom:338.772814pt;}
.y1dd{bottom:345.132813pt;}
.y2ab{bottom:345.770214pt;}
.y1ec{bottom:345.772814pt;}
.y2c0{bottom:347.770214pt;}
.y14e{bottom:347.772814pt;}
.yce{bottom:347.773467pt;}
.y79{bottom:348.773467pt;}
.y9e{bottom:349.773467pt;}
.yb8{bottom:350.773467pt;}
.y111{bottom:352.772814pt;}
.y2e0{bottom:354.770214pt;}
.y211{bottom:354.772814pt;}
.y22b{bottom:355.772814pt;}
.y4f{bottom:355.773467pt;}
.y171{bottom:356.772814pt;}
.y19b{bottom:357.772814pt;}
.y1b3{bottom:361.772814pt;}
.y1eb{bottom:364.772814pt;}
.y2bf{bottom:366.770214pt;}
.y14d{bottom:366.772814pt;}
.ycd{bottom:366.773467pt;}
.y9d{bottom:368.773467pt;}
.y1dc{bottom:370.132813pt;}
.y241{bottom:370.772814pt;}
.yed{bottom:371.772814pt;}
.y124{bottom:372.212813pt;}
.y21{bottom:372.773307pt;}
.y110{bottom:374.772814pt;}
.y4e{bottom:374.773467pt;}
.y170{bottom:375.772814pt;}
.y19a{bottom:376.772814pt;}
.y1b2{bottom:380.772814pt;}
.y1d4{bottom:381.772814pt;}
.y2e8{bottom:385.770214pt;}
.y14c{bottom:385.772814pt;}
.ycc{bottom:385.773467pt;}
.y78{bottom:386.773467pt;}
.y26c{bottom:390.772814pt;}
.y20{bottom:391.773307pt;}
.yb7{bottom:392.213467pt;}
.y2aa{bottom:392.650214pt;}
.y2df{bottom:392.770214pt;}
.y210{bottom:392.772814pt;}
.y22a{bottom:393.772814pt;}
.y4d{bottom:393.773467pt;}
.y16f{bottom:394.772814pt;}
.y1db{bottom:395.132813pt;}
.y199{bottom:395.772814pt;}
.y10f{bottom:396.772814pt;}
.y1b1{bottom:399.772814pt;}
.y1d3{bottom:400.772814pt;}
.y1ea{bottom:403.212813pt;}
.y2be{bottom:404.770214pt;}
.y14b{bottom:404.772814pt;}
.ycb{bottom:404.773467pt;}
.y6{bottom:404.853308pt;}
.y77{bottom:405.773467pt;}
.y9c{bottom:406.773467pt;}
.y26b{bottom:409.772814pt;}
.yec{bottom:410.213467pt;}
.y2de{bottom:411.770214pt;}
.y20f{bottom:411.772814pt;}
.y229{bottom:412.772814pt;}
.y4c{bottom:412.773467pt;}
.y16e{bottom:413.772814pt;}
.y198{bottom:414.772814pt;}
.y11f{bottom:418.772814pt;}
.y1d2{bottom:419.772814pt;}
.y2bd{bottom:423.770214pt;}
.y14a{bottom:423.772814pt;}
.yca{bottom:423.773467pt;}
.y76{bottom:424.773467pt;}
.y28c{bottom:426.132813pt;}
.y26a{bottom:428.772814pt;}
.y20e{bottom:430.772814pt;}
.y4b{bottom:431.773134pt;}
.y16d{bottom:432.772814pt;}
.y197{bottom:433.772814pt;}
.y1b0{bottom:437.772814pt;}
.y1d1{bottom:438.772814pt;}
.y10e{bottom:440.772814pt;}
.y1f{bottom:441.213307pt;}
.y2a9{bottom:442.770214pt;}
.y149{bottom:442.772814pt;}
.yc9{bottom:442.773467pt;}
.y75{bottom:443.773467pt;}
.y9b{bottom:445.213467pt;}
.y5{bottom:446.853348pt;}
.y269{bottom:447.772814pt;}
.y2dd{bottom:449.770214pt;}
.y20d{bottom:449.772814pt;}
.y228{bottom:450.772814pt;}
.y4a{bottom:450.773134pt;}
.y28b{bottom:451.132813pt;}
.y16c{bottom:451.772814pt;}
.yb6{bottom:451.773467pt;}
.y196{bottom:452.772814pt;}
.yeb{bottom:454.213467pt;}
.y1d0{bottom:457.772814pt;}
.y2a8{bottom:461.770214pt;}
.y181{bottom:461.772814pt;}
.yc8{bottom:461.773467pt;}
.y10d{bottom:462.772814pt;}
.y74{bottom:462.773467pt;}
.y1a1{bottom:468.109440pt;}
.y20c{bottom:468.772814pt;}
.y227{bottom:469.772814pt;}
.y49{bottom:469.773134pt;}
.yb5{bottom:470.773467pt;}
.y28a{bottom:476.132813pt;}
.y2a7{bottom:480.770214pt;}
.y148{bottom:480.772814pt;}
.yc7{bottom:480.773467pt;}
.y277{bottom:481.212813pt;}
.y1e9{bottom:481.772814pt;}
.y10c{bottom:484.772814pt;}
.y268{bottom:485.772814pt;}
.y9a{bottom:487.653467pt;}
.y2dc{bottom:487.770214pt;}
.y20b{bottom:487.772814pt;}
.y226{bottom:488.772814pt;}
.y48{bottom:488.773134pt;}
.y4{bottom:488.853348pt;}
.y16b{bottom:489.772814pt;}
.yb4{bottom:489.773467pt;}
.y195{bottom:490.772814pt;}
.y1af{bottom:494.772814pt;}
.y1cf{bottom:495.772814pt;}
.y2a6{bottom:499.770214pt;}
.y147{bottom:499.772814pt;}
.yc6{bottom:499.773467pt;}
.y1e8{bottom:500.772814pt;}
.y289{bottom:501.132813pt;}
.y73{bottom:501.213467pt;}
.y1e{bottom:501.773307pt;}
.yea{bottom:501.773467pt;}
.y267{bottom:502.132813pt;}
.y2db{bottom:506.770214pt;}
.y11e{bottom:506.772814pt;}
.y225{bottom:507.772814pt;}
.y47{bottom:507.773134pt;}
.y16a{bottom:508.772814pt;}
.yb3{bottom:508.773467pt;}
.y194{bottom:509.772814pt;}
.y1ce{bottom:514.772814pt;}
.y2a5{bottom:518.770214pt;}
.y146{bottom:518.772814pt;}
.ye9{bottom:520.773467pt;}
.y1d{bottom:523.773307pt;}
.y20a{bottom:525.772814pt;}
.y288{bottom:526.132813pt;}
.y224{bottom:526.772814pt;}
.y46{bottom:526.773134pt;}
.y266{bottom:527.132813pt;}
.y169{bottom:527.772814pt;}
.y10b{bottom:528.772814pt;}
.y1cd{bottom:533.772814pt;}
.y2e7{bottom:537.770214pt;}
.y145{bottom:537.772814pt;}
.yc5{bottom:537.773467pt;}
.y1e7{bottom:538.772814pt;}
.y276{bottom:540.772814pt;}
.y72{bottom:543.653467pt;}
.y2da{bottom:544.770214pt;}
.y209{bottom:544.772814pt;}
.y45{bottom:545.773134pt;}
.y168{bottom:546.772814pt;}
.yb2{bottom:546.773467pt;}
.y193{bottom:547.772814pt;}
.y63{bottom:548.773467pt;}
.y10a{bottom:550.772814pt;}
.y287{bottom:551.132813pt;}
.y265{bottom:552.132813pt;}
.y1cc{bottom:552.772814pt;}
.y2a4{bottom:556.770214pt;}
.y144{bottom:556.772814pt;}
.y99{bottom:556.773467pt;}
.ye8{bottom:558.773467pt;}
.y275{bottom:559.772814pt;}
.y2d9{bottom:563.770214pt;}
.y223{bottom:565.212813pt;}
.y167{bottom:565.772814pt;}
.yb0{bottom:565.773467pt;}
.y192{bottom:566.772814pt;}
.y62{bottom:567.773467pt;}
.y1cb{bottom:571.772814pt;}
.yb1{bottom:572.109440pt;}
.y11d{bottom:572.772814pt;}
.y2a3{bottom:575.770214pt;}
.y143{bottom:575.772814pt;}
.y98{bottom:575.773467pt;}
.y286{bottom:576.132813pt;}
.y264{bottom:577.132813pt;}
.ye7{bottom:577.773467pt;}
.y274{bottom:578.772814pt;}
.y208{bottom:582.772814pt;}
.y44{bottom:583.773134pt;}
.y166{bottom:584.772814pt;}
.yaf{bottom:584.773467pt;}
.y191{bottom:585.772814pt;}
.y1c{bottom:586.773307pt;}
.y61{bottom:586.773467pt;}
.y1ca{bottom:590.772814pt;}
.y2a2{bottom:594.770214pt;}
.y109{bottom:594.772814pt;}
.y97{bottom:594.773467pt;}
.y3{bottom:595.186680pt;}
.ye6{bottom:596.773467pt;}
.y273{bottom:597.772814pt;}
.y207{bottom:599.132813pt;}
.y285{bottom:601.132813pt;}
.y2d8{bottom:601.770214pt;}
.y263{bottom:602.132813pt;}
.y43{bottom:602.773134pt;}
.y165{bottom:603.772814pt;}
.yae{bottom:603.773467pt;}
.y190{bottom:604.772814pt;}
.y1b{bottom:605.773307pt;}
.y60{bottom:605.773467pt;}
.y1c9{bottom:609.772814pt;}
.y2bc{bottom:613.770214pt;}
.y142{bottom:613.772814pt;}
.y96{bottom:613.773467pt;}
.ye5{bottom:615.773467pt;}
.y108{bottom:616.772814pt;}
.y1da{bottom:617.212813pt;}
.y2d7{bottom:620.770214pt;}
.y254{bottom:622.772814pt;}
.yad{bottom:622.773467pt;}
.y18f{bottom:623.772814pt;}
.y222{bottom:624.772814pt;}
.y1a{bottom:624.773307pt;}
.y5f{bottom:624.773467pt;}
.y262{bottom:627.132813pt;}
.y206{bottom:629.132813pt;}
.y2a1{bottom:632.770214pt;}
.y141{bottom:632.772814pt;}
.y95{bottom:632.773467pt;}
.ye4{bottom:634.773467pt;}
.y272{bottom:635.772814pt;}
.y107{bottom:638.772814pt;}
.y42{bottom:640.773134pt;}
.y164{bottom:641.772814pt;}
.yac{bottom:641.773467pt;}
.y18e{bottom:642.772814pt;}
.y221{bottom:643.772814pt;}
.y19{bottom:643.773307pt;}
.y5e{bottom:643.773467pt;}
.y1c8{bottom:647.772814pt;}
.y284{bottom:648.772814pt;}
.y2a0{bottom:651.770214pt;}
.y180{bottom:651.772814pt;}
.y94{bottom:651.773467pt;}
.y261{bottom:652.132813pt;}
.y240{bottom:652.772814pt;}
.y205{bottom:654.132813pt;}
.y271{bottom:654.772814pt;}
.y2{bottom:655.973347pt;}
.y2d6{bottom:658.770214pt;}
.y106{bottom:660.772814pt;}
.y18d{bottom:661.772814pt;}
.y220{bottom:662.772814pt;}
.y5d{bottom:662.773467pt;}
.y29f{bottom:670.770214pt;}
.y140{bottom:670.772814pt;}
.y93{bottom:670.773467pt;}
.ye3{bottom:672.773467pt;}
.y270{bottom:673.772814pt;}
.y1d9{bottom:676.772814pt;}
.y253{bottom:677.132813pt;}
.y2d5{bottom:677.770214pt;}
.y41{bottom:679.053133pt;}
.y204{bottom:679.132813pt;}
.y163{bottom:679.772814pt;}
.yab{bottom:680.213467pt;}
.y18c{bottom:680.772814pt;}
.y21f{bottom:681.772814pt;}
.y18{bottom:681.773307pt;}
.y5c{bottom:681.773467pt;}
.y11c{bottom:682.772814pt;}
.y1c7{bottom:683.132813pt;}
.y283{bottom:686.772814pt;}
.y29e{bottom:689.770214pt;}
.y13f{bottom:689.772814pt;}
.y92{bottom:689.773467pt;}
.y23f{bottom:690.772814pt;}
.ye2{bottom:691.773467pt;}
.y26f{bottom:692.772814pt;}
.y1d8{bottom:695.772814pt;}
.yc4{bottom:696.109440pt;}
.y1{bottom:696.373346pt;}
.y40{bottom:697.053133pt;}
.y21e{bottom:700.772814pt;}
.y17{bottom:700.773307pt;}
.y71{bottom:700.773467pt;}
.y203{bottom:704.132813pt;}
.y105{bottom:704.772814pt;}
.y282{bottom:705.772814pt;}
.y1c6{bottom:708.132813pt;}
.y29d{bottom:708.770214pt;}
.y13e{bottom:708.772814pt;}
.y91{bottom:708.773467pt;}
.y23e{bottom:709.772814pt;}
.ye1{bottom:710.773467pt;}
.y1d7{bottom:714.772814pt;}
.y3f{bottom:714.773134pt;}
.y2d4{bottom:715.690214pt;}
.y162{bottom:717.772814pt;}
.y21d{bottom:719.772814pt;}
.y16{bottom:719.773307pt;}
.y70{bottom:719.773467pt;}
.y252{bottom:720.132813pt;}
.y18b{bottom:720.652814pt;}
.y260{bottom:724.772814pt;}
.y104{bottom:726.772814pt;}
.y29c{bottom:727.770214pt;}
.y13d{bottom:727.772814pt;}
.y90{bottom:727.773467pt;}
.y23d{bottom:728.772814pt;}
.y202{bottom:729.132813pt;}
.ye0{bottom:729.773467pt;}
.y26e{bottom:730.772814pt;}
.y2d3{bottom:732.770214pt;}
.y1c5{bottom:733.132813pt;}
.y3e{bottom:733.773134pt;}
.y5b{bottom:735.533466pt;}
.y161{bottom:736.772814pt;}
.y15{bottom:738.773307pt;}
.y6f{bottom:738.773467pt;}
.y281{bottom:743.772814pt;}
.y251{bottom:745.132813pt;}
.y18a{bottom:746.652814pt;}
.y29b{bottom:746.770214pt;}
.y13c{bottom:746.772814pt;}
.y8f{bottom:746.773467pt;}
.y23c{bottom:747.772814pt;}
.y103{bottom:748.772814pt;}
.ydf{bottom:748.773467pt;}
.y1d6{bottom:752.772814pt;}
.y3d{bottom:752.773134pt;}
.y201{bottom:754.132813pt;}
.y160{bottom:755.772814pt;}
.y14{bottom:757.773307pt;}
.y6e{bottom:757.773467pt;}
.y1c4{bottom:758.132813pt;}
.y25f{bottom:762.772814pt;}
.y29a{bottom:765.770214pt;}
.y13b{bottom:765.772814pt;}
.y8e{bottom:765.773467pt;}
.y23b{bottom:766.772814pt;}
.y250{bottom:770.132813pt;}
.y2d2{bottom:770.770214pt;}
.y102{bottom:770.772814pt;}
.y3c{bottom:771.773134pt;}
.y15f{bottom:774.772814pt;}
.y21c{bottom:776.772814pt;}
.y13{bottom:776.773307pt;}
.y6d{bottom:776.773467pt;}
.y200{bottom:779.132813pt;}
.y25e{bottom:781.772814pt;}
.y1c3{bottom:783.132813pt;}
.y2bb{bottom:784.770214pt;}
.y13a{bottom:784.772814pt;}
.y8d{bottom:784.773467pt;}
.y23a{bottom:785.772814pt;}
.yde{bottom:786.773467pt;}
.y2d1{bottom:789.770214pt;}
.y3b{bottom:790.773134pt;}
.y101{bottom:792.772814pt;}
.y15e{bottom:793.772814pt;}
.y24f{bottom:795.132813pt;}
.y5a{bottom:796.773467pt;}
.y25d{bottom:800.772814pt;}
.y299{bottom:803.770214pt;}
.y139{bottom:803.772814pt;}
.yaa{bottom:803.773467pt;}
.y1ff{bottom:804.132813pt;}
.ydd{bottom:805.773467pt;}
.y1c2{bottom:808.132813pt;}
.y3a{bottom:809.773134pt;}
.y15d{bottom:812.772814pt;}
.y100{bottom:814.772814pt;}
.y12{bottom:814.773307pt;}
.y6c{bottom:814.773467pt;}
.y59{bottom:815.773467pt;}
.y25c{bottom:819.772814pt;}
.y24e{bottom:820.132813pt;}
.y298{bottom:822.770214pt;}
.y138{bottom:822.772814pt;}
.y8c{bottom:822.773467pt;}
.y239{bottom:823.772814pt;}
.ydc{bottom:824.773467pt;}
.y2d0{bottom:827.770214pt;}
.y39{bottom:828.773134pt;}
.y1fe{bottom:829.132813pt;}
.y15c{bottom:831.772814pt;}
.y1c1{bottom:833.132813pt;}
.y11{bottom:833.773307pt;}
.y6b{bottom:833.773467pt;}
.y58{bottom:834.773467pt;}
.y1ae{bottom:835.772814pt;}
.yff{bottom:836.772814pt;}
.y25b{bottom:838.772814pt;}
.y280{bottom:839.212813pt;}
.y297{bottom:841.770214pt;}
.y137{bottom:841.772814pt;}
.y8b{bottom:841.773467pt;}
.y238{bottom:842.772814pt;}
.ydb{bottom:843.773467pt;}
.y24d{bottom:845.132813pt;}
.y2cf{bottom:846.770214pt;}
.y38{bottom:847.773134pt;}
.y15b{bottom:850.772814pt;}
.y10{bottom:852.773307pt;}
.y6a{bottom:852.773467pt;}
.y57{bottom:853.773467pt;}
.y1fd{bottom:854.132813pt;}
.y25a{bottom:857.772814pt;}
.y1c0{bottom:858.132813pt;}
.yfe{bottom:858.772814pt;}
.y2ba{bottom:860.770214pt;}
.y136{bottom:860.772814pt;}
.y8a{bottom:860.773467pt;}
.y237{bottom:861.772814pt;}
.y15a{bottom:869.772814pt;}
.y24c{bottom:870.132813pt;}
.yf{bottom:871.773307pt;}
.y69{bottom:871.773467pt;}
.y56{bottom:872.773467pt;}
.y1ad{bottom:873.772814pt;}
.y259{bottom:876.772814pt;}
.y32{bottom:878.773134pt;}
.y1fc{bottom:879.132812pt;}
.y296{bottom:879.770214pt;}
.y135{bottom:879.772814pt;}
.y89{bottom:879.773467pt;}
.yfd{bottom:880.772814pt;}
.yda{bottom:881.773467pt;}
.y1bf{bottom:883.132812pt;}
.y2ce{bottom:884.770208pt;}
.y37{bottom:885.773139pt;}
.ye{bottom:890.773302pt;}
.y68{bottom:890.773464pt;}
.y55{bottom:891.773464pt;}
.y1ac{bottom:892.772812pt;}
.y295{bottom:898.770208pt;}
.y17f{bottom:898.772812pt;}
.y88{bottom:898.773464pt;}
.yd9{bottom:900.773464pt;}
.y11b{bottom:902.772812pt;}
.y1fb{bottom:904.132812pt;}
.y36{bottom:904.773139pt;}
.y1bd{bottom:908.132812pt;}
.y159{bottom:908.212812pt;}
.yd{bottom:909.773302pt;}
.y67{bottom:909.773464pt;}
.y54{bottom:910.773464pt;}
.y1ab{bottom:911.772812pt;}
.y258{bottom:915.212812pt;}
.y294{bottom:917.770208pt;}
.y134{bottom:917.772812pt;}
.y87{bottom:917.773464pt;}
.y236{bottom:918.772812pt;}
.y31{bottom:919.773139pt;}
.y2cd{bottom:922.770208pt;}
.y35{bottom:923.773139pt;}
.yfc{bottom:924.772812pt;}
.y66{bottom:928.773464pt;}
.y1fa{bottom:929.132812pt;}
.y1aa{bottom:930.772812pt;}
.y234{bottom:935.132812pt;}
.y293{bottom:936.770208pt;}
.y133{bottom:936.772812pt;}
.y86{bottom:936.773464pt;}
.yd8{bottom:946.213464pt;}
.yfb{bottom:946.772812pt;}
.yc{bottom:947.773302pt;}
.y53{bottom:948.773464pt;}
.y1f9{bottom:954.132812pt;}
.y292{bottom:955.770208pt;}
.y132{bottom:955.772812pt;}
.y85{bottom:955.773464pt;}
.y2cc{bottom:960.770208pt;}
.y34{bottom:961.773139pt;}
.yb{bottom:966.773302pt;}
.yfa{bottom:968.772812pt;}
.y1a9{bottom:969.212812pt;}
.y2b9{bottom:974.770208pt;}
.y158{bottom:974.772812pt;}
.y30{bottom:974.773139pt;}
.y65{bottom:975.653465pt;}
.y233{bottom:978.132812pt;}
.y1f8{bottom:979.132812pt;}
.yf9{bottom:990.772812pt;}
.y84{bottom:990.773464pt;}
.y1a8{bottom:991.212812pt;}
.y291{bottom:993.770208pt;}
.y131{bottom:993.772812pt;}
.y2f{bottom:993.773139pt;}
.ya9{bottom:993.773464pt;}
.y123{bottom:997.109437pt;}
.y33{bottom:1002.533138pt;}
.y52{bottom:1002.533464pt;}
.y232{bottom:1003.132812pt;}
.y2cb{bottom:1007.650209pt;}
.ya{bottom:1010.213301pt;}
.y290{bottom:1012.770208pt;}
.yf7{bottom:1012.772812pt;}
.y2e{bottom:1012.773139pt;}
.y83{bottom:1012.773464pt;}
.yf8{bottom:1019.109437pt;}
.h10{height:22.968750pt;}
.h14{height:24.000000pt;}
.h12{height:26.287501pt;}
.hf{height:27.562501pt;}
.h11{height:38.281249pt;}
.h17{height:40.546874pt;}
.h18{height:42.000000pt;}
.h9{height:42.109376pt;}
.h7{height:45.937500pt;}
.h16{height:47.812499pt;}
.h15{height:48.255207pt;}
.h1a{height:50.203125pt;}
.h8{height:52.781250pt;}
.hd{height:57.375000pt;}
.he{height:57.906250pt;}
.h5{height:61.250002pt;}
.h6{height:61.578123pt;}
.h2{height:70.375002pt;}
.h4{height:79.171875pt;}
.hb{height:87.968748pt;}
.hc{height:94.199867pt;}
.ha{height:94.200200pt;}
.h13{height:94.200520pt;}
.h19{height:94.203120pt;}
.h1{height:96.765627pt;}
.h3{height:99.531254pt;}
.h0{height:1122.666667pt;}
.w2{width:99.000000pt;}
.w3{width:99.000041pt;}
.w4{width:171.000000pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x1c{left:2.000000pt;}
.x27{left:22.691895pt;}
.x1d{left:26.398132pt;}
.x1e{left:30.104370pt;}
.x21{left:31.955864pt;}
.x1a{left:39.003899pt;}
.x18{left:42.703629pt;}
.x9{left:113.400004pt;}
.x1f{left:115.576960pt;}
.xd{left:120.892192pt;}
.x5{left:127.765673pt;}
.xc{left:137.400004pt;}
.x13{left:144.228119pt;}
.x2a{left:147.162898pt;}
.x16{left:151.616023pt;}
.x4{left:155.965960pt;}
.x1{left:160.054576pt;}
.xb{left:161.400004pt;}
.x14{left:168.033991pt;}
.x20{left:179.475398pt;}
.x29{left:182.604304pt;}
.x24{left:183.838679pt;}
.x22{left:185.190241pt;}
.x2c{left:187.069148pt;}
.x2b{left:189.334773pt;}
.x26{left:193.076960pt;}
.x1b{left:211.399984pt;}
.x6{left:230.549960pt;}
.x25{left:244.576960pt;}
.x23{left:245.928523pt;}
.x28{left:253.815241pt;}
.x7{left:283.008604pt;}
.x8{left:291.029104pt;}
.x15{left:309.408994pt;}
.x3{left:324.103174pt;}
.xe{left:336.103107pt;}
.x2{left:342.030684pt;}
.x12{left:380.853107pt;}
.x17{left:383.399987pt;}
.x11{left:407.032800pt;}
.x19{left:483.399987pt;}
.x10{left:650.751587pt;}
.xf{left:665.444194pt;}
.xa{left:672.872474pt;}
}




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