<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title>시누에 오덕시대~</title>
		<link>http://odoacer.kr/</link>
		<description></description>
		<language>ko</language>
		<pubDate>Mon, 30 Aug 2010 13:17:18 +0900</pubDate>
		<generator>Textcube 1.7.6 : Staccato</generator>
		<image>
		<title>시누에 오덕시대~</title>
		<url>http://odoacer.kr/attach/1/1217088703.jpg</url>
		<link>http://odoacer.kr/</link>
		<width>511</width>
		<height>1011</height>
		<description></description>
		</image>
		<item>
			<title>소녀시대 라디오 플레이어</title>
			<link>http://odoacer.kr/entry/%EC%86%8C%EB%85%80%EC%8B%9C%EB%8C%80-%EB%9D%BC%EB%94%94%EC%98%A4-%ED%94%8C%EB%A0%88%EC%9D%B4%EC%96%B4</link>
			<description>&lt;br /&gt;&lt;SPAN style=&quot;LINE-HEIGHT: 160%&quot;&gt;
&lt;P style=&quot;TEXT-ALIGN: center&quot;&gt;&lt;EMBED height=400 type=application/x-shockwave-flash width=700 src=http://cfile25.uf.tistory.com/image/114520274C77913D5A8813&gt;&lt;/P&gt;&lt;/SPAN&gt;</description>
			<category>난 소시빠~~</category>
			<author>(시누)</author>
			<guid>http://odoacer.kr/241</guid>
			<comments>http://odoacer.kr/entry/%EC%86%8C%EB%85%80%EC%8B%9C%EB%8C%80-%EB%9D%BC%EB%94%94%EC%98%A4-%ED%94%8C%EB%A0%88%EC%9D%B4%EC%96%B4#entry241comment</comments>
			<pubDate>Sun, 29 Aug 2010 12:50:27 +0900</pubDate>
		</item>
		<item>
			<title>No space left on device: Cannot create SSLMutex</title>
			<link>http://odoacer.kr/entry/No-space-left-on-device-Cannot-create-SSLMutex</link>
			<description>아침에 메일을 열었더니만 아파치 리스트타그 1분마다 되고 있다는 메일이 수백통이...ㅜ.ㅜ&lt;br&gt;잽싸게 에러 로그를 열었더니 &lt;br&gt;No space left on device: Cannot create SSLMutex&lt;br&gt;구글에서 찾아 보니&lt;br&gt;&lt;br&gt;&quot;&lt;br&gt;/etc/sysctl.conf 안에 수정(없음 추가)&lt;br&gt;&lt;br&gt;kernel.msgmni = 1024&lt;br&gt;kernel.sem = 250 256000 32 1024&lt;br&gt;&lt;br&gt;sysctl -p (적용 후 확인)&lt;br&gt;&lt;br&gt;아파치쪽 문제면 아파지 재시작&lt;br&gt;&quot;&lt;br&gt;&lt;br&gt;깔끔하게 해결 됐는데...&lt;br&gt;이거 뭐지 커널에 뭘 추가 한거야~~&lt;br&gt;&lt;br&gt;이유도 좀 써 달라고~~&lt;br&gt;</description>
			<category>리눅스에 관련된 글</category>
			<author>(시누)</author>
			<guid>http://odoacer.kr/240</guid>
			<comments>http://odoacer.kr/entry/No-space-left-on-device-Cannot-create-SSLMutex#entry240comment</comments>
			<pubDate>Thu, 19 Aug 2010 09:14:49 +0900</pubDate>
		</item>
		<item>
			<title>Warning: Cannot modify header information - headers already sent by (output started at</title>
			<link>http://odoacer.kr/entry/Warning-Cannot-modify-header-information-headers-already-sent-by-output-started-at</link>
			<description>Warning: Cannot modify header information - headers already sent by (output started at &lt;br&gt;&lt;br&gt;&lt;br&gt;오늘 나를 삽질 시킨 php 오류 메시지 였습니다...&lt;br&gt;&lt;br&gt;구글링 하니까 바로 나왔습니다...&lt;br&gt;&lt;br&gt;http://topnice.springnote.com/pages/2330954&lt;br&gt;&lt;br&gt;&lt;blockquote&gt;
          &lt;p&gt;header() 함수를 사용하기 전에 그 어떤 출력(공백/엔터/HTML등)도 선행되어서는 안됩니다.&lt;/p&gt;
          &lt;br /&gt;
          &lt;p&gt;그러나, 사정상 조건/분기등에 의해 (물론 피할 수 있게끔 코딩하는게 최선이지만) 뒤늦은 header() 를 사용해야 할 수가 있는데요.&lt;/p&gt;
          &lt;p&gt;이럴때는 PHP4 이상의 output buffering 기능을 사용하실 수 있습니다.&lt;/p&gt;
          &lt;br /&gt;
          &lt;p&gt;&lt;span style=&quot;font-family: 굴림체;&quot;&gt;소스 코드의 최상단에 (HTML 및 그 어떤 출력도 나오기 전) 다음과 같은 소스를 삽입하세요.&lt;/span&gt;&lt;/p&gt;
          &lt;p&gt;&lt;span style=&quot;font-family: 굴림체;&quot;&gt;&amp;nbsp;&lt;/span&gt;&amp;nbsp;&lt;/p&gt;
          &lt;p&gt;&lt;span style=&quot;font-family: 굴림체;&quot;&gt;&lt;strong&gt;ob_start();&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;
          &lt;p&gt;&lt;span style=&quot;font-family: 굴림체;&quot;&gt;&amp;nbsp;&lt;/span&gt;&amp;nbsp;&lt;/p&gt;
          &lt;p&gt;&lt;span style=&quot;font-family: 굴림체;&quot;&gt;HTML이나 기타 출력되는 값을 메모리에 저장해 두었다가 프로그램 종료시 한꺼번에 내보내는 명령입니다.&lt;/span&gt;&lt;/p&gt;
          &lt;p&gt;&lt;span style=&quot;font-family: 굴림체;&quot;&gt;이 펑션이 호출된 이후에 header() 를 만나면 어떤 HTML 출력과도 관계 없이 정상 실행합니다.&lt;/span&gt;&lt;/p&gt;
          &lt;p&gt;&lt;span style=&quot;font-family: 굴림체;&quot;&gt;&amp;nbsp;&lt;/span&gt;&amp;nbsp;&lt;/p&gt;
          &lt;p&gt;&lt;span style=&quot;font-family: 굴림체;&quot;&gt;단, 기존의 게시판이나 기타 프로그램을 수정하고 
계시며, 해당 프로그램에서도 ob_start()를 중복 사용하고 있다면, 해당 프로그램에서의 ob_start() 사용 용도에 따라
 HTML출력에 또다른 문제가 발생할 수 있습니다(일반적인 경우 문제 없습니다)&lt;/span&gt;&lt;/p&gt;
          &lt;p&gt;&lt;span style=&quot;font-family: 굴림체;&quot;&gt;&amp;nbsp;&lt;/span&gt;&amp;nbsp;&lt;/p&gt;
          &lt;p&gt;&lt;span style=&quot;font-family: 굴림체;&quot;&gt;출처 : &lt;span style=&quot;color: rgb(0, 0, 255);&quot;&gt;지식인&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
          &lt;/blockquote&gt;아 이분도 지식인에서 퍼오신거네요...&lt;br&gt;</description>
			<category>리눅스에 관련된 글</category>
			<author>(시누)</author>
			<guid>http://odoacer.kr/239</guid>
			<comments>http://odoacer.kr/entry/Warning-Cannot-modify-header-information-headers-already-sent-by-output-started-at#entry239comment</comments>
			<pubDate>Wed, 18 Aug 2010 15:10:09 +0900</pubDate>
		</item>
		<item>
			<title>iconv 사용법</title>
			<link>http://odoacer.kr/entry/iconv-%EC%82%AC%EC%9A%A9%EB%B2%95</link>
			<description>iconv는 character set을 변경해 주는 툴이다.&lt;br&gt;&lt;br&gt;요즘 인코딩이 Unicode로 가는 추세라..&lt;br&gt;아직
 Unicode를 지원하지 않는 편집기로 보기 위해서는 character set의 변경이 필수적이다.&lt;br&gt;&lt;br&gt;Veritas 
Backup Exec의 작업로그 파일을 vi에서 보기&lt;span id=&quot;callbacknestpgclkstistorycom1719771&quot; style=&quot;width: 1px; height: 1px; float: right;&quot;&gt;&lt;embed allowscriptaccess=&quot;always&quot; id=&quot;bootstrapperpgclkstistorycom1719771&quot; src=&quot;http://pgclks.tistory.com/plugin/CallBack_bootstrapperSrc?nil_profile=tistory&amp;amp;nil_type=copied_post&quot; wmode=&quot;transparent&quot; type=&quot;application/x-shockwave-flash&quot; enablecontextmenu=&quot;false&quot; flashvars=&quot;&amp;amp;callbackId=pgclkstistorycom1719771&amp;amp;host=http://pgclks.tistory.com&amp;amp;embedCodeSrc=http%3A%2F%2Fpgclks.tistory.com%2Fplugin%2FCallBack_bootstrapper%3F%26src%3Dhttp%3A%2F%2Fcfs.tistory.com%2Fblog%2Fplugins%2FCallBack%2Fcallback%26id%3D171%26callbackId%3Dpgclkstistorycom1719771%26destDocId%3Dcallbacknestpgclkstistorycom1719771%26host%3Dhttp%3A%2F%2Fpgclks.tistory.com%26float%3Dleft&quot; swliveconnect=&quot;true&quot; height=&quot;1&quot; width=&quot;1&quot;&gt;&lt;/span&gt; 위해 변환하는 과정을 적어본다.&lt;br&gt;&lt;br&gt;사
용법)&lt;br&gt;iconv -f 변경전CharacterSet -t 변경후CharacterSet 대상파일 &amp;gt; 저장파일&lt;br&gt;&lt;br&gt;실
예)&lt;br&gt;iconv -f UTF-16 -t EUCKR LOGFILE5351.xml &amp;gt; 
LOGFILE5351.xml.euckr&lt;br&gt;&lt;br&gt;파일의 인코딩은 &#039;file&#039; 명령을 통해 알 수 있다.</description>
			<category>리눅스에 관련된 글</category>
			<author>(시누)</author>
			<guid>http://odoacer.kr/238</guid>
			<comments>http://odoacer.kr/entry/iconv-%EC%82%AC%EC%9A%A9%EB%B2%95#entry238comment</comments>
			<pubDate>Fri, 16 Jul 2010 17:49:58 +0900</pubDate>
		</item>
		<item>
			<title>복근 운동 방법 퍼왔음</title>
			<link>http://odoacer.kr/entry/%EB%B3%B5%EA%B7%BC-%EC%9A%B4%EB%8F%99-%EB%B0%A9%EB%B2%95-%ED%8D%BC%EC%99%94%EC%9D%8C</link>
			<description>&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(51, 51, 51); &quot;&gt;&lt;div id=&quot;body_middle4&quot; style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 30px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px; color: rgb(51, 51, 51); z-index: 0; width: 978px; background-image: url(http://imgsrc.search.daum-img.net/knowledge4/2010/common/bg_kn_body.gif); background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; background-position: initial initial; background-repeat: no-repeat repeat; &quot;&gt;&lt;div id=&quot;content8&quot; style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px; color: rgb(51, 51, 51); position: relative; z-index: 0; float: left; width: 703px; clear: both; &quot;&gt;&lt;div id=&quot;qnaReadContent&quot; style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px; color: rgb(51, 51, 51); &quot;&gt;&lt;div id=&quot;answer_49fKZ&quot; class=&quot;clearfix&quot; style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px; color: rgb(51, 51, 51); display: inline-block; position: relative; z-index: 1100; &quot;&gt;&lt;dl class=&quot;qnaViewA  chooseA &quot; style=&quot;margin-top: 30px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 28px; padding-left: 0px; width: 703px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); background-image: url(http://imgsrc.search.daum-img.net/knowledge4/2010/detail/bg_kn_title.gif); background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; clear: both; background-position: initial initial; background-repeat: no-repeat no-repeat; &quot;&gt;&lt;dd class=&quot;aContent&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 14px; padding-right: 17px; padding-bottom: 0px; padding-left: 17px; &quot;&gt;&lt;div class=&quot;contentWarp&quot; style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px; color: rgb(51, 51, 51); width: 669px; overflow-x: hidden; &quot;&gt;&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; class=&quot;qnaContentTable&quot; id=&quot;clix_acontent_49fKZ&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td class=&quot;tx-content-container&quot; style=&quot;font-family: AppleGothic, Gulim; color: rgb(0, 0, 0); line-height: 1.7; font-size: 13px; word-break: break-all; &quot;&gt;&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; width=&quot;600&quot; border=&quot;0&quot; style=&quot;margin-left: 1px; &quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td valign=&quot;center&quot; align=&quot;middle&quot; bgcolor=&quot;#eeeccc&quot; height=&quot;220&quot; style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(0, 0, 0); font-size: 9pt; &quot;&gt;&lt;img alt=&quot;&quot; height=&quot;200&quot; src=&quot;http://my-pt.co.kr/img/exercise/abd/abd001a.jpg&quot; width=&quot;300&quot; name=&quot;img_4fdab677320cd8756427bbeee9583187&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; align=&quot;middle&quot; bgcolor=&quot;#eeeccc&quot; height=&quot;220&quot; style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(0, 0, 0); font-size: 9pt; &quot;&gt;&lt;img alt=&quot;&quot; height=&quot;200&quot; src=&quot;http://my-pt.co.kr/img/exercise/abd/abd001b.jpg&quot; width=&quot;300&quot; name=&quot;img_caab00577811b5eb3194bf76720fe274&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(0, 0, 0); font-size: 9pt; padding-right: 10px; padding-left: 10px; padding-bottom: 10px; padding-top: 10px; &quot;&gt;&lt;p style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: AppleGothic, Gulim; font-size: 13px; color: rgb(51, 51, 51); line-height: 1.7; word-break: break-all; &quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-size: 21px; &quot;&gt;크런치&lt;/span&gt;&lt;/strong&gt;&lt;br&gt;&lt;br&gt;&lt;/font&gt;윗몸일으키기와 같은 동작으로 몸을 일으키는 것이 아니고 복근만을 사용해서 상체를 복근으로 끌어 모은다. 다리와 몸의 각도가 90°정도일 때는 복근 상부에 보다 강한 자극이 가고, 각도가 작아져서 몸이 약간 웅크려진 상태에서는 복근 하부에 보다 강한 자극이 간다.&lt;/p&gt;&lt;p style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: AppleGothic, Gulim; font-size: 13px; color: rgb(51, 51, 51); line-height: 1.7; word-break: break-all; &quot;&gt;&lt;img alt=&quot;&quot; src=&quot;http://my-pt.co.kr/exercise/exercise_t1.gif&quot; border=&quot;0&quot; name=&quot;img_d013468bce6deba81a4b076e726073e5&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;br&gt;1. 바닥에 등을 대고 누워 두 손은 가슴 앞으로 모으거나 목 뒤로 댄다.&lt;br&gt;2. 다리는 벤치나 의자위에 올려 놓는다.&lt;br&gt;3. 복부를 수축해서 흉곽을 골반 쪽으로 들어 올린다.&lt;br&gt;4. 잠깐 동안 복근을 강하게 쥐어짜 주고 시작자세로 돌아간다. &lt;img alt=&quot;&quot; height=&quot;61&quot; src=&quot;http://my-pt.co.kr/exercise/exercise_t2.gif&quot; width=&quot;532&quot; border=&quot;0&quot; name=&quot;img_a8fac78b242224bda4951f1fee446af2&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;br&gt;※ 머리뒤를 손가락으로 가볍게 잡고, 무릎은 벤치에 올려 올바른 각도로 굽힌다.&lt;br&gt;※ 견갑골을 미루에서 들어올릴 때 복부에 집중한다.&lt;br&gt;※ 수축시키면서 약 1초동안 정지하였다가 이완시키고 나서 힘을 빼지 않고 내려온다.&lt;br&gt;※ 양쪽을 번갈아 지칠 때까지 실시한 것을 1 set으로 3set이상 공략한다&lt;br&gt;※ 복근을 수축하기 전에 숨을 들이 마쉬고, 수축 중에는 숨을 멈추고, 제자리로 돌아오면서 숨을 내쉰다.&lt;br&gt;&lt;/p&gt;&lt;p style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: AppleGothic, Gulim; font-size: 13px; color: rgb(51, 51, 51); line-height: 1.7; word-break: break-all; &quot;&gt;&lt;strong&gt;&amp;lt;효과&amp;gt;&lt;/strong&gt;&amp;nbsp;특히 상복부의 발달에 효과가 크다.&lt;br&gt;&lt;br&gt;&lt;font size=&quot;3&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-size: 21px; &quot;&gt;디클라인 크런치&lt;/span&gt;&lt;/strong&gt;&lt;br&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; width=&quot;600&quot; border=&quot;0&quot; style=&quot;margin-left: 1px; &quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td valign=&quot;center&quot; align=&quot;middle&quot; bgcolor=&quot;#eeeccc&quot; height=&quot;220&quot; style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(0, 0, 0); font-size: 9pt; &quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;img alt=&quot;&quot; height=&quot;200&quot; src=&quot;http://my-pt.co.kr/img/exercise/abd/abd002a.jpg&quot; width=&quot;300&quot; name=&quot;img_aa4ca1cec62cdac99ba8c8b7ea469024&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;/font&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; align=&quot;middle&quot; bgcolor=&quot;#eeeccc&quot; height=&quot;220&quot; style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(0, 0, 0); font-size: 9pt; &quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;img alt=&quot;&quot; height=&quot;200&quot; src=&quot;http://my-pt.co.kr/img/exercise/abd/abd002b.jpg&quot; width=&quot;300&quot; name=&quot;img_84ee65921d2e56b65fc87183bdcabeab&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(0, 0, 0); font-size: 9pt; padding-right: 10px; padding-left: 10px; padding-bottom: 10px; padding-top: 10px; &quot;&gt;&lt;p style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: AppleGothic, Gulim; font-size: 13px; color: rgb(51, 51, 51); line-height: 1.7; word-break: break-all; &quot;&gt;윗몸일으키기와 같은 동작으로 복근만을 사용해서 상체를 복근으로 끌어 모은다.&lt;/p&gt;&lt;p style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: AppleGothic, Gulim; font-size: 13px; color: rgb(51, 51, 51); line-height: 1.7; word-break: break-all; &quot;&gt;&lt;img alt=&quot;&quot; src=&quot;http://my-pt.co.kr/exercise/exercise_t1.gif&quot; border=&quot;0&quot; name=&quot;img_d013468bce6deba81a4b076e726073e5&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;br&gt;1. 손을 뒤로하고 디클라인 벤치에 눕는다.&lt;br&gt;2. 복부를 수축해서 상체를 들어 올린다..&lt;br&gt;3. 다시 시작자세로 돌아간다.&lt;br&gt;&lt;img alt=&quot;&quot; height=&quot;61&quot; src=&quot;http://my-pt.co.kr/exercise/exercise_t2.gif&quot; width=&quot;532&quot; border=&quot;0&quot; name=&quot;img_a8fac78b242224bda4951f1fee446af2&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;br&gt;※ 머리뒤를 손가락으로 가볍게 잡는다.&lt;br&gt;※ 들어올릴 때 복부에 집중한다.&lt;br&gt;&lt;/p&gt;&lt;p style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: AppleGothic, Gulim; font-size: 13px; color: rgb(51, 51, 51); line-height: 1.7; word-break: break-all; &quot;&gt;&lt;strong&gt;&amp;lt;효과&amp;gt;&lt;/strong&gt;&amp;nbsp;특히 상복부의 발달에 효과가 크다.&lt;br&gt;&lt;br&gt;&lt;font size=&quot;3&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-size: 21px; &quot;&gt;디클라인 리버스 크런치&lt;/span&gt;&lt;/strong&gt;&lt;br&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; width=&quot;600&quot; border=&quot;0&quot; style=&quot;margin-left: 1px; &quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td valign=&quot;center&quot; align=&quot;middle&quot; bgcolor=&quot;#eeeccc&quot; height=&quot;220&quot; style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(0, 0, 0); font-size: 9pt; &quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;img alt=&quot;&quot; height=&quot;200&quot; src=&quot;http://my-pt.co.kr/img/exercise/abd/abd003a.jpg&quot; width=&quot;300&quot; name=&quot;img_1ebc71c69699480eb198d568a0b23af4&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;/font&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; align=&quot;middle&quot; bgcolor=&quot;#eeeccc&quot; height=&quot;220&quot; style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(0, 0, 0); font-size: 9pt; &quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;img alt=&quot;&quot; height=&quot;300&quot; src=&quot;http://my-pt.co.kr/img/exercise/abd/abd003b.jpg&quot; width=&quot;200&quot; name=&quot;img_e34f6954904bd3cacdd8c05efc48a2ac&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(0, 0, 0); font-size: 9pt; padding-right: 10px; padding-left: 10px; padding-bottom: 10px; padding-top: 10px; &quot;&gt;&lt;p style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: AppleGothic, Gulim; font-size: 13px; color: rgb(51, 51, 51); line-height: 1.7; word-break: break-all; &quot;&gt;&lt;/p&gt;&lt;p style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: AppleGothic, Gulim; font-size: 13px; color: rgb(51, 51, 51); line-height: 1.7; word-break: break-all; &quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;img alt=&quot;&quot; src=&quot;http://my-pt.co.kr/exercise/exercise_t1.gif&quot; border=&quot;0&quot; name=&quot;img_d013468bce6deba81a4b076e726073e5&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;br&gt;&lt;/font&gt;1. 디클라인 벤치의 윗부분을 잡고 다리는 곧게 뻗는다.&lt;br&gt;2. 무릎을 가슴근처까지 들어 올린다.&lt;br&gt;3. 다시 시작자세로 올아온다.&lt;br&gt;&lt;img alt=&quot;&quot; height=&quot;61&quot; src=&quot;http://my-pt.co.kr/exercise/exercise_t2.gif&quot; width=&quot;532&quot; border=&quot;0&quot; name=&quot;img_a8fac78b242224bda4951f1fee446af2&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;br&gt;※ 무릎을 천천히 들어 올리고 내린다.&lt;br&gt;※ 반동을 주지 않는다.&lt;br&gt;&lt;/p&gt;&lt;p style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: AppleGothic, Gulim; font-size: 13px; color: rgb(51, 51, 51); line-height: 1.7; word-break: break-all; &quot;&gt;&lt;strong&gt;&amp;lt;효과&amp;gt;&lt;/strong&gt;&amp;nbsp;특히 하복부의 발달에 효과가 좋다 &lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;strong&gt;&lt;span style=&quot;font-size: 17px; &quot;&gt;&lt;font size=&quot;3&quot;&gt;사이드밴드&lt;/font&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: AppleGothic, Gulim; font-size: 13px; color: rgb(51, 51, 51); line-height: 1.7; word-break: break-all; &quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; width=&quot;600&quot; border=&quot;0&quot; style=&quot;margin-left: 1px; &quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td valign=&quot;center&quot; align=&quot;middle&quot; bgcolor=&quot;#eeeccc&quot; height=&quot;220&quot; style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(0, 0, 0); font-size: 9pt; &quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;img alt=&quot;&quot; height=&quot;159&quot; src=&quot;http://my-pt.co.kr/img/exercise/abd/abd004a.jpg&quot; width=&quot;90&quot; name=&quot;img_5f7fea317e1c3fb4a775f4517b4f9e19&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;/font&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; align=&quot;middle&quot; bgcolor=&quot;#eeeccc&quot; height=&quot;220&quot; style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(0, 0, 0); font-size: 9pt; &quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;img alt=&quot;&quot; height=&quot;159&quot; src=&quot;http://my-pt.co.kr/img/exercise/abd/abd004b.jpg&quot; width=&quot;87&quot; name=&quot;img_71e930971b6a182aa77a99e829365f8d&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(0, 0, 0); font-size: 9pt; padding-right: 10px; padding-left: 10px; padding-bottom: 10px; padding-top: 10px; &quot;&gt;&lt;p style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: AppleGothic, Gulim; font-size: 13px; color: rgb(51, 51, 51); line-height: 1.7; word-break: break-all; &quot;&gt;덤벨을 한 손에 들고 한 손은 머리 뒤로 돌려 손바닥을 머리 아래 부분에 살며시 대고 팔꿈치를 반대쪽 어깨와 일직선을 이루어야 정확한 준비 자세가 된 것이며 호흡을 뱉으면서 덤벨을 든 쪽으로 직선으로 내려가 양쪽 허리에 서 터져 나오는 신음을 확인하고 최고정점에 1~2초 멈추어 최고의 스트레 칭을 얻은 뒤 호흡을 마시며 원위치한다&lt;/p&gt;&lt;p style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: AppleGothic, Gulim; font-size: 13px; color: rgb(51, 51, 51); line-height: 1.7; word-break: break-all; &quot;&gt;&lt;img alt=&quot;&quot; src=&quot;http://my-pt.co.kr/exercise/exercise_t1.gif&quot; border=&quot;0&quot; name=&quot;img_d013468bce6deba81a4b076e726073e5&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;br&gt;1. 양쪽 또는 한 손에 덤벨을 들고 똑바로 선다.&lt;br&gt;2. 왼쪽으로 상체를 구부렸다가 다시 처음 동작으로 돌아온 다음에 다시 오른쪽으로 구부리는 동작을 실시한다.&lt;br&gt;&lt;img alt=&quot;&quot; height=&quot;61&quot; src=&quot;http://my-pt.co.kr/exercise/exercise_t2.gif&quot; width=&quot;532&quot; border=&quot;0&quot; name=&quot;img_a8fac78b242224bda4951f1fee446af2&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;br&gt;※ 15회정도 운동을 실시할 수 있는 무게의 덤벨을 사용한다.&lt;br&gt;※ 옆구리를 줄여야 허리를 줄일 수 있으며 허리를 줄여야 배를 줄일 수 있다.&lt;br&gt;※ 운동을 하는 날마다 실시하여 옆구리에 지방이 쌓이지 못하도록 하는 것이 좋다.&lt;/p&gt;&lt;p style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: AppleGothic, Gulim; font-size: 13px; color: rgb(51, 51, 51); line-height: 1.7; word-break: break-all; &quot;&gt;&lt;strong&gt;&amp;lt;효과&amp;gt;&lt;/strong&gt;&amp;nbsp;복부 옆부분 (1차 효과는 외복사근 및 내복사근이며, 척주기립근에도 효과가 있다.)&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;strong&gt;&lt;span style=&quot;font-size: 17px; &quot;&gt;&lt;font size=&quot;3&quot;&gt;벤치니업&lt;/font&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; width=&quot;600&quot; border=&quot;0&quot; style=&quot;margin-left: 1px; &quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td valign=&quot;center&quot; align=&quot;middle&quot; bgcolor=&quot;#eeeccc&quot; height=&quot;220&quot; style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(0, 0, 0); font-size: 9pt; &quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;img alt=&quot;&quot; height=&quot;210&quot; src=&quot;http://my-pt.co.kr/img/exercise/abd/abd005a.jpg&quot; width=&quot;272&quot; name=&quot;img_de4fcf0a2845fd77a6f75ccf8fce4bc4&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;/font&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; align=&quot;middle&quot; bgcolor=&quot;#eeeccc&quot; height=&quot;220&quot; style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(0, 0, 0); font-size: 9pt; &quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;img alt=&quot;&quot; height=&quot;210&quot; src=&quot;http://my-pt.co.kr/img/exercise/abd/abd005b.jpg&quot; width=&quot;226&quot; name=&quot;img_88320d87dc6784b471c2a483e0814e5c&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(0, 0, 0); font-size: 9pt; padding-right: 10px; padding-left: 10px; padding-bottom: 10px; padding-top: 10px; &quot;&gt;&lt;p style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: AppleGothic, Gulim; font-size: 13px; color: rgb(51, 51, 51); line-height: 1.7; word-break: break-all; &quot;&gt;가정에서도 가능한 운동이며, 특히 아랫배가 많이 나온 여성들이 해야 할 운동이다.&lt;/p&gt;&lt;p style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: AppleGothic, Gulim; font-size: 13px; color: rgb(51, 51, 51); line-height: 1.7; word-break: break-all; &quot;&gt;&lt;img alt=&quot;&quot; src=&quot;http://my-pt.co.kr/exercise/exercise_t1.gif&quot; border=&quot;0&quot; name=&quot;img_d013468bce6deba81a4b076e726073e5&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;br&gt;1. 플랫 벤치의 긴쪽으로 앉아서 양손으로 벤치를 붙잡고 무릎을 살짝 굽힌다.&lt;br&gt;2. 복부를 수축해서 무릎을 가슴쪽으로 끌어당긴다.&lt;br&gt;3. 무릎이 가슴에 가까워지면서는 다시 다리를 펴고 시작 위치로 돌아간다.&lt;br&gt;&lt;img alt=&quot;&quot; height=&quot;61&quot; src=&quot;http://my-pt.co.kr/exercise/exercise_t2.gif&quot; width=&quot;532&quot; border=&quot;0&quot; name=&quot;img_a8fac78b242224bda4951f1fee446af2&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;br&gt;※ 반동을 이용하지 말아야 한다.&lt;br&gt;※ 움직임의 속도를 천천히 하여 복부의 최고 수축과 이완을 읽으면서 운동을 실시한다.&lt;br&gt;※ 무릎을 들 때 호흡을 뱉고 내릴 때 호흡을 마신다.&lt;br&gt;※ 하운동에 가장 기본적인 운동으로 니 업을 추천한다.&lt;/p&gt;&lt;p style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: AppleGothic, Gulim; font-size: 13px; color: rgb(51, 51, 51); line-height: 1.7; word-break: break-all; &quot;&gt;&lt;strong&gt;&amp;lt;효과&amp;gt;&lt;/strong&gt;&amp;nbsp;하복부 발달에 효과가 크다.&lt;br&gt;&lt;br&gt;&lt;strong&gt;&lt;span style=&quot;font-size: 17px; &quot;&gt;&lt;font size=&quot;3&quot;&gt;크로스 크런치&lt;/font&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; width=&quot;600&quot; border=&quot;0&quot; style=&quot;margin-left: 1px; &quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td valign=&quot;center&quot; align=&quot;middle&quot; bgcolor=&quot;#eeeccc&quot; height=&quot;220&quot; style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(0, 0, 0); font-size: 9pt; &quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;img alt=&quot;&quot; height=&quot;204&quot; src=&quot;http://my-pt.co.kr/img/exercise/abd/abd006a.jpg&quot; width=&quot;266&quot; name=&quot;img_48df1cf41ea9beff27cb50ce2a6034a0&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;/font&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; align=&quot;middle&quot; bgcolor=&quot;#eeeccc&quot; height=&quot;220&quot; style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(0, 0, 0); font-size: 9pt; &quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;img alt=&quot;&quot; height=&quot;247&quot; src=&quot;http://my-pt.co.kr/img/exercise/abd/abd006b.jpg&quot; width=&quot;266&quot; name=&quot;img_fece6c4ee7e14a94b93b4caffe2ac213&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(0, 0, 0); font-size: 9pt; padding-right: 10px; padding-left: 10px; padding-bottom: 10px; padding-top: 10px; &quot;&gt;&lt;p style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: AppleGothic, Gulim; font-size: 13px; color: rgb(51, 51, 51); line-height: 1.7; word-break: break-all; &quot;&gt;&lt;/p&gt;&lt;p style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: AppleGothic, Gulim; font-size: 13px; color: rgb(51, 51, 51); line-height: 1.7; word-break: break-all; &quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;img alt=&quot;&quot; src=&quot;http://my-pt.co.kr/exercise/exercise_t1.gif&quot; border=&quot;0&quot; name=&quot;img_d013468bce6deba81a4b076e726073e5&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;br&gt;&lt;/font&gt;1. 옆으로 누워 위로 올라가 있는 발을 밑에 있는 발고교차시키고 한 손은 머리 뒤에 댄다.&lt;br&gt;아래쪽에 있는 팔은 대개 복사근에 댄다.&lt;br&gt;2. 천천히 상체를 들어 올린다. 최고 위치에서 수축 상태를 약간 유지한다.&lt;br&gt;3. 내려 올때도 천천히 내려 와야 되며 더이상 할 수 없는 경우엔 아래쪽 팔을 이용 몇 번의 반복을 유도한다.&lt;br&gt;&lt;img alt=&quot;&quot; height=&quot;61&quot; src=&quot;http://my-pt.co.kr/exercise/exercise_t2.gif&quot; width=&quot;532&quot; border=&quot;0&quot; name=&quot;img_a8fac78b242224bda4951f1fee446af2&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;br&gt;※ 두 다리를 고정 시켜서 최대 수축 효과를 노린다.&lt;br&gt;&lt;/p&gt;&lt;p style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: AppleGothic, Gulim; font-size: 13px; color: rgb(51, 51, 51); line-height: 1.7; word-break: break-all; &quot;&gt;&lt;strong&gt;&amp;lt;효과&amp;gt;&lt;/strong&gt;&amp;nbsp;복부 옆부분 (주로 외복직근과 늑간근을 공략할 수 있는 운동이다.)&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;strong&gt;&lt;span style=&quot;font-size: 17px; &quot;&gt;&lt;font size=&quot;3&quot;&gt;더블 크런치&lt;/font&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; width=&quot;600&quot; border=&quot;0&quot; style=&quot;margin-left: 1px; &quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td valign=&quot;center&quot; align=&quot;middle&quot; bgcolor=&quot;#eeeccc&quot; height=&quot;220&quot; style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(0, 0, 0); font-size: 9pt; &quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;img alt=&quot;&quot; height=&quot;200&quot; src=&quot;http://my-pt.co.kr/img/exercise/abd/abd008a.jpg&quot; width=&quot;293&quot; name=&quot;img_b7389b7ce14ab8559ac4acb0970234e0&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;/font&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; align=&quot;middle&quot; bgcolor=&quot;#eeeccc&quot; height=&quot;220&quot; style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(0, 0, 0); font-size: 9pt; &quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;img alt=&quot;&quot; height=&quot;200&quot; src=&quot;http://my-pt.co.kr/img/exercise/abd/abd008b.jpg&quot; width=&quot;209&quot; name=&quot;img_5cb4aa17dbbf952295174b5a4edaf611&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(0, 0, 0); font-size: 9pt; padding-right: 10px; padding-left: 10px; padding-bottom: 10px; padding-top: 10px; &quot;&gt;&lt;p style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: AppleGothic, Gulim; font-size: 13px; color: rgb(51, 51, 51); line-height: 1.7; word-break: break-all; &quot;&gt;&lt;/p&gt;&lt;p style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: AppleGothic, Gulim; font-size: 13px; color: rgb(51, 51, 51); line-height: 1.7; word-break: break-all; &quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;img alt=&quot;&quot; src=&quot;http://my-pt.co.kr/exercise/exercise_t1.gif&quot; border=&quot;0&quot; name=&quot;img_d013468bce6deba81a4b076e726073e5&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;br&gt;&lt;/font&gt;1. 바닥에 누워 양손을 머리 위에 얹는다.&lt;br&gt;2. 무릎을 구부려 발이 바닥에 닿지 않게 한다.&lt;br&gt;3. 복근을 수축하여 상체와 엉덩이를 동시에 들어올린다.&lt;br&gt;&lt;img alt=&quot;&quot; height=&quot;61&quot; src=&quot;http://my-pt.co.kr/exercise/exercise_t2.gif&quot; width=&quot;532&quot; border=&quot;0&quot; name=&quot;img_a8fac78b242224bda4951f1fee446af2&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;br&gt;※ 운동 내내 복부에 긴장을 유지한다.&lt;br&gt;&lt;/p&gt;&lt;p style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: AppleGothic, Gulim; font-size: 13px; color: rgb(51, 51, 51); line-height: 1.7; word-break: break-all; &quot;&gt;&lt;strong&gt;&amp;lt;효과&amp;gt;&lt;/strong&gt;&amp;nbsp;특히 상복부의 발달에 효과가 크다.&lt;br&gt;&lt;br&gt;&lt;font size=&quot;3&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-size: 21px; &quot;&gt;V-업&lt;/span&gt;&lt;/strong&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; width=&quot;600&quot; border=&quot;0&quot; style=&quot;margin-left: 1px; &quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td valign=&quot;center&quot; align=&quot;middle&quot; bgcolor=&quot;#eeeccc&quot; height=&quot;220&quot; style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(0, 0, 0); font-size: 9pt; &quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;img alt=&quot;&quot; height=&quot;185&quot; src=&quot;http://my-pt.co.kr/img/exercise/abd/abd009a.jpg&quot; width=&quot;332&quot; name=&quot;img_41d18bfb094f233e73cc086217f3271c&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;/font&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; align=&quot;middle&quot; bgcolor=&quot;#eeeccc&quot; height=&quot;220&quot; style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(0, 0, 0); font-size: 9pt; &quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;img alt=&quot;&quot; height=&quot;185&quot; src=&quot;http://my-pt.co.kr/img/exercise/abd/abd009b.jpg&quot; width=&quot;190&quot; name=&quot;img_2758615fe9f9b85c008861f6b35c0fc1&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(0, 0, 0); font-size: 9pt; padding-right: 10px; padding-left: 10px; padding-bottom: 10px; padding-top: 10px; &quot;&gt;&lt;p style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: AppleGothic, Gulim; font-size: 13px; color: rgb(51, 51, 51); line-height: 1.7; word-break: break-all; &quot;&gt;다리와 팔을 이용한 저항을 통해 상,하복부를 자극한다.&lt;/p&gt;&lt;p style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: AppleGothic, Gulim; font-size: 13px; color: rgb(51, 51, 51); line-height: 1.7; word-break: break-all; &quot;&gt;&lt;img alt=&quot;&quot; src=&quot;http://my-pt.co.kr/exercise/exercise_t1.gif&quot; border=&quot;0&quot; name=&quot;img_d013468bce6deba81a4b076e726073e5&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;br&gt;1. 바닥에 누워 다리를 펴서 모으고 팔을 옆으로 벌린다.&lt;br&gt;2. 다리와 둔부를 올리고 동시에 손이 발가락에 닿도록 상체를 올린다.&lt;br&gt;3. 최고 지점에서 몸이 V자를 그린다.&lt;br&gt;4. 시작자세로 돌아가 1초만 멈춘 다음 반복한다. &lt;img alt=&quot;&quot; height=&quot;61&quot; src=&quot;http://my-pt.co.kr/exercise/exercise_t2.gif&quot; width=&quot;532&quot; border=&quot;0&quot; name=&quot;img_a8fac78b242224bda4951f1fee446af2&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;br&gt;※ 균형을 요구하기 때문에 동작이 어렵다.&lt;br&gt;※ 익숙해질 때까지 세트 당 5~10회 반복후 15~25회로 늘린다.&lt;br&gt;&lt;/p&gt;&lt;p style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: AppleGothic, Gulim; font-size: 13px; color: rgb(51, 51, 51); line-height: 1.7; word-break: break-all; &quot;&gt;&lt;strong&gt;&amp;lt;효과&amp;gt;&lt;/strong&gt;&amp;nbsp;상,하복부에 모두 효과적인 운동이다.&lt;br&gt;&lt;br&gt;&lt;font size=&quot;3&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-size: 21px; &quot;&gt;로프 클런치&lt;/span&gt;&lt;/strong&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; width=&quot;600&quot; border=&quot;0&quot; style=&quot;margin-left: 1px; &quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td valign=&quot;center&quot; align=&quot;middle&quot; bgcolor=&quot;#eeeccc&quot; height=&quot;220&quot; style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(0, 0, 0); font-size: 9pt; &quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;img alt=&quot;&quot; height=&quot;200&quot; src=&quot;http://my-pt.co.kr/img/exercise/abd/abd010a.jpg&quot; width=&quot;300&quot; name=&quot;img_7f9a0fa4be126508dd6b0fa4ff078772&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;/font&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; align=&quot;middle&quot; bgcolor=&quot;#eeeccc&quot; height=&quot;220&quot; style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(0, 0, 0); font-size: 9pt; &quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;img alt=&quot;&quot; height=&quot;200&quot; src=&quot;http://my-pt.co.kr/img/exercise/abd/abd010b.jpg&quot; width=&quot;300&quot; name=&quot;img_53e64e0f89df46a2895c78b945c9aa77&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(0, 0, 0); font-size: 9pt; padding-right: 10px; padding-left: 10px; padding-bottom: 10px; padding-top: 10px; &quot;&gt;&lt;p style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: AppleGothic, Gulim; font-size: 13px; color: rgb(51, 51, 51); line-height: 1.7; word-break: break-all; &quot;&gt;&lt;/p&gt;&lt;p style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: AppleGothic, Gulim; font-size: 13px; color: rgb(51, 51, 51); line-height: 1.7; word-break: break-all; &quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;img alt=&quot;&quot; src=&quot;http://my-pt.co.kr/exercise/exercise_t1.gif&quot; border=&quot;0&quot; name=&quot;img_d013468bce6deba81a4b076e726073e5&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;br&gt;&lt;/font&gt;1. 케이블 머신에 로프를 걸어놓고 바닥에 두 무릎을 굽힌 상태로 로프를 머리 위로 쥔다.&lt;br&gt;2. 상체를 아래로 내리고 상복부를 공략하되 숨을 천천히 내리고 최대 수축 상태를 유지한다.&lt;br&gt;3. 10회 정도 반복하고 상체를 좌우로 굽혀가며 외복사근을 공략한다.&lt;br&gt;&lt;img alt=&quot;&quot; height=&quot;61&quot; src=&quot;http://my-pt.co.kr/exercise/exercise_t2.gif&quot; width=&quot;532&quot; border=&quot;0&quot; name=&quot;img_a8fac78b242224bda4951f1fee446af2&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;br&gt;※ 엄격한 자세를 요하며 자세를 바꾸면 외복사근 운동으로도 응용할 수 있다.&lt;br&gt;&lt;/p&gt;&lt;p style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: AppleGothic, Gulim; font-size: 13px; color: rgb(51, 51, 51); line-height: 1.7; word-break: break-all; &quot;&gt;&lt;strong&gt;&amp;lt;효과&amp;gt;&lt;/strong&gt;&amp;nbsp;주로 상복부를 공략할 수 있는 운동이다.&lt;br&gt;&lt;br&gt;&lt;font size=&quot;3&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-size: 21px; &quot;&gt;레그레이즈&lt;/span&gt;&lt;/strong&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; width=&quot;600&quot; border=&quot;0&quot; style=&quot;margin-left: 1px; &quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td valign=&quot;center&quot; align=&quot;middle&quot; bgcolor=&quot;#eeeccc&quot; height=&quot;220&quot; style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(0, 0, 0); font-size: 9pt; &quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;img alt=&quot;&quot; height=&quot;120&quot; src=&quot;http://my-pt.co.kr/img/exercise/abd/abd011a.jpg&quot; width=&quot;300&quot; name=&quot;img_de43f746e469843f24deb838ee37ee73&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;/font&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; align=&quot;middle&quot; bgcolor=&quot;#eeeccc&quot; height=&quot;220&quot; style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(0, 0, 0); font-size: 9pt; &quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;img alt=&quot;&quot; height=&quot;200&quot; src=&quot;http://my-pt.co.kr/img/exercise/abd/abd011b.jpg&quot; width=&quot;300&quot; name=&quot;img_e78336e72efe6534dade362eab26788f&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(0, 0, 0); font-size: 9pt; padding-right: 10px; padding-left: 10px; padding-bottom: 10px; padding-top: 10px; &quot;&gt;&lt;p style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: AppleGothic, Gulim; font-size: 13px; color: rgb(51, 51, 51); line-height: 1.7; word-break: break-all; &quot;&gt;엄격한 자세를 요하며 다리를 올리고 내릴때 반동을 이용하는것은 금물이다.&lt;br&gt;&lt;/p&gt;&lt;p style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: AppleGothic, Gulim; font-size: 13px; color: rgb(51, 51, 51); line-height: 1.7; word-break: break-all; &quot;&gt;&lt;img alt=&quot;&quot; src=&quot;http://my-pt.co.kr/exercise/exercise_t1.gif&quot; border=&quot;0&quot; name=&quot;img_d013468bce6deba81a4b076e726073e5&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;br&gt;1. 평편한 벤치에 누워 머리 뒤에서 벤치를 두 손으로 잡고 몸을 지지한다.&lt;br&gt;2. 동작의 시작에서 끝까지 무릎의 각도를 90도로 유지하여 하복부를 강조하고 엉덩이의 굴근의 작용을 최소화 해야한다.&lt;br&gt;3. 올라 갈때와 같은 속도로 발꿈치가 엉덩이와 일직선상에 놓일 때까지 서서히 다리를 내린다.&lt;br&gt;&lt;/p&gt;&lt;img alt=&quot;&quot; height=&quot;61&quot; src=&quot;http://my-pt.co.kr/exercise/exercise_t2.gif&quot; width=&quot;532&quot; border=&quot;0&quot; name=&quot;img_a8fac78b242224bda4951f1fee446af2&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;br&gt;※ 절제된 동작으로 양발을 같이 들어올려서 무릎이 바로 가슴 위까지 오도록 한다.&lt;br&gt;※ 엉덩이와 복부가 벤치에서 약간 들리게 된다.&lt;br&gt;&lt;p style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: AppleGothic, Gulim; font-size: 13px; color: rgb(51, 51, 51); line-height: 1.7; word-break: break-all; &quot;&gt;&amp;lt;효과&amp;gt; 주로 하복부를 공략할 수 있는 운동이다.&lt;br&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;font size=&quot;3&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-size: 21px; &quot;&gt;행잉 레그레이즈&lt;/span&gt;&lt;/strong&gt;&lt;br&gt;&lt;/font&gt;&lt;br&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br&gt;&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; width=&quot;600&quot; border=&quot;0&quot; style=&quot;margin-left: 1px; &quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td valign=&quot;center&quot; align=&quot;middle&quot; bgcolor=&quot;#eeeccc&quot; height=&quot;220&quot; style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(0, 0, 0); font-size: 9pt; &quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;img alt=&quot;&quot; height=&quot;305&quot; src=&quot;http://my-pt.co.kr/img/exercise/abd/abd012a.jpg&quot; width=&quot;167&quot; name=&quot;img_79fcd2a28d178c236e03bdf40c257450&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;/font&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; align=&quot;middle&quot; bgcolor=&quot;#eeeccc&quot; height=&quot;220&quot; style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(0, 0, 0); font-size: 9pt; &quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;img alt=&quot;&quot; height=&quot;305&quot; src=&quot;http://my-pt.co.kr/img/exercise/abd/abd012b.jpg&quot; width=&quot;220&quot; name=&quot;img_29e1f6e6f72b33bd229cfdf04146fcbb&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(0, 0, 0); font-size: 9pt; padding-right: 10px; padding-left: 10px; padding-bottom: 10px; padding-top: 10px; &quot;&gt;&lt;p style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: AppleGothic, Gulim; font-size: 13px; color: rgb(51, 51, 51); line-height: 1.7; word-break: break-all; &quot;&gt;행잉 레그 레이스는 운동효과는 좋으나 매달림 그 자체가 힘들기 때문에 체중이 많이 나가는 사람이 매달리어 무릎을 올리는 연습을 자주하여 악력과 팔의 힘이 쌔어져야 운동을 실시할 수 있다.&lt;/p&gt;&lt;p style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: AppleGothic, Gulim; font-size: 13px; color: rgb(51, 51, 51); line-height: 1.7; word-break: break-all; &quot;&gt;&lt;img alt=&quot;&quot; src=&quot;http://my-pt.co.kr/exercise/exercise_t1.gif&quot; border=&quot;0&quot; name=&quot;img_d013468bce6deba81a4b076e726073e5&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;br&gt;1. 어깨넓이 만큼 손을 벌리고 철봉에 매달린다.&lt;br&gt;2. 무릎을 약간 굽혀서 발을 턱밑까지 올린다.&lt;br&gt;3. 다시 처음자세로 돌아온다. &lt;img alt=&quot;&quot; height=&quot;61&quot; src=&quot;http://my-pt.co.kr/exercise/exercise_t2.gif&quot; width=&quot;532&quot; border=&quot;0&quot; name=&quot;img_a8fac78b242224bda4951f1fee446af2&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;br&gt;※ 내릴 때 천천히 내리며 집중력이 요구된다.&lt;br&gt;※ 다리나 무릎을 올릴 때 호흡을 뱉고 내릴 때 호흡을 들여 쉰다.&lt;/p&gt;&lt;p style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: AppleGothic, Gulim; font-size: 13px; color: rgb(51, 51, 51); line-height: 1.7; word-break: break-all; &quot;&gt;&lt;strong&gt;&amp;lt;효과&amp;gt;&lt;/strong&gt;&amp;nbsp;아래 배를 공략할 때 매우 효과적인 운동입니다.&lt;br&gt;&amp;nbsp;&lt;br&gt;&lt;strong&gt;&lt;span style=&quot;font-size: 17px; &quot;&gt;&lt;font size=&quot;3&quot;&gt;행잉 니레이즈&lt;/font&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br&gt;&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; width=&quot;600&quot; border=&quot;0&quot; style=&quot;margin-left: 1px; &quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td valign=&quot;center&quot; align=&quot;middle&quot; bgcolor=&quot;#eeeccc&quot; height=&quot;220&quot; style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(0, 0, 0); font-size: 9pt; &quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;img alt=&quot;&quot; height=&quot;300&quot; src=&quot;http://my-pt.co.kr/img/exercise/abd/abd013a.jpg&quot; width=&quot;200&quot; name=&quot;img_8ef085163664251f6a7c4e792d93542b&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;/font&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; align=&quot;middle&quot; bgcolor=&quot;#eeeccc&quot; height=&quot;220&quot; style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(0, 0, 0); font-size: 9pt; &quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;img alt=&quot;&quot; height=&quot;300&quot; src=&quot;http://my-pt.co.kr/img/exercise/abd/abd013b.jpg&quot; width=&quot;200&quot; name=&quot;img_4dd1a34cd2d92878b2dece32d034f763&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(0, 0, 0); font-size: 9pt; padding-right: 10px; padding-left: 10px; padding-bottom: 10px; padding-top: 10px; &quot;&gt;&lt;p style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: AppleGothic, Gulim; font-size: 13px; color: rgb(51, 51, 51); line-height: 1.7; word-break: break-all; &quot;&gt;&lt;/p&gt;&lt;p style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: AppleGothic, Gulim; font-size: 13px; color: rgb(51, 51, 51); line-height: 1.7; word-break: break-all; &quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;img alt=&quot;&quot; src=&quot;http://my-pt.co.kr/exercise/exercise_t1.gif&quot; border=&quot;0&quot; name=&quot;img_d013468bce6deba81a4b076e726073e5&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;br&gt;&lt;/font&gt;1. 어깨너비 보다 약간 넓게 그립을 잡고 손바닥은 앞을 향하도록 한다.&lt;br&gt;2. 다리를 쭉 펴서 몸이 완전히 일자가 되게 매달린다.&lt;br&gt;3. 매달린 채 허벅지가 바닥과 거의 평행이 될 때까지 다리를 천천히 올린다.&lt;br&gt;4. 이렇게 다리를 들어올린 상태에서 조금 멈추었다가 천천히 다시 시작 자세로&lt;br&gt;다리를 내린다.&lt;/p&gt;&lt;img alt=&quot;&quot; height=&quot;61&quot; src=&quot;http://my-pt.co.kr/exercise/exercise_t2.gif&quot; width=&quot;532&quot; border=&quot;0&quot; name=&quot;img_a8fac78b242224bda4951f1fee446af2&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; vertical-align: middle; &quot;&gt;&lt;br&gt;※ 상체가 움직이지 않게 약간 구부린다.&lt;br&gt;※ 운동을 할 때마다 1회씩 횟수를 늘려간다고 생각하고 운동을 꾸준히 한다.&lt;br&gt;&lt;p style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: AppleGothic, Gulim; font-size: 13px; color: rgb(51, 51, 51); line-height: 1.7; word-break: break-all; &quot;&gt;&amp;lt;효과&amp;gt; 복부 아랫부분&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/dd&gt;&lt;/dl&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/span&gt;</description>
			<category>소소한 일상~</category>
			<author>(시누)</author>
			<guid>http://odoacer.kr/237</guid>
			<comments>http://odoacer.kr/entry/%EB%B3%B5%EA%B7%BC-%EC%9A%B4%EB%8F%99-%EB%B0%A9%EB%B2%95-%ED%8D%BC%EC%99%94%EC%9D%8C#entry237comment</comments>
			<pubDate>Sun, 13 Jun 2010 16:52:05 +0900</pubDate>
		</item>
	</channel>
</rss>
<body>
<script src="http://log.odoacer.kr/hanbiro.js"></script> 
</body>
