
    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_465172dd9b8dd5bdbf421e3b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.959473;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_fd4b6718b9b7461e55097509.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_cb54c2fa8bd07c2bae2c0c74.woff')format("woff");}.ff3{font-family:ff3;line-height:1.053223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_efc315c8d50174cef2ab9783.woff')format("woff");}.ff4{font-family:ff4;line-height:1.053223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b8cb6c4f43002b6d2a567dee.woff')format("woff");}.ff5{font-family:ff5;line-height:1.053223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-0.240600px;}
.ls2{letter-spacing:-0.147000px;}
.ls6{letter-spacing:-0.048240px;}
.lsb{letter-spacing:-0.041760px;}
.ls3{letter-spacing:-0.027000px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.000720px;}
.ls9{letter-spacing:0.078600px;}
.ls1{letter-spacing:0.090000px;}
.lsc{letter-spacing:0.119160px;}
.lsd{letter-spacing:0.119400px;}
.ls10{letter-spacing:0.154200px;}
.ls7{letter-spacing:0.160800px;}
.ls8{letter-spacing:0.318000px;}
.lsf{letter-spacing:0.333000px;}
.ls4{letter-spacing:0.396600px;}
.ls12{letter-spacing:0.438600px;}
.ls5{letter-spacing:0.561000px;}
.lsa{letter-spacing:848.970000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-15.327480px;}
.ws3{word-spacing:-15.049680px;}
.ws9{word-spacing:-15.043080px;}
.ws4{word-spacing:-14.967480px;}
.ws6{word-spacing:-14.888880px;}
.ws2{word-spacing:-14.861880px;}
.wsb{word-spacing:-14.840640px;}
.ws1{word-spacing:-14.741880px;}
.ws7{word-spacing:-13.706520px;}
.ws8{word-spacing:-13.677120px;}
.ws5{word-spacing:-13.346520px;}
.wsa{word-spacing:-12.204000px;}
.ws0{word-spacing:0.000000px;}
._1a{margin-left:-5.531040px;}
._10{margin-left:-4.030200px;}
._3{margin-left:-2.870640px;}
._0{margin-left:-1.345680px;}
._1{width:1.252200px;}
._c{width:2.388000px;}
._4{width:3.689280px;}
._5{width:4.743360px;}
._e{width:5.796960px;}
._2{width:6.851520px;}
._a{width:8.037360px;}
._17{width:9.061080px;}
._6{width:10.079640px;}
._7{width:11.199600px;}
._11{width:12.346920px;}
._f{width:13.887000px;}
._8{width:16.140120px;}
._b{width:18.183360px;}
._15{width:19.698120px;}
._16{width:21.025560px;}
._22{width:22.201560px;}
._9{width:23.980320px;}
._1e{width:25.232040px;}
._d{width:26.879040px;}
._14{width:28.089720px;}
._13{width:29.160000px;}
._23{width:30.765960px;}
._25{width:35.706960px;}
._24{width:37.090440px;}
._12{width:52.308720px;}
._19{width:61.861320px;}
._18{width:63.047160px;}
._1b{width:91.704000px;}
._20{width:125.826000px;}
._21{width:158.310000px;}
._1d{width:167.916000px;}
._1f{width:181.308000px;}
._1c{width:188.820000px;}
.fc3{color:transparent;}
.fc1{color:rgb(186,232,186);}
.fc5{color:rgb(89,89,89);}
.fc4{color:rgb(64,64,64);}
.fc2{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fs2{font-size:65.880000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:83.880000px;}
.fs1{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.ybf{bottom:4.050000px;}
.yb9{bottom:4.140000px;}
.y9a{bottom:8.010000px;}
.y9c{bottom:8.100000px;}
.y99{bottom:10.440000px;}
.yb6{bottom:12.510000px;}
.yb3{bottom:12.630000px;}
.yba{bottom:13.230000px;}
.ybd{bottom:13.320000px;}
.yb5{bottom:14.940000px;}
.yb2{bottom:14.970000px;}
.ye1{bottom:15.150000px;}
.y100{bottom:16.740000px;}
.yb8{bottom:22.410000px;}
.yff{bottom:43.260000px;}
.ye0{bottom:45.060000px;}
.y97{bottom:50.130000px;}
.y2{bottom:57.060000px;}
.yf9{bottom:60.810000px;}
.yd8{bottom:62.610000px;}
.y23{bottom:74.070000px;}
.yd9{bottom:81.570000px;}
.yfa{bottom:91.890000px;}
.yda{bottom:100.560000px;}
.ydb{bottom:119.520000px;}
.yfb{bottom:122.940000px;}
.y6b{bottom:132.660000px;}
.y47{bottom:135.000000px;}
.yd5{bottom:135.840000px;}
.yf3{bottom:135.990000px;}
.ydc{bottom:138.480000px;}
.y11b{bottom:144.270000px;}
.y22{bottom:145.080000px;}
.yb0{bottom:150.390000px;}
.yfc{bottom:153.990000px;}
.yd3{bottom:157.320000px;}
.ydd{bottom:157.440000px;}
.y6a{bottom:158.850000px;}
.y46{bottom:161.190000px;}
.yf2{bottom:162.180000px;}
.yd6{bottom:165.450000px;}
.y8e{bottom:166.950000px;}
.y11a{bottom:170.460000px;}
.y21{bottom:171.270000px;}
.yf8{bottom:176.010000px;}
.yde{bottom:176.430000px;}
.yaf{bottom:176.580000px;}
.yd2{bottom:183.600000px;}
.y69{bottom:185.040000px;}
.yd4{bottom:185.220000px;}
.y45{bottom:187.380000px;}
.yf1{bottom:188.370000px;}
.yd7{bottom:189.330000px;}
.ydf{bottom:195.390000px;}
.y8d{bottom:198.990000px;}
.y119{bottom:201.150000px;}
.yae{bottom:202.680000px;}
.yf7{bottom:206.430000px;}
.y20{bottom:207.450000px;}
.y68{bottom:211.230000px;}
.y44{bottom:213.600000px;}
.yf0{bottom:214.590000px;}
.yfd{bottom:216.120000px;}
.ye2{bottom:223.680000px;}
.y118{bottom:227.370000px;}
.yad{bottom:228.900000px;}
.y8c{bottom:229.710000px;}
.yf6{bottom:229.740000px;}
.y67{bottom:237.450000px;}
.y43{bottom:239.790000px;}
.yef{bottom:240.780000px;}
.y1f{bottom:245.010000px;}
.yfe{bottom:247.170000px;}
.yf5{bottom:247.440000px;}
.yac{bottom:255.090000px;}
.y8b{bottom:255.900000px;}
.y117{bottom:258.060000px;}
.y42{bottom:265.980000px;}
.yee{bottom:266.970000px;}
.y66{bottom:268.140000px;}
.y101{bottom:275.460000px;}
.y1e{bottom:277.050000px;}
.yab{bottom:281.280000px;}
.y8a{bottom:282.090000px;}
.y116{bottom:284.250000px;}
.y41{bottom:292.170000px;}
.yed{bottom:293.160000px;}
.y65{bottom:294.330000px;}
.y1d{bottom:303.240000px;}
.yaa{bottom:307.470000px;}
.y89{bottom:308.280000px;}
.y115{bottom:310.440000px;}
.y40{bottom:318.360000px;}
.yec{bottom:319.350000px;}
.y64{bottom:320.430000px;}
.y1c{bottom:329.430000px;}
.ya9{bottom:333.660000px;}
.y88{bottom:334.470000px;}
.y114{bottom:341.040000px;}
.yeb{bottom:345.540000px;}
.y63{bottom:346.620000px;}
.y3f{bottom:348.960000px;}
.y1b{bottom:355.620000px;}
.ya8{bottom:359.850000px;}
.y87{bottom:360.660000px;}
.y113{bottom:367.230000px;}
.y62{bottom:372.810000px;}
.y3e{bottom:375.150000px;}
.yea{bottom:381.720000px;}
.y1a{bottom:381.810000px;}
.y86{bottom:386.850000px;}
.ya7{bottom:395.040000px;}
.y112{bottom:397.920000px;}
.y61{bottom:399.000000px;}
.y3d{bottom:401.340000px;}
.y19{bottom:408.000000px;}
.y85{bottom:413.040000px;}
.ye9{bottom:419.250000px;}
.y111{bottom:424.110000px;}
.y60{bottom:425.190000px;}
.ya6{bottom:425.730000px;}
.y3c{bottom:427.530000px;}
.y18{bottom:434.190000px;}
.y84{bottom:448.230000px;}
.y110{bottom:450.300000px;}
.ye8{bottom:451.290000px;}
.ya5{bottom:451.920000px;}
.y3b{bottom:453.720000px;}
.yd1{bottom:455.070000px;}
.y5f{bottom:455.880000px;}
.y17{bottom:460.380000px;}
.ye7{bottom:477.480000px;}
.ya4{bottom:478.110000px;}
.y83{bottom:478.920000px;}
.y3a{bottom:479.910000px;}
.y10f{bottom:480.990000px;}
.yd0{bottom:481.260000px;}
.y5e{bottom:482.070000px;}
.y16{bottom:486.570000px;}
.y130{bottom:498.450000px;}
.ye6{bottom:503.670000px;}
.ya3{bottom:504.300000px;}
.y82{bottom:505.020000px;}
.y39{bottom:506.100000px;}
.y10e{bottom:507.180000px;}
.ycf{bottom:507.450000px;}
.y5d{bottom:508.260000px;}
.y15{bottom:512.760000px;}
.y12f{bottom:524.640000px;}
.ye5{bottom:529.860000px;}
.ya2{bottom:530.490000px;}
.y81{bottom:531.210000px;}
.y38{bottom:532.290000px;}
.yce{bottom:533.640000px;}
.y5c{bottom:534.450000px;}
.y10d{bottom:537.870000px;}
.y14{bottom:538.950000px;}
.y12e{bottom:555.330000px;}
.ye4{bottom:556.050000px;}
.ya1{bottom:556.680000px;}
.y80{bottom:557.400000px;}
.y37{bottom:558.480000px;}
.y5b{bottom:560.640000px;}
.y10c{bottom:564.060000px;}
.ycd{bottom:564.330000px;}
.y13{bottom:565.140000px;}
.y12d{bottom:581.520000px;}
.ya0{bottom:582.870000px;}
.y7f{bottom:583.590000px;}
.y36{bottom:584.670000px;}
.ycc{bottom:585.300000px;}
.ye3{bottom:586.740000px;}
.y5a{bottom:586.830000px;}
.y12{bottom:591.330000px;}
.y10b{bottom:600.240000px;}
.ycb{bottom:603.570000px;}
.y7e{bottom:609.780000px;}
.y35{bottom:610.860000px;}
.y12c{bottom:612.210000px;}
.y59{bottom:613.020000px;}
.y9f{bottom:613.470000px;}
.yf4{bottom:614.610000px;}
.yca{bottom:621.930000px;}
.y11{bottom:627.510000px;}
.y9e{bottom:634.560000px;}
.y7d{bottom:636.000000px;}
.y10a{bottom:637.890000px;}
.y12b{bottom:638.430000px;}
.y58{bottom:639.240000px;}
.yc9{bottom:640.230000px;}
.y34{bottom:647.070000px;}
.yc8{bottom:658.590000px;}
.y10{bottom:659.580000px;}
.y9d{bottom:661.470000px;}
.y7c{bottom:662.190000px;}
.y57{bottom:665.430000px;}
.y12a{bottom:669.120000px;}
.y109{bottom:669.930000px;}
.yc7{bottom:676.860000px;}
.y33{bottom:679.110000px;}
.yf{bottom:685.770000px;}
.y9b{bottom:688.380000px;}
.y56{bottom:691.620000px;}
.yc6{bottom:695.220000px;}
.y108{bottom:696.120000px;}
.y7b{bottom:697.380000px;}
.y32{bottom:709.800000px;}
.ye{bottom:711.960000px;}
.yc5{bottom:714.300000px;}
.y98{bottom:715.380000px;}
.y55{bottom:717.720000px;}
.y107{bottom:722.220000px;}
.y129{bottom:725.910000px;}
.y7a{bottom:728.070000px;}
.yc4{bottom:732.570000px;}
.yd{bottom:738.150000px;}
.y96{bottom:742.290000px;}
.y54{bottom:743.910000px;}
.y31{bottom:745.980000px;}
.y128{bottom:752.100000px;}
.y106{bottom:752.910000px;}
.y79{bottom:754.260000px;}
.yc{bottom:768.840000px;}
.yc3{bottom:769.200000px;}
.y53{bottom:774.600000px;}
.y30{bottom:778.020000px;}
.y105{bottom:779.100000px;}
.y78{bottom:780.450000px;}
.y127{bottom:782.790000px;}
.yb{bottom:799.530000px;}
.y52{bottom:800.790000px;}
.y104{bottom:805.290000px;}
.yc2{bottom:805.830000px;}
.y77{bottom:806.640000px;}
.y126{bottom:808.980000px;}
.y2f{bottom:814.290000px;}
.yc1{bottom:824.100000px;}
.y51{bottom:826.980000px;}
.ya{bottom:828.690000px;}
.y103{bottom:831.480000px;}
.y76{bottom:832.830000px;}
.y125{bottom:839.670000px;}
.y2e{bottom:851.820000px;}
.y50{bottom:853.170000px;}
.y102{bottom:857.670000px;}
.y75{bottom:859.020000px;}
.yc0{bottom:860.010000px;}
.y9{bottom:861.450000px;}
.y95{bottom:863.520000px;}
.y124{bottom:865.860000px;}
.ybe{bottom:878.370000px;}
.y4f{bottom:879.360000px;}
.y2d{bottom:883.860000px;}
.y123{bottom:892.050000px;}
.y74{bottom:894.210000px;}
.ybc{bottom:896.640000px;}
.y8{bottom:899.610000px;}
.y4e{bottom:905.550000px;}
.y2c{bottom:910.050000px;}
.y94{bottom:920.400000px;}
.y122{bottom:922.740000px;}
.y73{bottom:924.900000px;}
.y4d{bottom:931.740000px;}
.ybb{bottom:933.270000px;}
.y2b{bottom:936.240000px;}
.y7{bottom:942.180000px;}
.y93{bottom:946.500000px;}
.y121{bottom:948.930000px;}
.y72{bottom:951.000000px;}
.y4c{bottom:957.930000px;}
.y2a{bottom:962.430000px;}
.yb7{bottom:969.900000px;}
.y92{bottom:972.690000px;}
.y120{bottom:975.120000px;}
.y71{bottom:977.190000px;}
.y4b{bottom:984.120000px;}
.y6{bottom:984.750000px;}
.y29{bottom:988.620000px;}
.y91{bottom:998.880000px;}
.y70{bottom:1003.380000px;}
.y11f{bottom:1005.810000px;}
.yb4{bottom:1006.530000px;}
.y4a{bottom:1010.310000px;}
.y28{bottom:1014.810000px;}
.y90{bottom:1025.070000px;}
.y5{bottom:1027.320000px;}
.y6f{bottom:1029.570000px;}
.y11e{bottom:1032.000000px;}
.y49{bottom:1036.500000px;}
.y27{bottom:1041.000000px;}
.yb1{bottom:1042.440000px;}
.y8f{bottom:1051.260000px;}
.y6e{bottom:1055.790000px;}
.y11d{bottom:1062.720000px;}
.y26{bottom:1067.220000px;}
.y4{bottom:1069.920000px;}
.y6d{bottom:1081.980000px;}
.y11c{bottom:1088.910000px;}
.y25{bottom:1093.410000px;}
.y3{bottom:1112.490000px;}
.y6c{bottom:1118.160000px;}
.y24{bottom:1119.510000px;}
.y48{bottom:1180.350000px;}
.y1{bottom:1196.820000px;}
.h12{height:18.270000px;}
.h14{height:18.300000px;}
.h13{height:18.360000px;}
.hd{height:26.190000px;}
.h10{height:35.190000px;}
.he{height:35.220000px;}
.h11{height:36.630000px;}
.h2{height:41.860898px;}
.h7{height:47.250000px;}
.hf{height:49.581387px;}
.h8{height:52.605000px;}
.h4{height:54.331699px;}
.h5{height:57.645000px;}
.hc{height:57.645016px;}
.ha{height:57.645023px;}
.hb{height:57.645030px;}
.h6{height:59.378906px;}
.h16{height:69.176426px;}
.h3{height:79.270840px;}
.h9{height:105.480000px;}
.h15{height:254.970000px;}
.h17{height:306.720000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:54.810000px;}
.w5{width:54.840000px;}
.w6{width:69.390000px;}
.w8{width:85.050000px;}
.w3{width:380.280000px;}
.w9{width:457.380000px;}
.wa{width:465.570000px;}
.w7{width:552.750000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:8.010000px;}
.x23{left:9.810000px;}
.x1e{left:12.600000px;}
.x16{left:15.570000px;}
.x17{left:23.220000px;}
.x10{left:28.440000px;}
.x13{left:29.880000px;}
.x24{left:33.240000px;}
.x18{left:37.800000px;}
.x1c{left:39.870000px;}
.x2d{left:49.410000px;}
.x11{left:55.350000px;}
.x2e{left:65.040000px;}
.x29{left:69.780000px;}
.x1d{left:72.450000px;}
.x25{left:80.040000px;}
.x1{left:127.649987px;}
.x19{left:129.809987px;}
.x26{left:136.170000px;}
.x3{left:138.179987px;}
.x2f{left:140.310000px;}
.x28{left:168.059987px;}
.x20{left:171.630000px;}
.x2a{left:174.750000px;}
.x30{left:180.839987px;}
.xd{left:225.659987px;}
.xb{left:252.299987px;}
.x21{left:274.560000px;}
.x2b{left:279.750000px;}
.x4{left:317.639987px;}
.x22{left:377.520000px;}
.x2c{left:384.750000px;}
.x1a{left:397.769987px;}
.x2{left:446.549987px;}
.xf{left:507.930000px;}
.x5{left:548.069987px;}
.x12{left:562.740000px;}
.x1f{left:586.679987px;}
.x27{left:593.429987px;}
.x14{left:617.580000px;}
.x7{left:618.749987px;}
.x9{left:623.699987px;}
.x6{left:641.429987px;}
.x8{left:661.679987px;}
.x15{left:672.390000px;}
.x1b{left:680.400000px;}
.xc{left:742.769987px;}
.xa{left:765.539987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.213867pt;}
.ls2{letter-spacing:-0.130667pt;}
.ls6{letter-spacing:-0.042880pt;}
.lsb{letter-spacing:-0.037120pt;}
.ls3{letter-spacing:-0.024000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.000640pt;}
.ls9{letter-spacing:0.069867pt;}
.ls1{letter-spacing:0.080000pt;}
.lsc{letter-spacing:0.105920pt;}
.lsd{letter-spacing:0.106133pt;}
.ls10{letter-spacing:0.137067pt;}
.ls7{letter-spacing:0.142933pt;}
.ls8{letter-spacing:0.282667pt;}
.lsf{letter-spacing:0.296000pt;}
.ls4{letter-spacing:0.352533pt;}
.ls12{letter-spacing:0.389867pt;}
.ls5{letter-spacing:0.498667pt;}
.lsa{letter-spacing:754.640000pt;}
.wsc{word-spacing:-13.624427pt;}
.ws3{word-spacing:-13.377493pt;}
.ws9{word-spacing:-13.371627pt;}
.ws4{word-spacing:-13.304427pt;}
.ws6{word-spacing:-13.234560pt;}
.ws2{word-spacing:-13.210560pt;}
.wsb{word-spacing:-13.191680pt;}
.ws1{word-spacing:-13.103893pt;}
.ws7{word-spacing:-12.183573pt;}
.ws8{word-spacing:-12.157440pt;}
.ws5{word-spacing:-11.863573pt;}
.wsa{word-spacing:-10.848000pt;}
.ws0{word-spacing:0.000000pt;}
._1a{margin-left:-4.916480pt;}
._10{margin-left:-3.582400pt;}
._3{margin-left:-2.551680pt;}
._0{margin-left:-1.196160pt;}
._1{width:1.113067pt;}
._c{width:2.122667pt;}
._4{width:3.279360pt;}
._5{width:4.216320pt;}
._e{width:5.152853pt;}
._2{width:6.090240pt;}
._a{width:7.144320pt;}
._17{width:8.054293pt;}
._6{width:8.959680pt;}
._7{width:9.955200pt;}
._11{width:10.975040pt;}
._f{width:12.344000pt;}
._8{width:14.346773pt;}
._b{width:16.162987pt;}
._15{width:17.509440pt;}
._16{width:18.689387pt;}
._22{width:19.734720pt;}
._9{width:21.315840pt;}
._1e{width:22.428480pt;}
._d{width:23.892480pt;}
._14{width:24.968640pt;}
._13{width:25.920000pt;}
._23{width:27.347520pt;}
._25{width:31.739520pt;}
._24{width:32.969280pt;}
._12{width:46.496640pt;}
._19{width:54.987840pt;}
._18{width:56.041920pt;}
._1b{width:81.514667pt;}
._20{width:111.845333pt;}
._21{width:140.720000pt;}
._1d{width:149.258667pt;}
._1f{width:161.162667pt;}
._1c{width:167.840000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fs2{font-size:58.560000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.560000pt;}
.fs1{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.ybf{bottom:3.600000pt;}
.yb9{bottom:3.680000pt;}
.y9a{bottom:7.120000pt;}
.y9c{bottom:7.200000pt;}
.y99{bottom:9.280000pt;}
.yb6{bottom:11.120000pt;}
.yb3{bottom:11.226667pt;}
.yba{bottom:11.760000pt;}
.ybd{bottom:11.840000pt;}
.yb5{bottom:13.280000pt;}
.yb2{bottom:13.306667pt;}
.ye1{bottom:13.466667pt;}
.y100{bottom:14.880000pt;}
.yb8{bottom:19.920000pt;}
.yff{bottom:38.453333pt;}
.ye0{bottom:40.053333pt;}
.y97{bottom:44.560000pt;}
.y2{bottom:50.720000pt;}
.yf9{bottom:54.053333pt;}
.yd8{bottom:55.653333pt;}
.y23{bottom:65.840000pt;}
.yd9{bottom:72.506667pt;}
.yfa{bottom:81.680000pt;}
.yda{bottom:89.386667pt;}
.ydb{bottom:106.240000pt;}
.yfb{bottom:109.280000pt;}
.y6b{bottom:117.920000pt;}
.y47{bottom:120.000000pt;}
.yd5{bottom:120.746667pt;}
.yf3{bottom:120.880000pt;}
.ydc{bottom:123.093333pt;}
.y11b{bottom:128.240000pt;}
.y22{bottom:128.960000pt;}
.yb0{bottom:133.680000pt;}
.yfc{bottom:136.880000pt;}
.yd3{bottom:139.840000pt;}
.ydd{bottom:139.946667pt;}
.y6a{bottom:141.200000pt;}
.y46{bottom:143.280000pt;}
.yf2{bottom:144.160000pt;}
.yd6{bottom:147.066667pt;}
.y8e{bottom:148.400000pt;}
.y11a{bottom:151.520000pt;}
.y21{bottom:152.240000pt;}
.yf8{bottom:156.453333pt;}
.yde{bottom:156.826667pt;}
.yaf{bottom:156.960000pt;}
.yd2{bottom:163.200000pt;}
.y69{bottom:164.480000pt;}
.yd4{bottom:164.640000pt;}
.y45{bottom:166.560000pt;}
.yf1{bottom:167.440000pt;}
.yd7{bottom:168.293333pt;}
.ydf{bottom:173.680000pt;}
.y8d{bottom:176.880000pt;}
.y119{bottom:178.800000pt;}
.yae{bottom:180.160000pt;}
.yf7{bottom:183.493333pt;}
.y20{bottom:184.400000pt;}
.y68{bottom:187.760000pt;}
.y44{bottom:189.866667pt;}
.yf0{bottom:190.746667pt;}
.yfd{bottom:192.106667pt;}
.ye2{bottom:198.826667pt;}
.y118{bottom:202.106667pt;}
.yad{bottom:203.466667pt;}
.y8c{bottom:204.186667pt;}
.yf6{bottom:204.213333pt;}
.y67{bottom:211.066667pt;}
.y43{bottom:213.146667pt;}
.yef{bottom:214.026667pt;}
.y1f{bottom:217.786667pt;}
.yfe{bottom:219.706667pt;}
.yf5{bottom:219.946667pt;}
.yac{bottom:226.746667pt;}
.y8b{bottom:227.466667pt;}
.y117{bottom:229.386667pt;}
.y42{bottom:236.426667pt;}
.yee{bottom:237.306667pt;}
.y66{bottom:238.346667pt;}
.y101{bottom:244.853333pt;}
.y1e{bottom:246.266667pt;}
.yab{bottom:250.026667pt;}
.y8a{bottom:250.746667pt;}
.y116{bottom:252.666667pt;}
.y41{bottom:259.706667pt;}
.yed{bottom:260.586667pt;}
.y65{bottom:261.626667pt;}
.y1d{bottom:269.546667pt;}
.yaa{bottom:273.306667pt;}
.y89{bottom:274.026667pt;}
.y115{bottom:275.946667pt;}
.y40{bottom:282.986667pt;}
.yec{bottom:283.866667pt;}
.y64{bottom:284.826667pt;}
.y1c{bottom:292.826667pt;}
.ya9{bottom:296.586667pt;}
.y88{bottom:297.306667pt;}
.y114{bottom:303.146667pt;}
.yeb{bottom:307.146667pt;}
.y63{bottom:308.106667pt;}
.y3f{bottom:310.186667pt;}
.y1b{bottom:316.106667pt;}
.ya8{bottom:319.866667pt;}
.y87{bottom:320.586667pt;}
.y113{bottom:326.426667pt;}
.y62{bottom:331.386667pt;}
.y3e{bottom:333.466667pt;}
.yea{bottom:339.306667pt;}
.y1a{bottom:339.386667pt;}
.y86{bottom:343.866667pt;}
.ya7{bottom:351.146667pt;}
.y112{bottom:353.706667pt;}
.y61{bottom:354.666667pt;}
.y3d{bottom:356.746667pt;}
.y19{bottom:362.666667pt;}
.y85{bottom:367.146667pt;}
.ye9{bottom:372.666667pt;}
.y111{bottom:376.986667pt;}
.y60{bottom:377.946667pt;}
.ya6{bottom:378.426667pt;}
.y3c{bottom:380.026667pt;}
.y18{bottom:385.946667pt;}
.y84{bottom:398.426667pt;}
.y110{bottom:400.266667pt;}
.ye8{bottom:401.146667pt;}
.ya5{bottom:401.706667pt;}
.y3b{bottom:403.306667pt;}
.yd1{bottom:404.506667pt;}
.y5f{bottom:405.226667pt;}
.y17{bottom:409.226667pt;}
.ye7{bottom:424.426667pt;}
.ya4{bottom:424.986667pt;}
.y83{bottom:425.706667pt;}
.y3a{bottom:426.586667pt;}
.y10f{bottom:427.546667pt;}
.yd0{bottom:427.786667pt;}
.y5e{bottom:428.506667pt;}
.y16{bottom:432.506667pt;}
.y130{bottom:443.066667pt;}
.ye6{bottom:447.706667pt;}
.ya3{bottom:448.266667pt;}
.y82{bottom:448.906667pt;}
.y39{bottom:449.866667pt;}
.y10e{bottom:450.826667pt;}
.ycf{bottom:451.066667pt;}
.y5d{bottom:451.786667pt;}
.y15{bottom:455.786667pt;}
.y12f{bottom:466.346667pt;}
.ye5{bottom:470.986667pt;}
.ya2{bottom:471.546667pt;}
.y81{bottom:472.186667pt;}
.y38{bottom:473.146667pt;}
.yce{bottom:474.346667pt;}
.y5c{bottom:475.066667pt;}
.y10d{bottom:478.106667pt;}
.y14{bottom:479.066667pt;}
.y12e{bottom:493.626667pt;}
.ye4{bottom:494.266667pt;}
.ya1{bottom:494.826667pt;}
.y80{bottom:495.466667pt;}
.y37{bottom:496.426667pt;}
.y5b{bottom:498.346667pt;}
.y10c{bottom:501.386667pt;}
.ycd{bottom:501.626667pt;}
.y13{bottom:502.346667pt;}
.y12d{bottom:516.906667pt;}
.ya0{bottom:518.106667pt;}
.y7f{bottom:518.746667pt;}
.y36{bottom:519.706667pt;}
.ycc{bottom:520.266667pt;}
.ye3{bottom:521.546667pt;}
.y5a{bottom:521.626667pt;}
.y12{bottom:525.626667pt;}
.y10b{bottom:533.546667pt;}
.ycb{bottom:536.506667pt;}
.y7e{bottom:542.026667pt;}
.y35{bottom:542.986667pt;}
.y12c{bottom:544.186667pt;}
.y59{bottom:544.906667pt;}
.y9f{bottom:545.306667pt;}
.yf4{bottom:546.320000pt;}
.yca{bottom:552.826667pt;}
.y11{bottom:557.786667pt;}
.y9e{bottom:564.053333pt;}
.y7d{bottom:565.333333pt;}
.y10a{bottom:567.013333pt;}
.y12b{bottom:567.493333pt;}
.y58{bottom:568.213333pt;}
.yc9{bottom:569.093333pt;}
.y34{bottom:575.173333pt;}
.yc8{bottom:585.413333pt;}
.y10{bottom:586.293333pt;}
.y9d{bottom:587.973333pt;}
.y7c{bottom:588.613333pt;}
.y57{bottom:591.493333pt;}
.y12a{bottom:594.773333pt;}
.y109{bottom:595.493333pt;}
.yc7{bottom:601.653333pt;}
.y33{bottom:603.653333pt;}
.yf{bottom:609.573333pt;}
.y9b{bottom:611.893333pt;}
.y56{bottom:614.773333pt;}
.yc6{bottom:617.973333pt;}
.y108{bottom:618.773333pt;}
.y7b{bottom:619.893333pt;}
.y32{bottom:630.933333pt;}
.ye{bottom:632.853333pt;}
.yc5{bottom:634.933333pt;}
.y98{bottom:635.893333pt;}
.y55{bottom:637.973333pt;}
.y107{bottom:641.973333pt;}
.y129{bottom:645.253333pt;}
.y7a{bottom:647.173333pt;}
.yc4{bottom:651.173333pt;}
.yd{bottom:656.133333pt;}
.y96{bottom:659.813333pt;}
.y54{bottom:661.253333pt;}
.y31{bottom:663.093333pt;}
.y128{bottom:668.533333pt;}
.y106{bottom:669.253333pt;}
.y79{bottom:670.453333pt;}
.yc{bottom:683.413333pt;}
.yc3{bottom:683.733333pt;}
.y53{bottom:688.533333pt;}
.y30{bottom:691.573333pt;}
.y105{bottom:692.533333pt;}
.y78{bottom:693.733333pt;}
.y127{bottom:695.813333pt;}
.yb{bottom:710.693333pt;}
.y52{bottom:711.813333pt;}
.y104{bottom:715.813333pt;}
.yc2{bottom:716.293333pt;}
.y77{bottom:717.013333pt;}
.y126{bottom:719.093333pt;}
.y2f{bottom:723.813333pt;}
.yc1{bottom:732.533333pt;}
.y51{bottom:735.093333pt;}
.ya{bottom:736.613333pt;}
.y103{bottom:739.093333pt;}
.y76{bottom:740.293333pt;}
.y125{bottom:746.373333pt;}
.y2e{bottom:757.173333pt;}
.y50{bottom:758.373333pt;}
.y102{bottom:762.373333pt;}
.y75{bottom:763.573333pt;}
.yc0{bottom:764.453333pt;}
.y9{bottom:765.733333pt;}
.y95{bottom:767.573333pt;}
.y124{bottom:769.653333pt;}
.ybe{bottom:780.773333pt;}
.y4f{bottom:781.653333pt;}
.y2d{bottom:785.653333pt;}
.y123{bottom:792.933333pt;}
.y74{bottom:794.853333pt;}
.ybc{bottom:797.013333pt;}
.y8{bottom:799.653333pt;}
.y4e{bottom:804.933333pt;}
.y2c{bottom:808.933333pt;}
.y94{bottom:818.133333pt;}
.y122{bottom:820.213333pt;}
.y73{bottom:822.133333pt;}
.y4d{bottom:828.213333pt;}
.ybb{bottom:829.573333pt;}
.y2b{bottom:832.213333pt;}
.y7{bottom:837.493333pt;}
.y93{bottom:841.333333pt;}
.y121{bottom:843.493333pt;}
.y72{bottom:845.333333pt;}
.y4c{bottom:851.493333pt;}
.y2a{bottom:855.493333pt;}
.yb7{bottom:862.133333pt;}
.y92{bottom:864.613333pt;}
.y120{bottom:866.773333pt;}
.y71{bottom:868.613333pt;}
.y4b{bottom:874.773333pt;}
.y6{bottom:875.333333pt;}
.y29{bottom:878.773333pt;}
.y91{bottom:887.893333pt;}
.y70{bottom:891.893333pt;}
.y11f{bottom:894.053333pt;}
.yb4{bottom:894.693333pt;}
.y4a{bottom:898.053333pt;}
.y28{bottom:902.053333pt;}
.y90{bottom:911.173333pt;}
.y5{bottom:913.173333pt;}
.y6f{bottom:915.173333pt;}
.y11e{bottom:917.333333pt;}
.y49{bottom:921.333333pt;}
.y27{bottom:925.333333pt;}
.yb1{bottom:926.613333pt;}
.y8f{bottom:934.453333pt;}
.y6e{bottom:938.480000pt;}
.y11d{bottom:944.640000pt;}
.y26{bottom:948.640000pt;}
.y4{bottom:951.040000pt;}
.y6d{bottom:961.760000pt;}
.y11c{bottom:967.920000pt;}
.y25{bottom:971.920000pt;}
.y3{bottom:988.880000pt;}
.y6c{bottom:993.920000pt;}
.y24{bottom:995.120000pt;}
.y48{bottom:1049.200000pt;}
.y1{bottom:1063.840000pt;}
.h12{height:16.240000pt;}
.h14{height:16.266667pt;}
.h13{height:16.320000pt;}
.hd{height:23.280000pt;}
.h10{height:31.280000pt;}
.he{height:31.306667pt;}
.h11{height:32.560000pt;}
.h2{height:37.209687pt;}
.h7{height:42.000000pt;}
.hf{height:44.072344pt;}
.h8{height:46.760000pt;}
.h4{height:48.294844pt;}
.h5{height:51.240000pt;}
.hc{height:51.240015pt;}
.ha{height:51.240021pt;}
.hb{height:51.240026pt;}
.h6{height:52.781250pt;}
.h16{height:61.490156pt;}
.h3{height:70.462969pt;}
.h9{height:93.760000pt;}
.h15{height:226.640000pt;}
.h17{height:272.640000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:48.720000pt;}
.w5{width:48.746667pt;}
.w6{width:61.680000pt;}
.w8{width:75.600000pt;}
.w3{width:338.026667pt;}
.w9{width:406.560000pt;}
.wa{width:413.840000pt;}
.w7{width:491.333333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:7.120000pt;}
.x23{left:8.720000pt;}
.x1e{left:11.200000pt;}
.x16{left:13.840000pt;}
.x17{left:20.640000pt;}
.x10{left:25.280000pt;}
.x13{left:26.560000pt;}
.x24{left:29.546667pt;}
.x18{left:33.600000pt;}
.x1c{left:35.440000pt;}
.x2d{left:43.920000pt;}
.x11{left:49.200000pt;}
.x2e{left:57.813333pt;}
.x29{left:62.026667pt;}
.x1d{left:64.400000pt;}
.x25{left:71.146667pt;}
.x1{left:113.466655pt;}
.x19{left:115.386655pt;}
.x26{left:121.040000pt;}
.x3{left:122.826655pt;}
.x2f{left:124.720000pt;}
.x28{left:149.386655pt;}
.x20{left:152.560000pt;}
.x2a{left:155.333333pt;}
.x30{left:160.746655pt;}
.xd{left:200.586655pt;}
.xb{left:224.266655pt;}
.x21{left:244.053333pt;}
.x2b{left:248.666667pt;}
.x4{left:282.346655pt;}
.x22{left:335.573333pt;}
.x2c{left:342.000000pt;}
.x1a{left:353.573322pt;}
.x2{left:396.933322pt;}
.xf{left:451.493333pt;}
.x5{left:487.173322pt;}
.x12{left:500.213333pt;}
.x1f{left:521.493322pt;}
.x27{left:527.493322pt;}
.x14{left:548.960000pt;}
.x7{left:549.999988pt;}
.x9{left:554.399988pt;}
.x6{left:570.159988pt;}
.x8{left:588.159988pt;}
.x15{left:597.680000pt;}
.x1b{left:604.800000pt;}
.xc{left:660.239988pt;}
.xa{left:680.479988pt;}
}

