
    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_a66d98330d4d445e5c187d5f.woff')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_511ae335394e5d5a89516585.woff')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_bec3dd05345451f451856264.woff')format("woff");}.ff3{font-family:ff3;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;}
.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;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:42.875983px;}
.ls2{letter-spacing:48.239981px;}
.ls1{letter-spacing:53.603979px;}
.ls6{letter-spacing:64.079974px;}
.ls5{letter-spacing:81.755967px;}
.ls4{letter-spacing:94.920442px;}
.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;}
}
.ws2{word-spacing:-89.495964px;}
.ws6{word-spacing:-88.194205px;}
.ws5{word-spacing:-73.223971px;}
.wsa{word-spacing:-54.185738px;}
.ws7{word-spacing:-52.883979px;}
.ws4{word-spacing:-48.815980px;}
.ws1{word-spacing:-43.446223px;}
.ws8{word-spacing:-37.913745px;}
.ws9{word-spacing:-35.310226px;}
.ws3{word-spacing:-32.543987px;}
.wse{word-spacing:-27.174229px;}
.wsf{word-spacing:-24.407990px;}
.ws10{word-spacing:-21.641751px;}
.ws11{word-spacing:-19.038232px;}
.ws15{word-spacing:-17.573753px;}
.wsd{word-spacing:-10.727284px;}
.ws0{word-spacing:0.000000px;}
.wsc{word-spacing:9.403913px;}
.wsb{word-spacing:11.782132px;}
.ws14{word-spacing:47.861975px;}
.ws13{word-spacing:48.328285px;}
.ws12{word-spacing:68.493956px;}
._10{margin-left:-26.441701px;}
._6{margin-left:-19.395686px;}
._8{margin-left:-17.512020px;}
._7{margin-left:-12.438989px;}
._e{margin-left:-10.847103px;}
._a{margin-left:-9.336445px;}
._f{margin-left:-8.130235px;}
._c{margin-left:-7.065531px;}
._4{margin-left:-5.769671px;}
._1{margin-left:-4.523900px;}
._2{margin-left:-3.010781px;}
._0{margin-left:-1.088438px;}
._3{width:1.331718px;}
._5{width:2.860307px;}
._d{width:23.113130px;}
._b{width:52.916530px;}
._9{width:107.004260px;}
.fc5{color:rgb(99,37,35);}
.fc2{color:transparent;}
.fc6{color:rgb(127,127,127);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(64,64,64);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(149,55,53);}
.fs10{font-size:77.759969px;}
.fse{font-size:84.239966px;}
.fsd{font-size:95.759962px;}
.fsc{font-size:107.999957px;}
.fsb{font-size:120.239952px;}
.fs5{font-size:143.999942px;}
.fsa{font-size:156.239938px;}
.fs1{font-size:167.759933px;}
.fs4{font-size:192.239923px;}
.fs0{font-size:215.999914px;}
.fs9{font-size:233.999906px;}
.fs3{font-size:239.759904px;}
.fsf{font-size:264.239894px;}
.fs7{font-size:287.999885px;}
.fs6{font-size:323.999870px;}
.fs8{font-size:390.239844px;}
.fs2{font-size:395.999842px;}
.y37{bottom:-85.859787px;}
.yed{bottom:-85.319787px;}
.y28{bottom:-49.859802px;}
.ybd{bottom:-49.679802px;}
.ya3{bottom:-42.299805px;}
.yd7{bottom:-41.039805px;}
.ye5{bottom:-37.799806px;}
.y52{bottom:-24.479812px;}
.yb3{bottom:-22.499813px;}
.yce{bottom:-18.539814px;}
.y66{bottom:-15.299815px;}
.y2{bottom:-13.499816px;}
.y46{bottom:-8.099818px;}
.yc5{bottom:-7.739818px;}
.y0{bottom:0.000000px;}
.y91{bottom:2.160178px;}
.y68{bottom:3.780177px;}
.y87{bottom:6.480299px;}
.yaa{bottom:7.020176px;}
.ye0{bottom:7.920337px;}
.y73{bottom:8.100177px;}
.y6a{bottom:8.100185px;}
.y93{bottom:9.720178px;}
.y48{bottom:11.340182px;}
.y54{bottom:11.340188px;}
.yf3{bottom:12.060174px;}
.y2a{bottom:12.780198px;}
.y9d{bottom:14.580092px;}
.y62{bottom:14.580095px;}
.y7d{bottom:14.580102px;}
.y9f{bottom:14.580118px;}
.yf5{bottom:14.580174px;}
.y4{bottom:14.580184px;}
.ye7{bottom:14.580194px;}
.ydb{bottom:14.580195px;}
.yac{bottom:16.020176px;}
.yc7{bottom:16.020182px;}
.yd0{bottom:16.020186px;}
.yb5{bottom:16.020187px;}
.y2c{bottom:16.020198px;}
.yd9{bottom:17.820195px;}
.ya7{bottom:26.280195px;}
.y3d{bottom:26.280213px;}
.ydf{bottom:41.700000px;}
.yec{bottom:78.780326px;}
.y36{bottom:81.300325px;}
.ya{bottom:89.220321px;}
.y10{bottom:90.300321px;}
.yc2{bottom:93.720320px;}
.y9b{bottom:103.260316px;}
.yeb{bottom:111.180313px;}
.yde{bottom:114.420311px;}
.y71{bottom:114.780311px;}
.yb9{bottom:136.200303px;}
.y5c{bottom:136.380303px;}
.ya5{bottom:137.640302px;}
.y35{bottom:138.900302px;}
.y9{bottom:139.620301px;}
.y86{bottom:139.980000px;}
.yd4{bottom:140.160301px;}
.yea{bottom:143.580300px;}
.y9a{bottom:146.460299px;}
.y70{bottom:150.780297px;}
.ycb{bottom:150.960297px;}
.yf{bottom:153.480296px;}
.y17{bottom:157.620294px;}
.y7b{bottom:162.480292px;}
.yb0{bottom:165.720291px;}
.y59{bottom:170.220289px;}
.y41{bottom:171.300289px;}
.y24{bottom:175.980287px;}
.y3f{bottom:178.320286px;}
.yc1{bottom:181.020285px;}
.ydd{bottom:182.460284px;}
.y80{bottom:183.720284px;}
.y4d{bottom:186.600283px;}
.y6f{bottom:186.780282px;}
.y1d{bottom:188.940282px;}
.y99{bottom:189.660281px;}
.y8{bottom:190.020281px;}
.yfb{bottom:192.720280px;}
.y34{bottom:196.500279px;}
.y7a{bottom:198.480278px;}
.y16{bottom:200.820277px;}
.yb8{bottom:208.200274px;}
.ye9{bottom:208.380274px;}
.ye{bottom:211.080273px;}
.yd3{bottom:212.160272px;}
.y58{bottom:220.620269px;}
.y6e{bottom:222.780268px;}
.yca{bottom:222.960268px;}
.yfa{bottom:228.720266px;}
.y81{bottom:230.160265px;}
.y98{bottom:232.860264px;}
.y79{bottom:234.480263px;}
.y4c{bottom:237.000262px;}
.yaf{bottom:237.720262px;}
.yf1{bottom:239.880261px;}
.y7{bottom:240.420261px;}
.y23{bottom:240.780261px;}
.y15{bottom:244.020260px;}
.y2e{bottom:252.840256px;}
.yc0{bottom:253.020256px;}
.y1c{bottom:253.740256px;}
.y33{bottom:255.720255px;}
.y6d{bottom:258.780254px;}
.y40{bottom:260.580253px;}
.yf6{bottom:262.020252px;}
.yf9{bottom:264.720251px;}
.y3e{bottom:267.600250px;}
.yd{bottom:268.680250px;}
.y78{bottom:270.480249px;}
.y57{bottom:271.020249px;}
.ye8{bottom:273.180248px;}
.y8b{bottom:274.260247px;}
.y97{bottom:276.060247px;}
.y82{bottom:276.600247px;}
.yb7{bottom:280.200245px;}
.yd2{bottom:284.160244px;}
.y14{bottom:287.220242px;}
.y4b{bottom:287.400242px;}
.y6c{bottom:294.780239px;}
.yc9{bottom:294.960239px;}
.y6{bottom:303.600236px;}
.y22{bottom:305.580235px;}
.y77{bottom:306.480235px;}
.y8a{bottom:308.640234px;}
.yae{bottom:309.720233px;}
.ya4{bottom:314.040232px;}
.y1b{bottom:318.540230px;}
.y96{bottom:319.260229px;}
.y56{bottom:321.420229px;}
.y83{bottom:323.040228px;}
.y2d{bottom:324.840227px;}
.ybf{bottom:325.020227px;}
.y13{bottom:330.420225px;}
.y6b{bottom:334.020224px;}
.y3c{bottom:334.560000px;}
.yf0{bottom:335.100000px;}
.yf8{bottom:336.720222px;}
.ydc{bottom:337.620222px;}
.y4a{bottom:337.800222px;}
.y76{bottom:342.480220px;}
.y89{bottom:343.020220px;}
.y5d{bottom:352.020216px;}
.yb6{bottom:352.200216px;}
.yd1{bottom:356.160215px;}
.y95{bottom:362.460212px;}
.yc8{bottom:366.960210px;}
.y5{bottom:368.400210px;}
.y84{bottom:369.300209px;}
.y55{bottom:371.820208px;}
.y12{bottom:373.620208px;}
.y88{bottom:377.400206px;}
.ya6{bottom:378.120000px;}
.y75{bottom:378.480206px;}
.y2b{bottom:380.820000px;}
.ybe{bottom:381.000000px;}
.yad{bottom:381.720204px;}
.y1a{bottom:383.340204px;}
.y29{bottom:384.060000px;}
.y32{bottom:385.320203px;}
.yd8{bottom:387.840000px;}
.y49{bottom:388.200202px;}
.yda{bottom:391.080000px;}
.ye6{bottom:394.320000px;}
.y94{bottom:405.660195px;}
.yb4{bottom:408.180000px;}
.y53{bottom:410.880000px;}
.ycf{bottom:412.140000px;}
.y74{bottom:414.480191px;}
.y85{bottom:415.740191px;}
.y3{bottom:418.620000px;}
.yc6{bottom:422.940000px;}
.y69{bottom:423.300000px;}
.y47{bottom:427.260000px;}
.yab{bottom:437.700000px;}
.y92{bottom:439.140000px;}
.y72{bottom:442.380000px;}
.yf4{bottom:444.180000px;}
.y1{bottom:446.700000px;}
.y7e{bottom:462.180172px;}
.y21{bottom:465.240171px;}
.y65{bottom:467.400170px;}
.y27{bottom:468.840170px;}
.ybc{bottom:469.020170px;}
.y51{bottom:472.620168px;}
.ye4{bottom:473.700168px;}
.ya2{bottom:476.040167px;}
.y3b{bottom:484.140164px;}
.y5a{bottom:488.100162px;}
.y45{bottom:489.000162px;}
.y39{bottom:491.160161px;}
.y90{bottom:492.060160px;}
.y67{bottom:492.780160px;}
.yb2{bottom:496.200159px;}
.ycd{bottom:500.160157px;}
.yee{bottom:503.400156px;}
.y7f{bottom:508.440154px;}
.y64{bottom:509.700153px;}
.yc4{bottom:510.960153px;}
.y19{bottom:512.940152px;}
.y31{bottom:513.300152px;}
.y50{bottom:523.020148px;}
.ya9{bottom:525.720147px;}
.yef{bottom:528.960146px;}
.y20{bottom:530.040145px;}
.ya0{bottom:533.280144px;}
.y8f{bottom:535.260143px;}
.ye3{bottom:538.500142px;}
.y44{bottom:539.400141px;}
.ybb{bottom:541.020141px;}
.y26{bottom:544.080140px;}
.yf2{bottom:544.260139px;}
.yd6{bottom:549.660137px;}
.y5b{bottom:556.680134px;}
.yb1{bottom:568.200130px;}
.ycc{bottom:572.160128px;}
.y30{bottom:572.520128px;}
.y3a{bottom:573.420128px;}
.y18{bottom:577.740126px;}
.y38{bottom:580.440125px;}
.yc3{bottom:582.960124px;}
.y9e{bottom:583.500000px;}
.y60{bottom:585.300123px;}
.y63{bottom:589.620121px;}
.y43{bottom:589.800121px;}
.y1f{bottom:594.840119px;}
.ya1{bottom:597.720118px;}
.y8e{bottom:598.080118px;}
.ye2{bottom:603.300116px;}
.yba{bottom:613.020112px;}
.y8c{bottom:620.400109px;}
.y7c{bottom:622.740000px;}
.y4f{bottom:623.820108px;}
.yd5{bottom:631.740104px;}
.y11{bottom:634.800103px;}
.y2f{bottom:637.320102px;}
.y61{bottom:639.840000px;}
.y42{bottom:640.200101px;}
.y5f{bottom:642.900100px;}
.y5e{bottom:645.780099px;}
.y9c{bottom:648.300000px;}
.yc{bottom:648.840098px;}
.y8d{bottom:662.880092px;}
.ya8{bottom:673.320088px;}
.y4e{bottom:674.220087px;}
.yf7{bottom:688.800082px;}
.ye1{bottom:697.260078px;}
.y1e{bottom:722.820068px;}
.yb{bottom:753.600056px;}
.y25{bottom:770.520049px;}
.h3f{height:2.520000px;}
.hd{height:4.320000px;}
.h14{height:7.020000px;}
.hf{height:7.200000px;}
.h2f{height:7.380000px;}
.h28{height:7.560000px;}
.h2c{height:9.000000px;}
.h35{height:10.440000px;}
.h1f{height:13.320000px;}
.h39{height:13.680000px;}
.h1a{height:15.480000px;}
.h19{height:19.440000px;}
.h34{height:21.780000px;}
.h21{height:23.400000px;}
.h32{height:23.760000px;}
.h4{height:28.080000px;}
.h23{height:29.160000px;}
.h18{height:31.860000px;}
.h20{height:32.400000px;}
.h2d{height:34.560000px;}
.h1b{height:35.820000px;}
.h27{height:36.360000px;}
.h2{height:37.980000px;}
.h2e{height:38.520000px;}
.h31{height:49.320000px;}
.h29{height:50.580000px;}
.h3a{height:52.380000px;}
.h37{height:55.620000px;}
.h36{height:58.860000px;}
.h38{height:59.400000px;}
.h25{height:60.465210px;}
.h10{height:62.640000px;}
.h3e{height:63.540000px;}
.h2b{height:64.080000px;}
.h3c{height:64.129193px;}
.h30{height:65.700000px;}
.h11{height:65.880000px;}
.h1d{height:66.060000px;}
.h2a{height:68.580000px;}
.h24{height:68.733957px;}
.h22{height:77.519500px;}
.h40{height:86.305044px;}
.h3b{height:89.068324px;}
.h1e{height:99.162734px;}
.h26{height:103.359334px;}
.h3d{height:111.600000px;}
.h17{height:112.140000px;}
.h9{height:118.757765px;}
.h1c{height:128.852175px;}
.h13{height:137.984710px;}
.h5{height:138.352796px;}
.h12{height:143.964786px;}
.h8{height:158.541616px;}
.he{height:159.800913px;}
.hc{height:172.093291px;}
.h3{height:178.136647px;}
.h16{height:192.981368px;}
.h7{height:197.731679px;}
.h33{height:217.920499px;}
.hb{height:237.515530px;}
.ha{height:267.204971px;}
.h15{height:280.103794px;}
.h6{height:326.583854px;}
.h0{height:892.920000px;}
.h1{height:893.250000px;}
.w1b{width:18.360000px;}
.w3{width:21.060000px;}
.we{width:30.060000px;}
.w11{width:32.580000px;}
.wf{width:42.120000px;}
.w10{width:45.360000px;}
.w12{width:46.980000px;}
.w21{width:49.860000px;}
.w13{width:162.360000px;}
.w5{width:186.120000px;}
.w9{width:249.660000px;}
.w22{width:262.260000px;}
.wa{width:269.460000px;}
.w20{width:297.180000px;}
.w1a{width:301.500000px;}
.w23{width:311.040000px;}
.w1f{width:347.040000px;}
.w19{width:372.600000px;}
.w1d{width:415.800000px;}
.w7{width:467.100000px;}
.w28{width:478.800000px;}
.w24{width:521.820000px;}
.w6{width:580.860000px;}
.w1e{width:613.440000px;}
.w1c{width:658.800000px;}
.wc{width:742.860000px;}
.w26{width:757.800000px;}
.w27{width:803.880000px;}
.w2{width:833.580000px;}
.w25{width:849.960000px;}
.w18{width:858.780000px;}
.w8{width:887.040000px;}
.w4{width:895.140000px;}
.wd{width:919.080000px;}
.w15{width:945.900000px;}
.w14{width:976.500000px;}
.w17{width:998.640000px;}
.wb{width:1001.520000px;}
.w16{width:1019.880000px;}
.w0{width:1262.835000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x47{left:101.519959px;}
.x9{left:122.759951px;}
.x3a{left:131.219948px;}
.x2b{left:135.359946px;}
.x41{left:139.679944px;}
.x23{left:149.759940px;}
.x3f{left:150.840000px;}
.x8{left:154.619938px;}
.x14{left:156.779937px;}
.x5e{left:158.039937px;}
.x51{left:165.239934px;}
.x40{left:167.759933px;}
.x18{left:169.379932px;}
.x16{left:173.699931px;}
.x3b{left:182.339927px;}
.x3c{left:194.220000px;}
.x19{left:203.760000px;}
.x45{left:210.599916px;}
.x1{left:214.020000px;}
.x49{left:219.059912px;}
.x2c{left:223.199911px;}
.x3d{left:224.820000px;}
.x4c{left:227.519909px;}
.x15{left:237.419905px;}
.x50{left:244.619902px;}
.x32{left:251.640000px;}
.x1d{left:268.199893px;}
.x1a{left:271.439891px;}
.x2{left:274.679890px;}
.x2a{left:283.680000px;}
.x13{left:313.559875px;}
.x28{left:322.559871px;}
.x1b{left:325.439870px;}
.x34{left:340.919864px;}
.x29{left:349.559860px;}
.x1e{left:352.079859px;}
.x35{left:354.599858px;}
.x21{left:359.099856px;}
.x27{left:409.499836px;}
.x5d{left:417.959833px;}
.xb{left:422.459831px;}
.x43{left:426.779829px;}
.x30{left:427.860000px;}
.x4a{left:432.720000px;}
.x7{left:442.619823px;}
.x5{left:449.999820px;}
.x4b{left:451.080000px;}
.x4{left:461.339815px;}
.x4d{left:469.800000px;}
.x5c{left:474.659810px;}
.x25{left:479.879808px;}
.x6{left:482.399807px;}
.x24{left:490.499804px;}
.x5f{left:513.900000px;}
.x3{left:514.979794px;}
.x17{left:521.279791px;}
.x56{left:531.719787px;}
.x5a{left:536.580000px;}
.x1c{left:538.740000px;}
.xc{left:558.899776px;}
.x36{left:563.040000px;}
.x57{left:569.519772px;}
.x26{left:601.019760px;}
.x54{left:603.719759px;}
.x33{left:605.519758px;}
.x58{left:612.719755px;}
.x48{left:641.519743px;}
.xe{left:644.939742px;}
.x12{left:653.939738px;}
.xd{left:658.619737px;}
.x63{left:670.859732px;}
.xa{left:675.539730px;}
.x55{left:685.979726px;}
.x2d{left:688.319725px;}
.x61{left:690.479724px;}
.x3e{left:692.099723px;}
.x11{left:694.799722px;}
.x46{left:696.779721px;}
.x22{left:705.599718px;}
.x2f{left:719.279712px;}
.xf{left:720.899712px;}
.x5b{left:734.759706px;}
.x42{left:749.160000px;}
.x53{left:766.259693px;}
.x2e{left:776.160000px;}
.x59{left:784.259686px;}
.x4e{left:791.460000px;}
.x31{left:800.819680px;}
.x44{left:804.779678px;}
.x1f{left:809.819676px;}
.x37{left:821.880000px;}
.x4f{left:841.320000px;}
.x20{left:856.259657px;}
.x60{left:922.679631px;}
.x10{left:937.439625px;}
.x38{left:941.760000px;}
.x52{left:1013.039595px;}
.x62{left:1064.879574px;}
.x39{left:1071.179572px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:38.111985pt;}
.ls2{letter-spacing:42.879983pt;}
.ls1{letter-spacing:47.647981pt;}
.ls6{letter-spacing:56.959977pt;}
.ls5{letter-spacing:72.671971pt;}
.ls4{letter-spacing:84.373726pt;}
.ws2{word-spacing:-79.551968pt;}
.ws6{word-spacing:-78.394849pt;}
.ws5{word-spacing:-65.087974pt;}
.wsa{word-spacing:-48.165101pt;}
.ws7{word-spacing:-47.007981pt;}
.ws4{word-spacing:-43.391983pt;}
.ws1{word-spacing:-38.618865pt;}
.ws8{word-spacing:-33.701107pt;}
.ws9{word-spacing:-31.386867pt;}
.ws3{word-spacing:-28.927988pt;}
.wse{word-spacing:-24.154870pt;}
.wsf{word-spacing:-21.695991pt;}
.ws10{word-spacing:-19.237112pt;}
.ws11{word-spacing:-16.922873pt;}
.ws15{word-spacing:-15.621114pt;}
.wsd{word-spacing:-9.535364pt;}
.ws0{word-spacing:0.000000pt;}
.wsc{word-spacing:8.359033pt;}
.wsb{word-spacing:10.473006pt;}
.ws14{word-spacing:42.543978pt;}
.ws13{word-spacing:42.958476pt;}
.ws12{word-spacing:60.883516pt;}
._10{margin-left:-23.503735pt;}
._6{margin-left:-17.240610pt;}
._8{margin-left:-15.566240pt;}
._7{margin-left:-11.056879pt;}
._e{margin-left:-9.641869pt;}
._a{margin-left:-8.299062pt;}
._f{margin-left:-7.226875pt;}
._c{margin-left:-6.280472pt;}
._4{margin-left:-5.128596pt;}
._1{margin-left:-4.021244pt;}
._2{margin-left:-2.676249pt;}
._0{margin-left:-0.967500pt;}
._3{width:1.183750pt;}
._5{width:2.542495pt;}
._d{width:20.545005pt;}
._b{width:47.036916pt;}
._9{width:95.114898pt;}
.fs10{font-size:69.119972pt;}
.fse{font-size:74.879970pt;}
.fsd{font-size:85.119966pt;}
.fsc{font-size:95.999962pt;}
.fsb{font-size:106.879957pt;}
.fs5{font-size:127.999949pt;}
.fsa{font-size:138.879944pt;}
.fs1{font-size:149.119940pt;}
.fs4{font-size:170.879932pt;}
.fs0{font-size:191.999923pt;}
.fs9{font-size:207.999917pt;}
.fs3{font-size:213.119915pt;}
.fsf{font-size:234.879906pt;}
.fs7{font-size:255.999898pt;}
.fs6{font-size:287.999885pt;}
.fs8{font-size:346.879861pt;}
.fs2{font-size:351.999859pt;}
.y37{bottom:-76.319811pt;}
.yed{bottom:-75.839811pt;}
.y28{bottom:-44.319824pt;}
.ybd{bottom:-44.159824pt;}
.ya3{bottom:-37.599826pt;}
.yd7{bottom:-36.479827pt;}
.ye5{bottom:-33.599828pt;}
.y52{bottom:-21.759833pt;}
.yb3{bottom:-19.999833pt;}
.yce{bottom:-16.479835pt;}
.y66{bottom:-13.599836pt;}
.y2{bottom:-11.999837pt;}
.y46{bottom:-7.199838pt;}
.yc5{bottom:-6.879839pt;}
.y0{bottom:0.000000pt;}
.y91{bottom:1.920158pt;}
.y68{bottom:3.360157pt;}
.y87{bottom:5.760265pt;}
.yaa{bottom:6.240156pt;}
.ye0{bottom:7.040300pt;}
.y73{bottom:7.200157pt;}
.y6a{bottom:7.200164pt;}
.y93{bottom:8.640158pt;}
.y48{bottom:10.080162pt;}
.y54{bottom:10.080167pt;}
.yf3{bottom:10.720154pt;}
.y2a{bottom:11.360176pt;}
.y9d{bottom:12.960082pt;}
.y62{bottom:12.960085pt;}
.y7d{bottom:12.960091pt;}
.y9f{bottom:12.960105pt;}
.yf5{bottom:12.960154pt;}
.y4{bottom:12.960163pt;}
.ye7{bottom:12.960172pt;}
.ydb{bottom:12.960173pt;}
.yac{bottom:14.240156pt;}
.yc7{bottom:14.240161pt;}
.yd0{bottom:14.240165pt;}
.yb5{bottom:14.240167pt;}
.y2c{bottom:14.240176pt;}
.yd9{bottom:15.840173pt;}
.ya7{bottom:23.360174pt;}
.y3d{bottom:23.360189pt;}
.ydf{bottom:37.066667pt;}
.yec{bottom:70.026956pt;}
.y36{bottom:72.266955pt;}
.ya{bottom:79.306952pt;}
.y10{bottom:80.266952pt;}
.yc2{bottom:83.306951pt;}
.y9b{bottom:91.786947pt;}
.yeb{bottom:98.826945pt;}
.yde{bottom:101.706943pt;}
.y71{bottom:102.026943pt;}
.yb9{bottom:121.066936pt;}
.y5c{bottom:121.226936pt;}
.ya5{bottom:122.346935pt;}
.y35{bottom:123.466935pt;}
.y9{bottom:124.106935pt;}
.y86{bottom:124.426667pt;}
.yd4{bottom:124.586934pt;}
.yea{bottom:127.626933pt;}
.y9a{bottom:130.186932pt;}
.y70{bottom:134.026931pt;}
.ycb{bottom:134.186930pt;}
.yf{bottom:136.426930pt;}
.y17{bottom:140.106928pt;}
.y7b{bottom:144.426926pt;}
.yb0{bottom:147.306925pt;}
.y59{bottom:151.306924pt;}
.y41{bottom:152.266923pt;}
.y24{bottom:156.426922pt;}
.y3f{bottom:158.506921pt;}
.yc1{bottom:160.906920pt;}
.ydd{bottom:162.186919pt;}
.y80{bottom:163.306919pt;}
.y4d{bottom:165.866918pt;}
.y6f{bottom:166.026918pt;}
.y1d{bottom:167.946917pt;}
.y99{bottom:168.586917pt;}
.y8{bottom:168.906917pt;}
.yfb{bottom:171.306916pt;}
.y34{bottom:174.666914pt;}
.y7a{bottom:176.426914pt;}
.y16{bottom:178.506913pt;}
.yb8{bottom:185.066910pt;}
.ye9{bottom:185.226910pt;}
.ye{bottom:187.626909pt;}
.yd3{bottom:188.586909pt;}
.y58{bottom:196.106906pt;}
.y6e{bottom:198.026905pt;}
.yca{bottom:198.186905pt;}
.yfa{bottom:203.306903pt;}
.y81{bottom:204.586902pt;}
.y98{bottom:206.986901pt;}
.y79{bottom:208.426901pt;}
.y4c{bottom:210.666900pt;}
.yaf{bottom:211.306900pt;}
.yf1{bottom:213.226899pt;}
.y7{bottom:213.706899pt;}
.y23{bottom:214.026899pt;}
.y15{bottom:216.906897pt;}
.y2e{bottom:224.746894pt;}
.yc0{bottom:224.906894pt;}
.y1c{bottom:225.546894pt;}
.y33{bottom:227.306893pt;}
.y6d{bottom:230.026892pt;}
.y40{bottom:231.626891pt;}
.yf6{bottom:232.906891pt;}
.yf9{bottom:235.306890pt;}
.y3e{bottom:237.866889pt;}
.yd{bottom:238.826889pt;}
.y78{bottom:240.426888pt;}
.y57{bottom:240.906888pt;}
.ye8{bottom:242.826887pt;}
.y8b{bottom:243.786887pt;}
.y97{bottom:245.386886pt;}
.y82{bottom:245.866886pt;}
.yb7{bottom:249.066885pt;}
.yd2{bottom:252.586883pt;}
.y14{bottom:255.306882pt;}
.y4b{bottom:255.466882pt;}
.y6c{bottom:262.026879pt;}
.yc9{bottom:262.186879pt;}
.y6{bottom:269.866876pt;}
.y22{bottom:271.626875pt;}
.y77{bottom:272.426875pt;}
.y8a{bottom:274.346874pt;}
.yae{bottom:275.306874pt;}
.ya4{bottom:279.146872pt;}
.y1b{bottom:283.146871pt;}
.y96{bottom:283.786871pt;}
.y56{bottom:285.706870pt;}
.y83{bottom:287.146869pt;}
.y2d{bottom:288.746869pt;}
.ybf{bottom:288.906869pt;}
.y13{bottom:293.706867pt;}
.y6b{bottom:296.906865pt;}
.y3c{bottom:297.386667pt;}
.yf0{bottom:297.866667pt;}
.yf8{bottom:299.306864pt;}
.ydc{bottom:300.106864pt;}
.y4a{bottom:300.266864pt;}
.y76{bottom:304.426862pt;}
.y89{bottom:304.906862pt;}
.y5d{bottom:312.906859pt;}
.yb6{bottom:313.066859pt;}
.yd1{bottom:316.586858pt;}
.y95{bottom:322.186855pt;}
.yc8{bottom:326.186854pt;}
.y5{bottom:327.466853pt;}
.y84{bottom:328.266853pt;}
.y55{bottom:330.506852pt;}
.y12{bottom:332.106851pt;}
.y88{bottom:335.466850pt;}
.ya6{bottom:336.106667pt;}
.y75{bottom:336.426850pt;}
.y2b{bottom:338.506667pt;}
.ybe{bottom:338.666667pt;}
.yad{bottom:339.306848pt;}
.y1a{bottom:340.746848pt;}
.y29{bottom:341.386667pt;}
.y32{bottom:342.506847pt;}
.yd8{bottom:344.746667pt;}
.y49{bottom:345.066846pt;}
.yda{bottom:347.626667pt;}
.ye6{bottom:350.506667pt;}
.y94{bottom:360.586840pt;}
.yb4{bottom:362.826667pt;}
.y53{bottom:365.226667pt;}
.ycf{bottom:366.346667pt;}
.y74{bottom:368.426837pt;}
.y85{bottom:369.546836pt;}
.y3{bottom:372.106667pt;}
.yc6{bottom:375.946667pt;}
.y69{bottom:376.266667pt;}
.y47{bottom:379.786667pt;}
.yab{bottom:389.066667pt;}
.y92{bottom:390.346667pt;}
.y72{bottom:393.226667pt;}
.yf4{bottom:394.826667pt;}
.y1{bottom:397.066667pt;}
.y7e{bottom:410.826820pt;}
.y21{bottom:413.546819pt;}
.y65{bottom:415.466818pt;}
.y27{bottom:416.746817pt;}
.ybc{bottom:416.906817pt;}
.y51{bottom:420.106816pt;}
.ye4{bottom:421.066816pt;}
.ya2{bottom:423.146815pt;}
.y3b{bottom:430.346812pt;}
.y5a{bottom:433.866811pt;}
.y45{bottom:434.666810pt;}
.y39{bottom:436.586810pt;}
.y90{bottom:437.386809pt;}
.y67{bottom:438.026809pt;}
.yb2{bottom:441.066808pt;}
.ycd{bottom:444.586806pt;}
.yee{bottom:447.466805pt;}
.y7f{bottom:451.946803pt;}
.y64{bottom:453.066803pt;}
.yc4{bottom:454.186802pt;}
.y19{bottom:455.946802pt;}
.y31{bottom:456.266802pt;}
.y50{bottom:464.906798pt;}
.ya9{bottom:467.306797pt;}
.yef{bottom:470.186796pt;}
.y20{bottom:471.146796pt;}
.ya0{bottom:474.026795pt;}
.y8f{bottom:475.786794pt;}
.ye3{bottom:478.666793pt;}
.y44{bottom:479.466792pt;}
.ybb{bottom:480.906792pt;}
.y26{bottom:483.626791pt;}
.yf2{bottom:483.786791pt;}
.yd6{bottom:488.586789pt;}
.y5b{bottom:494.826786pt;}
.yb1{bottom:505.066782pt;}
.ycc{bottom:508.586781pt;}
.y30{bottom:508.906781pt;}
.y3a{bottom:509.706780pt;}
.y18{bottom:513.546779pt;}
.y38{bottom:515.946778pt;}
.yc3{bottom:518.186777pt;}
.y9e{bottom:518.666667pt;}
.y60{bottom:520.266776pt;}
.y63{bottom:524.106775pt;}
.y43{bottom:524.266774pt;}
.y1f{bottom:528.746773pt;}
.ya1{bottom:531.306772pt;}
.y8e{bottom:531.626771pt;}
.ye2{bottom:536.266770pt;}
.yba{bottom:544.906766pt;}
.y8c{bottom:551.466764pt;}
.y7c{bottom:553.546667pt;}
.y4f{bottom:554.506762pt;}
.yd5{bottom:561.546760pt;}
.y11{bottom:564.266758pt;}
.y2f{bottom:566.506758pt;}
.y61{bottom:568.746667pt;}
.y42{bottom:569.066757pt;}
.y5f{bottom:571.466756pt;}
.y5e{bottom:574.026755pt;}
.y9c{bottom:576.266667pt;}
.yc{bottom:576.746753pt;}
.y8d{bottom:589.226748pt;}
.ya8{bottom:598.506745pt;}
.y4e{bottom:599.306744pt;}
.yf7{bottom:612.266739pt;}
.ye1{bottom:619.786736pt;}
.y1e{bottom:642.506727pt;}
.yb{bottom:669.866716pt;}
.y25{bottom:684.906710pt;}
.h3f{height:2.240000pt;}
.hd{height:3.840000pt;}
.h14{height:6.240000pt;}
.hf{height:6.400000pt;}
.h2f{height:6.560000pt;}
.h28{height:6.720000pt;}
.h2c{height:8.000000pt;}
.h35{height:9.280000pt;}
.h1f{height:11.840000pt;}
.h39{height:12.160000pt;}
.h1a{height:13.760000pt;}
.h19{height:17.280000pt;}
.h34{height:19.360000pt;}
.h21{height:20.800000pt;}
.h32{height:21.120000pt;}
.h4{height:24.960000pt;}
.h23{height:25.920000pt;}
.h18{height:28.320000pt;}
.h20{height:28.800000pt;}
.h2d{height:30.720000pt;}
.h1b{height:31.840000pt;}
.h27{height:32.320000pt;}
.h2{height:33.760000pt;}
.h2e{height:34.240000pt;}
.h31{height:43.840000pt;}
.h29{height:44.960000pt;}
.h3a{height:46.560000pt;}
.h37{height:49.440000pt;}
.h36{height:52.320000pt;}
.h38{height:52.800000pt;}
.h25{height:53.746854pt;}
.h10{height:55.680000pt;}
.h3e{height:56.480000pt;}
.h2b{height:56.960000pt;}
.h3c{height:57.003727pt;}
.h30{height:58.400000pt;}
.h11{height:58.560000pt;}
.h1d{height:58.720000pt;}
.h2a{height:60.960000pt;}
.h24{height:61.096851pt;}
.h22{height:68.906222pt;}
.h40{height:76.715594pt;}
.h3b{height:79.171843pt;}
.h1e{height:88.144652pt;}
.h26{height:91.874963pt;}
.h3d{height:99.200000pt;}
.h17{height:99.680000pt;}
.h9{height:105.562458pt;}
.h1c{height:114.535267pt;}
.h13{height:122.653076pt;}
.h5{height:122.980263pt;}
.h12{height:127.968699pt;}
.h8{height:140.925881pt;}
.he{height:142.045256pt;}
.hc{height:152.971814pt;}
.h3{height:158.343687pt;}
.h16{height:171.538994pt;}
.h7{height:175.761492pt;}
.h33{height:193.707110pt;}
.hb{height:211.124916pt;}
.ha{height:237.515530pt;}
.h15{height:248.981150pt;}
.h6{height:290.296759pt;}
.h0{height:793.706667pt;}
.h1{height:794.000000pt;}
.w1b{width:16.320000pt;}
.w3{width:18.720000pt;}
.we{width:26.720000pt;}
.w11{width:28.960000pt;}
.wf{width:37.440000pt;}
.w10{width:40.320000pt;}
.w12{width:41.760000pt;}
.w21{width:44.320000pt;}
.w13{width:144.320000pt;}
.w5{width:165.440000pt;}
.w9{width:221.920000pt;}
.w22{width:233.120000pt;}
.wa{width:239.520000pt;}
.w20{width:264.160000pt;}
.w1a{width:268.000000pt;}
.w23{width:276.480000pt;}
.w1f{width:308.480000pt;}
.w19{width:331.200000pt;}
.w1d{width:369.600000pt;}
.w7{width:415.200000pt;}
.w28{width:425.600000pt;}
.w24{width:463.840000pt;}
.w6{width:516.320000pt;}
.w1e{width:545.280000pt;}
.w1c{width:585.600000pt;}
.wc{width:660.320000pt;}
.w26{width:673.600000pt;}
.w27{width:714.560000pt;}
.w2{width:740.960000pt;}
.w25{width:755.520000pt;}
.w18{width:763.360000pt;}
.w8{width:788.480000pt;}
.w4{width:795.680000pt;}
.wd{width:816.960000pt;}
.w15{width:840.800000pt;}
.w14{width:868.000000pt;}
.w17{width:887.680000pt;}
.wb{width:890.240000pt;}
.w16{width:906.560000pt;}
.w0{width:1122.520000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x47{left:90.239964pt;}
.x9{left:109.119956pt;}
.x3a{left:116.639953pt;}
.x2b{left:120.319952pt;}
.x41{left:124.159950pt;}
.x23{left:133.119947pt;}
.x3f{left:134.080000pt;}
.x8{left:137.439945pt;}
.x14{left:139.359944pt;}
.x5e{left:140.479944pt;}
.x51{left:146.879941pt;}
.x40{left:149.119940pt;}
.x18{left:150.559940pt;}
.x16{left:154.399938pt;}
.x3b{left:162.079935pt;}
.x3c{left:172.640000pt;}
.x19{left:181.120000pt;}
.x45{left:187.199925pt;}
.x1{left:190.240000pt;}
.x49{left:194.719922pt;}
.x2c{left:198.399921pt;}
.x3d{left:199.840000pt;}
.x4c{left:202.239919pt;}
.x15{left:211.039916pt;}
.x50{left:217.439913pt;}
.x32{left:223.680000pt;}
.x1d{left:238.399905pt;}
.x1a{left:241.279903pt;}
.x2{left:244.159902pt;}
.x2a{left:252.160000pt;}
.x13{left:278.719889pt;}
.x28{left:286.719885pt;}
.x1b{left:289.279884pt;}
.x34{left:303.039879pt;}
.x29{left:310.719876pt;}
.x1e{left:312.959875pt;}
.x35{left:315.199874pt;}
.x21{left:319.199872pt;}
.x27{left:363.999854pt;}
.x5d{left:371.519851pt;}
.xb{left:375.519850pt;}
.x43{left:379.359848pt;}
.x30{left:380.320000pt;}
.x4a{left:384.640000pt;}
.x7{left:393.439843pt;}
.x5{left:399.999840pt;}
.x4b{left:400.960000pt;}
.x4{left:410.079836pt;}
.x4d{left:417.600000pt;}
.x5c{left:421.919831pt;}
.x25{left:426.559829pt;}
.x6{left:428.799828pt;}
.x24{left:435.999826pt;}
.x5f{left:456.800000pt;}
.x3{left:457.759817pt;}
.x17{left:463.359815pt;}
.x56{left:472.639811pt;}
.x5a{left:476.960000pt;}
.x1c{left:478.880000pt;}
.xc{left:496.799801pt;}
.x36{left:500.480000pt;}
.x57{left:506.239798pt;}
.x26{left:534.239786pt;}
.x54{left:536.639785pt;}
.x33{left:538.239785pt;}
.x58{left:544.639782pt;}
.x48{left:570.239772pt;}
.xe{left:573.279771pt;}
.x12{left:581.279767pt;}
.xd{left:585.439766pt;}
.x63{left:596.319761pt;}
.xa{left:600.479760pt;}
.x55{left:609.759756pt;}
.x2d{left:611.839755pt;}
.x61{left:613.759754pt;}
.x3e{left:615.199754pt;}
.x11{left:617.599753pt;}
.x46{left:619.359752pt;}
.x22{left:627.199749pt;}
.x2f{left:639.359744pt;}
.xf{left:640.799744pt;}
.x5b{left:653.119739pt;}
.x42{left:665.920000pt;}
.x53{left:681.119728pt;}
.x2e{left:689.920000pt;}
.x59{left:697.119721pt;}
.x4e{left:703.520000pt;}
.x31{left:711.839715pt;}
.x44{left:715.359714pt;}
.x1f{left:719.839712pt;}
.x37{left:730.560000pt;}
.x4f{left:747.840000pt;}
.x20{left:761.119696pt;}
.x60{left:820.159672pt;}
.x10{left:833.279667pt;}
.x38{left:837.120000pt;}
.x52{left:900.479640pt;}
.x62{left:946.559621pt;}
.x39{left:952.159619pt;}
}

